commit 66f605e1fad26cf296825aec1edc36b3ba63e165 Author: Yarden Eitan Date: Wed Jul 27 14:04:12 2016 -0700 swift3 diff --git a/.hound.yml b/.hound.yml new file mode 100755 index 00000000..d659195a --- /dev/null +++ b/.hound.yml @@ -0,0 +1,2 @@ +swift: + config_file: .swiftlint.yml diff --git a/.swiftlint.yml b/.swiftlint.yml new file mode 100755 index 00000000..0f4872fc --- /dev/null +++ b/.swiftlint.yml @@ -0,0 +1,15 @@ +line_length: 140 +file_length: 1000 +type_body_length: 500 +function_parameter_count: 7 +opt_in_rules: + - empty_count +disabled_rules: + - cyclomatic_complexity + - conditional_binding_cascade + - force_cast + - force_try + - function_body_length + - todo + - type_body_length + - variable_name diff --git a/.travis.yml b/.travis.yml new file mode 100755 index 00000000..d4a18585 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,39 @@ +language: objective-c +osx_image: xcode8 +before_script: cd MixpanelDemo +podfile: MixpanelDemo/Podfile +branches: + only: + - master +env: + global: + - WORKSPACE=MixpanelDemo.xcworkspace + - SCHEME=MixpanelDemo + - IOS_SDK=iphonesimulator9.3 + matrix: + - DESTINATION="platform=iOS Simulator,OS=8.1,name=iPhone 4S" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="YES" +# - DESTINATION="platform=iOS Simulator,OS=8.2,name=iPhone 5" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" +# - DESTINATION="platform=iOS Simulator,OS=8.3,name=iPhone 5S" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" +# - DESTINATION="platform=iOS Simulator,OS=8.4,name=iPhone 6" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" +# - DESTINATION="platform=iOS Simulator,OS=9.0,name=iPhone 6" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" +# - DESTINATION="platform=iOS Simulator,OS=9.1,name=iPhone 6 Plus" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" +# - DESTINATION="platform=iOS Simulator,OS=9.2,name=iPhone 6S" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" + - DESTINATION="platform=iOS Simulator,OS=9.3,name=iPhone 6S Plus" SCHEME="$SCHEME" SDK="$IOS_SDK" RUN_TESTS="YES" POD_LINT="NO" +script: + - set -o pipefail + - xcodebuild -version + - xcodebuild -showsdks + + # Build Framework in Debug and Run Tests if specified + - if [ $RUN_TESTS == "YES" ]; then + xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES test | xcpretty -c; + else + xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c; + fi + + - xcodebuild -workspace "$WORKSPACE" -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c; + + # Run `pod lib lint` if specified + - if [ $POD_LINT == "YES" ]; then + cd .. && pod lib lint --allow-warnings && cd MixpanelDemo; + fi diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..c6275606 --- /dev/null +++ b/LICENSE @@ -0,0 +1,215 @@ +Copyright 2016 Mixpanel, Inc. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this work except in compliance with the License. +You may obtain a copy of the License below, or at: + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. \ No newline at end of file diff --git a/Mixpanel-swift.podspec b/Mixpanel-swift.podspec new file mode 100644 index 00000000..305bdf8c --- /dev/null +++ b/Mixpanel-swift.podspec @@ -0,0 +1,13 @@ + +Pod::Spec.new do |s| + s.name = 'Mixpanel-swift' + s.version = '1.0.3' + s.license = 'Apache License, Version 2.0' + s.summary = 'iPhone tracking library for Mixpanel Analytics in Swift' + s.homepage = 'https://mixpanel.com' + s.author = { 'Mixpanel, Inc' => 'support@mixpanel.com' } + s.source = { :git => 'git@github.com:mixpanel/mixpanel-swift-private.git', :tag => "v#{s.version}" } + s.ios.deployment_target = '8.0' + s.source_files = 'Mixpanel/*.swift' + s.module_name = 'Mixpanel' +end diff --git a/Mixpanel.xcodeproj/project.pbxproj b/Mixpanel.xcodeproj/project.pbxproj new file mode 100644 index 00000000..a3d1c0c1 --- /dev/null +++ b/Mixpanel.xcodeproj/project.pbxproj @@ -0,0 +1,420 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 51DD567C1D306B740045D3DB /* Logger.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51DD56791D306B740045D3DB /* Logger.swift */; }; + 51DD56831D306B7B0045D3DB /* PrintLogging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51DD56801D306B7B0045D3DB /* PrintLogging.swift */; }; + 51DD56841D306B7B0045D3DB /* FileLogging.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51DD56811D306B7B0045D3DB /* FileLogging.swift */; }; + E11594811CFF1491007F8B4F /* Mixpanel.h in Headers */ = {isa = PBXBuildFile; fileRef = E11594801CFF1491007F8B4F /* Mixpanel.h */; settings = {ATTRIBUTES = (Public, ); }; }; + E115948B1CFF1538007F8B4F /* Mixpanel.swift in Sources */ = {isa = PBXBuildFile; fileRef = E115948A1CFF1538007F8B4F /* Mixpanel.swift */; }; + E115948E1D000709007F8B4F /* MixpanelInstance.swift in Sources */ = {isa = PBXBuildFile; fileRef = E115948D1D000709007F8B4F /* MixpanelInstance.swift */; }; + E11594931D0036E1007F8B4F /* Persistence.swift in Sources */ = {isa = PBXBuildFile; fileRef = E11594921D0036E1007F8B4F /* Persistence.swift */; }; + E11594971D006022007F8B4F /* Network.swift in Sources */ = {isa = PBXBuildFile; fileRef = E11594961D006022007F8B4F /* Network.swift */; }; + E11594991D01689F007F8B4F /* JSONHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = E11594981D01689F007F8B4F /* JSONHandler.swift */; }; + E115949F1D01BE14007F8B4F /* Flush.swift in Sources */ = {isa = PBXBuildFile; fileRef = E115949E1D01BE14007F8B4F /* Flush.swift */; }; + E11594A11D01C597007F8B4F /* Track.swift in Sources */ = {isa = PBXBuildFile; fileRef = E11594A01D01C597007F8B4F /* Track.swift */; }; + E15FF7C61D02C9E10076CDE3 /* CoreTelephony.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E15FF7C51D02C9E10076CDE3 /* CoreTelephony.framework */; }; + E15FF7C81D0435670076CDE3 /* People.swift in Sources */ = {isa = PBXBuildFile; fileRef = E15FF7C71D0435670076CDE3 /* People.swift */; }; + E1982BFF1D0AC2E2006B7330 /* Error.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1982BFE1D0AC2E2006B7330 /* Error.swift */; }; + E1D335CC1D303A0D00E68E12 /* FlushRequest.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1D335CB1D303A0D00E68E12 /* FlushRequest.swift */; }; + E1D335CE1D30578E00E68E12 /* Constants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1D335CD1D30578E00E68E12 /* Constants.swift */; }; + E1D335D01D3059A800E68E12 /* AutomaticProperties.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1D335CF1D3059A800E68E12 /* AutomaticProperties.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXFileReference section */ + 51DD56791D306B740045D3DB /* Logger.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Logger.swift; sourceTree = ""; }; + 51DD56801D306B7B0045D3DB /* PrintLogging.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PrintLogging.swift; sourceTree = ""; }; + 51DD56811D306B7B0045D3DB /* FileLogging.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FileLogging.swift; sourceTree = ""; }; + E115947D1CFF1491007F8B4F /* Mixpanel.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Mixpanel.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + E11594801CFF1491007F8B4F /* Mixpanel.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Mixpanel.h; sourceTree = ""; }; + E11594821CFF1491007F8B4F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E115948A1CFF1538007F8B4F /* Mixpanel.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Mixpanel.swift; sourceTree = ""; }; + E115948D1D000709007F8B4F /* MixpanelInstance.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MixpanelInstance.swift; sourceTree = ""; }; + E11594921D0036E1007F8B4F /* Persistence.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Persistence.swift; sourceTree = ""; }; + E11594961D006022007F8B4F /* Network.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Network.swift; sourceTree = ""; }; + E11594981D01689F007F8B4F /* JSONHandler.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = JSONHandler.swift; sourceTree = ""; }; + E115949E1D01BE14007F8B4F /* Flush.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Flush.swift; sourceTree = ""; }; + E11594A01D01C597007F8B4F /* Track.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Track.swift; sourceTree = ""; }; + E15FF7C51D02C9E10076CDE3 /* CoreTelephony.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreTelephony.framework; path = System/Library/Frameworks/CoreTelephony.framework; sourceTree = SDKROOT; }; + E15FF7C71D0435670076CDE3 /* People.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = People.swift; sourceTree = ""; }; + E1982BFE1D0AC2E2006B7330 /* Error.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Error.swift; sourceTree = ""; }; + E1D335CB1D303A0D00E68E12 /* FlushRequest.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FlushRequest.swift; sourceTree = ""; }; + E1D335CD1D30578E00E68E12 /* Constants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Constants.swift; sourceTree = ""; }; + E1D335CF1D3059A800E68E12 /* AutomaticProperties.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AutomaticProperties.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + E11594791CFF1491007F8B4F /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E15FF7C61D02C9E10076CDE3 /* CoreTelephony.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 51DD56771D306B620045D3DB /* Log */ = { + isa = PBXGroup; + children = ( + 51DD56781D306B6B0045D3DB /* Logging */, + 51DD56791D306B740045D3DB /* Logger.swift */, + ); + name = Log; + sourceTree = ""; + }; + 51DD56781D306B6B0045D3DB /* Logging */ = { + isa = PBXGroup; + children = ( + 51DD56801D306B7B0045D3DB /* PrintLogging.swift */, + 51DD56811D306B7B0045D3DB /* FileLogging.swift */, + ); + name = Logging; + sourceTree = ""; + }; + E11594731CFF1491007F8B4F = { + isa = PBXGroup; + children = ( + E115947F1CFF1491007F8B4F /* Mixpanel */, + E115947E1CFF1491007F8B4F /* Products */, + ); + sourceTree = ""; + }; + E115947E1CFF1491007F8B4F /* Products */ = { + isa = PBXGroup; + children = ( + E115947D1CFF1491007F8B4F /* Mixpanel.framework */, + ); + name = Products; + sourceTree = ""; + }; + E115947F1CFF1491007F8B4F /* Mixpanel */ = { + isa = PBXGroup; + children = ( + E11594881CFF14D3007F8B4F /* Source */, + E11594891CFF14DF007F8B4F /* Supporting Files */, + E15FF8021D0461F60076CDE3 /* Frameworks */, + ); + path = Mixpanel; + sourceTree = ""; + }; + E11594881CFF14D3007F8B4F /* Source */ = { + isa = PBXGroup; + children = ( + 51DD56771D306B620045D3DB /* Log */, + E115948A1CFF1538007F8B4F /* Mixpanel.swift */, + E115948D1D000709007F8B4F /* MixpanelInstance.swift */, + E11594921D0036E1007F8B4F /* Persistence.swift */, + E11594961D006022007F8B4F /* Network.swift */, + E11594981D01689F007F8B4F /* JSONHandler.swift */, + E115949E1D01BE14007F8B4F /* Flush.swift */, + E1D335CB1D303A0D00E68E12 /* FlushRequest.swift */, + E11594A01D01C597007F8B4F /* Track.swift */, + E15FF7C71D0435670076CDE3 /* People.swift */, + E1982BFE1D0AC2E2006B7330 /* Error.swift */, + E1D335CD1D30578E00E68E12 /* Constants.swift */, + E1D335CF1D3059A800E68E12 /* AutomaticProperties.swift */, + ); + name = Source; + sourceTree = ""; + }; + E11594891CFF14DF007F8B4F /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E11594801CFF1491007F8B4F /* Mixpanel.h */, + E11594821CFF1491007F8B4F /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E15FF8021D0461F60076CDE3 /* Frameworks */ = { + isa = PBXGroup; + children = ( + E15FF7C51D02C9E10076CDE3 /* CoreTelephony.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXHeadersBuildPhase section */ + E115947A1CFF1491007F8B4F /* Headers */ = { + isa = PBXHeadersBuildPhase; + buildActionMask = 2147483647; + files = ( + E11594811CFF1491007F8B4F /* Mixpanel.h in Headers */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXHeadersBuildPhase section */ + +/* Begin PBXNativeTarget section */ + E115947C1CFF1491007F8B4F /* Mixpanel */ = { + isa = PBXNativeTarget; + buildConfigurationList = E11594851CFF1491007F8B4F /* Build configuration list for PBXNativeTarget "Mixpanel" */; + buildPhases = ( + E11594781CFF1491007F8B4F /* Sources */, + E11594791CFF1491007F8B4F /* Frameworks */, + E115947A1CFF1491007F8B4F /* Headers */, + E115947B1CFF1491007F8B4F /* Resources */, + E1345A791D46C9A200496D0D /* ShellScript */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Mixpanel; + productName = Mixpanel; + productReference = E115947D1CFF1491007F8B4F /* Mixpanel.framework */; + productType = "com.apple.product-type.framework"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + E11594741CFF1491007F8B4F /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 0800; + ORGANIZATIONNAME = Mixpanel; + TargetAttributes = { + E115947C1CFF1491007F8B4F = { + CreatedOnToolsVersion = 7.3.1; + DevelopmentTeam = E8FVX7QLET; + DevelopmentTeamName = "Mixpanel, Inc."; + LastSwiftMigration = 0800; + }; + }; + }; + buildConfigurationList = E11594771CFF1491007F8B4F /* Build configuration list for PBXProject "Mixpanel" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + ); + mainGroup = E11594731CFF1491007F8B4F; + productRefGroup = E115947E1CFF1491007F8B4F /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + E115947C1CFF1491007F8B4F /* Mixpanel */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + E115947B1CFF1491007F8B4F /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + E1345A791D46C9A200496D0D /* ShellScript */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "if which swiftlint >/dev/null; then\nswiftlint\nelse\necho \"warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint\"\nfi"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + E11594781CFF1491007F8B4F /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 51DD56831D306B7B0045D3DB /* PrintLogging.swift in Sources */, + E115948E1D000709007F8B4F /* MixpanelInstance.swift in Sources */, + E1D335CE1D30578E00E68E12 /* Constants.swift in Sources */, + E115949F1D01BE14007F8B4F /* Flush.swift in Sources */, + E11594931D0036E1007F8B4F /* Persistence.swift in Sources */, + E11594971D006022007F8B4F /* Network.swift in Sources */, + E15FF7C81D0435670076CDE3 /* People.swift in Sources */, + E11594A11D01C597007F8B4F /* Track.swift in Sources */, + E11594991D01689F007F8B4F /* JSONHandler.swift in Sources */, + E1D335D01D3059A800E68E12 /* AutomaticProperties.swift in Sources */, + 51DD567C1D306B740045D3DB /* Logger.swift in Sources */, + E1982BFF1D0AC2E2006B7330 /* Error.swift in Sources */, + 51DD56841D306B7B0045D3DB /* FileLogging.swift in Sources */, + E1D335CC1D303A0D00E68E12 /* FlushRequest.swift in Sources */, + E115948B1CFF1538007F8B4F /* Mixpanel.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin XCBuildConfiguration section */ + E11594831CFF1491007F8B4F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 9.3; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Debug; + }; + E11594841CFF1491007F8B4F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + CURRENT_PROJECT_VERSION = 1; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 9.3; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + VERSIONING_SYSTEM = "apple-generic"; + VERSION_INFO_PREFIX = ""; + }; + name = Release; + }; + E11594861CFF1491007F8B4F /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Mixpanel/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.mixpanel.Mixpanel; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + }; + name = Debug; + }; + E11594871CFF1491007F8B4F /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + CLANG_ENABLE_MODULES = YES; + DEFINES_MODULE = YES; + DYLIB_COMPATIBILITY_VERSION = 1; + DYLIB_CURRENT_VERSION = 1; + DYLIB_INSTALL_NAME_BASE = "@rpath"; + INFOPLIST_FILE = Mixpanel/Info.plist; + INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + PRODUCT_BUNDLE_IDENTIFIER = com.mixpanel.Mixpanel; + PRODUCT_NAME = "$(TARGET_NAME)"; + SKIP_INSTALL = YES; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + E11594771CFF1491007F8B4F /* Build configuration list for PBXProject "Mixpanel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E11594831CFF1491007F8B4F /* Debug */, + E11594841CFF1491007F8B4F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E11594851CFF1491007F8B4F /* Build configuration list for PBXNativeTarget "Mixpanel" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E11594861CFF1491007F8B4F /* Debug */, + E11594871CFF1491007F8B4F /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = E11594741CFF1491007F8B4F /* Project object */; +} diff --git a/Mixpanel.xcodeproj/project.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/UserInterfaceState.xcuserstate b/Mixpanel.xcodeproj/project.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 00000000..4dedc8f3 Binary files /dev/null and b/Mixpanel.xcodeproj/project.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/Mixpanel.xcodeproj/xcshareddata/xcschemes/Mixpanel.xcscheme b/Mixpanel.xcodeproj/xcshareddata/xcschemes/Mixpanel.xcscheme new file mode 100644 index 00000000..29eb3806 --- /dev/null +++ b/Mixpanel.xcodeproj/xcshareddata/xcschemes/Mixpanel.xcscheme @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Mixpanel.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/Mixpanel.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100644 index 00000000..fe2b4541 --- /dev/null +++ b/Mixpanel.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,5 @@ + + + diff --git a/Mixpanel.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcschemes/xcschememanagement.plist b/Mixpanel.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000..601e949e --- /dev/null +++ b/Mixpanel.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,14 @@ + + + + + SuppressBuildableAutocreation + + E115947C1CFF1491007F8B4F + + primary + + + + + diff --git a/Mixpanel/AutomaticProperties.swift b/Mixpanel/AutomaticProperties.swift new file mode 100644 index 00000000..8f84f457 --- /dev/null +++ b/Mixpanel/AutomaticProperties.swift @@ -0,0 +1,77 @@ +// +// AutomaticProperties.swift +// Mixpanel +// +// Created by Yarden Eitan on 7/8/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation +import CoreTelephony + +class AutomaticProperties { + + static let telephonyInfo = CTTelephonyNetworkInfo() + + static var properties: Properties = { + var p = Properties() + let size = UIScreen.main().bounds.size + let infoDict = Bundle.main.infoDictionary + if let infoDict = infoDict { + p["$app_build_number"] = infoDict["CFBundleVersion"] + p["$app_version_string"] = infoDict["CFBundleShortVersionString"] + } + p["$carrier"] = AutomaticProperties.telephonyInfo.subscriberCellularProvider?.carrierName + p["mp_lib"] = "swift" + p["$lib_version"] = AutomaticProperties.libVersion() + p["$manufacturer"] = "Apple" + p["$os"] = UIDevice.current().systemName + p["$os_version"] = UIDevice.current().systemVersion + p["$model"] = AutomaticProperties.deviceModel() + p["$screen_height"] = Int(size.height) + p["$screen_width"] = Int(size.width) + return p + }() + + static var peopleProperties: Properties = { + var p = Properties() + let infoDict = Bundle.main.infoDictionary + if let infoDict = infoDict { + p["$ios_app_version"] = infoDict["CFBundleVersion"] + p["$ios_app_release"] = infoDict["CFBundleShortVersionString"] + } + p["$ios_device_model"] = AutomaticProperties.deviceModel() + p["$ios_version"] = UIDevice.current().systemVersion + p["$ios_lib_version"] = AutomaticProperties.libVersion() + + return p + }() + + class func getCurrentRadio() -> String? { + var radio = telephonyInfo.currentRadioAccessTechnology + let prefix = "CTRadioAccessTechnology" + if radio == nil { + radio = "None" + } else if radio!.hasPrefix(prefix) { + radio = (radio! as NSString).substring(from: prefix.characters.count) + } + return radio + } + + class func deviceModel() -> String { + var systemInfo = utsname() + uname(&systemInfo) + let modelCode = withUnsafeMutablePointer(&systemInfo.machine) { + ptr in String(cString: UnsafePointer(ptr)) + } + if let model = String(validatingUTF8: modelCode) { + return model + } + return "" + } + + class func libVersion() -> String? { + return Bundle(for: self).infoDictionary?["CFBundleShortVersionString"] as? String + } + +} diff --git a/Mixpanel/Constants.swift b/Mixpanel/Constants.swift new file mode 100644 index 00000000..f675856c --- /dev/null +++ b/Mixpanel/Constants.swift @@ -0,0 +1,20 @@ +// +// Constants.swift +// Mixpanel +// +// Created by Yarden Eitan on 7/8/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +struct QueueConstants { + static var queueSize = 5000 +} + +struct APIConstants { + static let batchSize = 50 + static let minRetryBackoff = 60.0 + static let maxRetryBackoff = 600.0 + static let failuresTillBackoff = 2 +} diff --git a/Mixpanel/Error.swift b/Mixpanel/Error.swift new file mode 100644 index 00000000..af39e433 --- /dev/null +++ b/Mixpanel/Error.swift @@ -0,0 +1,42 @@ +// +// Error.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/10/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +enum PropertyError: ErrorProtocol { + case InvalidType(type: AnyObject) +} + +class Assertions { + static var assertClosure = swiftAssertClosure + static let swiftAssertClosure = { Swift.assert($0, $1, file: $2, line: $3) } +} + +func MPAssert(_ condition: @autoclosure() -> Bool, + _ message: @autoclosure() -> String = "", + file: StaticString = #file, + line: UInt = #line) { + Assertions.assertClosure(condition(), message(), file, line) +} + +class ErrorHandler { + class func wrap(_ f: @noescape() throws -> ReturnType?) -> ReturnType? { + do { + return try f() + } catch let error { + logError(error) + return nil + } + } + + class func logError(_ error: ErrorProtocol) { + let stackSymbols = Thread.callStackSymbols + Logger.error(message: "Error: \(error) \n Stack Symbols: \(stackSymbols)") + } + +} diff --git a/Mixpanel/FileLogging.swift b/Mixpanel/FileLogging.swift new file mode 100644 index 00000000..46cac9d3 --- /dev/null +++ b/Mixpanel/FileLogging.swift @@ -0,0 +1,39 @@ +// +// FileLogging.swift +// MPLogger +// +// Created by Sam Green on 7/8/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +/// Logs all messages to a file +class FileLogging: Logging { + private let fileHandle: FileHandle + + init(path: String) { + if let handle = FileHandle(forWritingAtPath: path) { + fileHandle = handle + } else { + fileHandle = FileHandle.withStandardError + } + + // Move to the end of the file so we can append messages + fileHandle.seekToEndOfFile() + } + + deinit { + // Ensure we close the file handle to clear the resources + fileHandle.closeFile() + } + + func addMessage(message: LogMessage) { + let string = "File: \(message.file) - Func: \(message.function) - " + + "Level: \(message.level.rawValue) - Message: \(message.text)" + if let data = string.data(using: String.Encoding.utf8) { + // Write the message as data to the file + fileHandle.write(data) + } + } +} diff --git a/Mixpanel/Flush.swift b/Mixpanel/Flush.swift new file mode 100644 index 00000000..5bd1df84 --- /dev/null +++ b/Mixpanel/Flush.swift @@ -0,0 +1,123 @@ +// +// Flush.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/3/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +protocol FlushDelegate { + func flush(completion: (() -> Void)?) + func updateNetworkActivityIndicator(_ on: Bool) +} + +class Flush: AppLifecycle { + + var timer: Timer? + var delegate: FlushDelegate? + var useIPAddressForGeoLocation = true + var flushRequest = FlushRequest() + var flushOnBackground = true + var _flushInterval = 0.0 + var flushInterval: Double { + set { + objc_sync_enter(self) + _flushInterval = newValue + objc_sync_exit(self) + + delegate?.flush(completion: nil) + startFlushTimer() + } + get { + objc_sync_enter(self) + defer { objc_sync_exit(self) } + + return _flushInterval + } + } + + func flushEventsQueue(_ eventsQueue: inout Queue) { + flushQueue(type: .Events, queue: &eventsQueue) + } + + func flushPeopleQueue(_ peopleQueue: inout Queue) { + flushQueue(type: .People, queue: &peopleQueue) + } + + func flushQueue(type: FlushType, queue: inout Queue) { + if flushRequest.requestNotAllowed() { + return + } + flushQueueInBatches(&queue, type: type) + } + + func startFlushTimer() { + stopFlushTimer() + if self.flushInterval > 0 { + DispatchQueue.main.async() { + self.timer = Timer.scheduledTimer(timeInterval: self.flushInterval, + target: self, + selector: #selector(self.flushSelector), + userInfo: nil, + repeats: true) + } + } + } + + @objc func flushSelector() { + delegate?.flush(completion: nil) + } + + func stopFlushTimer() { + if let timer = self.timer { + DispatchQueue.main.async() { + timer.invalidate() + self.timer = nil + } + } + } + + func flushQueueInBatches(_ queue: inout Queue, type: FlushType) { + while !queue.isEmpty { + var shouldContinue = false + let batchSize = min(queue.count, APIConstants.batchSize) + let range = 0.. Void) { + + let responseParser: (Data) -> Int? = { data in + let response = String(data: data, encoding: String.Encoding.utf8) + if let response = response { + return Int(response) ?? 0 + } + return nil + } + + let requestBody = "ip=\(Int(useIP))&data=\(requestData)" + .data(using: String.Encoding.utf8) + + let resource = Network.buildResource(path: type.rawValue, + method: Method.POST, + requestBody: requestBody, + headers: ["Accept-Encoding": "gzip"], + parse: responseParser) + + flushRequestHandler(BasePath.MixpanelAPI, + resource: resource, + completion: { success in + completion(success) + }) + } + + private func flushRequestHandler(_ base: String, + resource: Resource, + completion: (Bool) -> Void) { + + Network.apiRequest(base: base, + resource: resource, + failure: { (reason, data, response) in + self.networkConsecutiveFailures += 1 + self.updateRetryDelay(response) + completion(false) + }, + success: { (result, response) in + self.networkConsecutiveFailures = 0 + self.updateRetryDelay(response) + if result == 0 { + Logger.info(message: "\(base) api rejected some items") + } + completion(true) + } + ) + } + + private func updateRetryDelay(_ response: URLResponse?) { + var retryTime = 0.0 + let retryHeader = (response as? HTTPURLResponse)?.allHeaderFields["Retry-After"] as? String + if let retryHeader = retryHeader, let retryHeaderParsed = (Double(retryHeader)) { + retryTime = retryHeaderParsed + } + + if networkConsecutiveFailures >= APIConstants.failuresTillBackoff { + retryTime = max(retryTime, + retryBackOffTimeWithConsecutiveFailures( + self.networkConsecutiveFailures)) + } + let retryDate = Date(timeIntervalSinceNow: retryTime) + networkRequestsAllowedAfterTime = retryDate.timeIntervalSince1970 + } + + private func retryBackOffTimeWithConsecutiveFailures(_ failureCount: Int) -> TimeInterval { + let time = pow(2.0, Double(failureCount) - 1) * 60 + Double(arc4random_uniform(30)) + return min(max(APIConstants.minRetryBackoff, time), + APIConstants.maxRetryBackoff) + } + + func requestNotAllowed() -> Bool { + return Date().timeIntervalSince1970 < networkRequestsAllowedAfterTime + } + +} diff --git a/Mixpanel/Info.plist b/Mixpanel/Info.plist new file mode 100644 index 00000000..d3de8eef --- /dev/null +++ b/Mixpanel/Info.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + $(CURRENT_PROJECT_VERSION) + NSPrincipalClass + + + diff --git a/Mixpanel/JSONHandler.swift b/Mixpanel/JSONHandler.swift new file mode 100644 index 00000000..037999ef --- /dev/null +++ b/Mixpanel/JSONHandler.swift @@ -0,0 +1,82 @@ +// +// JSONHandler.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/3/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +class JSONHandler { + + typealias MPObjectToParse = AnyObject + + class func encodeAPIData(_ obj: MPObjectToParse) -> String? { + let data: Data? = serializeJSONObject(obj) + + guard let d = data else { + Logger.warn(message: "couldn't serialize object") + return nil + } + + let base64Encoded = d.base64EncodedString(options: .lineLength64Characters) + + guard let b64 = base64Encoded + .addingPercentEncoding(withAllowedCharacters: CharacterSet.urlQueryAllowed) else { + Logger.warn(message: "couldn't replace characters to allowed URL character set") + return nil + } + + return b64 + } + + class func serializeJSONObject(_ obj: MPObjectToParse) -> Data? { + let serializableJSONObject = makeObjectSerializable(obj) + + guard JSONSerialization.isValidJSONObject(serializableJSONObject) else { + Logger.warn(message: "object isn't valid and can't be serialzed to JSON") + return nil + } + var serializedObject: Data? = nil + do { + serializedObject = try JSONSerialization + .data(withJSONObject: serializableJSONObject, options: []) + } catch { + Logger.warn(message: "exception encoding api data") + } + return serializedObject + } + + private class func makeObjectSerializable(_ obj: MPObjectToParse) -> MPObjectToParse { + switch obj { + case is String, is Int, is UInt, is Double, is Float: + return obj + + case let obj as Array: + return obj.map() { makeObjectSerializable($0) } + + case let obj as Properties: + var serializedDict = Properties() + _ = obj.map() { (k, v) in + serializedDict[k] = + makeObjectSerializable(v) } + return serializedDict + + case let obj as Date: + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'" + dateFormatter.timeZone = TimeZone(abbreviation: "UTC") + dateFormatter.locale = Locale(localeIdentifier: "en_US_POSIX") + return dateFormatter.string(from: obj) + + case let obj as URL: + return obj.absoluteString! + + default: + Logger.info(message: "enforcing string on object") + return obj.description + } + } + +} diff --git a/Mixpanel/Logger.swift b/Mixpanel/Logger.swift new file mode 100644 index 00000000..02728545 --- /dev/null +++ b/Mixpanel/Logger.swift @@ -0,0 +1,115 @@ +// +// Logger.swift +// Logger +// +// Created by Sam Green on 7/8/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +/// This defines the various levels of logging that a message may be tagged with. This allows hiding and +/// showing different logging levels at run time depending on the environment +enum LogLevel: String { + /// Logging displays *all* logs and additional debug information that may be useful to a developer + case Debug + + /// Logging displays *all* logs (**except** debug) + case Info + + /// Logging displays *only* warnings and above + case Warning + + /// Logging displays *only* errors and above + case Error +} + +/// This holds all the data for each log message, since the formatting is up to each +/// logging object. It is a simple bag of data +struct LogMessage { + /// The file where this log message was created + let file: String + + /// The function where this log message was created + let function: String + + /// The text of the log message + let text: String + + /// The level of the log message + let level: LogLevel + + init(path: String, function: String, text: String, level: LogLevel) { + if let file = path.components(separatedBy: "/").last { + self.file = file + } else { + self.file = path + } + self.function = function + self.text = text + self.level = level + } +} + +/// Any object that conforms to this protocol may log messages +protocol Logging { + func addMessage(message: LogMessage) +} + +class Logger { + private static var loggers = [Logging]() + private static var enabledLevels = Set() + + /// Add a `Logging` object to receive all log messages + class func addLogging(_ logging: Logging) { + loggers.append(logging) + } + + /// Enable log messages of a specific `LogLevel` to be added to the log + class func enableLevel(_ level: LogLevel) { + enabledLevels.insert(level) + } + + /// Disable log messages of a specific `LogLevel` to prevent them from being logged + class func disableLevel(_ level: LogLevel) { + enabledLevels.remove(level) + } + + /// debug: Adds a debug message to the Mixpanel log + /// - Parameter message: The message to be added to the log + class func debug(message: @autoclosure() -> Any, _ path: String = #file, _ function: String = #function) { + guard enabledLevels.contains(.Debug) else { return } + forwardLogMessage(LogMessage(path: path, function: function, text: "\(message())", + level: .Debug)) + } + + /// info: Adds an informational message to the Mixpanel log + /// - Parameter message: The message to be added to the log + class func info(message: @autoclosure() -> Any, _ path: String = #file, _ function: String = #function) { + guard enabledLevels.contains(.Info) else { return } + forwardLogMessage(LogMessage(path: path, function: function, text: "\(message())", + level: .Info)) + } + + /// warn: Adds a warning message to the Mixpanel log + /// - Parameter message: The message to be added to the log + class func warn(message: @autoclosure() -> Any, _ path: String = #file, _ function: String = #function) { + guard enabledLevels.contains(.Warning) else { return } + forwardLogMessage(LogMessage(path: path, function: function, text: "\(message())", + level: .Warning)) + } + + /// error: Adds an error message to the Mixpanel log + /// - Parameter message: The message to be added to the log + class func error(message: @autoclosure() -> Any, _ path: String = #file, _ function: String = #function) { + guard enabledLevels.contains(.Error) else { return } + forwardLogMessage(LogMessage(path: path, function: function, text: "\(message())", + level: .Error)) + } + + /// This forwards a `LogMessage` to each logger that has been added + class private func forwardLogMessage(_ message: LogMessage) { + // Forward the log message to every registered Logging instance + loggers.forEach() { $0.addMessage(message: message) } + } +} diff --git a/Mixpanel/Mixpanel.h b/Mixpanel/Mixpanel.h new file mode 100644 index 00000000..e9eefef8 --- /dev/null +++ b/Mixpanel/Mixpanel.h @@ -0,0 +1,19 @@ +// +// Mixpanel.h +// Mixpanel +// +// Created by Yarden Eitan on 6/1/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +#import + +//! Project version number for Mixpanel. +FOUNDATION_EXPORT double MixpanelVersionNumber; + +//! Project version string for Mixpanel. +FOUNDATION_EXPORT const unsigned char MixpanelVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/Mixpanel/Mixpanel.swift b/Mixpanel/Mixpanel.swift new file mode 100644 index 00000000..ae7346d1 --- /dev/null +++ b/Mixpanel/Mixpanel.swift @@ -0,0 +1,132 @@ +// +// Mixpanel.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/1/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +/// The primary class for integrating Mixpanel with your app. +public class Mixpanel { + + /** + Initializes an instance of the API with the given project token. + + Returns a new Mixpanel instance API object. This allows you to create more than one instance + of the API object, which is convenient if you'd like to send data to more than + one Mixpanel project from a single app. + + - parameter token: your project token + - parameter launchOptions: Optional. App delegate launchOptions + - parameter flushInterval: Optional. Interval to run background flushing + - parameter instanceName: Optional. The name you want to call this instance + + - important: If you have more than one Mixpanel instance, it is beneficial to initialize + the instances with an instanceName. Then they can be reached by calling getInstance with name. + + - returns: returns a mixpanel instance if needed to keep throughout the project. + You can always get the instance by calling getInstance(name) + */ + @discardableResult + public class func initialize(token apiToken: String, + launchOptions: [NSObject: AnyObject]? = nil, + flushInterval: Double = 60, + instanceName: String = UUID().uuidString) -> MixpanelInstance { + return MixpanelManager.sharedInstance.initialize(token: apiToken, + launchOptions: launchOptions, + flushInterval: flushInterval, + instanceName: instanceName) + } + + /** + Gets the mixpanel instance with the given name + + - parameter name: the instance name + + - returns: returns the mixpanel instance + */ + public class func getInstance(name: String) -> MixpanelInstance? { + return MixpanelManager.sharedInstance.getInstance(name: name) + } + + /** + Returns the main instance that was initialized. + + If not specified explicitly, the main instance is always the last instance added + + - returns: returns the main Mixpanel instance + */ + public class func mainInstance() -> MixpanelInstance { + return MixpanelManager.sharedInstance.getMainInstance()! + } + + /** + Sets the main instance based on the instance name + + - parameter name: the instance name + */ + public class func setMainInstance(name: String) { + MixpanelManager.sharedInstance.setMainInstance(name: name) + } + + /** + Removes an unneeded Mixpanel instance based on its name + + - parameter name: the instance name + */ + public class func removeInstance(name: String) { + MixpanelManager.sharedInstance.removeInstance(name: name) + } + +} + +class MixpanelManager { + + static let sharedInstance = MixpanelManager() + private var instances: [String: MixpanelInstance] + private var mainInstance: MixpanelInstance? + + init() { + instances = [String: MixpanelInstance]() + Logger.addLogging(PrintLogging()) + } + + func initialize(token apiToken: String, + launchOptions: [NSObject: AnyObject]?, + flushInterval: Double, + instanceName: String) -> MixpanelInstance { + let instance = MixpanelInstance(apiToken: apiToken, + launchOptions: launchOptions, + flushInterval: flushInterval) + mainInstance = instance + instances[instanceName] = instance + + return instance + } + + func getInstance(name instanceName: String) -> MixpanelInstance? { + guard let instance = instances[instanceName] else { + Logger.warn(message: "no such instance: \(instanceName)") + return nil + } + return instance + } + + func getMainInstance() -> MixpanelInstance? { + return mainInstance + } + + func setMainInstance(name instanceName: String) { + guard let instance = instances[instanceName] else { + return + } + mainInstance = instance + } + + func removeInstance(name instanceName: String) { + instances[instanceName] = nil + } + +} diff --git a/Mixpanel/MixpanelInstance.swift b/Mixpanel/MixpanelInstance.swift new file mode 100644 index 00000000..23fd3605 --- /dev/null +++ b/Mixpanel/MixpanelInstance.swift @@ -0,0 +1,659 @@ +// +// MixpanelInstance.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/2/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +/** + * Delegate protocol for controlling the Mixpanel API's network behavior. + */ +public protocol MixpanelDelegate { + /** + Asks the delegate if data should be uploaded to the server. + + - parameter mixpanel: The mixpanel instance + + - returns: return true to upload now or false to defer until later + */ + func mixpanelWillFlush(_ mixpanel: MixpanelInstance) -> Bool +} + +public typealias Properties = [String: AnyObject] +public typealias Queue = [Properties] + +protocol AppLifecycle { + func applicationDidBecomeActive() + func applicationWillResignActive() +} + +/// The class that represents the Mixpanel Instance +public class MixpanelInstance: CustomDebugStringConvertible, FlushDelegate { + + /// The a MixpanelDelegate object that gives control over Mixpanel network activity. + public var delegate: MixpanelDelegate? + + /// distinctId string that uniquely identifies the current user. + public var distinctId = "" + + /// Accessor to the Mixpanel People API object. + public var people: People! + + /// Controls whether to show spinning network activity indicator when flushing + /// data to the Mixpanel servers. Defaults to true. + public var showNetworkActivityIndicator = true + + /// Flush timer's interval. + /// Setting a flush interval of 0 will turn off the flush timer. + public var flushInterval: Double { + set { + flushInstance.flushInterval = newValue + } + get { + return flushInstance.flushInterval + } + } + + /// Control whether the library should flush data to Mixpanel when the app + /// enters the background. Defaults to true. + public var flushOnBackground: Bool { + set { + flushInstance.flushOnBackground = newValue + } + get { + return flushInstance.flushOnBackground + } + } + + /// Controls whether to automatically send the client IP Address as part of + /// event tracking. With an IP address, the Mixpanel Dashboard will show you the users' city. + /// Defaults to true. + public var useIPAddressForGeoLocation: Bool { + set { + flushInstance.useIPAddressForGeoLocation = newValue + } + get { + return flushInstance.useIPAddressForGeoLocation + } + } + + /// The base URL used for Mixpanel API requests. + /// Useful if you need to proxy Mixpanel requests. Defaults to + /// https://api.mixpanel.com. + public var serverURL: String { + set { + BasePath.MixpanelAPI = newValue + } + get { + return BasePath.MixpanelAPI + } + } + public var debugDescription: String { + return "Mixpanel(\n" + + " Token: \(apiToken),\n" + + " Events Queue Count: \(eventsQueue.count),\n" + + " People Queue Count: \(people.peopleQueue.count),\n" + + " Distinct Id: \(distinctId)\n" + + ")" + } + + /// This allows enabling or disabling of all Mixpanel logs at run time. + /// - Note: All logging is disabled by default. Usually, this is only required + /// if you are running in to issues with the SDK and you need support. + public var loggingEnabled: Bool = false { + didSet { + if loggingEnabled { + Logger.enableLevel(.Debug) + Logger.enableLevel(.Info) + Logger.enableLevel(.Warning) + Logger.enableLevel(.Error) + + Logger.info(message: "Logging Enabled") + } else { + Logger.info(message: "Logging Disabled") + + Logger.disableLevel(.Debug) + Logger.disableLevel(.Info) + Logger.disableLevel(.Warning) + Logger.disableLevel(.Error) + } + } + } + + var apiToken = "" + var superProperties = Properties() + var eventsQueue = Queue() + var timedEvents = Properties() + var serialQueue: DispatchQueue! + var taskId = UIBackgroundTaskInvalid + let flushInstance = Flush() + let trackInstance: Track + + init(apiToken: String?, launchOptions: [NSObject: AnyObject]?, flushInterval: Double) { + if let apiToken = apiToken, !apiToken.isEmpty { + self.apiToken = apiToken + } + + trackInstance = Track(apiToken: self.apiToken) + flushInstance.delegate = self + let label = "com.mixpanel.\(self.apiToken)" + serialQueue = DispatchQueue(label: label, attributes: DispatchQueueAttributes.serial) + distinctId = defaultDistinctId() + people = People(apiToken: self.apiToken, + serialQueue: serialQueue) + flushInstance._flushInterval = flushInterval + + setupListeners() + unarchive() + + if let notification = + launchOptions?[UIApplicationLaunchOptionsRemoteNotificationKey] as? Properties { + trackPushNotification(notification, event: "$app_open") + } + } + + private func setupListeners() { + let notificationCenter = NotificationCenter.default + + trackIntegration() + setCurrentRadio() + notificationCenter.addObserver(self, + selector: #selector(setCurrentRadio), + name: .CTRadioAccessTechnologyDidChange, + object: nil) + notificationCenter.addObserver(self, + selector: #selector(applicationWillTerminate(_:)), + name: .UIApplicationWillTerminate, + object: nil) + notificationCenter.addObserver(self, + selector: #selector(applicationWillResignActive(_:)), + name: .UIApplicationWillResignActive, + object: nil) + notificationCenter.addObserver(self, + selector: #selector(applicationDidBecomeActive(_:)), + name: .UIApplicationDidBecomeActive, + object: nil) + notificationCenter.addObserver(self, + selector: #selector(applicationDidEnterBackground(_:)), + name: .UIApplicationDidEnterBackground, + object: nil) + notificationCenter.addObserver(self, + selector: #selector(applicationWillEnterForeground(_:)), + name: .UIApplicationWillEnterForeground, + object: nil) + notificationCenter.addObserver(self, + selector: #selector(appLinksNotificationRaised(_:)), + name: NSNotification.Name("com.parse.bolts.measurement_event"), + object: nil) + + } + + deinit { + NotificationCenter.default.removeObserver(self) + } + + @objc private func applicationDidBecomeActive(_ notification: Notification) { + flushInstance.applicationDidBecomeActive() + } + + @objc private func applicationWillResignActive(_ notification: Notification) { + flushInstance.applicationWillResignActive() + } + + @objc private func applicationDidEnterBackground(_ notification: Notification) { + let sharedApplication = UIApplication.shared() + + taskId = sharedApplication.beginBackgroundTask() { + self.taskId = UIBackgroundTaskInvalid + } + + + if flushOnBackground { + flush() + } + + serialQueue.async() { + self.archive() + + if self.taskId != UIBackgroundTaskInvalid { + sharedApplication.endBackgroundTask(self.taskId) + self.taskId = UIBackgroundTaskInvalid + } + } + } + + @objc private func applicationWillEnterForeground(_ notification: Notification) { + serialQueue.async() { + if self.taskId != UIBackgroundTaskInvalid { + UIApplication.shared().endBackgroundTask(self.taskId) + self.taskId = UIBackgroundTaskInvalid + self.updateNetworkActivityIndicator(false) + } + } + } + + @objc private func applicationWillTerminate(_ notification: Notification) { + serialQueue.async() { + self.archive() + } + } + + @objc private func appLinksNotificationRaised(_ notification: Notification) { + let eventMap = ["al_nav_out": "$al_nav_out", + "al_nav_in": "$al_nav_in", + "al_ref_back_out": "$al_ref_back_out"] + let userInfo = (notification as Notification).userInfo + + if let eventName = userInfo?["event_name"] as? String, + let eventArgs = userInfo?["event_args"] as? Properties, + let eventNameMap = eventMap[eventName] { + track(event: eventNameMap, properties:eventArgs) + } + } + + func defaultDistinctId() -> String { + var distinctId: String? + if NSClassFromString("UIDevice") != nil { + distinctId = UIDevice.current().identifierForVendor?.uuidString + } + + guard let distId = distinctId else { + return UUID().uuidString + } + + return distId + } + + func updateNetworkActivityIndicator(_ on: Bool) { + if showNetworkActivityIndicator { + UIApplication.shared().isNetworkActivityIndicatorVisible = on + } + } + + @objc func setCurrentRadio() { + let currentRadio = AutomaticProperties.getCurrentRadio() + serialQueue.async() { + AutomaticProperties.properties["$radio"] = currentRadio + } + } + +} + +// MARK: - Identity +extension MixpanelInstance { + + /** + Sets the distinct ID of the current user. + + Mixpanel uses the IFV String (`UIDevice.current().identifierForVendor`) + as the default distinct ID. This ID will identify a user across all apps by the same + vendor, but cannot be used to link the same user across apps from different + vendors. If we are unable to get the IFV, we will fall back to generating a + random persistent UUID + + For tracking events, you do not need to call `identify:` if you + want to use the default. However, + **Mixpanel People always requires an explicit call to `identify:`.** + If calls are made to + `set:`, `increment` or other `People` + methods prior to calling `identify:`, then they are queued up and + flushed once `identify:` is called. + + If you'd like to use the default distinct ID for Mixpanel People as well + (recommended), call `identify:` using the current distinct ID: + `mixpanelInstance.identify(mixpanelInstance.distinctId)`. + + - parameter distinctId: string that uniquely identifies the current user + */ + public func identify(distinctId: String) { + if distinctId.isEmpty { + Logger.error(message: "\(self) cannot identify blank distinct id") + return + } + + serialQueue.async() { + self.distinctId = distinctId + self.people.distinctId = distinctId + if !self.people.unidentifiedQueue.isEmpty { + for var r in self.people.unidentifiedQueue { + r["$distinct_id"] = distinctId + self.people.peopleQueue.append(r) + } + self.people.unidentifiedQueue.removeAll() + Persistence.archivePeople(self.people.peopleQueue, token: self.apiToken) + } + + self.archiveProperties() + } + } + + /** + Creates a distinctId alias from alias to the current id. + + This method is used to map an identifier called an alias to the existing Mixpanel + distinct id. This causes all events and people requests sent with the alias to be + mapped back to the original distinct id. The recommended usage pattern is to call + both createAlias: and identify: when the user signs up, and only identify: (with + their new user ID) when they log in. This will keep your signup funnels working + correctly. + + This makes the current id and 'Alias' interchangeable distinct ids. + Mixpanel. + mixpanelInstance.createAlias("Alias", mixpanelInstance.distinctId) + + - precondition: You must call identify if you haven't already + (e.g. when your app launches) + + - parameter alias: the new distinct id that should represent the original + - parameter distinctId: the old distinct id that alias will be mapped to + */ + public func createAlias(_ alias: String, distinctId: String) { + if distinctId.isEmpty { + Logger.error(message: "\(self) cannot identify blank distinct id") + return + } + + if alias.isEmpty { + Logger.error(message: "\(self) create alias called with empty alias") + return + } + + let properties = ["distinct_id": distinctId, "alias": alias] + track(event: "$create_alias", + properties: properties) + flush() + } + + /** + Clears all stored properties including the distinct Id. + Useful if your app's user logs out. + */ + public func reset() { + serialQueue.async() { + self.distinctId = self.defaultDistinctId() + self.superProperties = Properties() + self.eventsQueue = Queue() + self.timedEvents = Properties() + self.people.distinctId = nil + self.people.peopleQueue = Queue() + self.people.unidentifiedQueue = Queue() + self.archive() + } + } +} + +// MARK: - Persistence +extension MixpanelInstance { + + /** + Writes current project info including the distinct Id, super properties, + and pending event and People record queues to disk. + + This state will be recovered when the app is launched again if the Mixpanel + library is initialized with the same project token. + The library listens for app state changes and handles + persisting data as needed. + + - important: You do not need to call this method.** + */ + public func archive() { + let properties = ArchivedProperties(superProperties: superProperties, + timedEvents: timedEvents, + distinctId: distinctId, + peopleDistinctId: people.distinctId, + peopleUnidentifiedQueue: people.unidentifiedQueue) + Persistence.archive(eventsQueue, + peopleQueue: people.peopleQueue, + properties: properties, + token: self.apiToken) + } + + func unarchive() { + (eventsQueue, + people.peopleQueue, + superProperties, + timedEvents, + distinctId, + people.distinctId, + people.unidentifiedQueue) = Persistence.unarchive(token: self.apiToken) + + if distinctId == "" { + distinctId = defaultDistinctId() + } + } + + func archiveProperties() { + let properties = ArchivedProperties(superProperties: superProperties, + timedEvents: timedEvents, + distinctId: distinctId, + peopleDistinctId: people.distinctId, + peopleUnidentifiedQueue: people.unidentifiedQueue) + Persistence.archiveProperties(properties, token: self.apiToken) + } + + func trackIntegration() { + let defaultsKey = "trackedKey" + if !UserDefaults.standard.bool(forKey: defaultsKey) { + serialQueue.async() { + Network.trackIntegration(apiToken: self.apiToken) { + (success) in + if success { + UserDefaults.standard.set(true, forKey: defaultsKey) + UserDefaults.standard.synchronize() + } + } + } + } + } +} + +// MARK: - Flush +extension MixpanelInstance { + + /** + Uploads queued data to the Mixpanel server. + + By default, queued data is flushed to the Mixpanel servers every minute (the + default for `flushInterval`), and on background (since + `flushOnBackground` is on by default). You only need to call this + method manually if you want to force a flush at a particular moment. + + - parameter completion: an optional completion handler for when the flush has completed. + */ + public func flush(completion: (() -> Void)? = nil) { + serialQueue.async() { + if let shouldFlush = self.delegate?.mixpanelWillFlush(self), !shouldFlush { + return + } + + self.flushInstance.flushEventsQueue(&self.eventsQueue) + self.flushInstance.flushPeopleQueue(&self.people.peopleQueue) + self.archive() + + if let completion = completion { + DispatchQueue.main.async(execute: completion) + } + } + } +} + +// MARK: - Track +extension MixpanelInstance { + + /** + Tracks an event with properties. + Properties are optional and can be added only if needed. + + Properties will allow you to segment your events in your Mixpanel reports. + Property keys must be String objects and the supported value types are: + String, Int, UInt, Double, Float, [AnyObject], [String: AnyObject], Date, URL, and NSNull. + If the event is being timed, the timer will stop and be added as a property. + + - parameter event: event name + - parameter properties: properties dictionary + */ + public func track(event: String?, properties: Properties? = nil) { + let epochInterval = Date().timeIntervalSince1970 + serialQueue.async() { + self.trackInstance.track(event: event, + properties: properties, + eventsQueue: &self.eventsQueue, + timedEvents: &self.timedEvents, + superProperties: self.superProperties, + distinctId: self.distinctId, + epochInterval: epochInterval) + + Persistence.archiveEvents(self.eventsQueue, token: self.apiToken) + } + } + + /** + Track a push notification using its payload sent from Mixpanel. + + To simplify user interaction tracking, Mixpanel + automatically sends IDs for the relevant notification of each push. + This method parses the standard payload and queues a track call using this information. + + - parameter userInfo: remote notification payload dictionary + - parameter event: optional, and usually shouldn't be used, + unless the results is needed to be tracked elsewhere. + */ + public func trackPushNotification(_ userInfo: [NSObject: AnyObject], + event: String = "$campaign_received") { + if let mpPayload = userInfo["mp"] as? Properties { + if let m = mpPayload["m"], let c = mpPayload["c"] { + let properties = ["campaign_id": c, + "message_id": m, + "message_type": "push"] + self.track(event: event, + properties: properties) + } else { + Logger.info(message: "malformed mixpanel push payload") + } + } + } + + /** + Starts a timer that will be stopped and added as a property when a + corresponding event is tracked. + + This method is intended to be used in advance of events that have + a duration. For example, if a developer were to track an "Image Upload" event + she might want to also know how long the upload took. Calling this method + before the upload code would implicitly cause the `track` + call to record its duration. + + - precondition: + // begin timing the image upload: + mixpanelInstance.time(event:"Image Upload") + // upload the image: + self.uploadImageWithSuccessHandler() { _ in + // track the event + mixpanelInstance.track("Image Upload") + } + + - parameter event: the event name to be timed + + */ + public func time(event: String) { + let startTime = Date().timeIntervalSince1970 + serialQueue.async() { + self.trackInstance.time(event: event, timedEvents: &self.timedEvents, startTime: startTime) + } + } + + /** + Clears all current event timers. + */ + public func clearTimedEvents() { + serialQueue.async() { + self.trackInstance.clearTimedEvents(&self.timedEvents) + } + } + + /** + Returns the currently set super properties. + + - returns: the current super properties + */ + public func currentSuperProperties() -> Properties { + return superProperties + } + + /** + Clears all currently set super properties. + */ + public func clearSuperProperties() { + dispatchAndTrack() { + self.trackInstance.clearSuperProperties(&self.superProperties) + } + } + + /** + Registers super properties, overwriting ones that have already been set. + + Super properties, once registered, are automatically sent as properties for + all event tracking calls. They save you having to maintain and add a common + set of properties to your events. + Property keys must be String objects and the supported value types are: + String, Int, UInt, Double, Float, [AnyObject], [String: AnyObject], Date, URL, and NSNull. + + - parameter properties: properties dictionary + */ + public func registerSuperProperties(_ properties: Properties) { + dispatchAndTrack() { + self.trackInstance.registerSuperProperties(properties, + superProperties: &self.superProperties) + } + } + + /** + Registers super properties without overwriting ones that have already been set, + unless the existing value is equal to defaultValue. defaultValue is optional. + + Property keys must be String objects and the supported value types are: + String, Int, UInt, Double, Float, [AnyObject], [String: AnyObject], Date, URL, and NSNull. + + - parameter properties: properties dictionary + - parameter defaultValue: Optional. overwrite existing properties that have this value + */ + public func registerSuperPropertiesOnce(_ properties: Properties, + defaultValue: AnyObject? = nil) { + dispatchAndTrack() { + self.trackInstance.registerSuperPropertiesOnce(properties, + superProperties: &self.superProperties, + defaultValue: defaultValue) + } + + } + + /** + Removes a previously registered super property. + + As an alternative to clearing all properties, unregistering specific super + properties prevents them from being recorded on future events. This operation + does not affect the value of other super properties. Any property name that is + not registered is ignored. + Note that after removing a super property, events will show the attribute as + having the value `undefined` in Mixpanel until a new value is + registered. + + - parameter propertyName: array of property name strings to remove + */ + public func unregisterSuperProperty(_ propertyName: String) { + dispatchAndTrack() { + self.trackInstance.unregisterSuperProperty(propertyName, + superProperties: &self.superProperties) + } + } + + func dispatchAndTrack(closure: () -> ()) { + serialQueue.async() { + closure() + self.archiveProperties() + } + } +} diff --git a/Mixpanel/Network.swift b/Mixpanel/Network.swift new file mode 100644 index 00000000..75d77baa --- /dev/null +++ b/Mixpanel/Network.swift @@ -0,0 +1,143 @@ +// +// Network.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/2/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + + +struct BasePath { + static var MixpanelAPI = "https://api.mixpanel.com" + + static func buildURL(base: String, path: String) -> URL? { + guard let url = try? URL(string: base)?.appendingPathComponent(path) else { + return nil + } + + guard let urlUnwrapped = url else { + return nil + } + + return urlUnwrapped + } + +} + +enum Method: String { + case GET + case POST +} + +struct Resource { + let path: String + let method: Method + let requestBody: Data? + let headers: [String:String] + let parse: (Data) -> A? +} + +enum Reason { + case ParseError + case NoData + case NotOKStatusCode(statusCode: Int) + case Other(NSError) +} + +class Network { + + class func apiRequest(base: String, + resource: Resource, + failure: (Reason, Data?, URLResponse?) -> (), + success: (A, URLResponse?) -> ()) { + guard let request = buildURLRequest(base, resource: resource) else { + return + } + + let session = URLSession.shared + session.dataTask(with: request) { (data, response, error) -> Void in + guard let httpResponse = response as? HTTPURLResponse else { + failure(Reason.Other(error!), data, response) + return + } + guard httpResponse.statusCode == 200 else { + failure(Reason.NotOKStatusCode(statusCode: httpResponse.statusCode), data, response) + return + } + guard let responseData = data else { + failure(Reason.NoData, data, response) + return + } + guard let result = resource.parse(responseData) else { + failure(Reason.ParseError, data, response) + return + } + + success(result, response) + }.resume() + } + + private class func buildURLRequest(_ base: String, resource: Resource) -> URLRequest? { + guard let url = BasePath.buildURL(base: base, path: resource.path) else { + return nil + } + + var request = URLRequest(url: url) + request.httpMethod = resource.method.rawValue + request.httpBody = resource.requestBody + + for (k, v) in resource.headers { + request.setValue(v, forHTTPHeaderField: k) + } + return request as URLRequest + } + + class func buildResource(path: String, + method: Method, + requestBody: Data?, + headers: [String: String], + parse: (Data) -> A?) -> Resource { + return Resource(path: path, method: method, requestBody: requestBody, headers: headers, parse: parse) + } + + class func trackIntegration(apiToken: String, completion: (Bool) -> ()) { + let requestData = JSONHandler.encodeAPIData([["event": "Integration", + "properties": ["token": "85053bf24bba75239b16a601d9387e17", + "mp_lib": "swift", + "version": "3.0", + "distinct_id": apiToken]]]) + + let responseParser: (Data) -> Int? = { data in + let response = String(data: data, encoding: String.Encoding.utf8) + if let response = response { + return Int(response) ?? 0 + } + return nil + } + + if let requestData = requestData { + let requestBody = "ip=1&data=\(requestData)" + .data(using: String.Encoding.utf8) + + let resource = Network.buildResource(path: FlushType.Events.rawValue, + method: Method.POST, + requestBody: requestBody, + headers: ["Accept-Encoding": "gzip"], + parse: responseParser) + + Network.apiRequest(base: BasePath.MixpanelAPI, + resource: resource, + failure: { (reason, data, response) in + Logger.debug(message: "failed to track integration") + completion(false) + }, + success: { (result, response) in + Logger.debug(message: "integration tracked") + completion(true) + } + ) + } + } +} diff --git a/Mixpanel/People.swift b/Mixpanel/People.swift new file mode 100644 index 00000000..7b3c438c --- /dev/null +++ b/Mixpanel/People.swift @@ -0,0 +1,291 @@ +// +// People.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/5/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +/// Access to the Mixpanel People API, available as an accessible variable from +/// the main Mixpanel instance. +public class People { + + /// controls the $ignore_time property in any subsequent MixpanelPeople operation. + /// If the $ignore_time property is present and true in your request, + /// Mixpanel will not automatically update the "Last Seen" property of the profile. + /// Otherwise, Mixpanel will add a "Last Seen" property associated with the + /// current time for all $set, $append, and $add operations + public var ignoreTime = false + + let apiToken: String + let serialQueue: DispatchQueue + var peopleQueue = Queue() + var unidentifiedQueue = Queue() + var distinctId: String? = nil + + init(apiToken: String, serialQueue: DispatchQueue) { + self.apiToken = apiToken + self.serialQueue = serialQueue + } + + func addPeopleRecordToQueueWithAction(_ action: String, properties: Properties) { + let epochMilliseconds = round(Date().timeIntervalSince1970 * 1000) + let ignoreTimeCopy = ignoreTime + + serialQueue.async() { + var r = Properties() + var p = Properties() + r["$token"] = self.apiToken + r["$time"] = epochMilliseconds + if ignoreTimeCopy { + r["$ignore_time"] = Int(ignoreTimeCopy) + } + if action == "$unset" { + // $unset takes an array of property names which is supplied to this method + // in the properties parameter under the key "$properties" + r[action] = properties["$properties"] + } else { + if action == "$set" || action == "$set_once" { + p += AutomaticProperties.peopleProperties + } + p += properties + r[action] = p + } + + if let distinctId = self.distinctId { + r["$distinct_id"] = distinctId + self.addPeopleObject(r) + } else { + self.unidentifiedQueue.append(r) + if self.unidentifiedQueue.count > QueueConstants.queueSize { + self.unidentifiedQueue.remove(at: 0) + } + } + Persistence.archivePeople(self.peopleQueue, token: self.apiToken) + } + } + + func addPeopleObject(_ r: Properties) { + peopleQueue.append(r) + if peopleQueue.count > QueueConstants.queueSize { + peopleQueue.remove(at: 0) + } + } + + func merge(properties: Properties) { + addPeopleRecordToQueueWithAction("$merge", properties: properties) + } + + private func deviceTokenDataToString(_ deviceToken: Data) -> String { + let tokenChars = UnsafePointer((deviceToken as NSData).bytes) + var tokenString = "" + + for i in 0.. String? { + return filePathFor(type.rawValue, token: token) + } + + class private func filePathFor(_ archiveType: String, token: String) -> String? { + let filename = "mixpanel-\(token)-\(archiveType)" + let manager = FileManager.default + let url = manager.urlsForDirectory(.libraryDirectory, inDomains: .userDomainMask).last + + guard let urlUnwrapped = try? url?.appendingPathComponent(filename).path else { + return nil + } + + return urlUnwrapped + } + + class func archive(_ eventsQueue: Queue, + peopleQueue: Queue, + properties: ArchivedProperties, + token: String) { + archiveEvents(eventsQueue, token: token) + archivePeople(peopleQueue, token: token) + archiveProperties(properties, token: token) + } + + class func archiveEvents(_ eventsQueue: Queue, token: String) { + archiveToFile(.Events, object: eventsQueue, token: token) + } + + class func archivePeople(_ peopleQueue: Queue, token: String) { + archiveToFile(.People, object: peopleQueue, token: token) + } + + class func archiveProperties(_ properties: ArchivedProperties, token: String) { + var p: Properties = Properties() + p["distinctId"] = properties.distinctId + p["superProperties"] = properties.superProperties + p["peopleDistinctId"] = properties.peopleDistinctId + p["peopleUnidentifiedQueue"] = properties.peopleUnidentifiedQueue + p["timedEvents"] = properties.timedEvents + archiveToFile(.Properties, object: p, token: token) + } + + class private func archiveToFile(_ type: ArchiveType, object: AnyObject, token: String) { + let filePath = filePathWithType(type, token: token) + guard let path = filePath else { + Logger.error(message: "bad file path, cant fetch file") + return + } + + if !NSKeyedArchiver.archiveRootObject(object, toFile: path) { + Logger.error(message: "failed to archive \(type.rawValue)") + } + + } + + class func unarchive(token: String) -> (eventsQueue: Queue, + peopleQueue: Queue, + superProperties: Properties, + timedEvents: Properties, + distinctId: String, + peopleDistinctId: String?, + peopleUnidentifiedQueue: Queue) { + let eventsQueue = unarchiveEvents(token: token) + let peopleQueue = unarchivePeople(token: token) + + let (superProperties, + timedEvents, + distinctId, + peopleDistinctId, + peopleUnidentifiedQueue) = unarchiveProperties(token: token) + + return (eventsQueue, + peopleQueue, + superProperties, + timedEvents, + distinctId, + peopleDistinctId, + peopleUnidentifiedQueue) + } + + class private func unarchiveWithFilePath(_ filePath: String) -> AnyObject? { + let unarchivedData: AnyObject? = NSKeyedUnarchiver.unarchiveObject(withFile: filePath) + if unarchivedData == nil { + do { + try FileManager.default.removeItem(atPath: filePath) + } catch { + Logger.info(message: "Unable to remove file at path: \(filePath)") + } + } + + return unarchivedData + } + + class private func unarchiveEvents(token: String) -> Queue { + return unarchiveWithType(.Events, token: token) as? Queue ?? [] + } + + class private func unarchivePeople(token: String) -> Queue { + return unarchiveWithType(.People, token: token) as? Queue ?? [] + } + + class private func unarchiveProperties(token: String) -> (Properties, Properties, String, String?, Queue) { + let properties = unarchiveWithType(.Properties, token: token) as? Properties + let superProperties = + properties?["superProperties"] as? Properties ?? Properties() + let timedEvents = + properties?["timedEvents"] as? Properties ?? Properties() + let distinctId = + properties?["distinctId"] as? String ?? "" + let peopleDistinctId = + properties?["peopleDistinctId"] as? String ?? nil + let peopleUnidentifiedQueue = + properties?["peopleUnidentifiedQueue"] as? Queue ?? Queue() + + return (superProperties, + timedEvents, + distinctId, + peopleDistinctId, + peopleUnidentifiedQueue) + } + + class private func unarchiveWithType(_ type: ArchiveType, token: String) -> AnyObject? { + let filePath = filePathWithType(type, token: token) + guard let path = filePath else { + Logger.info(message: "bad file path, cant fetch file") + return nil + } + + guard let unarchivedData = unarchiveWithFilePath(path) else { + Logger.info(message: "can't unarchive file") + return nil + } + + return unarchivedData + } + +} diff --git a/Mixpanel/PrintLogging.swift b/Mixpanel/PrintLogging.swift new file mode 100644 index 00000000..b1c8d4a9 --- /dev/null +++ b/Mixpanel/PrintLogging.swift @@ -0,0 +1,24 @@ +// +// PrintLogging.swift +// MPLogger +// +// Created by Sam Green on 7/8/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +/// Simply formats and prints the object by calling `print` +class PrintLogging: Logging { + func addMessage(message: LogMessage) { + print("[Mixpanel - \(message.file) - func \(message.function)] (\(message.level.rawValue)) - \(message.text)") + } +} + +/// Simply formats and prints the object by calling `debugPrint`, this makes things a bit easier if you +/// need to print data that may be quoted for instance. +class PrintDebugLogging: Logging { + func addMessage(message: LogMessage) { + debugPrint("[Mixpanel - \(message.file) - func \(message.function)] (\(message.level.rawValue)) - \(message.text)") + } +} diff --git a/Mixpanel/Track.swift b/Mixpanel/Track.swift new file mode 100644 index 00000000..31d53a22 --- /dev/null +++ b/Mixpanel/Track.swift @@ -0,0 +1,118 @@ +// +// Track.swift +// Mixpanel +// +// Created by Yarden Eitan on 6/3/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation + +func += (left: inout [K:V], right: [K:V]) { + for (k, v) in right { + left.updateValue(v, forKey: k) + } +} + +class Track { + let apiToken: String + + init(apiToken: String) { + self.apiToken = apiToken + } + + class func assertPropertyTypes(_ properties: Properties?) { + if let properties = properties { + for (_, v) in properties { + MPAssert( + v is String || + v is Int || + v is UInt || + v is Double || + v is Float || + v is [AnyObject] || + v is [String: AnyObject] || + v is Date || + v is URL || + v is NSNull, + "Property values must be of valid type. Got \(v.dynamicType)") + } + } + } + + func track(event: String?, + properties: Properties? = nil, + eventsQueue: inout Queue, + timedEvents: inout Properties, + superProperties: Properties, + distinctId: String, + epochInterval: Double) { + var ev = event + if ev == nil || ev!.characters.isEmpty { + Logger.info(message: "mixpanel track called with empty event parameter. using 'mp_event'") + ev = "mp_event" + } + + Track.assertPropertyTypes(properties) + let epochSeconds = Int(round(epochInterval)) + let eventStartTime = timedEvents[ev!] as? Double + var p = Properties() + p += AutomaticProperties.properties + p["token"] = apiToken + p["time"] = epochSeconds + if let eventStartTime = eventStartTime { + timedEvents.removeValue(forKey: ev!) + p["$duration"] = Double(String(format: "%.3f", epochInterval - eventStartTime)) + } + p["distinct_id"] = distinctId + p += superProperties + if let properties = properties { + p += properties + } + + let trackEvent: Properties = ["event": ev!, "properties": p] + eventsQueue.append(trackEvent) + + if eventsQueue.count > QueueConstants.queueSize { + eventsQueue.remove(at: 0) + } + } + + func registerSuperProperties(_ properties: Properties, superProperties: inout Properties) { + Track.assertPropertyTypes(properties) + superProperties += properties + } + + func registerSuperPropertiesOnce(_ properties: Properties, + superProperties: inout Properties, + defaultValue: AnyObject?) { + Track.assertPropertyTypes(properties) + _ = properties.map() { + let val = superProperties[$0.key] + if val == nil || + (defaultValue != nil && (val as? NSObject == defaultValue as? NSObject)) { + superProperties[$0.key] = $0.value + } + } + } + + func unregisterSuperProperty(_ propertyName: String, superProperties: inout Properties) { + superProperties.removeValue(forKey: propertyName) + } + + func clearSuperProperties(_ superProperties: inout Properties) { + superProperties.removeAll() + } + + func time(event: String?, timedEvents: inout Properties, startTime: Double) { + guard let event = event, !event.isEmpty else { + Logger.error(message: "mixpanel cannot time an empty event") + return + } + timedEvents[event] = startTime + } + + func clearTimedEvents(_ timedEvents: inout Properties) { + timedEvents.removeAll() + } +} diff --git a/MixpanelDemo/.gitignore b/MixpanelDemo/.gitignore new file mode 100644 index 00000000..4f306783 --- /dev/null +++ b/MixpanelDemo/.gitignore @@ -0,0 +1,2 @@ +Podfile.lock +Pods diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c new file mode 100644 index 00000000..469efa4b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c @@ -0,0 +1 @@ + const unsigned char MixpanelVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Mixpanel PROJECT:Mixpanel-1" "\n"; const double MixpanelVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-all-target-headers.hmap new file mode 100644 index 00000000..07af1f94 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap new file mode 100644 index 00000000..67fb9ba7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel.hmap new file mode 100644 index 00000000..036b6b47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Mixpanel.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.d new file mode 100644 index 00000000..4ae41971 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o new file mode 100644 index 00000000..1a72f11d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.swiftdeps new file mode 100644 index 00000000..9e4eea07 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.swiftdeps @@ -0,0 +1,492 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AutomaticProperties" +provides-nominal: +- "C8Mixpanel19AutomaticProperties" +provides-member: +- ["C8Mixpanel19AutomaticProperties", ""] +provides-dynamic-lookup: +depends-top-level: +- "CTTelephonyNetworkInfo" +- "UIScreen" +- "StringLiteralType" +- !private "==" +- !private "UnsafePointer" +- "UIDevice" +- "String" +- "Properties" +- !private "utsname" +- "AutomaticProperties" +- "Int" +- "NSBundle" +- !private "CChar" +- !private "uname" +- !private "NSString" +- !private "withUnsafeMutablePointer" +depends-member: +- ["Ps9AnyObject", "AutomaticProperties"] +- ["Ps9AnyObject", "CTTelephonyNetworkInfo"] +- ["Ps9AnyObject", "Int"] +- ["Ps9AnyObject", "NSBundle"] +- ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "String"] +- ["Ps9AnyObject", "UIDevice"] +- ["Ps9AnyObject", "UIScreen"] +- !private ["Ps9AnyObject", "UnsafePointer"] +- ["Ps9AnyObject", "bounds"] +- ["Ps9AnyObject", "carrierName"] +- !private ["Ps9AnyObject", "characters"] +- ["Ps9AnyObject", "currentDevice"] +- !private ["Ps9AnyObject", "currentRadioAccessTechnology"] +- ["Ps9AnyObject", "deinit"] +- ["Ps9AnyObject", "deviceModel"] +- !private ["Ps9AnyObject", "fromCString"] +- !private ["Ps9AnyObject", "hasPrefix"] +- ["Ps9AnyObject", "infoDictionary"] +- ["Ps9AnyObject", "init"] +- ["Ps9AnyObject", "libVersion"] +- ["Ps9AnyObject", "mainBundle"] +- ["Ps9AnyObject", "mainScreen"] +- ["Ps9AnyObject", "subscriberCellularProvider"] +- !private ["Ps9AnyObject", "substringFromIndex"] +- ["Ps9AnyObject", "systemName"] +- ["Ps9AnyObject", "systemVersion"] +- ["Ps9AnyObject", "telephonyInfo"] +- !private ["Ps9AnyObject", "uname"] +- !private ["Ps9AnyObject", "utsname"] +- !private ["Ps9AnyObject", "withUnsafeMutablePointer"] +- ["Ps9AnyObject", ""] +- ["C8Mixpanel19AutomaticProperties", "AutomaticProperties"] +- !private ["C8Mixpanel19AutomaticProperties", "CChar"] +- ["C8Mixpanel19AutomaticProperties", "CTTelephonyNetworkInfo"] +- ["C8Mixpanel19AutomaticProperties", "Int"] +- ["C8Mixpanel19AutomaticProperties", "NSBundle"] +- !private ["C8Mixpanel19AutomaticProperties", "NSString"] +- ["C8Mixpanel19AutomaticProperties", "Properties"] +- ["C8Mixpanel19AutomaticProperties", "String"] +- ["C8Mixpanel19AutomaticProperties", "UIDevice"] +- ["C8Mixpanel19AutomaticProperties", "UIScreen"] +- !private ["C8Mixpanel19AutomaticProperties", "UnsafePointer"] +- ["C8Mixpanel19AutomaticProperties", "deinit"] +- ["C8Mixpanel19AutomaticProperties", "deviceModel"] +- ["C8Mixpanel19AutomaticProperties", "getCurrentRadio"] +- ["C8Mixpanel19AutomaticProperties", "init"] +- ["C8Mixpanel19AutomaticProperties", "libVersion"] +- ["C8Mixpanel19AutomaticProperties", "peopleProperties"] +- ["C8Mixpanel19AutomaticProperties", "properties"] +- ["C8Mixpanel19AutomaticProperties", "telephonyInfo"] +- !private ["C8Mixpanel19AutomaticProperties", "uname"] +- !private ["C8Mixpanel19AutomaticProperties", "utsname"] +- !private ["C8Mixpanel19AutomaticProperties", "withUnsafeMutablePointer"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["VSC6CGRect", "size"] +- ["VSC6CGSize", "height"] +- ["VSC6CGSize", "width"] +- ["CSo9CTCarrier", "carrierName"] +- !private ["CSo22CTTelephonyNetworkInfo", "currentRadioAccessTechnology"] +- ["CSo22CTTelephonyNetworkInfo", "init"] +- ["CSo22CTTelephonyNetworkInfo", "subscriberCellularProvider"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- ["Ps11CVarArgType", "bounds"] +- ["Ps11CVarArgType", "carrierName"] +- !private ["Ps11CVarArgType", "characters"] +- ["Ps11CVarArgType", "currentDevice"] +- !private ["Ps11CVarArgType", "currentRadioAccessTechnology"] +- !private ["Ps11CVarArgType", "fromCString"] +- !private ["Ps11CVarArgType", "hasPrefix"] +- ["Ps11CVarArgType", "infoDictionary"] +- ["Ps11CVarArgType", "init"] +- ["Ps11CVarArgType", "mainBundle"] +- ["Ps11CVarArgType", "mainScreen"] +- ["Ps11CVarArgType", "subscriberCellularProvider"] +- !private ["Ps11CVarArgType", "substringFromIndex"] +- ["Ps11CVarArgType", "systemName"] +- ["Ps11CVarArgType", "systemVersion"] +- !private ["VSS13CharacterView", "Generator"] +- !private ["VSS13CharacterView", "Index"] +- !private ["VSS13CharacterView", "SubSequence"] +- !private ["VSS13CharacterView", "count"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- ["Ps14CollectionType", "SubSequence"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- ["Ps14CollectionType", "init"] +- ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "characters"] +- !private ["Ps10Comparable", "fromCString"] +- !private ["Ps10Comparable", "hasPrefix"] +- ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "bounds"] +- ["Ps28CustomDebugStringConvertible", "carrierName"] +- !private ["Ps28CustomDebugStringConvertible", "characters"] +- ["Ps28CustomDebugStringConvertible", "currentDevice"] +- !private ["Ps28CustomDebugStringConvertible", "currentRadioAccessTechnology"] +- !private ["Ps28CustomDebugStringConvertible", "fromCString"] +- !private ["Ps28CustomDebugStringConvertible", "hasPrefix"] +- ["Ps28CustomDebugStringConvertible", "infoDictionary"] +- ["Ps28CustomDebugStringConvertible", "init"] +- ["Ps28CustomDebugStringConvertible", "mainBundle"] +- ["Ps28CustomDebugStringConvertible", "mainScreen"] +- ["Ps28CustomDebugStringConvertible", "subscriberCellularProvider"] +- ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "substringFromIndex"] +- ["Ps28CustomDebugStringConvertible", "systemName"] +- ["Ps28CustomDebugStringConvertible", "systemVersion"] +- ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- ["Ps23CustomStringConvertible", "bounds"] +- ["Ps23CustomStringConvertible", "carrierName"] +- !private ["Ps23CustomStringConvertible", "characters"] +- ["Ps23CustomStringConvertible", "currentDevice"] +- !private ["Ps23CustomStringConvertible", "currentRadioAccessTechnology"] +- !private ["Ps23CustomStringConvertible", "fromCString"] +- !private ["Ps23CustomStringConvertible", "hasPrefix"] +- ["Ps23CustomStringConvertible", "infoDictionary"] +- ["Ps23CustomStringConvertible", "init"] +- ["Ps23CustomStringConvertible", "mainBundle"] +- ["Ps23CustomStringConvertible", "mainScreen"] +- ["Ps23CustomStringConvertible", "subscriberCellularProvider"] +- ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "substringFromIndex"] +- ["Ps23CustomStringConvertible", "systemName"] +- ["Ps23CustomStringConvertible", "systemVersion"] +- ["Vs10Dictionary", "Index"] +- ["Vs10Dictionary", "deinit"] +- ["Vs10Dictionary", "init"] +- ["Vs10Dictionary", "subscript"] +- ["Ps28DictionaryLiteralConvertible", "Index"] +- ["Ps28DictionaryLiteralConvertible", "init"] +- ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- ["Ps9Equatable", "bounds"] +- ["Ps9Equatable", "carrierName"] +- !private ["Ps9Equatable", "characters"] +- ["Ps9Equatable", "currentDevice"] +- !private ["Ps9Equatable", "currentRadioAccessTechnology"] +- !private ["Ps9Equatable", "fromCString"] +- !private ["Ps9Equatable", "hasPrefix"] +- ["Ps9Equatable", "height"] +- ["Ps9Equatable", "infoDictionary"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "mainBundle"] +- ["Ps9Equatable", "mainScreen"] +- ["Ps9Equatable", "size"] +- ["Ps9Equatable", "subscriberCellularProvider"] +- !private ["Ps9Equatable", "substringFromIndex"] +- ["Ps9Equatable", "systemName"] +- ["Ps9Equatable", "systemVersion"] +- ["Ps9Equatable", "width"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "characters"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "fromCString"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "hasPrefix"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "substringFromIndex"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- ["Ps16ForwardIndexType", "init"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- ["Ps8Hashable", "bounds"] +- ["Ps8Hashable", "carrierName"] +- !private ["Ps8Hashable", "characters"] +- ["Ps8Hashable", "currentDevice"] +- !private ["Ps8Hashable", "currentRadioAccessTechnology"] +- !private ["Ps8Hashable", "fromCString"] +- !private ["Ps8Hashable", "hasPrefix"] +- ["Ps8Hashable", "infoDictionary"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "mainBundle"] +- ["Ps8Hashable", "mainScreen"] +- ["Ps8Hashable", "subscriberCellularProvider"] +- !private ["Ps8Hashable", "substringFromIndex"] +- ["Ps8Hashable", "systemName"] +- ["Ps8Hashable", "systemVersion"] +- !private ["VVSS13CharacterView5Index", "Distance"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- ["Ps9Indexable", "init"] +- ["Ps9Indexable", "subscript"] +- ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- ["Si", "deinit"] +- ["Si", "init"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "characters"] +- !private ["Ps14MirrorPathType", "fromCString"] +- !private ["Ps14MirrorPathType", "hasPrefix"] +- ["Ps14MirrorPathType", "init"] +- ["CSo8NSBundle", "infoDictionary"] +- !private ["CSo8NSBundle", "init"] +- ["CSo8NSBundle", "mainBundle"] +- !private ["PSo8NSCoding", "characters"] +- !private ["PSo8NSCoding", "fromCString"] +- !private ["PSo8NSCoding", "hasPrefix"] +- !private ["PSo8NSCoding", "substringFromIndex"] +- !private ["PSo9NSCopying", "characters"] +- !private ["PSo9NSCopying", "fromCString"] +- !private ["PSo9NSCopying", "hasPrefix"] +- !private ["PSo9NSCopying", "substringFromIndex"] +- !private ["PSo16NSMutableCopying", "characters"] +- !private ["PSo16NSMutableCopying", "fromCString"] +- !private ["PSo16NSMutableCopying", "hasPrefix"] +- !private ["PSo16NSMutableCopying", "substringFromIndex"] +- ["CSo8NSObject", "bounds"] +- ["CSo8NSObject", "carrierName"] +- !private ["CSo8NSObject", "characters"] +- ["CSo8NSObject", "currentDevice"] +- !private ["CSo8NSObject", "currentRadioAccessTechnology"] +- !private ["CSo8NSObject", "fromCString"] +- !private ["CSo8NSObject", "hasPrefix"] +- ["CSo8NSObject", "infoDictionary"] +- ["CSo8NSObject", "init"] +- ["CSo8NSObject", "mainBundle"] +- ["CSo8NSObject", "mainScreen"] +- ["CSo8NSObject", "subscriberCellularProvider"] +- !private ["CSo8NSObject", "substringFromIndex"] +- ["CSo8NSObject", "systemName"] +- ["CSo8NSObject", "systemVersion"] +- ["PSo16NSObjectProtocol", "bounds"] +- ["PSo16NSObjectProtocol", "carrierName"] +- !private ["PSo16NSObjectProtocol", "characters"] +- ["PSo16NSObjectProtocol", "currentDevice"] +- !private ["PSo16NSObjectProtocol", "currentRadioAccessTechnology"] +- !private ["PSo16NSObjectProtocol", "fromCString"] +- !private ["PSo16NSObjectProtocol", "hasPrefix"] +- ["PSo16NSObjectProtocol", "infoDictionary"] +- ["PSo16NSObjectProtocol", "init"] +- ["PSo16NSObjectProtocol", "mainBundle"] +- ["PSo16NSObjectProtocol", "mainScreen"] +- ["PSo16NSObjectProtocol", "subscriberCellularProvider"] +- !private ["PSo16NSObjectProtocol", "substringFromIndex"] +- ["PSo16NSObjectProtocol", "systemName"] +- ["PSo16NSObjectProtocol", "systemVersion"] +- !private ["PSo14NSSecureCoding", "characters"] +- !private ["PSo14NSSecureCoding", "fromCString"] +- !private ["PSo14NSSecureCoding", "hasPrefix"] +- !private ["PSo14NSSecureCoding", "substringFromIndex"] +- !private ["CSo8NSString", "characters"] +- !private ["CSo8NSString", "fromCString"] +- !private ["CSo8NSString", "hasPrefix"] +- !private ["CSo8NSString", "substringFromIndex"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps21NilLiteralConvertible", "init"] +- ["Sq", "Some"] +- ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "characters"] +- !private ["Ps16OutputStreamType", "fromCString"] +- !private ["Ps16OutputStreamType", "hasPrefix"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- ["Ps12SequenceType", "SubSequence"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- ["Ps12SequenceType", "init"] +- ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- ["Ps16SignedNumberType", "init"] +- ["Vs5Slice", "Generator"] +- ["Vs5Slice", "Index"] +- ["Vs5Slice", "SubSequence"] +- ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "characters"] +- !private ["Ps10Streamable", "fromCString"] +- !private ["Ps10Streamable", "hasPrefix"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- ["Ps10Strideable", "init"] +- !private ["SS", "characters"] +- ["SS", "deinit"] +- !private ["SS", "fromCString"] +- !private ["SS", "hasPrefix"] +- !private ["Ps30StringInterpolationConvertible", "characters"] +- !private ["Ps30StringInterpolationConvertible", "fromCString"] +- !private ["Ps30StringInterpolationConvertible", "hasPrefix"] +- !private ["Ps24StringLiteralConvertible", "characters"] +- !private ["Ps24StringLiteralConvertible", "fromCString"] +- !private ["Ps24StringLiteralConvertible", "hasPrefix"] +- !private ["Ps24StringLiteralConvertible", "substringFromIndex"] +- ["CSo8UIDevice", "currentDevice"] +- ["CSo8UIDevice", "systemName"] +- ["CSo8UIDevice", "systemVersion"] +- ["CSo8UIScreen", "bounds"] +- ["CSo8UIScreen", "mainScreen"] +- ["PSo18UITraitEnvironment", "bounds"] +- ["PSo18UITraitEnvironment", "mainScreen"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "characters"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "fromCString"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "hasPrefix"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "substringFromIndex"] +- !private ["SP", "init"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "characters"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "fromCString"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "hasPrefix"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "characters"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "fromCString"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "hasPrefix"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "characters"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "fromCString"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "hasPrefix"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "characters"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "fromCString"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "hasPrefix"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- ["Ps12_IntegerType", "init"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "characters"] +- !private ["Ps21_ObjectiveCBridgeable", "fromCString"] +- !private ["Ps21_ObjectiveCBridgeable", "hasPrefix"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps12_PointerType", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "characters"] +- !private ["Ps12_Reflectable", "fromCString"] +- !private ["Ps12_Reflectable", "hasPrefix"] +- ["Ps12_Reflectable", "height"] +- ["Ps12_Reflectable", "init"] +- ["Ps12_Reflectable", "size"] +- ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "substringFromIndex"] +- ["Ps12_Reflectable", "width"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- ["Ps18_SignedIntegerType", "init"] +- !private ["VSC7utsname", "init"] +- !private ["VSC7utsname", "machine"] +depends-nominal: +- "Ps9AnyObject" +- "C8Mixpanel19AutomaticProperties" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "VSC6CGRect" +- "VSC6CGSize" +- "CSo9CTCarrier" +- "CSo22CTTelephonyNetworkInfo" +- "Ps11CVarArgType" +- !private "VSS13CharacterView" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Vs10Dictionary" +- "Ps28DictionaryLiteralConvertible" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- !private "VVSS13CharacterView5Index" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- "Ps14MirrorPathType" +- "CSo8NSBundle" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- "Vs5Slice" +- !private "Ps10Streamable" +- "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "CSo8UIDevice" +- "CSo8UIScreen" +- "PSo18UITraitEnvironment" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "SP" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps12_PointerType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +- !private "VSC7utsname" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "49e199ad50aa8df848d13e5bfd258e4b" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftmodule new file mode 100644 index 00000000..422e5a54 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.d new file mode 100644 index 00000000..bfa2301b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o new file mode 100644 index 00000000..b36ff021 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.swiftdeps new file mode 100644 index 00000000..df3b2e2f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.swiftdeps @@ -0,0 +1,40 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "QueueConstants" +- "APIConstants" +provides-nominal: +- "V8Mixpanel14QueueConstants" +- "V8Mixpanel12APIConstants" +provides-member: +- ["V8Mixpanel14QueueConstants", ""] +- ["V8Mixpanel12APIConstants", ""] +provides-dynamic-lookup: +depends-top-level: +- "QueueConstants" +- "IntegerLiteralType" +- "FloatLiteralType" +- "APIConstants" +depends-member: +- ["V8Mixpanel12APIConstants", "batchSize"] +- ["V8Mixpanel12APIConstants", "failuresTillBackoff"] +- ["V8Mixpanel12APIConstants", "init"] +- ["V8Mixpanel12APIConstants", "maxRetryBackoff"] +- ["V8Mixpanel12APIConstants", "minRetryBackoff"] +- ["V8Mixpanel14QueueConstants", "init"] +- ["V8Mixpanel14QueueConstants", "queueSize"] +depends-nominal: +- "V8Mixpanel12APIConstants" +- "V8Mixpanel14QueueConstants" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "8dfd0c594081336b654b279febbd1289" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftmodule new file mode 100644 index 00000000..e191cbb2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.d new file mode 100644 index 00000000..6c875ded --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o new file mode 100644 index 00000000..f1280914 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.swiftdeps new file mode 100644 index 00000000..ba812337 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.swiftdeps @@ -0,0 +1,179 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PropertyError" +- "Assertions" +- "MPAssert" +- "ErrorHandler" +provides-nominal: +- "O8Mixpanel13PropertyError" +- "C8Mixpanel10Assertions" +- "C8Mixpanel12ErrorHandler" +provides-member: +- ["O8Mixpanel13PropertyError", ""] +- ["C8Mixpanel10Assertions", ""] +- ["C8Mixpanel12ErrorHandler", ""] +provides-dynamic-lookup: +depends-top-level: +- "ErrorType" +- "Swift" +- "String" +- !private "IntegerLiteralType" +- !private "Logger" +- "AnyObject" +- "MPAssert" +- !private "NSThread" +- "PropertyError" +- "UInt" +- "StringLiteralType" +- "StaticString" +- !private "FloatLiteralType" +- "Bool" +- "Assertions" +- "ErrorHandler" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSThread"] +- ["Ps9AnyObject", "Swift"] +- !private ["Ps9AnyObject", "assertClosure"] +- !private ["Ps9AnyObject", "callStackSymbols"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "logError"] +- ["Ps9AnyObject", "swiftAssertClosure"] +- ["Ps9AnyObject", ""] +- ["C8Mixpanel10Assertions", "Swift"] +- ["C8Mixpanel10Assertions", "assertClosure"] +- ["C8Mixpanel10Assertions", "deinit"] +- ["C8Mixpanel10Assertions", "init"] +- ["C8Mixpanel10Assertions", "swiftAssertClosure"] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "callStackSymbols"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "callStackSymbols"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "callStackSymbols"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "callStackSymbols"] +- !private ["Ps9Equatable", "init"] +- ["C8Mixpanel12ErrorHandler", "ErrorType"] +- !private ["C8Mixpanel12ErrorHandler", "Logger"] +- !private ["C8Mixpanel12ErrorHandler", "NSThread"] +- ["C8Mixpanel12ErrorHandler", "deinit"] +- ["C8Mixpanel12ErrorHandler", "init"] +- ["C8Mixpanel12ErrorHandler", "logError"] +- ["C8Mixpanel12ErrorHandler", "wrap"] +- ["Ps9ErrorType", "_code"] +- ["Ps9ErrorType", "_domain"] +- ["Ps9ErrorType", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "callStackSymbols"] +- !private ["Ps8Hashable", "init"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "callStackSymbols"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "callStackSymbols"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSThread", "callStackSymbols"] +- !private ["Ps16OutputStreamType", "init"] +- ["O8Mixpanel13PropertyError", "AnyObject"] +- ["O8Mixpanel13PropertyError", "InvalidType"] +- ["O8Mixpanel13PropertyError", "_code"] +- ["O8Mixpanel13PropertyError", "_domain"] +- ["O8Mixpanel13PropertyError", "deinit"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- "C8Mixpanel10Assertions" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- "C8Mixpanel12ErrorHandler" +- "Ps9ErrorType" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo8NSThread" +- !private "Ps16OutputStreamType" +- "O8Mixpanel13PropertyError" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "cdcfe764bd50da5b0586cc5f726666ca" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftmodule new file mode 100644 index 00000000..9f9dd698 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.d new file mode 100644 index 00000000..e87754fe --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o new file mode 100644 index 00000000..19e185ec Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.swiftdeps new file mode 100644 index 00000000..a09abd0a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.swiftdeps @@ -0,0 +1,230 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FileLogging" +provides-nominal: +- "C8Mixpanel11FileLogging" +provides-member: +- ["C8Mixpanel11FileLogging", ""] +provides-dynamic-lookup: +depends-top-level: +- "NSFileHandle" +- !private "NSUTF8StringEncoding" +- "FileLogging" +- "Logging" +- !private "StringLiteralType" +- "String" +- "LogMessage" +- !private "+" +depends-member: +- !private ["Ps9AnyObject", "NSFileHandle"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "closeFile"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "fileHandle"] +- !private ["Ps9AnyObject", "fileHandleWithStandardError"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "seekToEndOfFile"] +- !private ["Ps9AnyObject", "writeData"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "closeFile"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "fileHandleWithStandardError"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "seekToEndOfFile"] +- !private ["Ps11CVarArgType", "writeData"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "closeFile"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "fileHandleWithStandardError"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "seekToEndOfFile"] +- !private ["Ps28CustomDebugStringConvertible", "writeData"] +- !private ["Ps23CustomStringConvertible", "closeFile"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "fileHandleWithStandardError"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "seekToEndOfFile"] +- !private ["Ps23CustomStringConvertible", "writeData"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "closeFile"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- !private ["Ps9Equatable", "fileHandleWithStandardError"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "seekToEndOfFile"] +- !private ["Ps9Equatable", "writeData"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- ["C8Mixpanel11FileLogging", "LogMessage"] +- ["C8Mixpanel11FileLogging", "NSFileHandle"] +- !private ["C8Mixpanel11FileLogging", "NSUTF8StringEncoding"] +- ["C8Mixpanel11FileLogging", "String"] +- ["C8Mixpanel11FileLogging", "addMessage"] +- ["C8Mixpanel11FileLogging", "deinit"] +- !private ["C8Mixpanel11FileLogging", "fileHandle"] +- ["C8Mixpanel11FileLogging", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "closeFile"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- !private ["Ps8Hashable", "fileHandleWithStandardError"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "seekToEndOfFile"] +- !private ["Ps8Hashable", "writeData"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["O8Mixpanel8LogLevel", "deinit"] +- !private ["O8Mixpanel8LogLevel", "rawValue"] +- !private ["V8Mixpanel10LogMessage", "file"] +- !private ["V8Mixpanel10LogMessage", "function"] +- !private ["V8Mixpanel10LogMessage", "level"] +- !private ["V8Mixpanel10LogMessage", "text"] +- !private ["P8Mixpanel7Logging", "NSFileHandle"] +- !private ["P8Mixpanel7Logging", "NSUTF8StringEncoding"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "fileHandle"] +- ["P8Mixpanel7Logging", ""] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "closeFile"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "fileHandleWithStandardError"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "seekToEndOfFile"] +- !private ["PSo8NSCoding", "writeData"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo12NSFileHandle", "closeFile"] +- !private ["CSo12NSFileHandle", "fileHandleWithStandardError"] +- !private ["CSo12NSFileHandle", "init"] +- !private ["CSo12NSFileHandle", "seekToEndOfFile"] +- !private ["CSo12NSFileHandle", "writeData"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "closeFile"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "fileHandleWithStandardError"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "seekToEndOfFile"] +- !private ["CSo8NSObject", "writeData"] +- !private ["PSo16NSObjectProtocol", "closeFile"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "fileHandleWithStandardError"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "seekToEndOfFile"] +- !private ["PSo16NSObjectProtocol", "writeData"] +- !private ["PSo14NSSecureCoding", "closeFile"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "fileHandleWithStandardError"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "seekToEndOfFile"] +- !private ["PSo14NSSecureCoding", "writeData"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16RawRepresentable", "rawValue"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "dataUsingEncoding"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "C8Mixpanel11FileLogging" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "O8Mixpanel8LogLevel" +- !private "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSFileHandle" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps16RawRepresentable" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "24cd98e0aa9f7719f6041cab748cda9d" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftdoc new file mode 100644 index 00000000..7b3a6641 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftmodule new file mode 100644 index 00000000..85e4d211 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.d new file mode 100644 index 00000000..e703588d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o new file mode 100644 index 00000000..9874aebc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.swiftdeps new file mode 100644 index 00000000..0f652e30 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.swiftdeps @@ -0,0 +1,492 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FlushDelegate" +- "Flush" +provides-nominal: +- "P8Mixpanel13FlushDelegate" +- "C8Mixpanel5Flush" +provides-member: +- ["P8Mixpanel13FlushDelegate", ""] +- ["C8Mixpanel5Flush", ""] +provides-dynamic-lookup: +- "flushSelector" +depends-top-level: +- !private "APIConstants" +- !private "..<" +- !private "IntegerLiteralType" +- !private "objc_sync_enter" +- !private "DISPATCH_TIME_FOREVER" +- "FlushType" +- "FlushDelegate" +- "FlushRequest" +- "Queue" +- !private "dispatch_get_main_queue" +- !private "Array" +- "AppLifecycle" +- !private ">" +- !private "min" +- "Double" +- !private "dispatch_semaphore_signal" +- !private "objc_sync_exit" +- "Flush" +- !private "!" +- "Void" +- "FloatLiteralType" +- !private "JSONHandler" +- !private "dispatch_async" +- "NSTimer" +- "BooleanLiteralType" +- !private "dispatch_semaphore_create" +- "Bool" +- !private "dispatch_semaphore_wait" +depends-member: +- !private ["V8Mixpanel12APIConstants", "batchSize"] +- !private ["Ps9AnyObject", "APIConstants"] +- !private ["Ps9AnyObject", "Array"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_FOREVER"] +- ["Ps9AnyObject", "FlushRequest"] +- !private ["Ps9AnyObject", "JSONHandler"] +- !private ["Ps9AnyObject", "NSTimer"] +- !private ["Ps9AnyObject", "_flushInterval"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_semaphore_create"] +- !private ["Ps9AnyObject", "dispatch_semaphore_signal"] +- !private ["Ps9AnyObject", "dispatch_semaphore_wait"] +- !private ["Ps9AnyObject", "encodeAPIData"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "flushQueue"] +- !private ["Ps9AnyObject", "flushQueueInBatches"] +- !private ["Ps9AnyObject", "flushRequest"] +- !private ["Ps9AnyObject", "flushSelector"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "invalidate"] +- !private ["Ps9AnyObject", "min"] +- !private ["Ps9AnyObject", "objc_sync_enter"] +- !private ["Ps9AnyObject", "objc_sync_exit"] +- !private ["Ps9AnyObject", "requestNotAllowed"] +- !private ["Ps9AnyObject", "scheduledTimerWithTimeInterval"] +- !private ["Ps9AnyObject", "sendRequest"] +- !private ["Ps9AnyObject", "startFlushTimer"] +- !private ["Ps9AnyObject", "stopFlushTimer"] +- !private ["Ps9AnyObject", "timer"] +- !private ["Ps9AnyObject", "useIPAddressForGeoLocation"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "APIConstants"] +- !private ["P8Mixpanel12AppLifecycle", "Array"] +- !private ["P8Mixpanel12AppLifecycle", "DISPATCH_TIME_FOREVER"] +- ["P8Mixpanel12AppLifecycle", "FlushRequest"] +- !private ["P8Mixpanel12AppLifecycle", "JSONHandler"] +- !private ["P8Mixpanel12AppLifecycle", "NSTimer"] +- !private ["P8Mixpanel12AppLifecycle", "_flushInterval"] +- ["P8Mixpanel12AppLifecycle", "applicationDidBecomeActive"] +- ["P8Mixpanel12AppLifecycle", "applicationWillResignActive"] +- !private ["P8Mixpanel12AppLifecycle", "delegate"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_async"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_get_main_queue"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_create"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_signal"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_wait"] +- !private ["P8Mixpanel12AppLifecycle", "flushInterval"] +- !private ["P8Mixpanel12AppLifecycle", "flushQueue"] +- !private ["P8Mixpanel12AppLifecycle", "flushQueueInBatches"] +- !private ["P8Mixpanel12AppLifecycle", "flushRequest"] +- !private ["P8Mixpanel12AppLifecycle", "flushSelector"] +- !private ["P8Mixpanel12AppLifecycle", "min"] +- !private ["P8Mixpanel12AppLifecycle", "objc_sync_enter"] +- !private ["P8Mixpanel12AppLifecycle", "objc_sync_exit"] +- !private ["P8Mixpanel12AppLifecycle", "startFlushTimer"] +- !private ["P8Mixpanel12AppLifecycle", "stopFlushTimer"] +- !private ["P8Mixpanel12AppLifecycle", "timer"] +- !private ["P8Mixpanel12AppLifecycle", "useIPAddressForGeoLocation"] +- ["P8Mixpanel12AppLifecycle", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "removeRange"] +- !private ["Sa", "subscript"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "removeRange"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Vs10ArraySlice", "SubSequence"] +- !private ["Vs10ArraySlice", "_Element"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "invalidate"] +- !private ["Ps11CVarArgType", "scheduledTimerWithTimeInterval"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeRange"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "invalidate"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "removeRange"] +- !private ["Ps28CustomDebugStringConvertible", "scheduledTimerWithTimeInterval"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "invalidate"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "removeRange"] +- !private ["Ps23CustomStringConvertible", "scheduledTimerWithTimeInterval"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "invalidate"] +- !private ["Ps9Equatable", "scheduledTimerWithTimeInterval"] +- !private ["C8Mixpanel5Flush", "APIConstants"] +- !private ["C8Mixpanel5Flush", "Array"] +- !private ["C8Mixpanel5Flush", "DISPATCH_TIME_FOREVER"] +- ["C8Mixpanel5Flush", "Double"] +- ["C8Mixpanel5Flush", "FlushDelegate"] +- ["C8Mixpanel5Flush", "FlushRequest"] +- ["C8Mixpanel5Flush", "FlushType"] +- !private ["C8Mixpanel5Flush", "JSONHandler"] +- ["C8Mixpanel5Flush", "NSTimer"] +- ["C8Mixpanel5Flush", "Queue"] +- ["C8Mixpanel5Flush", "_flushInterval"] +- ["C8Mixpanel5Flush", "applicationDidBecomeActive"] +- ["C8Mixpanel5Flush", "applicationWillResignActive"] +- ["C8Mixpanel5Flush", "deinit"] +- ["C8Mixpanel5Flush", "delegate"] +- !private ["C8Mixpanel5Flush", "dispatch_async"] +- !private ["C8Mixpanel5Flush", "dispatch_get_main_queue"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_create"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_signal"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_wait"] +- ["C8Mixpanel5Flush", "flushEventsQueue"] +- ["C8Mixpanel5Flush", "flushInterval"] +- ["C8Mixpanel5Flush", "flushOnBackground"] +- ["C8Mixpanel5Flush", "flushPeopleQueue"] +- ["C8Mixpanel5Flush", "flushQueue"] +- ["C8Mixpanel5Flush", "flushQueueInBatches"] +- ["C8Mixpanel5Flush", "flushRequest"] +- ["C8Mixpanel5Flush", "flushSelector"] +- ["C8Mixpanel5Flush", "init"] +- !private ["C8Mixpanel5Flush", "min"] +- !private ["C8Mixpanel5Flush", "objc_sync_enter"] +- !private ["C8Mixpanel5Flush", "objc_sync_exit"] +- ["C8Mixpanel5Flush", "startFlushTimer"] +- ["C8Mixpanel5Flush", "stopFlushTimer"] +- ["C8Mixpanel5Flush", "timer"] +- ["C8Mixpanel5Flush", "useIPAddressForGeoLocation"] +- ["P8Mixpanel13FlushDelegate", "Bool"] +- ["P8Mixpanel13FlushDelegate", "Void"] +- ["P8Mixpanel13FlushDelegate", "flush"] +- ["P8Mixpanel13FlushDelegate", "updateNetworkActivityIndicator"] +- ["C8Mixpanel12FlushRequest", "init"] +- !private ["C8Mixpanel12FlushRequest", "requestNotAllowed"] +- !private ["C8Mixpanel12FlushRequest", "sendRequest"] +- !private ["O8Mixpanel9FlushType", "Events"] +- !private ["O8Mixpanel9FlushType", "People"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "invalidate"] +- !private ["Ps8Hashable", "scheduledTimerWithTimeInterval"] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeRange"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "removeRange"] +- !private ["Ps21MutableCollectionType", "subscript"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "removeRange"] +- !private ["Ps16MutableIndexable", "subscript"] +- !private ["Vs12MutableSlice", "Generator"] +- !private ["Vs12MutableSlice", "Index"] +- !private ["Vs12MutableSlice", "_Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "removeRange"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["CSo8NSObject", "invalidate"] +- !private ["CSo8NSObject", "scheduledTimerWithTimeInterval"] +- !private ["PSo16NSObjectProtocol", "invalidate"] +- !private ["PSo16NSObjectProtocol", "scheduledTimerWithTimeInterval"] +- !private ["CSo7NSTimer", "invalidate"] +- !private ["CSo7NSTimer", "scheduledTimerWithTimeInterval"] +- ["C8Mixpanel7Network", "init"] +- !private ["C8Mixpanel7Network", "requestNotAllowed"] +- !private ["C8Mixpanel7Network", "sendRequest"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "removeRange"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeRange"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "removeRange"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "removeRange"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "removeRange"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "removeRange"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +depends-nominal: +- !private "V8Mixpanel12APIConstants" +- "Ps9AnyObject" +- "P8Mixpanel12AppLifecycle" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Ps9Equatable" +- "C8Mixpanel5Flush" +- "P8Mixpanel13FlushDelegate" +- "C8Mixpanel12FlushRequest" +- !private "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel11JSONHandler" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Vs12MutableSlice" +- !private "Ps16MutableSliceable" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "CSo7NSTimer" +- "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Strideable" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "f29b3c5c17ca725828ed00f91150b5e5" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.d new file mode 100644 index 00000000..931bd46a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o new file mode 100644 index 00000000..8c9bfaea Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.swiftdeps new file mode 100644 index 00000000..c90fbe34 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.swiftdeps @@ -0,0 +1,578 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FlushType" +- "FlushRequest" +provides-nominal: +- "O8Mixpanel9FlushType" +- "C8Mixpanel12FlushRequest" +provides-member: +- ["O8Mixpanel9FlushType", ""] +- ["C8Mixpanel12FlushRequest", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "min" +- !private "Logger" +- !private "APIConstants" +- !private "NSDate" +- !private "arc4random_uniform" +- "IntegerLiteralType" +- !private "NSData" +- !private "NSUTF8StringEncoding" +- !private "Double" +- !private "~=" +- "Network" +- "==" +- !private "max" +- !private "-" +- !private "NSTimeInterval" +- !private "*" +- "String" +- !private "NSHTTPURLResponse" +- "StringLiteralType" +- !private "+" +- !private "Dictionary" +- "Void" +- !private "NSURLResponse" +- "Bool" +- !private "<" +- !private "Method" +- !private "??" +- "FloatLiteralType" +- "FlushType" +- !private "+=" +- !private "Resource" +- !private "Int" +- !private ">=" +- !private "BasePath" +- "BooleanLiteralType" +- "FlushRequest" +- !private "pow" +depends-member: +- !private ["V8Mixpanel12APIConstants", "failuresTillBackoff"] +- !private ["V8Mixpanel12APIConstants", "maxRetryBackoff"] +- !private ["V8Mixpanel12APIConstants", "minRetryBackoff"] +- !private ["Ps16AbsoluteValuable", "IntegerLiteralType"] +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "APIConstants"] +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "Method"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "allHeaderFields"] +- !private ["Ps9AnyObject", "apiRequest"] +- !private ["Ps9AnyObject", "arc4random_uniform"] +- !private ["Ps9AnyObject", "buildResource"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- ["Ps9AnyObject", "flushRequestHandler"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "max"] +- !private ["Ps9AnyObject", "min"] +- ["Ps9AnyObject", "networkConsecutiveFailures"] +- ["Ps9AnyObject", "networkRequestsAllowedAfterTime"] +- !private ["Ps9AnyObject", "pow"] +- ["Ps9AnyObject", "requestNotAllowed"] +- ["Ps9AnyObject", "retryBackOffTimeWithConsecutiveFailures"] +- ["Ps9AnyObject", "sendRequest"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- ["Ps9AnyObject", "updateRetryDelay"] +- ["Ps9AnyObject", ""] +- !private ["V8Mixpanel8BasePath", "MixpanelAPI"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "IntegerLiteralType"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Stride"] +- !private ["Ps11CVarArgType", "allHeaderFields"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "IntegerLiteralType"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allHeaderFields"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "allHeaderFields"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "IntegerLiteralType"] +- !private ["Sd", "Stride"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "POST"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "allHeaderFields"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "IntegerLiteralType"] +- !private ["Sf", "Stride"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps23FloatLiteralConvertible", "Stride"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "IntegerLiteralType"] +- !private ["Ps17FloatingPointType", "Stride"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["C8Mixpanel12FlushRequest", "APIConstants"] +- !private ["C8Mixpanel12FlushRequest", "BasePath"] +- ["C8Mixpanel12FlushRequest", "Bool"] +- !private ["C8Mixpanel12FlushRequest", "Double"] +- ["C8Mixpanel12FlushRequest", "FlushType"] +- !private ["C8Mixpanel12FlushRequest", "Int"] +- !private ["C8Mixpanel12FlushRequest", "Logger"] +- !private ["C8Mixpanel12FlushRequest", "Method"] +- !private ["C8Mixpanel12FlushRequest", "NSData"] +- !private ["C8Mixpanel12FlushRequest", "NSDate"] +- !private ["C8Mixpanel12FlushRequest", "NSHTTPURLResponse"] +- !private ["C8Mixpanel12FlushRequest", "NSTimeInterval"] +- !private ["C8Mixpanel12FlushRequest", "NSURLResponse"] +- !private ["C8Mixpanel12FlushRequest", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel12FlushRequest", "Network"] +- !private ["C8Mixpanel12FlushRequest", "Resource"] +- ["C8Mixpanel12FlushRequest", "String"] +- ["C8Mixpanel12FlushRequest", "Void"] +- !private ["C8Mixpanel12FlushRequest", "arc4random_uniform"] +- ["C8Mixpanel12FlushRequest", "deinit"] +- !private ["C8Mixpanel12FlushRequest", "flushRequestHandler"] +- ["C8Mixpanel12FlushRequest", "init"] +- !private ["C8Mixpanel12FlushRequest", "max"] +- !private ["C8Mixpanel12FlushRequest", "min"] +- ["C8Mixpanel12FlushRequest", "networkConsecutiveFailures"] +- ["C8Mixpanel12FlushRequest", "networkRequestsAllowedAfterTime"] +- !private ["C8Mixpanel12FlushRequest", "pow"] +- ["C8Mixpanel12FlushRequest", "requestNotAllowed"] +- !private ["C8Mixpanel12FlushRequest", "retryBackOffTimeWithConsecutiveFailures"] +- ["C8Mixpanel12FlushRequest", "sendRequest"] +- !private ["C8Mixpanel12FlushRequest", "updateRetryDelay"] +- ["O8Mixpanel9FlushType", "Events"] +- ["O8Mixpanel9FlushType", "People"] +- ["O8Mixpanel9FlushType", "RawValue"] +- ["O8Mixpanel9FlushType", "deinit"] +- ["O8Mixpanel9FlushType", "hashValue"] +- ["O8Mixpanel9FlushType", "init"] +- ["O8Mixpanel9FlushType", "rawValue"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "POST"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "allHeaderFields"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Stride"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["O8Mixpanel6Method", "POST"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "allHeaderFields"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "allHeaderFields"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["CSo17NSHTTPURLResponse", "allHeaderFields"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "allHeaderFields"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "allHeaderFields"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo14NSSecureCoding", "allHeaderFields"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo13NSURLResponse", "allHeaderFields"] +- !private ["C8Mixpanel7Network", "APIConstants"] +- !private ["C8Mixpanel7Network", "BasePath"] +- ["C8Mixpanel7Network", "Bool"] +- !private ["C8Mixpanel7Network", "Double"] +- ["C8Mixpanel7Network", "FlushType"] +- !private ["C8Mixpanel7Network", "Int"] +- !private ["C8Mixpanel7Network", "Logger"] +- !private ["C8Mixpanel7Network", "Method"] +- !private ["C8Mixpanel7Network", "NSData"] +- !private ["C8Mixpanel7Network", "NSDate"] +- !private ["C8Mixpanel7Network", "NSHTTPURLResponse"] +- !private ["C8Mixpanel7Network", "NSTimeInterval"] +- !private ["C8Mixpanel7Network", "NSURLResponse"] +- !private ["C8Mixpanel7Network", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel7Network", "Network"] +- !private ["C8Mixpanel7Network", "Resource"] +- ["C8Mixpanel7Network", "String"] +- ["C8Mixpanel7Network", "Void"] +- !private ["C8Mixpanel7Network", "apiRequest"] +- !private ["C8Mixpanel7Network", "arc4random_uniform"] +- !private ["C8Mixpanel7Network", "buildResource"] +- ["C8Mixpanel7Network", "flushRequestHandler"] +- ["C8Mixpanel7Network", "init"] +- !private ["C8Mixpanel7Network", "max"] +- !private ["C8Mixpanel7Network", "min"] +- ["C8Mixpanel7Network", "networkConsecutiveFailures"] +- ["C8Mixpanel7Network", "networkRequestsAllowedAfterTime"] +- !private ["C8Mixpanel7Network", "pow"] +- ["C8Mixpanel7Network", "requestNotAllowed"] +- ["C8Mixpanel7Network", "retryBackOffTimeWithConsecutiveFailures"] +- ["C8Mixpanel7Network", "sendRequest"] +- ["C8Mixpanel7Network", "updateRetryDelay"] +- ["C8Mixpanel7Network", ""] +- !private ["Ps21NilLiteralConvertible", "Some"] +- !private ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps16RawRepresentable", "POST"] +- ["Ps16RawRepresentable", "RawValue"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Stride"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "dataUsingEncoding"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "Stride"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "IntegerLiteralType"] +- !private ["Ps19_CVarArgAlignedType", "Stride"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "IntegerLiteralType"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "Stride"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "V8Mixpanel12APIConstants" +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "V8Mixpanel8BasePath" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- "C8Mixpanel12FlushRequest" +- "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "O8Mixpanel6Method" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- !private "CSo17NSHTTPURLResponse" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo13NSURLResponse" +- "C8Mixpanel7Network" +- !private "Ps21NilLiteralConvertible" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "75f093034953f36d8757165dc89941a0" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftmodule new file mode 100644 index 00000000..bbbd103f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftmodule new file mode 100644 index 00000000..b296e0a3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.d new file mode 100644 index 00000000..6a301c44 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o new file mode 100644 index 00000000..983adf9a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.swiftdeps new file mode 100644 index 00000000..4119b1a4 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.swiftdeps @@ -0,0 +1,516 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "JSONHandler" +provides-nominal: +- "C8Mixpanel11JSONHandler" +provides-member: +- ["C8Mixpanel11JSONHandler", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "NSCharacterSet" +- !private "UInt" +- !private "Properties" +- "String" +- !private "NSTimeZone" +- !private "NSLocale" +- !private "Logger" +- !private "Array" +- !private "StringLiteralType" +- !private "NSDate" +- !private "NSURL" +- "AnyObject" +- "NSData" +- !private "Double" +- !private "Float" +- !private "Int" +- !private "NSDateFormatter" +- !private "NSJSONSerialization" +- "JSONHandler" +- !private "NSDataBase64EncodingOptions" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSCharacterSet"] +- !private ["Ps9AnyObject", "NSDataBase64EncodingOptions"] +- !private ["Ps9AnyObject", "NSDateFormatter"] +- !private ["Ps9AnyObject", "NSJSONSerialization"] +- !private ["Ps9AnyObject", "NSLocale"] +- !private ["Ps9AnyObject", "NSTimeZone"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "URLQueryAllowedCharacterSet"] +- !private ["Ps9AnyObject", "absoluteString"] +- !private ["Ps9AnyObject", "base64EncodedStringWithOptions"] +- !private ["Ps9AnyObject", "dataWithJSONObject"] +- !private ["Ps9AnyObject", "dateFormat"] +- !private ["Ps9AnyObject", "description"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isValidJSONObject"] +- !private ["Ps9AnyObject", "locale"] +- !private ["Ps9AnyObject", "makeObjectSerializable"] +- !private ["Ps9AnyObject", "serializeJSONObject"] +- !private ["Ps9AnyObject", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps9AnyObject", "stringFromDate"] +- !private ["Ps9AnyObject", "timeZone"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "deinit"] +- !private ["Sa", "map"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Encoding64CharacterLineLength"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "map"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "URLQueryAllowedCharacterSet"] +- !private ["Ps11CVarArgType", "absoluteString"] +- !private ["Ps11CVarArgType", "base64EncodedStringWithOptions"] +- !private ["Ps11CVarArgType", "dataWithJSONObject"] +- !private ["Ps11CVarArgType", "dateFormat"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isValidJSONObject"] +- !private ["Ps11CVarArgType", "locale"] +- !private ["Ps11CVarArgType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps11CVarArgType", "stringFromDate"] +- !private ["Ps11CVarArgType", "timeZone"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "map"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URLQueryAllowedCharacterSet"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "absoluteString"] +- !private ["Ps28CustomDebugStringConvertible", "base64EncodedStringWithOptions"] +- !private ["Ps28CustomDebugStringConvertible", "dataWithJSONObject"] +- !private ["Ps28CustomDebugStringConvertible", "dateFormat"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isValidJSONObject"] +- !private ["Ps28CustomDebugStringConvertible", "locale"] +- !private ["Ps28CustomDebugStringConvertible", "map"] +- !private ["Ps28CustomDebugStringConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps28CustomDebugStringConvertible", "stringFromDate"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeZone"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URLQueryAllowedCharacterSet"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "absoluteString"] +- !private ["Ps23CustomStringConvertible", "base64EncodedStringWithOptions"] +- !private ["Ps23CustomStringConvertible", "dataWithJSONObject"] +- !private ["Ps23CustomStringConvertible", "dateFormat"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isValidJSONObject"] +- !private ["Ps23CustomStringConvertible", "locale"] +- !private ["Ps23CustomStringConvertible", "map"] +- !private ["Ps23CustomStringConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps23CustomStringConvertible", "stringFromDate"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeZone"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "map"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "map"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Encoding64CharacterLineLength"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "URLQueryAllowedCharacterSet"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "absoluteString"] +- !private ["Ps9Equatable", "base64EncodedStringWithOptions"] +- !private ["Ps9Equatable", "dataWithJSONObject"] +- !private ["Ps9Equatable", "dateFormat"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isValidJSONObject"] +- !private ["Ps9Equatable", "locale"] +- !private ["Ps9Equatable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps9Equatable", "stringFromDate"] +- !private ["Ps9Equatable", "timeZone"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "URLQueryAllowedCharacterSet"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "absoluteString"] +- !private ["Ps8Hashable", "base64EncodedStringWithOptions"] +- !private ["Ps8Hashable", "dataWithJSONObject"] +- !private ["Ps8Hashable", "dateFormat"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isValidJSONObject"] +- !private ["Ps8Hashable", "locale"] +- !private ["Ps8Hashable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps8Hashable", "stringFromDate"] +- !private ["Ps8Hashable", "timeZone"] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "map"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- ["C8Mixpanel11JSONHandler", "AnyObject"] +- !private ["C8Mixpanel11JSONHandler", "Array"] +- !private ["C8Mixpanel11JSONHandler", "Double"] +- !private ["C8Mixpanel11JSONHandler", "Float"] +- !private ["C8Mixpanel11JSONHandler", "Int"] +- !private ["C8Mixpanel11JSONHandler", "Logger"] +- ["C8Mixpanel11JSONHandler", "MPObjectToParse"] +- !private ["C8Mixpanel11JSONHandler", "NSCharacterSet"] +- ["C8Mixpanel11JSONHandler", "NSData"] +- !private ["C8Mixpanel11JSONHandler", "NSDataBase64EncodingOptions"] +- !private ["C8Mixpanel11JSONHandler", "NSDate"] +- !private ["C8Mixpanel11JSONHandler", "NSDateFormatter"] +- !private ["C8Mixpanel11JSONHandler", "NSJSONSerialization"] +- !private ["C8Mixpanel11JSONHandler", "NSLocale"] +- !private ["C8Mixpanel11JSONHandler", "NSTimeZone"] +- !private ["C8Mixpanel11JSONHandler", "NSURL"] +- !private ["C8Mixpanel11JSONHandler", "Properties"] +- ["C8Mixpanel11JSONHandler", "String"] +- !private ["C8Mixpanel11JSONHandler", "UInt"] +- ["C8Mixpanel11JSONHandler", "deinit"] +- ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- ["C8Mixpanel11JSONHandler", "init"] +- !private ["C8Mixpanel11JSONHandler", "makeObjectSerializable"] +- ["C8Mixpanel11JSONHandler", "serializeJSONObject"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["C8Mixpanel6Logger", "warn"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "map"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "map"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "map"] +- !private ["CSo14NSCharacterSet", "URLQueryAllowedCharacterSet"] +- !private ["PSo8NSCoding", "URLQueryAllowedCharacterSet"] +- !private ["PSo8NSCoding", "absoluteString"] +- !private ["PSo8NSCoding", "base64EncodedStringWithOptions"] +- !private ["PSo8NSCoding", "dateFormat"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "locale"] +- !private ["PSo8NSCoding", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo8NSCoding", "stringFromDate"] +- !private ["PSo8NSCoding", "timeZone"] +- !private ["PSo9NSCopying", "URLQueryAllowedCharacterSet"] +- !private ["PSo9NSCopying", "absoluteString"] +- !private ["PSo9NSCopying", "base64EncodedStringWithOptions"] +- !private ["PSo9NSCopying", "dateFormat"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "locale"] +- !private ["PSo9NSCopying", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo9NSCopying", "stringFromDate"] +- !private ["PSo9NSCopying", "timeZone"] +- !private ["CSo6NSData", "base64EncodedStringWithOptions"] +- !private ["VSC27NSDataBase64EncodingOptions", "Encoding64CharacterLineLength"] +- !private ["CSo15NSDateFormatter", "dateFormat"] +- !private ["CSo15NSDateFormatter", "init"] +- !private ["CSo15NSDateFormatter", "locale"] +- !private ["CSo15NSDateFormatter", "stringFromDate"] +- !private ["CSo15NSDateFormatter", "timeZone"] +- !private ["CSo11NSFormatter", "dateFormat"] +- !private ["CSo11NSFormatter", "init"] +- !private ["CSo11NSFormatter", "locale"] +- !private ["CSo11NSFormatter", "stringFromDate"] +- !private ["CSo11NSFormatter", "timeZone"] +- !private ["CSo19NSJSONSerialization", "dataWithJSONObject"] +- !private ["CSo19NSJSONSerialization", "isValidJSONObject"] +- !private ["VSC20NSJSONWritingOptions", "Element"] +- !private ["CSo8NSLocale", "init"] +- !private ["PSo16NSMutableCopying", "URLQueryAllowedCharacterSet"] +- !private ["PSo16NSMutableCopying", "base64EncodedStringWithOptions"] +- !private ["PSo16NSMutableCopying", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSObject", "URLQueryAllowedCharacterSet"] +- !private ["CSo8NSObject", "absoluteString"] +- !private ["CSo8NSObject", "base64EncodedStringWithOptions"] +- !private ["CSo8NSObject", "dataWithJSONObject"] +- !private ["CSo8NSObject", "dateFormat"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isValidJSONObject"] +- !private ["CSo8NSObject", "locale"] +- !private ["CSo8NSObject", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSObject", "stringFromDate"] +- !private ["CSo8NSObject", "timeZone"] +- !private ["PSo16NSObjectProtocol", "URLQueryAllowedCharacterSet"] +- !private ["PSo16NSObjectProtocol", "absoluteString"] +- !private ["PSo16NSObjectProtocol", "base64EncodedStringWithOptions"] +- !private ["PSo16NSObjectProtocol", "dataWithJSONObject"] +- !private ["PSo16NSObjectProtocol", "dateFormat"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isValidJSONObject"] +- !private ["PSo16NSObjectProtocol", "locale"] +- !private ["PSo16NSObjectProtocol", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo16NSObjectProtocol", "stringFromDate"] +- !private ["PSo16NSObjectProtocol", "timeZone"] +- !private ["PSo14NSSecureCoding", "absoluteString"] +- !private ["PSo14NSSecureCoding", "base64EncodedStringWithOptions"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSString", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo10NSTimeZone", "init"] +- !private ["CSo5NSURL", "absoluteString"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "Element"] +- !private ["Ps13OptionSetType", "Encoding64CharacterLineLength"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "map"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Encoding64CharacterLineLength"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "map"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "Element"] +- !private ["Ps14SetAlgebraType", "Encoding64CharacterLineLength"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps30StringInterpolationConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps24StringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "map"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "map"] +- !private ["Ps32_FileReferenceLiteralConvertible", "absoluteString"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "map"] +- !private ["Ps21_ObjectiveCBridgeable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "absoluteString"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "map"] +- !private ["Ps12_Reflectable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- "C8Mixpanel11JSONHandler" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo14NSCharacterSet" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "VSC27NSDataBase64EncodingOptions" +- !private "CSo15NSDateFormatter" +- !private "CSo11NSFormatter" +- !private "CSo19NSJSONSerialization" +- !private "VSC20NSJSONWritingOptions" +- !private "CSo8NSLocale" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo10NSTimeZone" +- !private "CSo5NSURL" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "description" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "47f28b44a776ad89633b1eb5fe959f9c" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftmodule new file mode 100644 index 00000000..d9e4d96b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.d new file mode 100644 index 00000000..9173af4e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o new file mode 100644 index 00000000..65c6f39c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.swiftdeps new file mode 100644 index 00000000..f3ae6958 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.swiftdeps @@ -0,0 +1,522 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "LogLevel" +- "LogMessage" +- "Logging" +- "Logger" +provides-nominal: +- "O8Mixpanel8LogLevel" +- "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- "C8Mixpanel6Logger" +provides-member: +- ["O8Mixpanel8LogLevel", ""] +- ["V8Mixpanel10LogMessage", ""] +- ["P8Mixpanel7Logging", ""] +- ["C8Mixpanel6Logger", ""] +provides-dynamic-lookup: +depends-top-level: +- "StringLiteralType" +- "LogMessage" +- "LogLevel" +- "String" +- !private "FloatLiteralType" +- "Logging" +- !private "UnicodeScalarType" +- !private "IntegerLiteralType" +- !private "~=" +- "==" +- "Logger" +- "Set" +- "Any" +depends-member: +- !private ["Ps9AnyObject", "LogMessage"] +- ["Ps9AnyObject", "Logging"] +- ["Ps9AnyObject", "Set"] +- !private ["Ps9AnyObject", "componentsSeparatedByString"] +- !private ["Ps9AnyObject", "enabledLevels"] +- !private ["Ps9AnyObject", "forwardLogMessage"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "loggers"] +- ["Ps9AnyObject", ""] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "forEach"] +- ["Sa", "init"] +- !private ["Sa", "last"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "contains"] +- !private ["Ps23ArrayLiteralConvertible", "forEach"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "insert"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Ps23ArrayLiteralConvertible", "remove"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["Ps11CVarArgType", "Distance"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "componentsSeparatedByString"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- ["Ps14CollectionType", "SubSequence"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "contains"] +- !private ["Ps14CollectionType", "forEach"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "insert"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "remove"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "componentsSeparatedByString"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "componentsSeparatedByString"] +- !private ["Ps28CustomDebugStringConvertible", "contains"] +- !private ["Ps28CustomDebugStringConvertible", "forEach"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "insert"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "remove"] +- ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "componentsSeparatedByString"] +- !private ["Ps23CustomStringConvertible", "contains"] +- !private ["Ps23CustomStringConvertible", "forEach"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "insert"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "remove"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Debug"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Generator"] +- !private ["Ps9Equatable", "Info"] +- ["Ps9Equatable", "IntegerLiteralType"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "componentsSeparatedByString"] +- !private ["Ps9Equatable", "contains"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "insert"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "remove"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Debug"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Generator"] +- !private ["Ps8Hashable", "Info"] +- ["Ps8Hashable", "IntegerLiteralType"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "componentsSeparatedByString"] +- !private ["Ps8Hashable", "contains"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "insert"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "remove"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "contains"] +- !private ["Ps9Indexable", "forEach"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "insert"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "remove"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- ["O8Mixpanel8LogLevel", "Debug"] +- ["O8Mixpanel8LogLevel", "Error"] +- ["O8Mixpanel8LogLevel", "Info"] +- ["O8Mixpanel8LogLevel", "RawValue"] +- ["O8Mixpanel8LogLevel", "Warning"] +- ["O8Mixpanel8LogLevel", "deinit"] +- ["O8Mixpanel8LogLevel", "hashValue"] +- ["O8Mixpanel8LogLevel", "init"] +- ["O8Mixpanel8LogLevel", "rawValue"] +- ["V8Mixpanel10LogMessage", "LogLevel"] +- ["V8Mixpanel10LogMessage", "String"] +- ["V8Mixpanel10LogMessage", "file"] +- ["V8Mixpanel10LogMessage", "function"] +- ["V8Mixpanel10LogMessage", "init"] +- ["V8Mixpanel10LogMessage", "level"] +- ["V8Mixpanel10LogMessage", "text"] +- ["C8Mixpanel6Logger", "Any"] +- ["C8Mixpanel6Logger", "LogLevel"] +- !private ["C8Mixpanel6Logger", "LogMessage"] +- ["C8Mixpanel6Logger", "Logging"] +- ["C8Mixpanel6Logger", "Set"] +- ["C8Mixpanel6Logger", "String"] +- ["C8Mixpanel6Logger", "addLogging"] +- ["C8Mixpanel6Logger", "debug"] +- ["C8Mixpanel6Logger", "deinit"] +- ["C8Mixpanel6Logger", "disableLevel"] +- ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "enabledLevels"] +- ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "forwardLogMessage"] +- ["C8Mixpanel6Logger", "info"] +- ["C8Mixpanel6Logger", "init"] +- !private ["C8Mixpanel6Logger", "loggers"] +- ["C8Mixpanel6Logger", "warn"] +- ["P8Mixpanel7Logging", "LogMessage"] +- ["P8Mixpanel7Logging", "addMessage"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "componentsSeparatedByString"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "forEach"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "last"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "forEach"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "forEach"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["PSo8NSCoding", "componentsSeparatedByString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "componentsSeparatedByString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "componentsSeparatedByString"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "componentsSeparatedByString"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "componentsSeparatedByString"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "componentsSeparatedByString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "componentsSeparatedByString"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "componentsSeparatedByString"] +- !private ["Ps16OutputStreamType", "init"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "forEach"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "Warning"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- ["Ps12SequenceType", "SubSequence"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "contains"] +- !private ["Ps12SequenceType", "forEach"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "insert"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "remove"] +- !private ["Vs3Set", "Generator"] +- !private ["Vs3Set", "contains"] +- ["Vs3Set", "init"] +- !private ["Vs3Set", "insert"] +- !private ["Vs3Set", "remove"] +- !private ["Vs12SetGenerator", "Element"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps10Streamable", "componentsSeparatedByString"] +- !private ["Ps10Streamable", "init"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["SS", "componentsSeparatedByString"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "componentsSeparatedByString"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "forEach"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "forEach"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "hashValue"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "componentsSeparatedByString"] +- !private ["Ps21_ObjectiveCBridgeable", "contains"] +- !private ["Ps21_ObjectiveCBridgeable", "forEach"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "insert"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "remove"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "componentsSeparatedByString"] +- !private ["Ps12_Reflectable", "contains"] +- !private ["Ps12_Reflectable", "forEach"] +- !private ["Ps12_Reflectable", "hashValue"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "insert"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "remove"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- "O8Mixpanel8LogLevel" +- "V8Mixpanel10LogMessage" +- "C8Mixpanel6Logger" +- "P8Mixpanel7Logging" +- "Ps14MirrorPathType" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- "Ps12SequenceType" +- "Vs3Set" +- !private "Vs12SetGenerator" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Ps10Streamable" +- "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "bbe3e740851c457208bc0fa5315fed86" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftdoc new file mode 100644 index 00000000..ede75ebb Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftmodule new file mode 100644 index 00000000..cca7423d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..de6dd620 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-master.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-master.swiftdeps new file mode 100644 index 00000000..8602d1dc --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-master.swiftdeps @@ -0,0 +1,19 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "709600c5d5017c3d37911b460a75a115" +build_time: [522805030, 288369000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift": [522361229, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift": [522804981, 0] diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList new file mode 100644 index 00000000..3334ebbe --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.d new file mode 100644 index 00000000..1e14f781 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o new file mode 100644 index 00000000..99aef86c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdeps new file mode 100644 index 00000000..ba0e1b05 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdeps @@ -0,0 +1,250 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "Mixpanel" +- "MixpanelManager" +provides-nominal: +- "C8Mixpanel8Mixpanel" +- "C8Mixpanel15MixpanelManager" +provides-member: +- ["C8Mixpanel8Mixpanel", ""] +- ["C8Mixpanel15MixpanelManager", ""] +provides-dynamic-lookup: +depends-top-level: +- "String" +- "MixpanelManager" +- "IntegerLiteralType" +- !private "PrintLogging" +- !private "NSUUID" +- "AnyObject" +- !private "StringLiteralType" +- !private "Logger" +- "MixpanelInstance" +- "Double" +- "NSObject" +- "FloatLiteralType" +- "Mixpanel" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "MixpanelInstance"] +- ["Ps9AnyObject", "MixpanelManager"] +- !private ["Ps9AnyObject", "NSUUID"] +- !private ["Ps9AnyObject", "PrintLogging"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "UUIDString"] +- !private ["Ps9AnyObject", "addLogging"] +- !private ["Ps9AnyObject", "getInstance"] +- !private ["Ps9AnyObject", "getMainInstance"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "instances"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "removeInstance"] +- !private ["Ps9AnyObject", "setMainInstance"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "UUIDString"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "UUIDString"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "UUIDString"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "UUIDString"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "UUIDString"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["C8Mixpanel6Logger", "addLogging"] +- !private ["C8Mixpanel6Logger", "warn"] +- !private ["P8Mixpanel7Logging", "init"] +- !private ["Ps14MirrorPathType", "init"] +- ["C8Mixpanel8Mixpanel", "AnyObject"] +- ["C8Mixpanel8Mixpanel", "Double"] +- ["C8Mixpanel8Mixpanel", "MixpanelInstance"] +- !private ["C8Mixpanel8Mixpanel", "MixpanelManager"] +- ["C8Mixpanel8Mixpanel", "NSObject"] +- !private ["C8Mixpanel8Mixpanel", "NSUUID"] +- ["C8Mixpanel8Mixpanel", "String"] +- ["C8Mixpanel8Mixpanel", "deinit"] +- ["C8Mixpanel8Mixpanel", "getInstance"] +- ["C8Mixpanel8Mixpanel", "init"] +- ["C8Mixpanel8Mixpanel", "initialize"] +- ["C8Mixpanel8Mixpanel", "mainInstance"] +- ["C8Mixpanel8Mixpanel", "removeInstance"] +- ["C8Mixpanel8Mixpanel", "setMainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "init"] +- ["C8Mixpanel15MixpanelManager", "AnyObject"] +- ["C8Mixpanel15MixpanelManager", "Double"] +- !private ["C8Mixpanel15MixpanelManager", "Logger"] +- ["C8Mixpanel15MixpanelManager", "MixpanelInstance"] +- ["C8Mixpanel15MixpanelManager", "MixpanelManager"] +- ["C8Mixpanel15MixpanelManager", "NSObject"] +- !private ["C8Mixpanel15MixpanelManager", "PrintLogging"] +- ["C8Mixpanel15MixpanelManager", "String"] +- ["C8Mixpanel15MixpanelManager", "deinit"] +- ["C8Mixpanel15MixpanelManager", "getInstance"] +- ["C8Mixpanel15MixpanelManager", "getMainInstance"] +- ["C8Mixpanel15MixpanelManager", "init"] +- ["C8Mixpanel15MixpanelManager", "initialize"] +- !private ["C8Mixpanel15MixpanelManager", "instances"] +- !private ["C8Mixpanel15MixpanelManager", "mainInstance"] +- ["C8Mixpanel15MixpanelManager", "removeInstance"] +- ["C8Mixpanel15MixpanelManager", "setMainInstance"] +- ["C8Mixpanel15MixpanelManager", "sharedInstance"] +- !private ["PSo8NSCoding", "UUIDString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "UUIDString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "UUIDString"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "UUIDString"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "UUIDString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["CSo6NSUUID", "UUIDString"] +- !private ["CSo6NSUUID", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel12PrintLogging", "deinit"] +- !private ["C8Mixpanel12PrintLogging", "init"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "C8Mixpanel6Logger" +- !private "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "C8Mixpanel15MixpanelManager" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo6NSUUID" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel12PrintLogging" +- !private "Ps12SequenceType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "23eb6f60b94407163e4fd5bcac150036" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc new file mode 100644 index 00000000..c42ca070 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule new file mode 100644 index 00000000..d91271f3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d new file mode 100644 index 00000000..693547fc --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o new file mode 100644 index 00000000..ffb936db Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.swiftdeps new file mode 100644 index 00000000..826de0eb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.swiftdeps @@ -0,0 +1,1061 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelDelegate" +- "Properties" +- "Queue" +- "AppLifecycle" +- "MixpanelInstance" +provides-nominal: +- "P8Mixpanel16MixpanelDelegate" +- "P8Mixpanel12AppLifecycle" +- "C8Mixpanel16MixpanelInstance" +provides-member: +- ["P8Mixpanel16MixpanelDelegate", ""] +- ["P8Mixpanel12AppLifecycle", ""] +- ["C8Mixpanel16MixpanelInstance", ""] +- ["C8Mixpanel16MixpanelInstance", "identify"] +- ["C8Mixpanel16MixpanelInstance", "createAlias"] +- ["C8Mixpanel16MixpanelInstance", "reset"] +- ["C8Mixpanel16MixpanelInstance", "archive"] +- ["C8Mixpanel16MixpanelInstance", "unarchive"] +- ["C8Mixpanel16MixpanelInstance", "archiveProperties"] +- ["C8Mixpanel16MixpanelInstance", "trackIntegration"] +- ["C8Mixpanel16MixpanelInstance", "flush"] +- ["C8Mixpanel16MixpanelInstance", "track"] +- ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- ["C8Mixpanel16MixpanelInstance", "time"] +- ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["C8Mixpanel16MixpanelInstance", "dispatchAndTrack"] +provides-dynamic-lookup: +- "applicationWillResignActive" +- "applicationDidEnterBackground" +- "appLinksNotificationRaised" +- "setCurrentRadio" +- "applicationDidBecomeActive" +- "applicationWillTerminate" +- "applicationWillEnterForeground" +depends-top-level: +- !private "Dictionary" +- "Queue" +- !private "UnicodeScalarType" +- "FlushDelegate" +- "StringLiteralType" +- !private "CTRadioAccessTechnologyDidChangeNotification" +- "String" +- "Double" +- "CustomDebugStringConvertible" +- !private "UIDevice" +- "Properties" +- !private "UIApplicationDidEnterBackgroundNotification" +- !private "NSNotification" +- !private "UIApplication" +- !private "Network" +- !private "BasePath" +- !private "UIApplicationWillTerminateNotification" +- !private "NSUUID" +- !private "UIApplicationDidBecomeActiveNotification" +- "MixpanelDelegate" +- !private "Logger" +- "AppLifecycle" +- "AnyObject" +- !private "NSUserDefaults" +- !private "!=" +- "dispatch_queue_t" +- !private "dispatch_async" +- !private "NSDate" +- "People" +- "NSObject" +- "MixpanelInstance" +- "UIBackgroundTaskInvalid" +- !private "UIApplicationWillEnterForegroundNotification" +- !private "NSNotificationCenter" +- !private "!" +- !private "==" +- "Flush" +- !private "AutomaticProperties" +- !private "+" +- "BooleanLiteralType" +- !private "NSClassFromString" +- !private "dispatch_get_main_queue" +- "Void" +- !private "dispatch_queue_create" +- !private "ArchivedProperties" +- !private "Persistence" +- "Bool" +- !private "DISPATCH_QUEUE_SERIAL" +- !private "UIApplicationWillResignActiveNotification" +- "Track" +- !private "UIApplicationLaunchOptionsRemoteNotificationKey" +depends-member: +- !private ["Ps9AnyObject", "ArchivedProperties"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["Ps9AnyObject", "DISPATCH_QUEUE_SERIAL"] +- ["Ps9AnyObject", "Flush"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSClassFromString"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSNotificationCenter"] +- !private ["Ps9AnyObject", "NSUUID"] +- !private ["Ps9AnyObject", "NSUserDefaults"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "People"] +- !private ["Ps9AnyObject", "Persistence"] +- ["Ps9AnyObject", "Properties"] +- ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "UIApplication"] +- !private ["Ps9AnyObject", "UIApplicationDidBecomeActiveNotification"] +- !private ["Ps9AnyObject", "UIApplicationDidEnterBackgroundNotification"] +- !private ["Ps9AnyObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9AnyObject", "UIApplicationWillEnterForegroundNotification"] +- !private ["Ps9AnyObject", "UIApplicationWillResignActiveNotification"] +- !private ["Ps9AnyObject", "UIApplicationWillTerminateNotification"] +- ["Ps9AnyObject", "UIBackgroundTaskInvalid"] +- !private ["Ps9AnyObject", "UIDevice"] +- !private ["Ps9AnyObject", "UUIDString"] +- !private ["Ps9AnyObject", "_flushInterval"] +- !private ["Ps9AnyObject", "addObserver"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "appLinksNotificationRaised"] +- !private ["Ps9AnyObject", "applicationDidBecomeActive"] +- !private ["Ps9AnyObject", "applicationDidEnterBackground"] +- !private ["Ps9AnyObject", "applicationWillEnterForeground"] +- !private ["Ps9AnyObject", "applicationWillResignActive"] +- !private ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "archiveEvents"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "archiveProperties"] +- !private ["Ps9AnyObject", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps9AnyObject", "boolForKey"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "clearTimedEvents"] +- !private ["Ps9AnyObject", "currentDevice"] +- ["Ps9AnyObject", "debugDescription"] +- !private ["Ps9AnyObject", "defaultCenter"] +- !private ["Ps9AnyObject", "defaultDistinctId"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "disableLevel"] +- !private ["Ps9AnyObject", "dispatchAndTrack"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_queue_create"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "enableLevel"] +- !private ["Ps9AnyObject", "endBackgroundTask"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "eventsQueue"] +- ["Ps9AnyObject", "flush"] +- !private ["Ps9AnyObject", "flushEventsQueue"] +- !private ["Ps9AnyObject", "flushInstance"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "flushOnBackground"] +- !private ["Ps9AnyObject", "flushPeopleQueue"] +- !private ["Ps9AnyObject", "getCurrentRadio"] +- !private ["Ps9AnyObject", "identifierForVendor"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isEmpty"] +- !private ["Ps9AnyObject", "loggingEnabled"] +- !private ["Ps9AnyObject", "networkActivityIndicatorVisible"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "properties"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- !private ["Ps9AnyObject", "removeObserver"] +- !private ["Ps9AnyObject", "serialQueue"] +- !private ["Ps9AnyObject", "setBool"] +- !private ["Ps9AnyObject", "setCurrentRadio"] +- !private ["Ps9AnyObject", "setupListeners"] +- !private ["Ps9AnyObject", "sharedApplication"] +- !private ["Ps9AnyObject", "showNetworkActivityIndicator"] +- !private ["Ps9AnyObject", "standardUserDefaults"] +- !private ["Ps9AnyObject", "superProperties"] +- !private ["Ps9AnyObject", "synchronize"] +- !private ["Ps9AnyObject", "taskId"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "timedEvents"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackInstance"] +- !private ["Ps9AnyObject", "trackIntegration"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- !private ["Ps9AnyObject", "unarchive"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- ["Ps9AnyObject", "updateNetworkActivityIndicator"] +- !private ["Ps9AnyObject", "useIPAddressForGeoLocation"] +- !private ["Ps9AnyObject", "userInfo"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "_flushInterval"] +- ["P8Mixpanel12AppLifecycle", "applicationDidBecomeActive"] +- ["P8Mixpanel12AppLifecycle", "applicationWillResignActive"] +- !private ["P8Mixpanel12AppLifecycle", "delegate"] +- !private ["P8Mixpanel12AppLifecycle", "flushEventsQueue"] +- !private ["P8Mixpanel12AppLifecycle", "flushInterval"] +- !private ["P8Mixpanel12AppLifecycle", "flushOnBackground"] +- !private ["P8Mixpanel12AppLifecycle", "flushPeopleQueue"] +- ["P8Mixpanel12AppLifecycle", "init"] +- !private ["P8Mixpanel12AppLifecycle", "useIPAddressForGeoLocation"] +- !private ["V8Mixpanel18ArchivedProperties", "init"] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "removeAll"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "removeAll"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "getCurrentRadio"] +- !private ["C8Mixpanel19AutomaticProperties", "properties"] +- !private ["V8Mixpanel8BasePath", "MixpanelAPI"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["Ps11CVarArgType", "Distance"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "UUIDString"] +- !private ["Ps11CVarArgType", "addObserver"] +- !private ["Ps11CVarArgType", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps11CVarArgType", "boolForKey"] +- !private ["Ps11CVarArgType", "currentDevice"] +- !private ["Ps11CVarArgType", "defaultCenter"] +- !private ["Ps11CVarArgType", "endBackgroundTask"] +- !private ["Ps11CVarArgType", "identifierForVendor"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isEmpty"] +- !private ["Ps11CVarArgType", "networkActivityIndicatorVisible"] +- !private ["Ps11CVarArgType", "removeObserver"] +- !private ["Ps11CVarArgType", "setBool"] +- !private ["Ps11CVarArgType", "sharedApplication"] +- !private ["Ps11CVarArgType", "standardUserDefaults"] +- !private ["Ps11CVarArgType", "synchronize"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps11CVarArgType", "userInfo"] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeAll"] +- !private ["Ps14CollectionType", "subscript"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "ArchivedProperties"] +- !private ["Ps28CustomDebugStringConvertible", "AutomaticProperties"] +- !private ["Ps28CustomDebugStringConvertible", "BasePath"] +- !private ["Ps28CustomDebugStringConvertible", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_QUEUE_SERIAL"] +- ["Ps28CustomDebugStringConvertible", "Flush"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Logger"] +- !private ["Ps28CustomDebugStringConvertible", "NSClassFromString"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSNotificationCenter"] +- !private ["Ps28CustomDebugStringConvertible", "NSUUID"] +- !private ["Ps28CustomDebugStringConvertible", "NSUserDefaults"] +- !private ["Ps28CustomDebugStringConvertible", "Network"] +- !private ["Ps28CustomDebugStringConvertible", "People"] +- !private ["Ps28CustomDebugStringConvertible", "Persistence"] +- ["Ps28CustomDebugStringConvertible", "Properties"] +- ["Ps28CustomDebugStringConvertible", "Queue"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Track"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplication"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationDidBecomeActiveNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationDidEnterBackgroundNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillEnterForegroundNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillResignActiveNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillTerminateNotification"] +- ["Ps28CustomDebugStringConvertible", "UIBackgroundTaskInvalid"] +- !private ["Ps28CustomDebugStringConvertible", "UIDevice"] +- !private ["Ps28CustomDebugStringConvertible", "UUIDString"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "addObserver"] +- !private ["Ps28CustomDebugStringConvertible", "apiToken"] +- !private ["Ps28CustomDebugStringConvertible", "appLinksNotificationRaised"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- !private ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "archiveProperties"] +- !private ["Ps28CustomDebugStringConvertible", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps28CustomDebugStringConvertible", "boolForKey"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentDevice"] +- ["Ps28CustomDebugStringConvertible", "debugDescription"] +- !private ["Ps28CustomDebugStringConvertible", "defaultCenter"] +- !private ["Ps28CustomDebugStringConvertible", "defaultDistinctId"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dispatchAndTrack"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_async"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_queue_create"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "endBackgroundTask"] +- !private ["Ps28CustomDebugStringConvertible", "eventsQueue"] +- ["Ps28CustomDebugStringConvertible", "flush"] +- !private ["Ps28CustomDebugStringConvertible", "flushInstance"] +- !private ["Ps28CustomDebugStringConvertible", "flushOnBackground"] +- !private ["Ps28CustomDebugStringConvertible", "identifierForVendor"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "loggingEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "networkActivityIndicatorVisible"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "removeAll"] +- !private ["Ps28CustomDebugStringConvertible", "removeObserver"] +- !private ["Ps28CustomDebugStringConvertible", "serialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "setBool"] +- !private ["Ps28CustomDebugStringConvertible", "setCurrentRadio"] +- !private ["Ps28CustomDebugStringConvertible", "setupListeners"] +- !private ["Ps28CustomDebugStringConvertible", "sharedApplication"] +- !private ["Ps28CustomDebugStringConvertible", "showNetworkActivityIndicator"] +- !private ["Ps28CustomDebugStringConvertible", "standardUserDefaults"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "superProperties"] +- !private ["Ps28CustomDebugStringConvertible", "synchronize"] +- !private ["Ps28CustomDebugStringConvertible", "taskId"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "timedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackInstance"] +- !private ["Ps28CustomDebugStringConvertible", "trackIntegration"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- !private ["Ps28CustomDebugStringConvertible", "unarchive"] +- ["Ps28CustomDebugStringConvertible", "updateNetworkActivityIndicator"] +- !private ["Ps28CustomDebugStringConvertible", "userInfo"] +- ["Ps28CustomDebugStringConvertible", ""] +- ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UUIDString"] +- !private ["Ps23CustomStringConvertible", "Value"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "addObserver"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps23CustomStringConvertible", "boolForKey"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "currentDevice"] +- !private ["Ps23CustomStringConvertible", "defaultCenter"] +- !private ["Ps23CustomStringConvertible", "endBackgroundTask"] +- !private ["Ps23CustomStringConvertible", "identifierForVendor"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "networkActivityIndicatorVisible"] +- !private ["Ps23CustomStringConvertible", "removeAll"] +- !private ["Ps23CustomStringConvertible", "removeObserver"] +- !private ["Ps23CustomStringConvertible", "setBool"] +- !private ["Ps23CustomStringConvertible", "sharedApplication"] +- !private ["Ps23CustomStringConvertible", "standardUserDefaults"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "synchronize"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "userInfo"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Debug"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Info"] +- ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "UUIDString"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "addObserver"] +- !private ["Ps9Equatable", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps9Equatable", "boolForKey"] +- !private ["Ps9Equatable", "currentDevice"] +- !private ["Ps9Equatable", "defaultCenter"] +- !private ["Ps9Equatable", "endBackgroundTask"] +- !private ["Ps9Equatable", "identifierForVendor"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isEmpty"] +- !private ["Ps9Equatable", "networkActivityIndicatorVisible"] +- !private ["Ps9Equatable", "removeObserver"] +- !private ["Ps9Equatable", "setBool"] +- !private ["Ps9Equatable", "sharedApplication"] +- !private ["Ps9Equatable", "standardUserDefaults"] +- !private ["Ps9Equatable", "synchronize"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps9Equatable", "userInfo"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Sf", "deinit"] +- !private ["C8Mixpanel5Flush", "_flushInterval"] +- !private ["C8Mixpanel5Flush", "applicationDidBecomeActive"] +- !private ["C8Mixpanel5Flush", "applicationWillResignActive"] +- !private ["C8Mixpanel5Flush", "deinit"] +- !private ["C8Mixpanel5Flush", "delegate"] +- !private ["C8Mixpanel5Flush", "flushEventsQueue"] +- !private ["C8Mixpanel5Flush", "flushInterval"] +- !private ["C8Mixpanel5Flush", "flushOnBackground"] +- !private ["C8Mixpanel5Flush", "flushPeopleQueue"] +- ["C8Mixpanel5Flush", "init"] +- !private ["C8Mixpanel5Flush", "useIPAddressForGeoLocation"] +- !private ["P8Mixpanel13FlushDelegate", "ArchivedProperties"] +- !private ["P8Mixpanel13FlushDelegate", "AutomaticProperties"] +- !private ["P8Mixpanel13FlushDelegate", "BasePath"] +- !private ["P8Mixpanel13FlushDelegate", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["P8Mixpanel13FlushDelegate", "DISPATCH_QUEUE_SERIAL"] +- ["P8Mixpanel13FlushDelegate", "Flush"] +- !private ["P8Mixpanel13FlushDelegate", "Logger"] +- !private ["P8Mixpanel13FlushDelegate", "NSClassFromString"] +- !private ["P8Mixpanel13FlushDelegate", "NSDate"] +- !private ["P8Mixpanel13FlushDelegate", "NSNotificationCenter"] +- !private ["P8Mixpanel13FlushDelegate", "NSUUID"] +- !private ["P8Mixpanel13FlushDelegate", "NSUserDefaults"] +- !private ["P8Mixpanel13FlushDelegate", "Network"] +- !private ["P8Mixpanel13FlushDelegate", "People"] +- !private ["P8Mixpanel13FlushDelegate", "Persistence"] +- ["P8Mixpanel13FlushDelegate", "Properties"] +- ["P8Mixpanel13FlushDelegate", "Queue"] +- !private ["P8Mixpanel13FlushDelegate", "Track"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplication"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationDidBecomeActiveNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationDidEnterBackgroundNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillEnterForegroundNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillResignActiveNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillTerminateNotification"] +- ["P8Mixpanel13FlushDelegate", "UIBackgroundTaskInvalid"] +- !private ["P8Mixpanel13FlushDelegate", "UIDevice"] +- !private ["P8Mixpanel13FlushDelegate", "apiToken"] +- !private ["P8Mixpanel13FlushDelegate", "appLinksNotificationRaised"] +- !private ["P8Mixpanel13FlushDelegate", "applicationDidBecomeActive"] +- !private ["P8Mixpanel13FlushDelegate", "applicationDidEnterBackground"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillEnterForeground"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillResignActive"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillTerminate"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "archiveProperties"] +- ["P8Mixpanel13FlushDelegate", "debugDescription"] +- !private ["P8Mixpanel13FlushDelegate", "defaultDistinctId"] +- !private ["P8Mixpanel13FlushDelegate", "delegate"] +- !private ["P8Mixpanel13FlushDelegate", "dispatchAndTrack"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_async"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_get_main_queue"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_queue_create"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "eventsQueue"] +- ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "flushInstance"] +- !private ["P8Mixpanel13FlushDelegate", "flushOnBackground"] +- !private ["P8Mixpanel13FlushDelegate", "loggingEnabled"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "serialQueue"] +- !private ["P8Mixpanel13FlushDelegate", "setCurrentRadio"] +- !private ["P8Mixpanel13FlushDelegate", "setupListeners"] +- !private ["P8Mixpanel13FlushDelegate", "showNetworkActivityIndicator"] +- !private ["P8Mixpanel13FlushDelegate", "superProperties"] +- !private ["P8Mixpanel13FlushDelegate", "taskId"] +- !private ["P8Mixpanel13FlushDelegate", "timedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackInstance"] +- !private ["P8Mixpanel13FlushDelegate", "trackIntegration"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["P8Mixpanel13FlushDelegate", "unarchive"] +- ["P8Mixpanel13FlushDelegate", "updateNetworkActivityIndicator"] +- ["P8Mixpanel13FlushDelegate", ""] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Debug"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Info"] +- ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "UUIDString"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "addObserver"] +- !private ["Ps8Hashable", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps8Hashable", "boolForKey"] +- !private ["Ps8Hashable", "currentDevice"] +- !private ["Ps8Hashable", "defaultCenter"] +- !private ["Ps8Hashable", "endBackgroundTask"] +- !private ["Ps8Hashable", "identifierForVendor"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isEmpty"] +- !private ["Ps8Hashable", "networkActivityIndicatorVisible"] +- !private ["Ps8Hashable", "removeObserver"] +- !private ["Ps8Hashable", "setBool"] +- !private ["Ps8Hashable", "sharedApplication"] +- !private ["Ps8Hashable", "standardUserDefaults"] +- !private ["Ps8Hashable", "synchronize"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps8Hashable", "userInfo"] +- !private ["SQ", "deinit"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeAll"] +- !private ["Ps9Indexable", "subscript"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["O8Mixpanel8LogLevel", "Debug"] +- !private ["O8Mixpanel8LogLevel", "Error"] +- !private ["O8Mixpanel8LogLevel", "Info"] +- !private ["O8Mixpanel8LogLevel", "Warning"] +- !private ["C8Mixpanel6Logger", "disableLevel"] +- !private ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps14MirrorPathType", "isEmpty"] +- ["P8Mixpanel16MixpanelDelegate", "Bool"] +- ["P8Mixpanel16MixpanelDelegate", "MixpanelInstance"] +- ["P8Mixpanel16MixpanelDelegate", "mixpanelWillFlush"] +- ["C8Mixpanel16MixpanelInstance", "AnyObject"] +- !private ["C8Mixpanel16MixpanelInstance", "ArchivedProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "AutomaticProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "BasePath"] +- ["C8Mixpanel16MixpanelInstance", "Bool"] +- !private ["C8Mixpanel16MixpanelInstance", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "DISPATCH_QUEUE_SERIAL"] +- ["C8Mixpanel16MixpanelInstance", "Double"] +- ["C8Mixpanel16MixpanelInstance", "Flush"] +- !private ["C8Mixpanel16MixpanelInstance", "Logger"] +- ["C8Mixpanel16MixpanelInstance", "MixpanelDelegate"] +- !private ["C8Mixpanel16MixpanelInstance", "NSClassFromString"] +- !private ["C8Mixpanel16MixpanelInstance", "NSDate"] +- !private ["C8Mixpanel16MixpanelInstance", "NSNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "NSNotificationCenter"] +- ["C8Mixpanel16MixpanelInstance", "NSObject"] +- !private ["C8Mixpanel16MixpanelInstance", "NSUUID"] +- !private ["C8Mixpanel16MixpanelInstance", "NSUserDefaults"] +- !private ["C8Mixpanel16MixpanelInstance", "Network"] +- ["C8Mixpanel16MixpanelInstance", "People"] +- !private ["C8Mixpanel16MixpanelInstance", "Persistence"] +- ["C8Mixpanel16MixpanelInstance", "Properties"] +- ["C8Mixpanel16MixpanelInstance", "Queue"] +- ["C8Mixpanel16MixpanelInstance", "String"] +- ["C8Mixpanel16MixpanelInstance", "Track"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplication"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationDidBecomeActiveNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationDidEnterBackgroundNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillEnterForegroundNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillResignActiveNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillTerminateNotification"] +- ["C8Mixpanel16MixpanelInstance", "UIBackgroundTaskInvalid"] +- !private ["C8Mixpanel16MixpanelInstance", "UIDevice"] +- ["C8Mixpanel16MixpanelInstance", "Void"] +- ["C8Mixpanel16MixpanelInstance", "apiToken"] +- !private ["C8Mixpanel16MixpanelInstance", "appLinksNotificationRaised"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationDidBecomeActive"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationDidEnterBackground"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillEnterForeground"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillResignActive"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillTerminate"] +- ["C8Mixpanel16MixpanelInstance", "archive"] +- ["C8Mixpanel16MixpanelInstance", "archiveProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- ["C8Mixpanel16MixpanelInstance", "createAlias"] +- ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "debugDescription"] +- ["C8Mixpanel16MixpanelInstance", "defaultDistinctId"] +- ["C8Mixpanel16MixpanelInstance", "deinit"] +- ["C8Mixpanel16MixpanelInstance", "delegate"] +- ["C8Mixpanel16MixpanelInstance", "dispatchAndTrack"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_async"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_get_main_queue"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_queue_create"] +- ["C8Mixpanel16MixpanelInstance", "dispatch_queue_t"] +- ["C8Mixpanel16MixpanelInstance", "distinctId"] +- ["C8Mixpanel16MixpanelInstance", "eventsQueue"] +- ["C8Mixpanel16MixpanelInstance", "flush"] +- ["C8Mixpanel16MixpanelInstance", "flushInstance"] +- ["C8Mixpanel16MixpanelInstance", "flushInterval"] +- ["C8Mixpanel16MixpanelInstance", "flushOnBackground"] +- ["C8Mixpanel16MixpanelInstance", "identify"] +- ["C8Mixpanel16MixpanelInstance", "init"] +- ["C8Mixpanel16MixpanelInstance", "loggingEnabled"] +- ["C8Mixpanel16MixpanelInstance", "people"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- ["C8Mixpanel16MixpanelInstance", "reset"] +- ["C8Mixpanel16MixpanelInstance", "serialQueue"] +- ["C8Mixpanel16MixpanelInstance", "serverURL"] +- ["C8Mixpanel16MixpanelInstance", "setCurrentRadio"] +- !private ["C8Mixpanel16MixpanelInstance", "setupListeners"] +- ["C8Mixpanel16MixpanelInstance", "showNetworkActivityIndicator"] +- ["C8Mixpanel16MixpanelInstance", "superProperties"] +- ["C8Mixpanel16MixpanelInstance", "taskId"] +- ["C8Mixpanel16MixpanelInstance", "time"] +- ["C8Mixpanel16MixpanelInstance", "timedEvents"] +- ["C8Mixpanel16MixpanelInstance", "track"] +- ["C8Mixpanel16MixpanelInstance", "trackInstance"] +- ["C8Mixpanel16MixpanelInstance", "trackIntegration"] +- ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- ["C8Mixpanel16MixpanelInstance", "unarchive"] +- ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["C8Mixpanel16MixpanelInstance", "updateNetworkActivityIndicator"] +- ["C8Mixpanel16MixpanelInstance", "useIPAddressForGeoLocation"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "removeAll"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "removeAll"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "removeAll"] +- !private ["PSo8NSCoding", "UUIDString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isEmpty"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo8NSCoding", "userInfo"] +- !private ["PSo9NSCopying", "UUIDString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "isEmpty"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "userInfo"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "isEmpty"] +- !private ["CSo14NSNotification", "userInfo"] +- !private ["CSo20NSNotificationCenter", "addObserver"] +- !private ["CSo20NSNotificationCenter", "defaultCenter"] +- !private ["CSo20NSNotificationCenter", "removeObserver"] +- !private ["CSo8NSObject", "UUIDString"] +- !private ["CSo8NSObject", "addObserver"] +- !private ["CSo8NSObject", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo8NSObject", "boolForKey"] +- !private ["CSo8NSObject", "currentDevice"] +- !private ["CSo8NSObject", "defaultCenter"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "endBackgroundTask"] +- !private ["CSo8NSObject", "identifierForVendor"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isEmpty"] +- !private ["CSo8NSObject", "networkActivityIndicatorVisible"] +- !private ["CSo8NSObject", "removeObserver"] +- !private ["CSo8NSObject", "setBool"] +- !private ["CSo8NSObject", "sharedApplication"] +- !private ["CSo8NSObject", "standardUserDefaults"] +- !private ["CSo8NSObject", "synchronize"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["CSo8NSObject", "userInfo"] +- !private ["PSo16NSObjectProtocol", "UUIDString"] +- !private ["PSo16NSObjectProtocol", "addObserver"] +- !private ["PSo16NSObjectProtocol", "beginBackgroundTaskWithExpirationHandler"] +- !private ["PSo16NSObjectProtocol", "boolForKey"] +- !private ["PSo16NSObjectProtocol", "currentDevice"] +- !private ["PSo16NSObjectProtocol", "defaultCenter"] +- !private ["PSo16NSObjectProtocol", "endBackgroundTask"] +- !private ["PSo16NSObjectProtocol", "identifierForVendor"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isEmpty"] +- !private ["PSo16NSObjectProtocol", "networkActivityIndicatorVisible"] +- !private ["PSo16NSObjectProtocol", "removeObserver"] +- !private ["PSo16NSObjectProtocol", "setBool"] +- !private ["PSo16NSObjectProtocol", "sharedApplication"] +- !private ["PSo16NSObjectProtocol", "standardUserDefaults"] +- !private ["PSo16NSObjectProtocol", "synchronize"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "userInfo"] +- !private ["PSo14NSSecureCoding", "UUIDString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "isEmpty"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSString", "isEmpty"] +- !private ["CSo6NSUUID", "UUIDString"] +- !private ["CSo6NSUUID", "init"] +- !private ["CSo14NSUserDefaults", "boolForKey"] +- !private ["CSo14NSUserDefaults", "setBool"] +- !private ["CSo14NSUserDefaults", "standardUserDefaults"] +- !private ["CSo14NSUserDefaults", "synchronize"] +- !private ["C8Mixpanel7Network", "trackIntegration"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16OutputStreamType", "isEmpty"] +- !private ["C8Mixpanel6People", "distinctId"] +- !private ["C8Mixpanel6People", "init"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["C8Mixpanel11Persistence", "archive"] +- !private ["C8Mixpanel11Persistence", "archiveEvents"] +- !private ["C8Mixpanel11Persistence", "archivePeople"] +- !private ["C8Mixpanel11Persistence", "archiveProperties"] +- !private ["C8Mixpanel11Persistence", "unarchive"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAll"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- !private ["Ps16RawRepresentable", "Warning"] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeAll"] +- !private ["Ps12SequenceType", "subscript"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Streamable", "isEmpty"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["SS", "isEmpty"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps30StringInterpolationConvertible", "isEmpty"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "isEmpty"] +- !private ["C8Mixpanel5Track", "clearSuperProperties"] +- !private ["C8Mixpanel5Track", "clearTimedEvents"] +- !private ["C8Mixpanel5Track", "init"] +- !private ["C8Mixpanel5Track", "registerSuperProperties"] +- !private ["C8Mixpanel5Track", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel5Track", "time"] +- !private ["C8Mixpanel5Track", "track"] +- !private ["C8Mixpanel5Track", "unregisterSuperProperty"] +- !private ["CSo13UIApplication", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo13UIApplication", "endBackgroundTask"] +- !private ["CSo13UIApplication", "networkActivityIndicatorVisible"] +- !private ["CSo13UIApplication", "sharedApplication"] +- !private ["CSo8UIDevice", "currentDevice"] +- !private ["CSo8UIDevice", "identifierForVendor"] +- !private ["CSo11UIResponder", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo11UIResponder", "endBackgroundTask"] +- !private ["CSo11UIResponder", "networkActivityIndicatorVisible"] +- !private ["CSo11UIResponder", "sharedApplication"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "removeAll"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "removeAll"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAll"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "removeAll"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- "P8Mixpanel12AppLifecycle" +- !private "V8Mixpanel18ArchivedProperties" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "V8Mixpanel8BasePath" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "C8Mixpanel5Flush" +- "P8Mixpanel13FlushDelegate" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- !private "O8Mixpanel8LogLevel" +- !private "C8Mixpanel6Logger" +- "Ps14MirrorPathType" +- "P8Mixpanel16MixpanelDelegate" +- "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- !private "PSo16NSMutableCopying" +- !private "CSo14NSNotification" +- !private "CSo20NSNotificationCenter" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo6NSUUID" +- !private "CSo14NSUserDefaults" +- !private "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "C8Mixpanel5Track" +- !private "CSo13UIApplication" +- !private "CSo8UIDevice" +- !private "CSo11UIResponder" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "727686c32d7ec615879f267f44d5ae62" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftdoc new file mode 100644 index 00000000..bc004cdd Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftmodule new file mode 100644 index 00000000..9dddb0b6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_dependency_info.dat new file mode 100644 index 00000000..745744f7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.d new file mode 100644 index 00000000..e87373a9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.o new file mode 100644 index 00000000..ce74651e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftdoc new file mode 100644 index 00000000..dc707c26 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftmodule new file mode 100644 index 00000000..69b950d7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.d new file mode 100644 index 00000000..ccf2f834 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o new file mode 100644 index 00000000..292667c2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.swiftdeps new file mode 100644 index 00000000..aa9e4f58 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.swiftdeps @@ -0,0 +1,567 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "BasePath" +- "Method" +- "Resource" +- "Reason" +- "Network" +provides-nominal: +- "V8Mixpanel8BasePath" +- "O8Mixpanel6Method" +- "V8Mixpanel8Resource" +- "O8Mixpanel6Reason" +- "C8Mixpanel7Network" +provides-member: +- ["V8Mixpanel8BasePath", ""] +- ["O8Mixpanel6Method", ""] +- ["V8Mixpanel8Resource", ""] +- ["O8Mixpanel6Reason", ""] +- ["C8Mixpanel7Network", ""] +provides-dynamic-lookup: +depends-top-level: +- "StringLiteralType" +- !private "Array" +- "BasePath" +- "NSURLResponse" +- "Network" +- !private "NSUTF8StringEncoding" +- "String" +- !private "NSHTTPURLResponse" +- !private "~=" +- "NSURL" +- "==" +- !private "NSURLSession" +- !private "NSMutableURLRequest" +- !private "JSONHandler" +- !private "Dictionary" +- !private "Void" +- "NSError" +- !private "NSURLRequest" +- "Reason" +- !private "??" +- !private "FlushType" +- "Method" +- "Bool" +- "BooleanLiteralType" +- !private "Logger" +- "Resource" +- "NSData" +- "Int" +depends-member: +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "FlushType"] +- !private ["Ps9AnyObject", "HTTPBody"] +- !private ["Ps9AnyObject", "HTTPMethod"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "JSONHandler"] +- !private ["Ps9AnyObject", "Key"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "Method"] +- !private ["Ps9AnyObject", "NSMutableURLRequest"] +- !private ["Ps9AnyObject", "NSURLSession"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "Reason"] +- !private ["Ps9AnyObject", "Resource"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "URLByAppendingPathComponent"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "apiRequest"] +- !private ["Ps9AnyObject", "buildResource"] +- !private ["Ps9AnyObject", "buildURLRequest"] +- !private ["Ps9AnyObject", "dataTaskWithRequest"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "debug"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "encodeAPIData"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "resume"] +- !private ["Ps9AnyObject", "setValue"] +- !private ["Ps9AnyObject", "sharedSession"] +- !private ["Ps9AnyObject", "statusCode"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "deinit"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- ["V8Mixpanel8BasePath", "MixpanelAPI"] +- ["V8Mixpanel8BasePath", "NSURL"] +- ["V8Mixpanel8BasePath", "String"] +- ["V8Mixpanel8BasePath", "buildURL"] +- ["V8Mixpanel8BasePath", "init"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "HTTPBody"] +- !private ["Ps11CVarArgType", "HTTPMethod"] +- !private ["Ps11CVarArgType", "Key"] +- !private ["Ps11CVarArgType", "URLByAppendingPathComponent"] +- !private ["Ps11CVarArgType", "Value"] +- !private ["Ps11CVarArgType", "dataTaskWithRequest"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "resume"] +- !private ["Ps11CVarArgType", "setValue"] +- !private ["Ps11CVarArgType", "sharedSession"] +- !private ["Ps11CVarArgType", "statusCode"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "HTTPBody"] +- !private ["Ps28CustomDebugStringConvertible", "HTTPMethod"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "dataTaskWithRequest"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "resume"] +- !private ["Ps28CustomDebugStringConvertible", "setValue"] +- !private ["Ps28CustomDebugStringConvertible", "sharedSession"] +- !private ["Ps28CustomDebugStringConvertible", "statusCode"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "HTTPBody"] +- !private ["Ps23CustomStringConvertible", "HTTPMethod"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "dataTaskWithRequest"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "resume"] +- !private ["Ps23CustomStringConvertible", "setValue"] +- !private ["Ps23CustomStringConvertible", "sharedSession"] +- !private ["Ps23CustomStringConvertible", "statusCode"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "HTTPBody"] +- !private ["Ps9Equatable", "HTTPMethod"] +- !private ["Ps9Equatable", "Key"] +- !private ["Ps9Equatable", "POST"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "URLByAppendingPathComponent"] +- !private ["Ps9Equatable", "Value"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "dataTaskWithRequest"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "resume"] +- !private ["Ps9Equatable", "setValue"] +- !private ["Ps9Equatable", "sharedSession"] +- !private ["Ps9Equatable", "statusCode"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["O8Mixpanel9FlushType", "Events"] +- !private ["O8Mixpanel9FlushType", "deinit"] +- !private ["O8Mixpanel9FlushType", "rawValue"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "HTTPBody"] +- !private ["Ps8Hashable", "HTTPMethod"] +- !private ["Ps8Hashable", "Key"] +- !private ["Ps8Hashable", "POST"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "URLByAppendingPathComponent"] +- !private ["Ps8Hashable", "Value"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "dataTaskWithRequest"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "resume"] +- !private ["Ps8Hashable", "setValue"] +- !private ["Ps8Hashable", "sharedSession"] +- !private ["Ps8Hashable", "statusCode"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "Value"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- !private ["C8Mixpanel6Logger", "debug"] +- ["O8Mixpanel6Method", "GET"] +- ["O8Mixpanel6Method", "POST"] +- ["O8Mixpanel6Method", "RawValue"] +- ["O8Mixpanel6Method", "deinit"] +- ["O8Mixpanel6Method", "hashValue"] +- ["O8Mixpanel6Method", "init"] +- ["O8Mixpanel6Method", "rawValue"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["PSo8NSCoding", "HTTPBody"] +- !private ["PSo8NSCoding", "HTTPMethod"] +- !private ["PSo8NSCoding", "Key"] +- !private ["PSo8NSCoding", "URLByAppendingPathComponent"] +- !private ["PSo8NSCoding", "Value"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "setValue"] +- !private ["PSo8NSCoding", "statusCode"] +- !private ["PSo9NSCopying", "HTTPBody"] +- !private ["PSo9NSCopying", "HTTPMethod"] +- !private ["PSo9NSCopying", "Key"] +- !private ["PSo9NSCopying", "URLByAppendingPathComponent"] +- !private ["PSo9NSCopying", "Value"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "resume"] +- !private ["PSo9NSCopying", "setValue"] +- !private ["PSo9NSCopying", "statusCode"] +- !private ["CSo12NSDictionary", "Key"] +- !private ["CSo12NSDictionary", "Value"] +- !private ["PSo17NSFastEnumeration", "Key"] +- !private ["PSo17NSFastEnumeration", "Value"] +- !private ["CSo17NSHTTPURLResponse", "statusCode"] +- !private ["PSo16NSMutableCopying", "HTTPBody"] +- !private ["PSo16NSMutableCopying", "HTTPMethod"] +- !private ["PSo16NSMutableCopying", "Key"] +- !private ["PSo16NSMutableCopying", "Value"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "setValue"] +- !private ["CSo19NSMutableURLRequest", "HTTPBody"] +- !private ["CSo19NSMutableURLRequest", "HTTPMethod"] +- !private ["CSo19NSMutableURLRequest", "deinit"] +- !private ["CSo19NSMutableURLRequest", "init"] +- !private ["CSo19NSMutableURLRequest", "setValue"] +- !private ["CSo8NSObject", "HTTPBody"] +- !private ["CSo8NSObject", "HTTPMethod"] +- !private ["CSo8NSObject", "Key"] +- !private ["CSo8NSObject", "URLByAppendingPathComponent"] +- !private ["CSo8NSObject", "Value"] +- !private ["CSo8NSObject", "dataTaskWithRequest"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "resume"] +- !private ["CSo8NSObject", "setValue"] +- !private ["CSo8NSObject", "sharedSession"] +- !private ["CSo8NSObject", "statusCode"] +- !private ["PSo16NSObjectProtocol", "HTTPBody"] +- !private ["PSo16NSObjectProtocol", "HTTPMethod"] +- !private ["PSo16NSObjectProtocol", "Key"] +- !private ["PSo16NSObjectProtocol", "URLByAppendingPathComponent"] +- !private ["PSo16NSObjectProtocol", "Value"] +- !private ["PSo16NSObjectProtocol", "dataTaskWithRequest"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "resume"] +- !private ["PSo16NSObjectProtocol", "setValue"] +- !private ["PSo16NSObjectProtocol", "sharedSession"] +- !private ["PSo16NSObjectProtocol", "statusCode"] +- !private ["PSo14NSSecureCoding", "HTTPBody"] +- !private ["PSo14NSSecureCoding", "HTTPMethod"] +- !private ["PSo14NSSecureCoding", "Key"] +- !private ["PSo14NSSecureCoding", "URLByAppendingPathComponent"] +- !private ["PSo14NSSecureCoding", "Value"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "setValue"] +- !private ["PSo14NSSecureCoding", "statusCode"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "URLByAppendingPathComponent"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo12NSURLRequest", "HTTPBody"] +- !private ["CSo12NSURLRequest", "HTTPMethod"] +- !private ["CSo12NSURLRequest", "init"] +- !private ["CSo12NSURLRequest", "setValue"] +- !private ["CSo13NSURLResponse", "statusCode"] +- !private ["CSo12NSURLSession", "dataTaskWithRequest"] +- !private ["CSo12NSURLSession", "sharedSession"] +- !private ["CSo20NSURLSessionDataTask", "resume"] +- !private ["CSo16NSURLSessionTask", "resume"] +- !private ["C8Mixpanel7Network", "BasePath"] +- ["C8Mixpanel7Network", "Bool"] +- !private ["C8Mixpanel7Network", "FlushType"] +- !private ["C8Mixpanel7Network", "Int"] +- !private ["C8Mixpanel7Network", "JSONHandler"] +- !private ["C8Mixpanel7Network", "Logger"] +- ["C8Mixpanel7Network", "Method"] +- ["C8Mixpanel7Network", "NSData"] +- !private ["C8Mixpanel7Network", "NSHTTPURLResponse"] +- !private ["C8Mixpanel7Network", "NSMutableURLRequest"] +- !private ["C8Mixpanel7Network", "NSURLRequest"] +- ["C8Mixpanel7Network", "NSURLResponse"] +- !private ["C8Mixpanel7Network", "NSURLSession"] +- !private ["C8Mixpanel7Network", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel7Network", "Network"] +- ["C8Mixpanel7Network", "Reason"] +- ["C8Mixpanel7Network", "Resource"] +- ["C8Mixpanel7Network", "String"] +- !private ["C8Mixpanel7Network", "Void"] +- ["C8Mixpanel7Network", "apiRequest"] +- ["C8Mixpanel7Network", "buildResource"] +- !private ["C8Mixpanel7Network", "buildURLRequest"] +- ["C8Mixpanel7Network", "deinit"] +- ["C8Mixpanel7Network", "init"] +- ["C8Mixpanel7Network", "trackIntegration"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "POST"] +- ["Ps16RawRepresentable", "RawValue"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- ["O8Mixpanel6Reason", "Int"] +- ["O8Mixpanel6Reason", "NSError"] +- ["O8Mixpanel6Reason", "NoData"] +- ["O8Mixpanel6Reason", "NotOKStatusCode"] +- ["O8Mixpanel6Reason", "Other"] +- ["O8Mixpanel6Reason", "ParseError"] +- ["V8Mixpanel8Resource", "A"] +- ["V8Mixpanel8Resource", "Method"] +- ["V8Mixpanel8Resource", "NSData"] +- ["V8Mixpanel8Resource", "String"] +- ["V8Mixpanel8Resource", "headers"] +- ["V8Mixpanel8Resource", "init"] +- ["V8Mixpanel8Resource", "method"] +- ["V8Mixpanel8Resource", "parse"] +- ["V8Mixpanel8Resource", "path"] +- ["V8Mixpanel8Resource", "requestBody"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "dataUsingEncoding"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps32_FileReferenceLiteralConvertible", "URLByAppendingPathComponent"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "URLByAppendingPathComponent"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- "V8Mixpanel8BasePath" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel11JSONHandler" +- !private "C8Mixpanel6Logger" +- "O8Mixpanel6Method" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSDictionary" +- !private "PSo17NSFastEnumeration" +- !private "CSo17NSHTTPURLResponse" +- !private "PSo16NSMutableCopying" +- !private "CSo19NSMutableURLRequest" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo12NSURLRequest" +- !private "CSo13NSURLResponse" +- !private "CSo12NSURLSession" +- !private "CSo20NSURLSessionDataTask" +- !private "CSo16NSURLSessionTask" +- "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- "O8Mixpanel6Reason" +- "V8Mixpanel8Resource" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "c70fc59c0c82bc82a2991974cec3735d" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftmodule new file mode 100644 index 00000000..5fe7cd99 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Network~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.d new file mode 100644 index 00000000..2894a4ae --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o new file mode 100644 index 00000000..3186735e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.swiftdeps new file mode 100644 index 00000000..5ca63f63 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People.swiftdeps @@ -0,0 +1,660 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "People" +provides-nominal: +- "C8Mixpanel6People" +provides-member: +- ["C8Mixpanel6People", ""] +provides-dynamic-lookup: +depends-top-level: +- "Properties" +- "String" +- "AnyObject" +- !private "Track" +- !private "==" +- !private "MPAssert" +- !private "Persistence" +- !private "+=" +- !private "Int" +- !private "round" +- "Queue" +- "People" +- "dispatch_queue_t" +- "StringLiteralType" +- !private "QueueConstants" +- !private "CChar" +- !private "Dictionary" +- !private "Array" +- !private "UInt" +- !private ">" +- !private "*" +- !private "||" +- "Double" +- "NSData" +- !private "NSDate" +- !private "UnsafePointer" +- !private "AutomaticProperties" +- !private "dispatch_async" +- !private "Float" +- "BooleanLiteralType" +- !private "!" +- !private "..<" +depends-member: +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "MPAssert"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "Persistence"] +- !private ["Ps9AnyObject", "Properties"] +- ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "UnsafePointer"] +- !private ["Ps9AnyObject", "addPeopleObject"] +- !private ["Ps9AnyObject", "addPeopleRecordToQueueWithAction"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "assertPropertyTypes"] +- !private ["Ps9AnyObject", "bytes"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "ignoreTime"] +- !private ["Ps9AnyObject", "increment"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "length"] +- !private ["Ps9AnyObject", "peopleProperties"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "round"] +- !private ["Ps9AnyObject", "serialQueue"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- ["Sa", "init"] +- !private ["Sa", "removeAtIndex"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "removeAtIndex"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "peopleProperties"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps22BidirectionalIndexType", "subscript"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Element"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "bytes"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "length"] +- !private ["Ps11CVarArgType", "subscript"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Elements"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "filter"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeAtIndex"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps14CollectionType", "values"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "bytes"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "length"] +- !private ["Ps28CustomDebugStringConvertible", "removeAtIndex"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "values"] +- ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "bytes"] +- !private ["Ps23CustomStringConvertible", "count"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "length"] +- !private ["Ps23CustomStringConvertible", "removeAtIndex"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "values"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "values"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "values"] +- !private ["Sd", "deinit"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Generator"] +- ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "bytes"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "length"] +- !private ["Ps9Equatable", "subscript"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps16ForwardIndexType", "subscript"] +- ["Ps13GeneratorType", "Element"] +- !private ["Vs16HalfOpenInterval", "deinit"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Element"] +- ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "bytes"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "length"] +- !private ["Ps8Hashable", "subscript"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Elements"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "filter"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeAtIndex"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "values"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Si", "deinit"] +- !private ["Si", "init"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "init"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps18LazyCollectionType", "Elements"] +- !private ["Ps18LazyCollectionType", "Generator"] +- !private ["Ps18LazyCollectionType", "Index"] +- !private ["Ps18LazyCollectionType", "SubSequence"] +- !private ["Ps18LazyCollectionType", "_Element"] +- !private ["Ps18LazyCollectionType", "filter"] +- !private ["Ps18LazyCollectionType", "isEmpty"] +- !private ["Vs20LazyFilterCollection", "Generator"] +- !private ["Vs20LazyFilterCollection", "Index"] +- !private ["Vs20LazyFilterCollection", "SubSequence"] +- !private ["Vs20LazyFilterCollection", "_Element"] +- !private ["Vs20LazyFilterCollection", "isEmpty"] +- !private ["Vs15LazyFilterIndex", "Distance"] +- !private ["Vs15LazyFilterIndex", "_DisabledRangeIndex"] +- !private ["Vs17LazyMapCollection", "Elements"] +- !private ["Vs17LazyMapCollection", "Generator"] +- !private ["Vs17LazyMapCollection", "Index"] +- !private ["Vs17LazyMapCollection", "SubSequence"] +- !private ["Vs17LazyMapCollection", "_Element"] +- !private ["Vs17LazyMapCollection", "deinit"] +- !private ["Vs17LazyMapCollection", "filter"] +- !private ["Vs16LazyMapGenerator", "Element"] +- !private ["Ps16LazySequenceType", "Elements"] +- !private ["Ps16LazySequenceType", "Generator"] +- !private ["Ps16LazySequenceType", "Index"] +- !private ["Ps16LazySequenceType", "SubSequence"] +- !private ["Ps16LazySequenceType", "_Element"] +- !private ["Ps16LazySequenceType", "filter"] +- !private ["Ps16LazySequenceType", "isEmpty"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "removeAtIndex"] +- !private ["Ps16MutableIndexable", "Element"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "removeAtIndex"] +- !private ["Ps16MutableSliceable", "Element"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "removeAtIndex"] +- !private ["CSo7NSArray", "Element"] +- !private ["PSo8NSCoding", "Element"] +- !private ["PSo8NSCoding", "bytes"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "length"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "Element"] +- !private ["PSo9NSCopying", "bytes"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "length"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSData", "bytes"] +- !private ["CSo6NSData", "length"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["PSo17NSFastEnumeration", "Element"] +- !private ["PSo16NSMutableCopying", "Element"] +- !private ["PSo16NSMutableCopying", "bytes"] +- !private ["PSo16NSMutableCopying", "length"] +- !private ["CSo8NSObject", "Element"] +- !private ["CSo8NSObject", "bytes"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "length"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "bytes"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "length"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo14NSSecureCoding", "Element"] +- !private ["PSo14NSSecureCoding", "bytes"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "length"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps21NilLiteralConvertible", "init"] +- !private ["Ps21NilLiteralConvertible", "subscript"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel6People", "AnyObject"] +- !private ["C8Mixpanel6People", "AutomaticProperties"] +- !private ["C8Mixpanel6People", "CChar"] +- ["C8Mixpanel6People", "Double"] +- !private ["C8Mixpanel6People", "Float"] +- !private ["C8Mixpanel6People", "Int"] +- !private ["C8Mixpanel6People", "MPAssert"] +- ["C8Mixpanel6People", "NSData"] +- !private ["C8Mixpanel6People", "NSDate"] +- !private ["C8Mixpanel6People", "Persistence"] +- ["C8Mixpanel6People", "Properties"] +- ["C8Mixpanel6People", "Queue"] +- !private ["C8Mixpanel6People", "QueueConstants"] +- ["C8Mixpanel6People", "String"] +- !private ["C8Mixpanel6People", "Track"] +- !private ["C8Mixpanel6People", "UInt"] +- !private ["C8Mixpanel6People", "UnsafePointer"] +- ["C8Mixpanel6People", "addPeopleObject"] +- ["C8Mixpanel6People", "addPeopleRecordToQueueWithAction"] +- ["C8Mixpanel6People", "addPushDeviceToken"] +- ["C8Mixpanel6People", "apiToken"] +- ["C8Mixpanel6People", "append"] +- ["C8Mixpanel6People", "clearCharges"] +- ["C8Mixpanel6People", "deinit"] +- ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "dispatch_async"] +- ["C8Mixpanel6People", "dispatch_queue_t"] +- ["C8Mixpanel6People", "distinctId"] +- ["C8Mixpanel6People", "ignoreTime"] +- ["C8Mixpanel6People", "increment"] +- ["C8Mixpanel6People", "init"] +- ["C8Mixpanel6People", "merge"] +- ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "round"] +- ["C8Mixpanel6People", "serialQueue"] +- ["C8Mixpanel6People", "set"] +- ["C8Mixpanel6People", "setOnce"] +- ["C8Mixpanel6People", "trackCharge"] +- ["C8Mixpanel6People", "unidentifiedQueue"] +- ["C8Mixpanel6People", "union"] +- ["C8Mixpanel6People", "unset"] +- !private ["C8Mixpanel11Persistence", "archivePeople"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps21RandomAccessIndexType", "subscript"] +- !private ["Vs5Range", "Generator"] +- !private ["Vs14RangeGenerator", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAtIndex"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Elements"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "filter"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeAtIndex"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps12SequenceType", "values"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps17SignedIntegerType", "init"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "init"] +- !private ["Ps10Strideable", "subscript"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["C8Mixpanel5Track", "assertPropertyTypes"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["SP", "init"] +- !private ["SP", "subscript"] +- !private ["Ps10_ArrayType", "Element"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "removeAtIndex"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "removeAtIndex"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps14_Incrementable", "subscript"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "init"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAtIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "values"] +- !private ["Ps12_PointerType", "init"] +- !private ["Ps12_PointerType", "subscript"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "subscript"] +- ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "removeAtIndex"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps12_Reflectable", "values"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- !private "Vs16HalfOpenInterval" +- "Ps8Hashable" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- !private "Ps18LazyCollectionType" +- !private "Vs20LazyFilterCollection" +- !private "Vs15LazyFilterIndex" +- !private "Vs17LazyMapCollection" +- !private "Vs16LazyMapGenerator" +- !private "Ps16LazySequenceType" +- "Ps14MirrorPathType" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "CSo7NSArray" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "CSo6NSDate" +- !private "PSo17NSFastEnumeration" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- !private "V8Mixpanel14QueueConstants" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Vs14RangeGenerator" +- "Ps30RangeReplaceableCollectionType" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "C8Mixpanel5Track" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "SP" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Ps12_PointerType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "7751455b003e86a79a93757e4e27ce4e" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftdoc new file mode 100644 index 00000000..a7f6bfe5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftmodule new file mode 100644 index 00000000..262f31ef Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/People~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.d new file mode 100644 index 00000000..54f3f1e9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o new file mode 100644 index 00000000..d6738b63 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.swiftdeps new file mode 100644 index 00000000..b16aedce --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.swiftdeps @@ -0,0 +1,583 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ArchivedProperties" +- "Persistence" +provides-nominal: +- "V8Mixpanel18ArchivedProperties" +- "C8Mixpanel11Persistence" +- "OC8Mixpanel11Persistence11ArchiveType" +provides-member: +- ["V8Mixpanel18ArchivedProperties", ""] +- ["C8Mixpanel11Persistence", ""] +- ["OC8Mixpanel11Persistence11ArchiveType", ""] +provides-dynamic-lookup: +depends-top-level: +- "Persistence" +- "StringLiteralType" +- !private "NSSearchPathDirectory" +- "Queue" +- "ArchivedProperties" +- "String" +- "Properties" +- !private "UnicodeScalarType" +- !private "NSFileManager" +- !private "~=" +- "==" +- !private "Logger" +- !private "NSKeyedArchiver" +- !private "IntegerLiteralType" +- !private "NSKeyedUnarchiver" +- !private "??" +- !private "FloatLiteralType" +- !private "!" +- "AnyObject" +- !private "Array" +- !private "NSSearchPathDomainMask" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSFileManager"] +- !private ["Ps9AnyObject", "NSKeyedArchiver"] +- !private ["Ps9AnyObject", "NSKeyedUnarchiver"] +- !private ["Ps9AnyObject", "NSSearchPathDirectory"] +- !private ["Ps9AnyObject", "NSSearchPathDomainMask"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "URLByAppendingPathComponent"] +- !private ["Ps9AnyObject", "URLsForDirectory"] +- !private ["Ps9AnyObject", "archiveEvents"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "archiveProperties"] +- !private ["Ps9AnyObject", "archiveRootObject"] +- !private ["Ps9AnyObject", "archiveToFile"] +- !private ["Ps9AnyObject", "defaultManager"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "filePathFor"] +- !private ["Ps9AnyObject", "filePathWithType"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "path"] +- !private ["Ps9AnyObject", "removeItemAtPath"] +- !private ["Ps9AnyObject", "unarchiveEvents"] +- !private ["Ps9AnyObject", "unarchiveObjectWithFile"] +- !private ["Ps9AnyObject", "unarchivePeople"] +- !private ["Ps9AnyObject", "unarchiveProperties"] +- !private ["Ps9AnyObject", "unarchiveWithFilePath"] +- !private ["Ps9AnyObject", "unarchiveWithType"] +- ["Ps9AnyObject", ""] +- ["OC8Mixpanel11Persistence11ArchiveType", "Events"] +- ["OC8Mixpanel11Persistence11ArchiveType", "People"] +- ["OC8Mixpanel11Persistence11ArchiveType", "Properties"] +- ["OC8Mixpanel11Persistence11ArchiveType", "RawValue"] +- ["OC8Mixpanel11Persistence11ArchiveType", "deinit"] +- ["OC8Mixpanel11Persistence11ArchiveType", "hashValue"] +- ["OC8Mixpanel11Persistence11ArchiveType", "init"] +- ["OC8Mixpanel11Persistence11ArchiveType", "rawValue"] +- ["V8Mixpanel18ArchivedProperties", "Properties"] +- ["V8Mixpanel18ArchivedProperties", "Queue"] +- ["V8Mixpanel18ArchivedProperties", "String"] +- ["V8Mixpanel18ArchivedProperties", "distinctId"] +- ["V8Mixpanel18ArchivedProperties", "init"] +- ["V8Mixpanel18ArchivedProperties", "peopleDistinctId"] +- ["V8Mixpanel18ArchivedProperties", "peopleUnidentifiedQueue"] +- ["V8Mixpanel18ArchivedProperties", "superProperties"] +- ["V8Mixpanel18ArchivedProperties", "timedEvents"] +- !private ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "UserDomainMask"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "URLByAppendingPathComponent"] +- !private ["Ps11CVarArgType", "URLsForDirectory"] +- !private ["Ps11CVarArgType", "archiveRootObject"] +- !private ["Ps11CVarArgType", "defaultManager"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "path"] +- !private ["Ps11CVarArgType", "removeItemAtPath"] +- !private ["Ps11CVarArgType", "unarchiveObjectWithFile"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps28CustomDebugStringConvertible", "URLsForDirectory"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "archiveRootObject"] +- !private ["Ps28CustomDebugStringConvertible", "defaultManager"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "path"] +- !private ["Ps28CustomDebugStringConvertible", "removeItemAtPath"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "unarchiveObjectWithFile"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps23CustomStringConvertible", "URLsForDirectory"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "archiveRootObject"] +- !private ["Ps23CustomStringConvertible", "defaultManager"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "path"] +- !private ["Ps23CustomStringConvertible", "removeItemAtPath"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "unarchiveObjectWithFile"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "LibraryDirectory"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "Properties"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "URLByAppendingPathComponent"] +- !private ["Ps9Equatable", "URLsForDirectory"] +- !private ["Ps9Equatable", "UserDomainMask"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "archiveRootObject"] +- !private ["Ps9Equatable", "defaultManager"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "path"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "removeItemAtPath"] +- !private ["Ps9Equatable", "unarchiveObjectWithFile"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "LibraryDirectory"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "Properties"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "URLByAppendingPathComponent"] +- !private ["Ps8Hashable", "URLsForDirectory"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "archiveRootObject"] +- !private ["Ps8Hashable", "defaultManager"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "path"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "removeItemAtPath"] +- !private ["Ps8Hashable", "unarchiveObjectWithFile"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "last"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["CSo7NSCoder", "archiveRootObject"] +- !private ["CSo7NSCoder", "unarchiveObjectWithFile"] +- !private ["PSo8NSCoding", "URLByAppendingPathComponent"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "path"] +- !private ["PSo9NSCopying", "URLByAppendingPathComponent"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "path"] +- !private ["CSo13NSFileManager", "URLsForDirectory"] +- !private ["CSo13NSFileManager", "defaultManager"] +- !private ["CSo13NSFileManager", "removeItemAtPath"] +- !private ["CSo15NSKeyedArchiver", "archiveRootObject"] +- !private ["CSo17NSKeyedUnarchiver", "unarchiveObjectWithFile"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "URLByAppendingPathComponent"] +- !private ["CSo8NSObject", "URLsForDirectory"] +- !private ["CSo8NSObject", "archiveRootObject"] +- !private ["CSo8NSObject", "defaultManager"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "path"] +- !private ["CSo8NSObject", "removeItemAtPath"] +- !private ["CSo8NSObject", "unarchiveObjectWithFile"] +- !private ["PSo16NSObjectProtocol", "URLByAppendingPathComponent"] +- !private ["PSo16NSObjectProtocol", "URLsForDirectory"] +- !private ["PSo16NSObjectProtocol", "archiveRootObject"] +- !private ["PSo16NSObjectProtocol", "defaultManager"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "path"] +- !private ["PSo16NSObjectProtocol", "removeItemAtPath"] +- !private ["PSo16NSObjectProtocol", "unarchiveObjectWithFile"] +- !private ["OSC21NSSearchPathDirectory", "LibraryDirectory"] +- !private ["VSC22NSSearchPathDomainMask", "UserDomainMask"] +- !private ["PSo14NSSecureCoding", "URLByAppendingPathComponent"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "path"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "URLByAppendingPathComponent"] +- !private ["CSo5NSURL", "path"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "UserDomainMask"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel11Persistence", "AnyObject"] +- ["C8Mixpanel11Persistence", "ArchiveType"] +- ["C8Mixpanel11Persistence", "ArchivedProperties"] +- !private ["C8Mixpanel11Persistence", "Logger"] +- !private ["C8Mixpanel11Persistence", "NSFileManager"] +- !private ["C8Mixpanel11Persistence", "NSKeyedArchiver"] +- !private ["C8Mixpanel11Persistence", "NSKeyedUnarchiver"] +- !private ["C8Mixpanel11Persistence", "NSSearchPathDirectory"] +- !private ["C8Mixpanel11Persistence", "NSSearchPathDomainMask"] +- ["C8Mixpanel11Persistence", "Properties"] +- ["C8Mixpanel11Persistence", "Queue"] +- ["C8Mixpanel11Persistence", "String"] +- ["C8Mixpanel11Persistence", "archive"] +- ["C8Mixpanel11Persistence", "archiveEvents"] +- ["C8Mixpanel11Persistence", "archivePeople"] +- ["C8Mixpanel11Persistence", "archiveProperties"] +- ["C8Mixpanel11Persistence", "archiveToFile"] +- ["C8Mixpanel11Persistence", "deinit"] +- !private ["C8Mixpanel11Persistence", "filePathFor"] +- ["C8Mixpanel11Persistence", "filePathWithType"] +- ["C8Mixpanel11Persistence", "init"] +- ["C8Mixpanel11Persistence", "unarchive"] +- !private ["C8Mixpanel11Persistence", "unarchiveEvents"] +- !private ["C8Mixpanel11Persistence", "unarchivePeople"] +- !private ["C8Mixpanel11Persistence", "unarchiveProperties"] +- !private ["C8Mixpanel11Persistence", "unarchiveWithFilePath"] +- !private ["C8Mixpanel11Persistence", "unarchiveWithType"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "LibraryDirectory"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps16RawRepresentable", "Properties"] +- ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "UserDomainMask"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "UserDomainMask"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "hashValue"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps32_FileReferenceLiteralConvertible", "URLByAppendingPathComponent"] +- !private ["Ps32_FileReferenceLiteralConvertible", "path"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "URLByAppendingPathComponent"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "path"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +depends-nominal: +- "Ps9AnyObject" +- "OC8Mixpanel11Persistence11ArchiveType" +- "V8Mixpanel18ArchivedProperties" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo7NSCoder" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo13NSFileManager" +- !private "CSo15NSKeyedArchiver" +- !private "CSo17NSKeyedUnarchiver" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "OSC21NSSearchPathDirectory" +- !private "VSC22NSSearchPathDomainMask" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "Ps16OutputStreamType" +- "C8Mixpanel11Persistence" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "e8fe3fa0070f6d3198509eeb56528723" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftmodule new file mode 100644 index 00000000..7427cf82 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.d new file mode 100644 index 00000000..902dd2bf --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o new file mode 100644 index 00000000..127a555d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.swiftdeps new file mode 100644 index 00000000..bcfb4813 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.swiftdeps @@ -0,0 +1,154 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PrintLogging" +- "PrintDebugLogging" +provides-nominal: +- "C8Mixpanel12PrintLogging" +- "C8Mixpanel17PrintDebugLogging" +provides-member: +- ["C8Mixpanel12PrintLogging", ""] +- ["C8Mixpanel17PrintDebugLogging", ""] +provides-dynamic-lookup: +depends-top-level: +- "PrintDebugLogging" +- !private "StringLiteralType" +- "LogMessage" +- !private "debugPrint" +- "PrintLogging" +- !private "print" +- "Logging" +depends-member: +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "debugPrint"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "print"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "rawValue"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "rawValue"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["O8Mixpanel8LogLevel", "deinit"] +- !private ["O8Mixpanel8LogLevel", "rawValue"] +- !private ["V8Mixpanel10LogMessage", "file"] +- !private ["V8Mixpanel10LogMessage", "function"] +- !private ["V8Mixpanel10LogMessage", "level"] +- !private ["V8Mixpanel10LogMessage", "text"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "debugPrint"] +- !private ["P8Mixpanel7Logging", "print"] +- ["P8Mixpanel7Logging", ""] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel17PrintDebugLogging", "LogMessage"] +- ["C8Mixpanel17PrintDebugLogging", "addMessage"] +- !private ["C8Mixpanel17PrintDebugLogging", "debugPrint"] +- ["C8Mixpanel17PrintDebugLogging", "deinit"] +- ["C8Mixpanel17PrintDebugLogging", "init"] +- ["C8Mixpanel12PrintLogging", "LogMessage"] +- ["C8Mixpanel12PrintLogging", "addMessage"] +- ["C8Mixpanel12PrintLogging", "deinit"] +- ["C8Mixpanel12PrintLogging", "init"] +- !private ["C8Mixpanel12PrintLogging", "print"] +- !private ["Ps16RawRepresentable", "rawValue"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "O8Mixpanel8LogLevel" +- !private "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "Ps16OutputStreamType" +- "C8Mixpanel17PrintDebugLogging" +- "C8Mixpanel12PrintLogging" +- !private "Ps16RawRepresentable" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "11c6b8c178e8c5cbded946b4e1523f57" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftdoc new file mode 100644 index 00000000..348a4819 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftmodule new file mode 100644 index 00000000..cec910d6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.d new file mode 100644 index 00000000..74cca9fb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o new file mode 100644 index 00000000..376c4e1f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.swiftdeps new file mode 100644 index 00000000..b305a64f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.swiftdeps @@ -0,0 +1,556 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "+=" +- "Track" +provides-nominal: +- "C8Mixpanel5Track" +provides-member: +- ["C8Mixpanel5Track", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "NSObject" +- !private "-" +- !private "round" +- !private "AutomaticProperties" +- !private "==" +- !private "NSURL" +- !private "!" +- !private "StringLiteralType" +- !private "Dictionary" +- !private "&&" +- "AnyObject" +- "Track" +- "+=" +- !private "Logger" +- !private "Int" +- "Double" +- "Queue" +- !private "NSNull" +- !private ">" +- !private "||" +- !private "UInt" +- !private "QueueConstants" +- !private "!=" +- "String" +- "Properties" +- !private "MPAssert" +- !private "NSDate" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "MPAssert"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "assertPropertyTypes"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isEmpty"] +- !private ["Ps9AnyObject", "properties"] +- !private ["Ps9AnyObject", "round"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "removeAtIndex"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "removeAtIndex"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "properties"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isEmpty"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "map"] +- !private ["Ps14CollectionType", "removeAll"] +- !private ["Ps14CollectionType", "removeAtIndex"] +- !private ["Ps14CollectionType", "removeValueForKey"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps14CollectionType", "updateValue"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "map"] +- !private ["Ps28CustomDebugStringConvertible", "removeAll"] +- !private ["Ps28CustomDebugStringConvertible", "removeAtIndex"] +- !private ["Ps28CustomDebugStringConvertible", "removeValueForKey"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "updateValue"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "map"] +- !private ["Ps23CustomStringConvertible", "removeAll"] +- !private ["Ps23CustomStringConvertible", "removeAtIndex"] +- !private ["Ps23CustomStringConvertible", "removeValueForKey"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "updateValue"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "map"] +- !private ["Vs10Dictionary", "removeAll"] +- !private ["Vs10Dictionary", "removeValueForKey"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "updateValue"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "map"] +- !private ["Ps28DictionaryLiteralConvertible", "removeAll"] +- !private ["Ps28DictionaryLiteralConvertible", "removeValueForKey"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "updateValue"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isEmpty"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isEmpty"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "map"] +- !private ["Ps9Indexable", "removeAll"] +- !private ["Ps9Indexable", "removeAtIndex"] +- !private ["Ps9Indexable", "removeValueForKey"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "updateValue"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps14MirrorPathType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "removeAtIndex"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "removeAtIndex"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "removeAtIndex"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isEmpty"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "isEmpty"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "isEmpty"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isEmpty"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isEmpty"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "isEmpty"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSString", "isEmpty"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16OutputStreamType", "isEmpty"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAtIndex"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "map"] +- !private ["Ps12SequenceType", "removeAll"] +- !private ["Ps12SequenceType", "removeAtIndex"] +- !private ["Ps12SequenceType", "removeValueForKey"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps12SequenceType", "updateValue"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Streamable", "isEmpty"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["SS", "isEmpty"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps30StringInterpolationConvertible", "isEmpty"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "isEmpty"] +- ["C8Mixpanel5Track", "AnyObject"] +- !private ["C8Mixpanel5Track", "AutomaticProperties"] +- ["C8Mixpanel5Track", "Double"] +- !private ["C8Mixpanel5Track", "Int"] +- !private ["C8Mixpanel5Track", "Logger"] +- !private ["C8Mixpanel5Track", "MPAssert"] +- !private ["C8Mixpanel5Track", "NSDate"] +- !private ["C8Mixpanel5Track", "NSNull"] +- !private ["C8Mixpanel5Track", "NSObject"] +- !private ["C8Mixpanel5Track", "NSURL"] +- ["C8Mixpanel5Track", "Properties"] +- ["C8Mixpanel5Track", "Queue"] +- !private ["C8Mixpanel5Track", "QueueConstants"] +- ["C8Mixpanel5Track", "String"] +- !private ["C8Mixpanel5Track", "Track"] +- !private ["C8Mixpanel5Track", "UInt"] +- ["C8Mixpanel5Track", "apiToken"] +- ["C8Mixpanel5Track", "assertPropertyTypes"] +- ["C8Mixpanel5Track", "clearSuperProperties"] +- ["C8Mixpanel5Track", "clearTimedEvents"] +- ["C8Mixpanel5Track", "deinit"] +- ["C8Mixpanel5Track", "init"] +- ["C8Mixpanel5Track", "registerSuperProperties"] +- ["C8Mixpanel5Track", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel5Track", "round"] +- ["C8Mixpanel5Track", "time"] +- ["C8Mixpanel5Track", "track"] +- ["C8Mixpanel5Track", "unregisterSuperProperty"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "removeAtIndex"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "removeAtIndex"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "map"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAll"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAtIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "removeValueForKey"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "updateValue"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "map"] +- !private ["Ps12_Reflectable", "removeAll"] +- !private ["Ps12_Reflectable", "removeAtIndex"] +- !private ["Ps12_Reflectable", "removeValueForKey"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "updateValue"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "V8Mixpanel14QueueConstants" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "C8Mixpanel5Track" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +interface-hash: "5602f94d6ea1999f1295548c75416335" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftmodule new file mode 100644 index 00000000..3f46dd0b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Objects-normal/arm64/Track~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Script-E1345A791D46C9A200496D0D.sh b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Script-E1345A791D46C9A200496D0D.sh new file mode 100755 index 00000000..abe3cdda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Script-E1345A791D46C9A200496D0D.sh @@ -0,0 +1,6 @@ +#!/bin/sh +if which swiftlint >/dev/null; then +swiftlint +else +echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" +fi diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh new file mode 100755 index 00000000..abe3cdda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh @@ -0,0 +1,6 @@ +#!/bin/sh +if which swiftlint >/dev/null; then +swiftlint +else +echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" +fi diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/dgph b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/dgph new file mode 100644 index 00000000..c0024664 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/dgph~ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/dgph~ new file mode 100644 index 00000000..c0024664 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/swift-overrides.hmap new file mode 100644 index 00000000..b2705ae6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module-overlay.yaml b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module-overlay.yaml new file mode 100644 index 00000000..0ea04c99 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module-overlay.yaml @@ -0,0 +1,13 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [{ + 'type': 'directory', + 'name': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules' + 'contents': [{ + 'type': 'file', + 'name': 'module.modulemap', + 'external-contents': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap', + }] + }] +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap new file mode 100644 index 00000000..d70a5b99 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphoneos/Mixpanel.build/unextended-module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.__Swift { + exclude header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c new file mode 100644 index 00000000..469efa4b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c @@ -0,0 +1 @@ + const unsigned char MixpanelVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Mixpanel PROJECT:Mixpanel-1" "\n"; const double MixpanelVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-all-target-headers.hmap new file mode 100644 index 00000000..07af1f94 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-generated-files.hmap new file mode 100644 index 00000000..94f69a27 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-own-target-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-project-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel.hmap new file mode 100644 index 00000000..e77cbef6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Mixpanel.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.d new file mode 100644 index 00000000..1b821411 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o new file mode 100644 index 00000000..b30efb91 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.swiftdeps new file mode 100644 index 00000000..97daac0d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.swiftdeps @@ -0,0 +1,492 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AutomaticProperties" +provides-nominal: +- "C8Mixpanel19AutomaticProperties" +provides-member: +- ["C8Mixpanel19AutomaticProperties", ""] +provides-dynamic-lookup: +depends-top-level: +- "NSBundle" +- !private "==" +- "String" +- "CTTelephonyNetworkInfo" +- "StringLiteralType" +- !private "NSString" +- !private "uname" +- "Int" +- "Properties" +- !private "utsname" +- !private "UnsafePointer" +- !private "CChar" +- "UIScreen" +- "AutomaticProperties" +- !private "withUnsafeMutablePointer" +- "UIDevice" +depends-member: +- ["Ps9AnyObject", "AutomaticProperties"] +- ["Ps9AnyObject", "CTTelephonyNetworkInfo"] +- ["Ps9AnyObject", "Int"] +- ["Ps9AnyObject", "NSBundle"] +- ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "String"] +- ["Ps9AnyObject", "UIDevice"] +- ["Ps9AnyObject", "UIScreen"] +- !private ["Ps9AnyObject", "UnsafePointer"] +- ["Ps9AnyObject", "bounds"] +- ["Ps9AnyObject", "carrierName"] +- !private ["Ps9AnyObject", "characters"] +- ["Ps9AnyObject", "currentDevice"] +- !private ["Ps9AnyObject", "currentRadioAccessTechnology"] +- ["Ps9AnyObject", "deinit"] +- ["Ps9AnyObject", "deviceModel"] +- !private ["Ps9AnyObject", "fromCString"] +- !private ["Ps9AnyObject", "hasPrefix"] +- ["Ps9AnyObject", "infoDictionary"] +- ["Ps9AnyObject", "init"] +- ["Ps9AnyObject", "libVersion"] +- ["Ps9AnyObject", "mainBundle"] +- ["Ps9AnyObject", "mainScreen"] +- ["Ps9AnyObject", "subscriberCellularProvider"] +- !private ["Ps9AnyObject", "substringFromIndex"] +- ["Ps9AnyObject", "systemName"] +- ["Ps9AnyObject", "systemVersion"] +- ["Ps9AnyObject", "telephonyInfo"] +- !private ["Ps9AnyObject", "uname"] +- !private ["Ps9AnyObject", "utsname"] +- !private ["Ps9AnyObject", "withUnsafeMutablePointer"] +- ["Ps9AnyObject", ""] +- ["C8Mixpanel19AutomaticProperties", "AutomaticProperties"] +- !private ["C8Mixpanel19AutomaticProperties", "CChar"] +- ["C8Mixpanel19AutomaticProperties", "CTTelephonyNetworkInfo"] +- ["C8Mixpanel19AutomaticProperties", "Int"] +- ["C8Mixpanel19AutomaticProperties", "NSBundle"] +- !private ["C8Mixpanel19AutomaticProperties", "NSString"] +- ["C8Mixpanel19AutomaticProperties", "Properties"] +- ["C8Mixpanel19AutomaticProperties", "String"] +- ["C8Mixpanel19AutomaticProperties", "UIDevice"] +- ["C8Mixpanel19AutomaticProperties", "UIScreen"] +- !private ["C8Mixpanel19AutomaticProperties", "UnsafePointer"] +- ["C8Mixpanel19AutomaticProperties", "deinit"] +- ["C8Mixpanel19AutomaticProperties", "deviceModel"] +- ["C8Mixpanel19AutomaticProperties", "getCurrentRadio"] +- ["C8Mixpanel19AutomaticProperties", "init"] +- ["C8Mixpanel19AutomaticProperties", "libVersion"] +- ["C8Mixpanel19AutomaticProperties", "peopleProperties"] +- ["C8Mixpanel19AutomaticProperties", "properties"] +- ["C8Mixpanel19AutomaticProperties", "telephonyInfo"] +- !private ["C8Mixpanel19AutomaticProperties", "uname"] +- !private ["C8Mixpanel19AutomaticProperties", "utsname"] +- !private ["C8Mixpanel19AutomaticProperties", "withUnsafeMutablePointer"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["VSC6CGRect", "size"] +- ["VSC6CGSize", "height"] +- ["VSC6CGSize", "width"] +- ["CSo9CTCarrier", "carrierName"] +- !private ["CSo22CTTelephonyNetworkInfo", "currentRadioAccessTechnology"] +- ["CSo22CTTelephonyNetworkInfo", "init"] +- ["CSo22CTTelephonyNetworkInfo", "subscriberCellularProvider"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- ["Ps11CVarArgType", "bounds"] +- ["Ps11CVarArgType", "carrierName"] +- !private ["Ps11CVarArgType", "characters"] +- ["Ps11CVarArgType", "currentDevice"] +- !private ["Ps11CVarArgType", "currentRadioAccessTechnology"] +- !private ["Ps11CVarArgType", "fromCString"] +- !private ["Ps11CVarArgType", "hasPrefix"] +- ["Ps11CVarArgType", "infoDictionary"] +- ["Ps11CVarArgType", "init"] +- ["Ps11CVarArgType", "mainBundle"] +- ["Ps11CVarArgType", "mainScreen"] +- ["Ps11CVarArgType", "subscriberCellularProvider"] +- !private ["Ps11CVarArgType", "substringFromIndex"] +- ["Ps11CVarArgType", "systemName"] +- ["Ps11CVarArgType", "systemVersion"] +- !private ["VSS13CharacterView", "Generator"] +- !private ["VSS13CharacterView", "Index"] +- !private ["VSS13CharacterView", "SubSequence"] +- !private ["VSS13CharacterView", "count"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- ["Ps14CollectionType", "SubSequence"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- ["Ps14CollectionType", "init"] +- ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "characters"] +- !private ["Ps10Comparable", "fromCString"] +- !private ["Ps10Comparable", "hasPrefix"] +- ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "bounds"] +- ["Ps28CustomDebugStringConvertible", "carrierName"] +- !private ["Ps28CustomDebugStringConvertible", "characters"] +- ["Ps28CustomDebugStringConvertible", "currentDevice"] +- !private ["Ps28CustomDebugStringConvertible", "currentRadioAccessTechnology"] +- !private ["Ps28CustomDebugStringConvertible", "fromCString"] +- !private ["Ps28CustomDebugStringConvertible", "hasPrefix"] +- ["Ps28CustomDebugStringConvertible", "infoDictionary"] +- ["Ps28CustomDebugStringConvertible", "init"] +- ["Ps28CustomDebugStringConvertible", "mainBundle"] +- ["Ps28CustomDebugStringConvertible", "mainScreen"] +- ["Ps28CustomDebugStringConvertible", "subscriberCellularProvider"] +- ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "substringFromIndex"] +- ["Ps28CustomDebugStringConvertible", "systemName"] +- ["Ps28CustomDebugStringConvertible", "systemVersion"] +- ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- ["Ps23CustomStringConvertible", "bounds"] +- ["Ps23CustomStringConvertible", "carrierName"] +- !private ["Ps23CustomStringConvertible", "characters"] +- ["Ps23CustomStringConvertible", "currentDevice"] +- !private ["Ps23CustomStringConvertible", "currentRadioAccessTechnology"] +- !private ["Ps23CustomStringConvertible", "fromCString"] +- !private ["Ps23CustomStringConvertible", "hasPrefix"] +- ["Ps23CustomStringConvertible", "infoDictionary"] +- ["Ps23CustomStringConvertible", "init"] +- ["Ps23CustomStringConvertible", "mainBundle"] +- ["Ps23CustomStringConvertible", "mainScreen"] +- ["Ps23CustomStringConvertible", "subscriberCellularProvider"] +- ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "substringFromIndex"] +- ["Ps23CustomStringConvertible", "systemName"] +- ["Ps23CustomStringConvertible", "systemVersion"] +- ["Vs10Dictionary", "Index"] +- ["Vs10Dictionary", "deinit"] +- ["Vs10Dictionary", "init"] +- ["Vs10Dictionary", "subscript"] +- ["Ps28DictionaryLiteralConvertible", "Index"] +- ["Ps28DictionaryLiteralConvertible", "init"] +- ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- ["Ps9Equatable", "bounds"] +- ["Ps9Equatable", "carrierName"] +- !private ["Ps9Equatable", "characters"] +- ["Ps9Equatable", "currentDevice"] +- !private ["Ps9Equatable", "currentRadioAccessTechnology"] +- !private ["Ps9Equatable", "fromCString"] +- !private ["Ps9Equatable", "hasPrefix"] +- ["Ps9Equatable", "height"] +- ["Ps9Equatable", "infoDictionary"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "mainBundle"] +- ["Ps9Equatable", "mainScreen"] +- ["Ps9Equatable", "size"] +- ["Ps9Equatable", "subscriberCellularProvider"] +- !private ["Ps9Equatable", "substringFromIndex"] +- ["Ps9Equatable", "systemName"] +- ["Ps9Equatable", "systemVersion"] +- ["Ps9Equatable", "width"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "characters"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "fromCString"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "hasPrefix"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "substringFromIndex"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- ["Ps16ForwardIndexType", "init"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- ["Ps8Hashable", "bounds"] +- ["Ps8Hashable", "carrierName"] +- !private ["Ps8Hashable", "characters"] +- ["Ps8Hashable", "currentDevice"] +- !private ["Ps8Hashable", "currentRadioAccessTechnology"] +- !private ["Ps8Hashable", "fromCString"] +- !private ["Ps8Hashable", "hasPrefix"] +- ["Ps8Hashable", "infoDictionary"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "mainBundle"] +- ["Ps8Hashable", "mainScreen"] +- ["Ps8Hashable", "subscriberCellularProvider"] +- !private ["Ps8Hashable", "substringFromIndex"] +- ["Ps8Hashable", "systemName"] +- ["Ps8Hashable", "systemVersion"] +- !private ["VVSS13CharacterView5Index", "Distance"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- ["Ps9Indexable", "init"] +- ["Ps9Indexable", "subscript"] +- ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- ["Si", "deinit"] +- ["Si", "init"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "characters"] +- !private ["Ps14MirrorPathType", "fromCString"] +- !private ["Ps14MirrorPathType", "hasPrefix"] +- ["Ps14MirrorPathType", "init"] +- ["CSo8NSBundle", "infoDictionary"] +- !private ["CSo8NSBundle", "init"] +- ["CSo8NSBundle", "mainBundle"] +- !private ["PSo8NSCoding", "characters"] +- !private ["PSo8NSCoding", "fromCString"] +- !private ["PSo8NSCoding", "hasPrefix"] +- !private ["PSo8NSCoding", "substringFromIndex"] +- !private ["PSo9NSCopying", "characters"] +- !private ["PSo9NSCopying", "fromCString"] +- !private ["PSo9NSCopying", "hasPrefix"] +- !private ["PSo9NSCopying", "substringFromIndex"] +- !private ["PSo16NSMutableCopying", "characters"] +- !private ["PSo16NSMutableCopying", "fromCString"] +- !private ["PSo16NSMutableCopying", "hasPrefix"] +- !private ["PSo16NSMutableCopying", "substringFromIndex"] +- ["CSo8NSObject", "bounds"] +- ["CSo8NSObject", "carrierName"] +- !private ["CSo8NSObject", "characters"] +- ["CSo8NSObject", "currentDevice"] +- !private ["CSo8NSObject", "currentRadioAccessTechnology"] +- !private ["CSo8NSObject", "fromCString"] +- !private ["CSo8NSObject", "hasPrefix"] +- ["CSo8NSObject", "infoDictionary"] +- ["CSo8NSObject", "init"] +- ["CSo8NSObject", "mainBundle"] +- ["CSo8NSObject", "mainScreen"] +- ["CSo8NSObject", "subscriberCellularProvider"] +- !private ["CSo8NSObject", "substringFromIndex"] +- ["CSo8NSObject", "systemName"] +- ["CSo8NSObject", "systemVersion"] +- ["PSo16NSObjectProtocol", "bounds"] +- ["PSo16NSObjectProtocol", "carrierName"] +- !private ["PSo16NSObjectProtocol", "characters"] +- ["PSo16NSObjectProtocol", "currentDevice"] +- !private ["PSo16NSObjectProtocol", "currentRadioAccessTechnology"] +- !private ["PSo16NSObjectProtocol", "fromCString"] +- !private ["PSo16NSObjectProtocol", "hasPrefix"] +- ["PSo16NSObjectProtocol", "infoDictionary"] +- ["PSo16NSObjectProtocol", "init"] +- ["PSo16NSObjectProtocol", "mainBundle"] +- ["PSo16NSObjectProtocol", "mainScreen"] +- ["PSo16NSObjectProtocol", "subscriberCellularProvider"] +- !private ["PSo16NSObjectProtocol", "substringFromIndex"] +- ["PSo16NSObjectProtocol", "systemName"] +- ["PSo16NSObjectProtocol", "systemVersion"] +- !private ["PSo14NSSecureCoding", "characters"] +- !private ["PSo14NSSecureCoding", "fromCString"] +- !private ["PSo14NSSecureCoding", "hasPrefix"] +- !private ["PSo14NSSecureCoding", "substringFromIndex"] +- !private ["CSo8NSString", "characters"] +- !private ["CSo8NSString", "fromCString"] +- !private ["CSo8NSString", "hasPrefix"] +- !private ["CSo8NSString", "substringFromIndex"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps21NilLiteralConvertible", "init"] +- ["Sq", "Some"] +- ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "characters"] +- !private ["Ps16OutputStreamType", "fromCString"] +- !private ["Ps16OutputStreamType", "hasPrefix"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- ["Ps12SequenceType", "SubSequence"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- ["Ps12SequenceType", "init"] +- ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- ["Ps16SignedNumberType", "init"] +- ["Vs5Slice", "Generator"] +- ["Vs5Slice", "Index"] +- ["Vs5Slice", "SubSequence"] +- ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "characters"] +- !private ["Ps10Streamable", "fromCString"] +- !private ["Ps10Streamable", "hasPrefix"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- ["Ps10Strideable", "init"] +- !private ["SS", "characters"] +- ["SS", "deinit"] +- !private ["SS", "fromCString"] +- !private ["SS", "hasPrefix"] +- !private ["Ps30StringInterpolationConvertible", "characters"] +- !private ["Ps30StringInterpolationConvertible", "fromCString"] +- !private ["Ps30StringInterpolationConvertible", "hasPrefix"] +- !private ["Ps24StringLiteralConvertible", "characters"] +- !private ["Ps24StringLiteralConvertible", "fromCString"] +- !private ["Ps24StringLiteralConvertible", "hasPrefix"] +- !private ["Ps24StringLiteralConvertible", "substringFromIndex"] +- ["CSo8UIDevice", "currentDevice"] +- ["CSo8UIDevice", "systemName"] +- ["CSo8UIDevice", "systemVersion"] +- ["CSo8UIScreen", "bounds"] +- ["CSo8UIScreen", "mainScreen"] +- ["PSo18UITraitEnvironment", "bounds"] +- ["PSo18UITraitEnvironment", "mainScreen"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "characters"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "fromCString"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "hasPrefix"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "substringFromIndex"] +- !private ["SP", "init"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "characters"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "fromCString"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "hasPrefix"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "characters"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "fromCString"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "hasPrefix"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "characters"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "fromCString"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "hasPrefix"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "characters"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "fromCString"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "hasPrefix"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- ["Ps12_IntegerType", "init"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "characters"] +- !private ["Ps21_ObjectiveCBridgeable", "fromCString"] +- !private ["Ps21_ObjectiveCBridgeable", "hasPrefix"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps12_PointerType", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "characters"] +- !private ["Ps12_Reflectable", "fromCString"] +- !private ["Ps12_Reflectable", "hasPrefix"] +- ["Ps12_Reflectable", "height"] +- ["Ps12_Reflectable", "init"] +- ["Ps12_Reflectable", "size"] +- ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "substringFromIndex"] +- ["Ps12_Reflectable", "width"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- ["Ps18_SignedIntegerType", "init"] +- !private ["VSC7utsname", "init"] +- !private ["VSC7utsname", "machine"] +depends-nominal: +- "Ps9AnyObject" +- "C8Mixpanel19AutomaticProperties" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "VSC6CGRect" +- "VSC6CGSize" +- "CSo9CTCarrier" +- "CSo22CTTelephonyNetworkInfo" +- "Ps11CVarArgType" +- !private "VSS13CharacterView" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Vs10Dictionary" +- "Ps28DictionaryLiteralConvertible" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- !private "VVSS13CharacterView5Index" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- "Ps14MirrorPathType" +- "CSo8NSBundle" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- "Vs5Slice" +- !private "Ps10Streamable" +- "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "CSo8UIDevice" +- "CSo8UIScreen" +- "PSo18UITraitEnvironment" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "SP" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps12_PointerType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +- !private "VSC7utsname" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "49e199ad50aa8df848d13e5bfd258e4b" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftmodule new file mode 100644 index 00000000..de4a8f14 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.d new file mode 100644 index 00000000..0da867ed --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o new file mode 100644 index 00000000..249cee8b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.swiftdeps new file mode 100644 index 00000000..84a4698c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.swiftdeps @@ -0,0 +1,40 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "QueueConstants" +- "APIConstants" +provides-nominal: +- "V8Mixpanel14QueueConstants" +- "V8Mixpanel12APIConstants" +provides-member: +- ["V8Mixpanel14QueueConstants", ""] +- ["V8Mixpanel12APIConstants", ""] +provides-dynamic-lookup: +depends-top-level: +- "APIConstants" +- "FloatLiteralType" +- "QueueConstants" +- "IntegerLiteralType" +depends-member: +- ["V8Mixpanel12APIConstants", "batchSize"] +- ["V8Mixpanel12APIConstants", "failuresTillBackoff"] +- ["V8Mixpanel12APIConstants", "init"] +- ["V8Mixpanel12APIConstants", "maxRetryBackoff"] +- ["V8Mixpanel12APIConstants", "minRetryBackoff"] +- ["V8Mixpanel14QueueConstants", "init"] +- ["V8Mixpanel14QueueConstants", "queueSize"] +depends-nominal: +- "V8Mixpanel12APIConstants" +- "V8Mixpanel14QueueConstants" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "8dfd0c594081336b654b279febbd1289" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftmodule new file mode 100644 index 00000000..cc51db67 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.d new file mode 100644 index 00000000..84988921 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o new file mode 100644 index 00000000..40bf76f4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.swiftdeps new file mode 100644 index 00000000..35bac883 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.swiftdeps @@ -0,0 +1,179 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PropertyError" +- "Assertions" +- "MPAssert" +- "ErrorHandler" +provides-nominal: +- "O8Mixpanel13PropertyError" +- "C8Mixpanel10Assertions" +- "C8Mixpanel12ErrorHandler" +provides-member: +- ["O8Mixpanel13PropertyError", ""] +- ["C8Mixpanel10Assertions", ""] +- ["C8Mixpanel12ErrorHandler", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "IntegerLiteralType" +- "Swift" +- "Bool" +- !private "NSThread" +- "AnyObject" +- "PropertyError" +- "StaticString" +- !private "Logger" +- "ErrorType" +- "Assertions" +- "ErrorHandler" +- "StringLiteralType" +- "UInt" +- "String" +- !private "FloatLiteralType" +- "MPAssert" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSThread"] +- ["Ps9AnyObject", "Swift"] +- !private ["Ps9AnyObject", "assertClosure"] +- !private ["Ps9AnyObject", "callStackSymbols"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "logError"] +- ["Ps9AnyObject", "swiftAssertClosure"] +- ["Ps9AnyObject", ""] +- ["C8Mixpanel10Assertions", "Swift"] +- ["C8Mixpanel10Assertions", "assertClosure"] +- ["C8Mixpanel10Assertions", "deinit"] +- ["C8Mixpanel10Assertions", "init"] +- ["C8Mixpanel10Assertions", "swiftAssertClosure"] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "callStackSymbols"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "callStackSymbols"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "callStackSymbols"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "callStackSymbols"] +- !private ["Ps9Equatable", "init"] +- ["C8Mixpanel12ErrorHandler", "ErrorType"] +- !private ["C8Mixpanel12ErrorHandler", "Logger"] +- !private ["C8Mixpanel12ErrorHandler", "NSThread"] +- ["C8Mixpanel12ErrorHandler", "deinit"] +- ["C8Mixpanel12ErrorHandler", "init"] +- ["C8Mixpanel12ErrorHandler", "logError"] +- ["C8Mixpanel12ErrorHandler", "wrap"] +- ["Ps9ErrorType", "_code"] +- ["Ps9ErrorType", "_domain"] +- ["Ps9ErrorType", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "callStackSymbols"] +- !private ["Ps8Hashable", "init"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "callStackSymbols"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "callStackSymbols"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSThread", "callStackSymbols"] +- !private ["Ps16OutputStreamType", "init"] +- ["O8Mixpanel13PropertyError", "AnyObject"] +- ["O8Mixpanel13PropertyError", "InvalidType"] +- ["O8Mixpanel13PropertyError", "_code"] +- ["O8Mixpanel13PropertyError", "_domain"] +- ["O8Mixpanel13PropertyError", "deinit"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- "C8Mixpanel10Assertions" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- "C8Mixpanel12ErrorHandler" +- "Ps9ErrorType" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo8NSThread" +- !private "Ps16OutputStreamType" +- "O8Mixpanel13PropertyError" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "cdcfe764bd50da5b0586cc5f726666ca" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftmodule new file mode 100644 index 00000000..6fc11329 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.d new file mode 100644 index 00000000..f585e3ab --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o new file mode 100644 index 00000000..b0c1a9f3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.swiftdeps new file mode 100644 index 00000000..b7fb383a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.swiftdeps @@ -0,0 +1,230 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FileLogging" +provides-nominal: +- "C8Mixpanel11FileLogging" +provides-member: +- ["C8Mixpanel11FileLogging", ""] +provides-dynamic-lookup: +depends-top-level: +- "NSFileHandle" +- "Logging" +- !private "NSUTF8StringEncoding" +- !private "+" +- "String" +- !private "StringLiteralType" +- "LogMessage" +- "FileLogging" +depends-member: +- !private ["Ps9AnyObject", "NSFileHandle"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "closeFile"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "fileHandle"] +- !private ["Ps9AnyObject", "fileHandleWithStandardError"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "seekToEndOfFile"] +- !private ["Ps9AnyObject", "writeData"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "closeFile"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "fileHandleWithStandardError"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "seekToEndOfFile"] +- !private ["Ps11CVarArgType", "writeData"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "closeFile"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "fileHandleWithStandardError"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "seekToEndOfFile"] +- !private ["Ps28CustomDebugStringConvertible", "writeData"] +- !private ["Ps23CustomStringConvertible", "closeFile"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "fileHandleWithStandardError"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "seekToEndOfFile"] +- !private ["Ps23CustomStringConvertible", "writeData"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "closeFile"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- !private ["Ps9Equatable", "fileHandleWithStandardError"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "seekToEndOfFile"] +- !private ["Ps9Equatable", "writeData"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- ["C8Mixpanel11FileLogging", "LogMessage"] +- ["C8Mixpanel11FileLogging", "NSFileHandle"] +- !private ["C8Mixpanel11FileLogging", "NSUTF8StringEncoding"] +- ["C8Mixpanel11FileLogging", "String"] +- ["C8Mixpanel11FileLogging", "addMessage"] +- ["C8Mixpanel11FileLogging", "deinit"] +- !private ["C8Mixpanel11FileLogging", "fileHandle"] +- ["C8Mixpanel11FileLogging", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "closeFile"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- !private ["Ps8Hashable", "fileHandleWithStandardError"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "seekToEndOfFile"] +- !private ["Ps8Hashable", "writeData"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["O8Mixpanel8LogLevel", "deinit"] +- !private ["O8Mixpanel8LogLevel", "rawValue"] +- !private ["V8Mixpanel10LogMessage", "file"] +- !private ["V8Mixpanel10LogMessage", "function"] +- !private ["V8Mixpanel10LogMessage", "level"] +- !private ["V8Mixpanel10LogMessage", "text"] +- !private ["P8Mixpanel7Logging", "NSFileHandle"] +- !private ["P8Mixpanel7Logging", "NSUTF8StringEncoding"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "fileHandle"] +- ["P8Mixpanel7Logging", ""] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "closeFile"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "fileHandleWithStandardError"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "seekToEndOfFile"] +- !private ["PSo8NSCoding", "writeData"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo12NSFileHandle", "closeFile"] +- !private ["CSo12NSFileHandle", "fileHandleWithStandardError"] +- !private ["CSo12NSFileHandle", "init"] +- !private ["CSo12NSFileHandle", "seekToEndOfFile"] +- !private ["CSo12NSFileHandle", "writeData"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "closeFile"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "fileHandleWithStandardError"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "seekToEndOfFile"] +- !private ["CSo8NSObject", "writeData"] +- !private ["PSo16NSObjectProtocol", "closeFile"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "fileHandleWithStandardError"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "seekToEndOfFile"] +- !private ["PSo16NSObjectProtocol", "writeData"] +- !private ["PSo14NSSecureCoding", "closeFile"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "fileHandleWithStandardError"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "seekToEndOfFile"] +- !private ["PSo14NSSecureCoding", "writeData"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16RawRepresentable", "rawValue"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "dataUsingEncoding"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "C8Mixpanel11FileLogging" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "O8Mixpanel8LogLevel" +- !private "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSFileHandle" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps16RawRepresentable" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "24cd98e0aa9f7719f6041cab748cda9d" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftdoc new file mode 100644 index 00000000..4f14984e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftmodule new file mode 100644 index 00000000..2e5b5558 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.d new file mode 100644 index 00000000..ded07cf1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o new file mode 100644 index 00000000..89c0a0eb Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.swiftdeps new file mode 100644 index 00000000..45bc6ea9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.swiftdeps @@ -0,0 +1,492 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FlushDelegate" +- "Flush" +provides-nominal: +- "P8Mixpanel13FlushDelegate" +- "C8Mixpanel5Flush" +provides-member: +- ["P8Mixpanel13FlushDelegate", ""] +- ["C8Mixpanel5Flush", ""] +provides-dynamic-lookup: +- "flushSelector" +depends-top-level: +- !private "dispatch_async" +- !private ">" +- !private "min" +- !private "dispatch_semaphore_signal" +- !private "IntegerLiteralType" +- "Flush" +- !private "!" +- !private "objc_sync_enter" +- !private "..<" +- !private "JSONHandler" +- !private "APIConstants" +- "Queue" +- "Double" +- "Void" +- !private "dispatch_semaphore_create" +- !private "dispatch_semaphore_wait" +- !private "DISPATCH_TIME_FOREVER" +- "AppLifecycle" +- "FlushRequest" +- "Bool" +- "NSTimer" +- "FloatLiteralType" +- !private "objc_sync_exit" +- !private "Array" +- !private "dispatch_get_main_queue" +- "BooleanLiteralType" +- "FlushType" +- "FlushDelegate" +depends-member: +- !private ["V8Mixpanel12APIConstants", "batchSize"] +- !private ["Ps9AnyObject", "APIConstants"] +- !private ["Ps9AnyObject", "Array"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_FOREVER"] +- ["Ps9AnyObject", "FlushRequest"] +- !private ["Ps9AnyObject", "JSONHandler"] +- !private ["Ps9AnyObject", "NSTimer"] +- !private ["Ps9AnyObject", "_flushInterval"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_semaphore_create"] +- !private ["Ps9AnyObject", "dispatch_semaphore_signal"] +- !private ["Ps9AnyObject", "dispatch_semaphore_wait"] +- !private ["Ps9AnyObject", "encodeAPIData"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "flushQueue"] +- !private ["Ps9AnyObject", "flushQueueInBatches"] +- !private ["Ps9AnyObject", "flushRequest"] +- !private ["Ps9AnyObject", "flushSelector"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "invalidate"] +- !private ["Ps9AnyObject", "min"] +- !private ["Ps9AnyObject", "objc_sync_enter"] +- !private ["Ps9AnyObject", "objc_sync_exit"] +- !private ["Ps9AnyObject", "requestNotAllowed"] +- !private ["Ps9AnyObject", "scheduledTimerWithTimeInterval"] +- !private ["Ps9AnyObject", "sendRequest"] +- !private ["Ps9AnyObject", "startFlushTimer"] +- !private ["Ps9AnyObject", "stopFlushTimer"] +- !private ["Ps9AnyObject", "timer"] +- !private ["Ps9AnyObject", "useIPAddressForGeoLocation"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "APIConstants"] +- !private ["P8Mixpanel12AppLifecycle", "Array"] +- !private ["P8Mixpanel12AppLifecycle", "DISPATCH_TIME_FOREVER"] +- ["P8Mixpanel12AppLifecycle", "FlushRequest"] +- !private ["P8Mixpanel12AppLifecycle", "JSONHandler"] +- !private ["P8Mixpanel12AppLifecycle", "NSTimer"] +- !private ["P8Mixpanel12AppLifecycle", "_flushInterval"] +- ["P8Mixpanel12AppLifecycle", "applicationDidBecomeActive"] +- ["P8Mixpanel12AppLifecycle", "applicationWillResignActive"] +- !private ["P8Mixpanel12AppLifecycle", "delegate"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_async"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_get_main_queue"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_create"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_signal"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_wait"] +- !private ["P8Mixpanel12AppLifecycle", "flushInterval"] +- !private ["P8Mixpanel12AppLifecycle", "flushQueue"] +- !private ["P8Mixpanel12AppLifecycle", "flushQueueInBatches"] +- !private ["P8Mixpanel12AppLifecycle", "flushRequest"] +- !private ["P8Mixpanel12AppLifecycle", "flushSelector"] +- !private ["P8Mixpanel12AppLifecycle", "min"] +- !private ["P8Mixpanel12AppLifecycle", "objc_sync_enter"] +- !private ["P8Mixpanel12AppLifecycle", "objc_sync_exit"] +- !private ["P8Mixpanel12AppLifecycle", "startFlushTimer"] +- !private ["P8Mixpanel12AppLifecycle", "stopFlushTimer"] +- !private ["P8Mixpanel12AppLifecycle", "timer"] +- !private ["P8Mixpanel12AppLifecycle", "useIPAddressForGeoLocation"] +- ["P8Mixpanel12AppLifecycle", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "removeRange"] +- !private ["Sa", "subscript"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "removeRange"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Vs10ArraySlice", "SubSequence"] +- !private ["Vs10ArraySlice", "_Element"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "invalidate"] +- !private ["Ps11CVarArgType", "scheduledTimerWithTimeInterval"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeRange"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "invalidate"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "removeRange"] +- !private ["Ps28CustomDebugStringConvertible", "scheduledTimerWithTimeInterval"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "invalidate"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "removeRange"] +- !private ["Ps23CustomStringConvertible", "scheduledTimerWithTimeInterval"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "invalidate"] +- !private ["Ps9Equatable", "scheduledTimerWithTimeInterval"] +- !private ["C8Mixpanel5Flush", "APIConstants"] +- !private ["C8Mixpanel5Flush", "Array"] +- !private ["C8Mixpanel5Flush", "DISPATCH_TIME_FOREVER"] +- ["C8Mixpanel5Flush", "Double"] +- ["C8Mixpanel5Flush", "FlushDelegate"] +- ["C8Mixpanel5Flush", "FlushRequest"] +- ["C8Mixpanel5Flush", "FlushType"] +- !private ["C8Mixpanel5Flush", "JSONHandler"] +- ["C8Mixpanel5Flush", "NSTimer"] +- ["C8Mixpanel5Flush", "Queue"] +- ["C8Mixpanel5Flush", "_flushInterval"] +- ["C8Mixpanel5Flush", "applicationDidBecomeActive"] +- ["C8Mixpanel5Flush", "applicationWillResignActive"] +- ["C8Mixpanel5Flush", "deinit"] +- ["C8Mixpanel5Flush", "delegate"] +- !private ["C8Mixpanel5Flush", "dispatch_async"] +- !private ["C8Mixpanel5Flush", "dispatch_get_main_queue"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_create"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_signal"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_wait"] +- ["C8Mixpanel5Flush", "flushEventsQueue"] +- ["C8Mixpanel5Flush", "flushInterval"] +- ["C8Mixpanel5Flush", "flushOnBackground"] +- ["C8Mixpanel5Flush", "flushPeopleQueue"] +- ["C8Mixpanel5Flush", "flushQueue"] +- ["C8Mixpanel5Flush", "flushQueueInBatches"] +- ["C8Mixpanel5Flush", "flushRequest"] +- ["C8Mixpanel5Flush", "flushSelector"] +- ["C8Mixpanel5Flush", "init"] +- !private ["C8Mixpanel5Flush", "min"] +- !private ["C8Mixpanel5Flush", "objc_sync_enter"] +- !private ["C8Mixpanel5Flush", "objc_sync_exit"] +- ["C8Mixpanel5Flush", "startFlushTimer"] +- ["C8Mixpanel5Flush", "stopFlushTimer"] +- ["C8Mixpanel5Flush", "timer"] +- ["C8Mixpanel5Flush", "useIPAddressForGeoLocation"] +- ["P8Mixpanel13FlushDelegate", "Bool"] +- ["P8Mixpanel13FlushDelegate", "Void"] +- ["P8Mixpanel13FlushDelegate", "flush"] +- ["P8Mixpanel13FlushDelegate", "updateNetworkActivityIndicator"] +- ["C8Mixpanel12FlushRequest", "init"] +- !private ["C8Mixpanel12FlushRequest", "requestNotAllowed"] +- !private ["C8Mixpanel12FlushRequest", "sendRequest"] +- !private ["O8Mixpanel9FlushType", "Events"] +- !private ["O8Mixpanel9FlushType", "People"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "invalidate"] +- !private ["Ps8Hashable", "scheduledTimerWithTimeInterval"] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeRange"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "removeRange"] +- !private ["Ps21MutableCollectionType", "subscript"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "removeRange"] +- !private ["Ps16MutableIndexable", "subscript"] +- !private ["Vs12MutableSlice", "Generator"] +- !private ["Vs12MutableSlice", "Index"] +- !private ["Vs12MutableSlice", "_Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "removeRange"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["CSo8NSObject", "invalidate"] +- !private ["CSo8NSObject", "scheduledTimerWithTimeInterval"] +- !private ["PSo16NSObjectProtocol", "invalidate"] +- !private ["PSo16NSObjectProtocol", "scheduledTimerWithTimeInterval"] +- !private ["CSo7NSTimer", "invalidate"] +- !private ["CSo7NSTimer", "scheduledTimerWithTimeInterval"] +- ["C8Mixpanel7Network", "init"] +- !private ["C8Mixpanel7Network", "requestNotAllowed"] +- !private ["C8Mixpanel7Network", "sendRequest"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "removeRange"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeRange"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "removeRange"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "removeRange"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "removeRange"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "removeRange"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +depends-nominal: +- !private "V8Mixpanel12APIConstants" +- "Ps9AnyObject" +- "P8Mixpanel12AppLifecycle" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Ps9Equatable" +- "C8Mixpanel5Flush" +- "P8Mixpanel13FlushDelegate" +- "C8Mixpanel12FlushRequest" +- !private "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel11JSONHandler" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Vs12MutableSlice" +- !private "Ps16MutableSliceable" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "CSo7NSTimer" +- "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Strideable" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "f29b3c5c17ca725828ed00f91150b5e5" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.d new file mode 100644 index 00000000..0bf95400 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o new file mode 100644 index 00000000..a4530eb7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.swiftdeps new file mode 100644 index 00000000..1c5daf6f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.swiftdeps @@ -0,0 +1,578 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FlushType" +- "FlushRequest" +provides-nominal: +- "O8Mixpanel9FlushType" +- "C8Mixpanel12FlushRequest" +provides-member: +- ["O8Mixpanel9FlushType", ""] +- ["C8Mixpanel12FlushRequest", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "NSURLResponse" +- !private "~=" +- "==" +- !private "-" +- !private "<" +- "IntegerLiteralType" +- !private "BasePath" +- !private "max" +- "FlushType" +- "String" +- !private "NSTimeInterval" +- !private "Logger" +- "Network" +- !private "Int" +- !private "NSUTF8StringEncoding" +- !private "Method" +- !private "Dictionary" +- "StringLiteralType" +- !private "arc4random_uniform" +- !private "+" +- "Void" +- !private "min" +- !private "NSData" +- "FlushRequest" +- !private "NSDate" +- !private "APIConstants" +- !private "NSHTTPURLResponse" +- !private "Resource" +- !private "??" +- !private "pow" +- !private "*" +- "BooleanLiteralType" +- !private ">=" +- "Bool" +- !private "+=" +- !private "Double" +- "FloatLiteralType" +depends-member: +- !private ["V8Mixpanel12APIConstants", "failuresTillBackoff"] +- !private ["V8Mixpanel12APIConstants", "maxRetryBackoff"] +- !private ["V8Mixpanel12APIConstants", "minRetryBackoff"] +- !private ["Ps16AbsoluteValuable", "IntegerLiteralType"] +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "APIConstants"] +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "Method"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "allHeaderFields"] +- !private ["Ps9AnyObject", "apiRequest"] +- !private ["Ps9AnyObject", "arc4random_uniform"] +- !private ["Ps9AnyObject", "buildResource"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- ["Ps9AnyObject", "flushRequestHandler"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "max"] +- !private ["Ps9AnyObject", "min"] +- ["Ps9AnyObject", "networkConsecutiveFailures"] +- ["Ps9AnyObject", "networkRequestsAllowedAfterTime"] +- !private ["Ps9AnyObject", "pow"] +- ["Ps9AnyObject", "requestNotAllowed"] +- ["Ps9AnyObject", "retryBackOffTimeWithConsecutiveFailures"] +- ["Ps9AnyObject", "sendRequest"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- ["Ps9AnyObject", "updateRetryDelay"] +- ["Ps9AnyObject", ""] +- !private ["V8Mixpanel8BasePath", "MixpanelAPI"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "IntegerLiteralType"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Stride"] +- !private ["Ps11CVarArgType", "allHeaderFields"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "IntegerLiteralType"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allHeaderFields"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "allHeaderFields"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "IntegerLiteralType"] +- !private ["Sd", "Stride"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "POST"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "allHeaderFields"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "IntegerLiteralType"] +- !private ["Sf", "Stride"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps23FloatLiteralConvertible", "Stride"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "IntegerLiteralType"] +- !private ["Ps17FloatingPointType", "Stride"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["C8Mixpanel12FlushRequest", "APIConstants"] +- !private ["C8Mixpanel12FlushRequest", "BasePath"] +- ["C8Mixpanel12FlushRequest", "Bool"] +- !private ["C8Mixpanel12FlushRequest", "Double"] +- ["C8Mixpanel12FlushRequest", "FlushType"] +- !private ["C8Mixpanel12FlushRequest", "Int"] +- !private ["C8Mixpanel12FlushRequest", "Logger"] +- !private ["C8Mixpanel12FlushRequest", "Method"] +- !private ["C8Mixpanel12FlushRequest", "NSData"] +- !private ["C8Mixpanel12FlushRequest", "NSDate"] +- !private ["C8Mixpanel12FlushRequest", "NSHTTPURLResponse"] +- !private ["C8Mixpanel12FlushRequest", "NSTimeInterval"] +- !private ["C8Mixpanel12FlushRequest", "NSURLResponse"] +- !private ["C8Mixpanel12FlushRequest", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel12FlushRequest", "Network"] +- !private ["C8Mixpanel12FlushRequest", "Resource"] +- ["C8Mixpanel12FlushRequest", "String"] +- ["C8Mixpanel12FlushRequest", "Void"] +- !private ["C8Mixpanel12FlushRequest", "arc4random_uniform"] +- ["C8Mixpanel12FlushRequest", "deinit"] +- !private ["C8Mixpanel12FlushRequest", "flushRequestHandler"] +- ["C8Mixpanel12FlushRequest", "init"] +- !private ["C8Mixpanel12FlushRequest", "max"] +- !private ["C8Mixpanel12FlushRequest", "min"] +- ["C8Mixpanel12FlushRequest", "networkConsecutiveFailures"] +- ["C8Mixpanel12FlushRequest", "networkRequestsAllowedAfterTime"] +- !private ["C8Mixpanel12FlushRequest", "pow"] +- ["C8Mixpanel12FlushRequest", "requestNotAllowed"] +- !private ["C8Mixpanel12FlushRequest", "retryBackOffTimeWithConsecutiveFailures"] +- ["C8Mixpanel12FlushRequest", "sendRequest"] +- !private ["C8Mixpanel12FlushRequest", "updateRetryDelay"] +- ["O8Mixpanel9FlushType", "Events"] +- ["O8Mixpanel9FlushType", "People"] +- ["O8Mixpanel9FlushType", "RawValue"] +- ["O8Mixpanel9FlushType", "deinit"] +- ["O8Mixpanel9FlushType", "hashValue"] +- ["O8Mixpanel9FlushType", "init"] +- ["O8Mixpanel9FlushType", "rawValue"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "POST"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "allHeaderFields"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Stride"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["O8Mixpanel6Method", "POST"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "allHeaderFields"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "allHeaderFields"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["CSo17NSHTTPURLResponse", "allHeaderFields"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "allHeaderFields"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "allHeaderFields"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo14NSSecureCoding", "allHeaderFields"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo13NSURLResponse", "allHeaderFields"] +- !private ["C8Mixpanel7Network", "APIConstants"] +- !private ["C8Mixpanel7Network", "BasePath"] +- ["C8Mixpanel7Network", "Bool"] +- !private ["C8Mixpanel7Network", "Double"] +- ["C8Mixpanel7Network", "FlushType"] +- !private ["C8Mixpanel7Network", "Int"] +- !private ["C8Mixpanel7Network", "Logger"] +- !private ["C8Mixpanel7Network", "Method"] +- !private ["C8Mixpanel7Network", "NSData"] +- !private ["C8Mixpanel7Network", "NSDate"] +- !private ["C8Mixpanel7Network", "NSHTTPURLResponse"] +- !private ["C8Mixpanel7Network", "NSTimeInterval"] +- !private ["C8Mixpanel7Network", "NSURLResponse"] +- !private ["C8Mixpanel7Network", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel7Network", "Network"] +- !private ["C8Mixpanel7Network", "Resource"] +- ["C8Mixpanel7Network", "String"] +- ["C8Mixpanel7Network", "Void"] +- !private ["C8Mixpanel7Network", "apiRequest"] +- !private ["C8Mixpanel7Network", "arc4random_uniform"] +- !private ["C8Mixpanel7Network", "buildResource"] +- ["C8Mixpanel7Network", "flushRequestHandler"] +- ["C8Mixpanel7Network", "init"] +- !private ["C8Mixpanel7Network", "max"] +- !private ["C8Mixpanel7Network", "min"] +- ["C8Mixpanel7Network", "networkConsecutiveFailures"] +- ["C8Mixpanel7Network", "networkRequestsAllowedAfterTime"] +- !private ["C8Mixpanel7Network", "pow"] +- ["C8Mixpanel7Network", "requestNotAllowed"] +- ["C8Mixpanel7Network", "retryBackOffTimeWithConsecutiveFailures"] +- ["C8Mixpanel7Network", "sendRequest"] +- ["C8Mixpanel7Network", "updateRetryDelay"] +- ["C8Mixpanel7Network", ""] +- !private ["Ps21NilLiteralConvertible", "Some"] +- !private ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps16RawRepresentable", "POST"] +- ["Ps16RawRepresentable", "RawValue"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Stride"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "dataUsingEncoding"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "Stride"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "IntegerLiteralType"] +- !private ["Ps19_CVarArgAlignedType", "Stride"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "IntegerLiteralType"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "Stride"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "V8Mixpanel12APIConstants" +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "V8Mixpanel8BasePath" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- "C8Mixpanel12FlushRequest" +- "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "O8Mixpanel6Method" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- !private "CSo17NSHTTPURLResponse" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo13NSURLResponse" +- "C8Mixpanel7Network" +- !private "Ps21NilLiteralConvertible" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "75f093034953f36d8757165dc89941a0" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftmodule new file mode 100644 index 00000000..fdffc4b6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftmodule new file mode 100644 index 00000000..e9fb0058 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.d new file mode 100644 index 00000000..c49890c6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o new file mode 100644 index 00000000..039342b1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.swiftdeps new file mode 100644 index 00000000..62e6fc92 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.swiftdeps @@ -0,0 +1,517 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "JSONHandler" +provides-nominal: +- "C8Mixpanel11JSONHandler" +provides-member: +- ["C8Mixpanel11JSONHandler", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "Int" +- !private "NSLocale" +- !private "NSDateFormatter" +- "AnyObject" +- !private "NSDataBase64EncodingOptions" +- !private "NSCharacterSet" +- !private "NSURL" +- !private "NSDate" +- "JSONHandler" +- !private "Double" +- "String" +- !private "Properties" +- !private "UInt" +- "NSData" +- !private "NSJSONSerialization" +- !private "StringLiteralType" +- !private "Float" +- !private "NSTimeZone" +- !private "Logger" +- !private "Array" +depends-member: +- !private ["Ps9AnyObject", "AnyObject"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSCharacterSet"] +- !private ["Ps9AnyObject", "NSDataBase64EncodingOptions"] +- !private ["Ps9AnyObject", "NSDateFormatter"] +- !private ["Ps9AnyObject", "NSJSONSerialization"] +- !private ["Ps9AnyObject", "NSLocale"] +- !private ["Ps9AnyObject", "NSTimeZone"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "URLQueryAllowedCharacterSet"] +- !private ["Ps9AnyObject", "absoluteString"] +- !private ["Ps9AnyObject", "base64EncodedStringWithOptions"] +- !private ["Ps9AnyObject", "dataWithJSONObject"] +- !private ["Ps9AnyObject", "dateFormat"] +- !private ["Ps9AnyObject", "description"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isValidJSONObject"] +- !private ["Ps9AnyObject", "locale"] +- !private ["Ps9AnyObject", "makeObjectSerializable"] +- !private ["Ps9AnyObject", "serializeJSONObject"] +- !private ["Ps9AnyObject", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps9AnyObject", "stringFromDate"] +- !private ["Ps9AnyObject", "timeZone"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "deinit"] +- !private ["Sa", "map"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Encoding64CharacterLineLength"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "map"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "URLQueryAllowedCharacterSet"] +- !private ["Ps11CVarArgType", "absoluteString"] +- !private ["Ps11CVarArgType", "base64EncodedStringWithOptions"] +- !private ["Ps11CVarArgType", "dataWithJSONObject"] +- !private ["Ps11CVarArgType", "dateFormat"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isValidJSONObject"] +- !private ["Ps11CVarArgType", "locale"] +- !private ["Ps11CVarArgType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps11CVarArgType", "stringFromDate"] +- !private ["Ps11CVarArgType", "timeZone"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "map"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URLQueryAllowedCharacterSet"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "absoluteString"] +- !private ["Ps28CustomDebugStringConvertible", "base64EncodedStringWithOptions"] +- !private ["Ps28CustomDebugStringConvertible", "dataWithJSONObject"] +- !private ["Ps28CustomDebugStringConvertible", "dateFormat"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isValidJSONObject"] +- !private ["Ps28CustomDebugStringConvertible", "locale"] +- !private ["Ps28CustomDebugStringConvertible", "map"] +- !private ["Ps28CustomDebugStringConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps28CustomDebugStringConvertible", "stringFromDate"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeZone"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URLQueryAllowedCharacterSet"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "absoluteString"] +- !private ["Ps23CustomStringConvertible", "base64EncodedStringWithOptions"] +- !private ["Ps23CustomStringConvertible", "dataWithJSONObject"] +- !private ["Ps23CustomStringConvertible", "dateFormat"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isValidJSONObject"] +- !private ["Ps23CustomStringConvertible", "locale"] +- !private ["Ps23CustomStringConvertible", "map"] +- !private ["Ps23CustomStringConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps23CustomStringConvertible", "stringFromDate"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeZone"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "map"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "map"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Encoding64CharacterLineLength"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "URLQueryAllowedCharacterSet"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "absoluteString"] +- !private ["Ps9Equatable", "base64EncodedStringWithOptions"] +- !private ["Ps9Equatable", "dataWithJSONObject"] +- !private ["Ps9Equatable", "dateFormat"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isValidJSONObject"] +- !private ["Ps9Equatable", "locale"] +- !private ["Ps9Equatable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps9Equatable", "stringFromDate"] +- !private ["Ps9Equatable", "timeZone"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "URLQueryAllowedCharacterSet"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "absoluteString"] +- !private ["Ps8Hashable", "base64EncodedStringWithOptions"] +- !private ["Ps8Hashable", "dataWithJSONObject"] +- !private ["Ps8Hashable", "dateFormat"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isValidJSONObject"] +- !private ["Ps8Hashable", "locale"] +- !private ["Ps8Hashable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps8Hashable", "stringFromDate"] +- !private ["Ps8Hashable", "timeZone"] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "map"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- ["C8Mixpanel11JSONHandler", "AnyObject"] +- !private ["C8Mixpanel11JSONHandler", "Array"] +- !private ["C8Mixpanel11JSONHandler", "Double"] +- !private ["C8Mixpanel11JSONHandler", "Float"] +- !private ["C8Mixpanel11JSONHandler", "Int"] +- !private ["C8Mixpanel11JSONHandler", "Logger"] +- ["C8Mixpanel11JSONHandler", "MPObjectToParse"] +- !private ["C8Mixpanel11JSONHandler", "NSCharacterSet"] +- ["C8Mixpanel11JSONHandler", "NSData"] +- !private ["C8Mixpanel11JSONHandler", "NSDataBase64EncodingOptions"] +- !private ["C8Mixpanel11JSONHandler", "NSDate"] +- !private ["C8Mixpanel11JSONHandler", "NSDateFormatter"] +- !private ["C8Mixpanel11JSONHandler", "NSJSONSerialization"] +- !private ["C8Mixpanel11JSONHandler", "NSLocale"] +- !private ["C8Mixpanel11JSONHandler", "NSTimeZone"] +- !private ["C8Mixpanel11JSONHandler", "NSURL"] +- !private ["C8Mixpanel11JSONHandler", "Properties"] +- ["C8Mixpanel11JSONHandler", "String"] +- !private ["C8Mixpanel11JSONHandler", "UInt"] +- ["C8Mixpanel11JSONHandler", "deinit"] +- ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- ["C8Mixpanel11JSONHandler", "init"] +- !private ["C8Mixpanel11JSONHandler", "makeObjectSerializable"] +- ["C8Mixpanel11JSONHandler", "serializeJSONObject"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["C8Mixpanel6Logger", "warn"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "map"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "map"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "map"] +- !private ["CSo14NSCharacterSet", "URLQueryAllowedCharacterSet"] +- !private ["PSo8NSCoding", "URLQueryAllowedCharacterSet"] +- !private ["PSo8NSCoding", "absoluteString"] +- !private ["PSo8NSCoding", "base64EncodedStringWithOptions"] +- !private ["PSo8NSCoding", "dateFormat"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "locale"] +- !private ["PSo8NSCoding", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo8NSCoding", "stringFromDate"] +- !private ["PSo8NSCoding", "timeZone"] +- !private ["PSo9NSCopying", "URLQueryAllowedCharacterSet"] +- !private ["PSo9NSCopying", "absoluteString"] +- !private ["PSo9NSCopying", "base64EncodedStringWithOptions"] +- !private ["PSo9NSCopying", "dateFormat"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "locale"] +- !private ["PSo9NSCopying", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo9NSCopying", "stringFromDate"] +- !private ["PSo9NSCopying", "timeZone"] +- !private ["CSo6NSData", "base64EncodedStringWithOptions"] +- !private ["VSC27NSDataBase64EncodingOptions", "Encoding64CharacterLineLength"] +- !private ["CSo15NSDateFormatter", "dateFormat"] +- !private ["CSo15NSDateFormatter", "init"] +- !private ["CSo15NSDateFormatter", "locale"] +- !private ["CSo15NSDateFormatter", "stringFromDate"] +- !private ["CSo15NSDateFormatter", "timeZone"] +- !private ["CSo11NSFormatter", "dateFormat"] +- !private ["CSo11NSFormatter", "init"] +- !private ["CSo11NSFormatter", "locale"] +- !private ["CSo11NSFormatter", "stringFromDate"] +- !private ["CSo11NSFormatter", "timeZone"] +- !private ["CSo19NSJSONSerialization", "dataWithJSONObject"] +- !private ["CSo19NSJSONSerialization", "isValidJSONObject"] +- !private ["VSC20NSJSONWritingOptions", "Element"] +- !private ["CSo8NSLocale", "init"] +- !private ["PSo16NSMutableCopying", "URLQueryAllowedCharacterSet"] +- !private ["PSo16NSMutableCopying", "base64EncodedStringWithOptions"] +- !private ["PSo16NSMutableCopying", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSObject", "URLQueryAllowedCharacterSet"] +- !private ["CSo8NSObject", "absoluteString"] +- !private ["CSo8NSObject", "base64EncodedStringWithOptions"] +- !private ["CSo8NSObject", "dataWithJSONObject"] +- !private ["CSo8NSObject", "dateFormat"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isValidJSONObject"] +- !private ["CSo8NSObject", "locale"] +- !private ["CSo8NSObject", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSObject", "stringFromDate"] +- !private ["CSo8NSObject", "timeZone"] +- !private ["PSo16NSObjectProtocol", "URLQueryAllowedCharacterSet"] +- !private ["PSo16NSObjectProtocol", "absoluteString"] +- !private ["PSo16NSObjectProtocol", "base64EncodedStringWithOptions"] +- !private ["PSo16NSObjectProtocol", "dataWithJSONObject"] +- !private ["PSo16NSObjectProtocol", "dateFormat"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isValidJSONObject"] +- !private ["PSo16NSObjectProtocol", "locale"] +- !private ["PSo16NSObjectProtocol", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo16NSObjectProtocol", "stringFromDate"] +- !private ["PSo16NSObjectProtocol", "timeZone"] +- !private ["PSo14NSSecureCoding", "absoluteString"] +- !private ["PSo14NSSecureCoding", "base64EncodedStringWithOptions"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSString", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo10NSTimeZone", "init"] +- !private ["CSo5NSURL", "absoluteString"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "Element"] +- !private ["Ps13OptionSetType", "Encoding64CharacterLineLength"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "map"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Encoding64CharacterLineLength"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "map"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "Element"] +- !private ["Ps14SetAlgebraType", "Encoding64CharacterLineLength"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps30StringInterpolationConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps24StringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "map"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "map"] +- !private ["Ps32_FileReferenceLiteralConvertible", "absoluteString"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "map"] +- !private ["Ps21_ObjectiveCBridgeable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "absoluteString"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "map"] +- !private ["Ps12_Reflectable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- "C8Mixpanel11JSONHandler" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo14NSCharacterSet" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "VSC27NSDataBase64EncodingOptions" +- !private "CSo15NSDateFormatter" +- !private "CSo11NSFormatter" +- !private "CSo19NSJSONSerialization" +- !private "VSC20NSJSONWritingOptions" +- !private "CSo8NSLocale" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo10NSTimeZone" +- !private "CSo5NSURL" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "description" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "47f28b44a776ad89633b1eb5fe959f9c" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftmodule new file mode 100644 index 00000000..3261c7fd Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.d new file mode 100644 index 00000000..5b44b5d9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o new file mode 100644 index 00000000..f90a712a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.swiftdeps new file mode 100644 index 00000000..37f67d22 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.swiftdeps @@ -0,0 +1,522 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "LogLevel" +- "LogMessage" +- "Logging" +- "Logger" +provides-nominal: +- "O8Mixpanel8LogLevel" +- "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- "C8Mixpanel6Logger" +provides-member: +- ["O8Mixpanel8LogLevel", ""] +- ["V8Mixpanel10LogMessage", ""] +- ["P8Mixpanel7Logging", ""] +- ["C8Mixpanel6Logger", ""] +provides-dynamic-lookup: +depends-top-level: +- "Set" +- "Any" +- "Logging" +- !private "FloatLiteralType" +- "LogMessage" +- "==" +- "LogLevel" +- !private "~=" +- !private "IntegerLiteralType" +- "StringLiteralType" +- "String" +- "Logger" +- !private "UnicodeScalarType" +depends-member: +- !private ["Ps9AnyObject", "LogMessage"] +- ["Ps9AnyObject", "Logging"] +- ["Ps9AnyObject", "Set"] +- !private ["Ps9AnyObject", "componentsSeparatedByString"] +- !private ["Ps9AnyObject", "enabledLevels"] +- !private ["Ps9AnyObject", "forwardLogMessage"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "loggers"] +- ["Ps9AnyObject", ""] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "forEach"] +- ["Sa", "init"] +- !private ["Sa", "last"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "contains"] +- !private ["Ps23ArrayLiteralConvertible", "forEach"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "insert"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Ps23ArrayLiteralConvertible", "remove"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["Ps11CVarArgType", "Distance"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "componentsSeparatedByString"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- ["Ps14CollectionType", "SubSequence"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "contains"] +- !private ["Ps14CollectionType", "forEach"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "insert"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "remove"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "componentsSeparatedByString"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "componentsSeparatedByString"] +- !private ["Ps28CustomDebugStringConvertible", "contains"] +- !private ["Ps28CustomDebugStringConvertible", "forEach"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "insert"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "remove"] +- ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "componentsSeparatedByString"] +- !private ["Ps23CustomStringConvertible", "contains"] +- !private ["Ps23CustomStringConvertible", "forEach"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "insert"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "remove"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Debug"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Generator"] +- !private ["Ps9Equatable", "Info"] +- ["Ps9Equatable", "IntegerLiteralType"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "componentsSeparatedByString"] +- !private ["Ps9Equatable", "contains"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "insert"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "remove"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Debug"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Generator"] +- !private ["Ps8Hashable", "Info"] +- ["Ps8Hashable", "IntegerLiteralType"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "componentsSeparatedByString"] +- !private ["Ps8Hashable", "contains"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "insert"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "remove"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "contains"] +- !private ["Ps9Indexable", "forEach"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "insert"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "remove"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- ["O8Mixpanel8LogLevel", "Debug"] +- ["O8Mixpanel8LogLevel", "Error"] +- ["O8Mixpanel8LogLevel", "Info"] +- ["O8Mixpanel8LogLevel", "RawValue"] +- ["O8Mixpanel8LogLevel", "Warning"] +- ["O8Mixpanel8LogLevel", "deinit"] +- ["O8Mixpanel8LogLevel", "hashValue"] +- ["O8Mixpanel8LogLevel", "init"] +- ["O8Mixpanel8LogLevel", "rawValue"] +- ["V8Mixpanel10LogMessage", "LogLevel"] +- ["V8Mixpanel10LogMessage", "String"] +- ["V8Mixpanel10LogMessage", "file"] +- ["V8Mixpanel10LogMessage", "function"] +- ["V8Mixpanel10LogMessage", "init"] +- ["V8Mixpanel10LogMessage", "level"] +- ["V8Mixpanel10LogMessage", "text"] +- ["C8Mixpanel6Logger", "Any"] +- ["C8Mixpanel6Logger", "LogLevel"] +- !private ["C8Mixpanel6Logger", "LogMessage"] +- ["C8Mixpanel6Logger", "Logging"] +- ["C8Mixpanel6Logger", "Set"] +- ["C8Mixpanel6Logger", "String"] +- ["C8Mixpanel6Logger", "addLogging"] +- ["C8Mixpanel6Logger", "debug"] +- ["C8Mixpanel6Logger", "deinit"] +- ["C8Mixpanel6Logger", "disableLevel"] +- ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "enabledLevels"] +- ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "forwardLogMessage"] +- ["C8Mixpanel6Logger", "info"] +- ["C8Mixpanel6Logger", "init"] +- !private ["C8Mixpanel6Logger", "loggers"] +- ["C8Mixpanel6Logger", "warn"] +- ["P8Mixpanel7Logging", "LogMessage"] +- ["P8Mixpanel7Logging", "addMessage"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "componentsSeparatedByString"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "forEach"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "last"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "forEach"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "forEach"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["PSo8NSCoding", "componentsSeparatedByString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "componentsSeparatedByString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "componentsSeparatedByString"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "componentsSeparatedByString"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "componentsSeparatedByString"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "componentsSeparatedByString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "componentsSeparatedByString"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "componentsSeparatedByString"] +- !private ["Ps16OutputStreamType", "init"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "forEach"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "Warning"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- ["Ps12SequenceType", "SubSequence"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "contains"] +- !private ["Ps12SequenceType", "forEach"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "insert"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "remove"] +- !private ["Vs3Set", "Generator"] +- !private ["Vs3Set", "contains"] +- ["Vs3Set", "init"] +- !private ["Vs3Set", "insert"] +- !private ["Vs3Set", "remove"] +- !private ["Vs12SetGenerator", "Element"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps10Streamable", "componentsSeparatedByString"] +- !private ["Ps10Streamable", "init"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["SS", "componentsSeparatedByString"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "componentsSeparatedByString"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "forEach"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "forEach"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "hashValue"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "componentsSeparatedByString"] +- !private ["Ps21_ObjectiveCBridgeable", "contains"] +- !private ["Ps21_ObjectiveCBridgeable", "forEach"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "insert"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "remove"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "componentsSeparatedByString"] +- !private ["Ps12_Reflectable", "contains"] +- !private ["Ps12_Reflectable", "forEach"] +- !private ["Ps12_Reflectable", "hashValue"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "insert"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "remove"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- "O8Mixpanel8LogLevel" +- "V8Mixpanel10LogMessage" +- "C8Mixpanel6Logger" +- "P8Mixpanel7Logging" +- "Ps14MirrorPathType" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- "Ps12SequenceType" +- "Vs3Set" +- !private "Vs12SetGenerator" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Ps10Streamable" +- "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "bbe3e740851c457208bc0fa5315fed86" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftdoc new file mode 100644 index 00000000..8068a1e0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftmodule new file mode 100644 index 00000000..4d810d3b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..a35958d1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-master.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-master.swiftdeps new file mode 100644 index 00000000..4158aa24 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-master.swiftdeps @@ -0,0 +1,19 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "f5aefcd7d5d906b5949244a9621fb079" +build_time: [522535015, 520897000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift": [522361229, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift": [522522507, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift": [522531585, 0] diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.LinkFileList new file mode 100644 index 00000000..6103cfb2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.d new file mode 100644 index 00000000..aa0c47b9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o new file mode 100644 index 00000000..d0b3ab0e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdeps new file mode 100644 index 00000000..61a77862 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdeps @@ -0,0 +1,250 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "Mixpanel" +- "MixpanelManager" +provides-nominal: +- "C8Mixpanel8Mixpanel" +- "C8Mixpanel15MixpanelManager" +provides-member: +- ["C8Mixpanel8Mixpanel", ""] +- ["C8Mixpanel15MixpanelManager", ""] +provides-dynamic-lookup: +depends-top-level: +- "AnyObject" +- "MixpanelInstance" +- "IntegerLiteralType" +- !private "StringLiteralType" +- !private "PrintLogging" +- "Double" +- "NSObject" +- !private "Logger" +- "String" +- "MixpanelManager" +- "Mixpanel" +- "FloatLiteralType" +- !private "NSUUID" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "MixpanelInstance"] +- ["Ps9AnyObject", "MixpanelManager"] +- !private ["Ps9AnyObject", "NSUUID"] +- !private ["Ps9AnyObject", "PrintLogging"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "UUIDString"] +- !private ["Ps9AnyObject", "addLogging"] +- !private ["Ps9AnyObject", "getInstance"] +- !private ["Ps9AnyObject", "getMainInstance"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "instances"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "removeInstance"] +- !private ["Ps9AnyObject", "setMainInstance"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "UUIDString"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "UUIDString"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "UUIDString"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "UUIDString"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "UUIDString"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["C8Mixpanel6Logger", "addLogging"] +- !private ["C8Mixpanel6Logger", "warn"] +- !private ["P8Mixpanel7Logging", "init"] +- !private ["Ps14MirrorPathType", "init"] +- ["C8Mixpanel8Mixpanel", "AnyObject"] +- ["C8Mixpanel8Mixpanel", "Double"] +- ["C8Mixpanel8Mixpanel", "MixpanelInstance"] +- !private ["C8Mixpanel8Mixpanel", "MixpanelManager"] +- ["C8Mixpanel8Mixpanel", "NSObject"] +- !private ["C8Mixpanel8Mixpanel", "NSUUID"] +- ["C8Mixpanel8Mixpanel", "String"] +- ["C8Mixpanel8Mixpanel", "deinit"] +- ["C8Mixpanel8Mixpanel", "getInstance"] +- ["C8Mixpanel8Mixpanel", "init"] +- ["C8Mixpanel8Mixpanel", "initialize"] +- ["C8Mixpanel8Mixpanel", "mainInstance"] +- ["C8Mixpanel8Mixpanel", "removeInstance"] +- ["C8Mixpanel8Mixpanel", "setMainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "init"] +- ["C8Mixpanel15MixpanelManager", "AnyObject"] +- ["C8Mixpanel15MixpanelManager", "Double"] +- !private ["C8Mixpanel15MixpanelManager", "Logger"] +- ["C8Mixpanel15MixpanelManager", "MixpanelInstance"] +- ["C8Mixpanel15MixpanelManager", "MixpanelManager"] +- ["C8Mixpanel15MixpanelManager", "NSObject"] +- !private ["C8Mixpanel15MixpanelManager", "PrintLogging"] +- ["C8Mixpanel15MixpanelManager", "String"] +- ["C8Mixpanel15MixpanelManager", "deinit"] +- ["C8Mixpanel15MixpanelManager", "getInstance"] +- ["C8Mixpanel15MixpanelManager", "getMainInstance"] +- ["C8Mixpanel15MixpanelManager", "init"] +- ["C8Mixpanel15MixpanelManager", "initialize"] +- !private ["C8Mixpanel15MixpanelManager", "instances"] +- !private ["C8Mixpanel15MixpanelManager", "mainInstance"] +- ["C8Mixpanel15MixpanelManager", "removeInstance"] +- ["C8Mixpanel15MixpanelManager", "setMainInstance"] +- ["C8Mixpanel15MixpanelManager", "sharedInstance"] +- !private ["PSo8NSCoding", "UUIDString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "UUIDString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "UUIDString"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "UUIDString"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "UUIDString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["CSo6NSUUID", "UUIDString"] +- !private ["CSo6NSUUID", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel12PrintLogging", "deinit"] +- !private ["C8Mixpanel12PrintLogging", "init"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "C8Mixpanel6Logger" +- !private "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "C8Mixpanel15MixpanelManager" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo6NSUUID" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel12PrintLogging" +- !private "Ps12SequenceType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "23eb6f60b94407163e4fd5bcac150036" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc new file mode 100644 index 00000000..1e1ff9ab Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule new file mode 100644 index 00000000..bde4434d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.d new file mode 100644 index 00000000..de452281 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o new file mode 100644 index 00000000..e710471d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.swiftdeps new file mode 100644 index 00000000..9a1b1efb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.swiftdeps @@ -0,0 +1,1061 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelDelegate" +- "Properties" +- "Queue" +- "AppLifecycle" +- "MixpanelInstance" +provides-nominal: +- "P8Mixpanel16MixpanelDelegate" +- "P8Mixpanel12AppLifecycle" +- "C8Mixpanel16MixpanelInstance" +provides-member: +- ["P8Mixpanel16MixpanelDelegate", ""] +- ["P8Mixpanel12AppLifecycle", ""] +- ["C8Mixpanel16MixpanelInstance", ""] +- ["C8Mixpanel16MixpanelInstance", "identify"] +- ["C8Mixpanel16MixpanelInstance", "createAlias"] +- ["C8Mixpanel16MixpanelInstance", "reset"] +- ["C8Mixpanel16MixpanelInstance", "archive"] +- ["C8Mixpanel16MixpanelInstance", "unarchive"] +- ["C8Mixpanel16MixpanelInstance", "archiveProperties"] +- ["C8Mixpanel16MixpanelInstance", "trackIntegration"] +- ["C8Mixpanel16MixpanelInstance", "flush"] +- ["C8Mixpanel16MixpanelInstance", "track"] +- ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- ["C8Mixpanel16MixpanelInstance", "time"] +- ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["C8Mixpanel16MixpanelInstance", "dispatchAndTrack"] +provides-dynamic-lookup: +- "applicationWillResignActive" +- "appLinksNotificationRaised" +- "applicationDidBecomeActive" +- "applicationDidEnterBackground" +- "applicationWillEnterForeground" +- "applicationWillTerminate" +- "setCurrentRadio" +depends-top-level: +- "BooleanLiteralType" +- !private "!=" +- !private "Persistence" +- "dispatch_queue_t" +- !private "NSDate" +- !private "AutomaticProperties" +- !private "Network" +- "AnyObject" +- !private "NSNotification" +- !private "NSClassFromString" +- !private "NSUUID" +- !private "dispatch_get_main_queue" +- !private "CTRadioAccessTechnologyDidChangeNotification" +- !private "BasePath" +- !private "UIApplicationDidBecomeActiveNotification" +- "MixpanelDelegate" +- !private "UIApplicationLaunchOptionsRemoteNotificationKey" +- !private "UIApplicationWillResignActiveNotification" +- !private "dispatch_async" +- !private "Dictionary" +- "Double" +- !private "==" +- "AppLifecycle" +- !private "UnicodeScalarType" +- !private "Logger" +- !private "NSUserDefaults" +- !private "UIApplicationWillEnterForegroundNotification" +- "Queue" +- "Track" +- "FlushDelegate" +- "CustomDebugStringConvertible" +- !private "UIApplicationWillTerminateNotification" +- !private "NSNotificationCenter" +- !private "UIApplicationDidEnterBackgroundNotification" +- "String" +- !private "DISPATCH_QUEUE_SERIAL" +- "Properties" +- !private "UIApplication" +- !private "dispatch_queue_create" +- !private "!" +- !private "UIDevice" +- "Bool" +- "StringLiteralType" +- "Flush" +- !private "+" +- "NSObject" +- "Void" +- !private "ArchivedProperties" +- "UIBackgroundTaskInvalid" +- "MixpanelInstance" +- "People" +depends-member: +- !private ["Ps9AnyObject", "ArchivedProperties"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["Ps9AnyObject", "DISPATCH_QUEUE_SERIAL"] +- ["Ps9AnyObject", "Flush"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSClassFromString"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSNotificationCenter"] +- !private ["Ps9AnyObject", "NSUUID"] +- !private ["Ps9AnyObject", "NSUserDefaults"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "People"] +- !private ["Ps9AnyObject", "Persistence"] +- ["Ps9AnyObject", "Properties"] +- ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "UIApplication"] +- !private ["Ps9AnyObject", "UIApplicationDidBecomeActiveNotification"] +- !private ["Ps9AnyObject", "UIApplicationDidEnterBackgroundNotification"] +- !private ["Ps9AnyObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9AnyObject", "UIApplicationWillEnterForegroundNotification"] +- !private ["Ps9AnyObject", "UIApplicationWillResignActiveNotification"] +- !private ["Ps9AnyObject", "UIApplicationWillTerminateNotification"] +- ["Ps9AnyObject", "UIBackgroundTaskInvalid"] +- !private ["Ps9AnyObject", "UIDevice"] +- !private ["Ps9AnyObject", "UUIDString"] +- !private ["Ps9AnyObject", "_flushInterval"] +- !private ["Ps9AnyObject", "addObserver"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "appLinksNotificationRaised"] +- !private ["Ps9AnyObject", "applicationDidBecomeActive"] +- !private ["Ps9AnyObject", "applicationDidEnterBackground"] +- !private ["Ps9AnyObject", "applicationWillEnterForeground"] +- !private ["Ps9AnyObject", "applicationWillResignActive"] +- !private ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "archiveEvents"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "archiveProperties"] +- !private ["Ps9AnyObject", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps9AnyObject", "boolForKey"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "clearTimedEvents"] +- !private ["Ps9AnyObject", "currentDevice"] +- ["Ps9AnyObject", "debugDescription"] +- !private ["Ps9AnyObject", "defaultCenter"] +- !private ["Ps9AnyObject", "defaultDistinctId"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "disableLevel"] +- !private ["Ps9AnyObject", "dispatchAndTrack"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_queue_create"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "enableLevel"] +- !private ["Ps9AnyObject", "endBackgroundTask"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "eventsQueue"] +- ["Ps9AnyObject", "flush"] +- !private ["Ps9AnyObject", "flushEventsQueue"] +- !private ["Ps9AnyObject", "flushInstance"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "flushOnBackground"] +- !private ["Ps9AnyObject", "flushPeopleQueue"] +- !private ["Ps9AnyObject", "getCurrentRadio"] +- !private ["Ps9AnyObject", "identifierForVendor"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isEmpty"] +- !private ["Ps9AnyObject", "loggingEnabled"] +- !private ["Ps9AnyObject", "networkActivityIndicatorVisible"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "properties"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- !private ["Ps9AnyObject", "removeObserver"] +- !private ["Ps9AnyObject", "serialQueue"] +- !private ["Ps9AnyObject", "setBool"] +- !private ["Ps9AnyObject", "setCurrentRadio"] +- !private ["Ps9AnyObject", "setupListeners"] +- !private ["Ps9AnyObject", "sharedApplication"] +- !private ["Ps9AnyObject", "showNetworkActivityIndicator"] +- !private ["Ps9AnyObject", "standardUserDefaults"] +- !private ["Ps9AnyObject", "superProperties"] +- !private ["Ps9AnyObject", "synchronize"] +- !private ["Ps9AnyObject", "taskId"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "timedEvents"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackInstance"] +- !private ["Ps9AnyObject", "trackIntegration"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- !private ["Ps9AnyObject", "unarchive"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- ["Ps9AnyObject", "updateNetworkActivityIndicator"] +- !private ["Ps9AnyObject", "useIPAddressForGeoLocation"] +- !private ["Ps9AnyObject", "userInfo"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "_flushInterval"] +- ["P8Mixpanel12AppLifecycle", "applicationDidBecomeActive"] +- ["P8Mixpanel12AppLifecycle", "applicationWillResignActive"] +- !private ["P8Mixpanel12AppLifecycle", "delegate"] +- !private ["P8Mixpanel12AppLifecycle", "flushEventsQueue"] +- !private ["P8Mixpanel12AppLifecycle", "flushInterval"] +- !private ["P8Mixpanel12AppLifecycle", "flushOnBackground"] +- !private ["P8Mixpanel12AppLifecycle", "flushPeopleQueue"] +- ["P8Mixpanel12AppLifecycle", "init"] +- !private ["P8Mixpanel12AppLifecycle", "useIPAddressForGeoLocation"] +- !private ["V8Mixpanel18ArchivedProperties", "init"] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "removeAll"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "removeAll"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "getCurrentRadio"] +- !private ["C8Mixpanel19AutomaticProperties", "properties"] +- !private ["V8Mixpanel8BasePath", "MixpanelAPI"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["Ps11CVarArgType", "Distance"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "UUIDString"] +- !private ["Ps11CVarArgType", "addObserver"] +- !private ["Ps11CVarArgType", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps11CVarArgType", "boolForKey"] +- !private ["Ps11CVarArgType", "currentDevice"] +- !private ["Ps11CVarArgType", "defaultCenter"] +- !private ["Ps11CVarArgType", "endBackgroundTask"] +- !private ["Ps11CVarArgType", "identifierForVendor"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isEmpty"] +- !private ["Ps11CVarArgType", "networkActivityIndicatorVisible"] +- !private ["Ps11CVarArgType", "removeObserver"] +- !private ["Ps11CVarArgType", "setBool"] +- !private ["Ps11CVarArgType", "sharedApplication"] +- !private ["Ps11CVarArgType", "standardUserDefaults"] +- !private ["Ps11CVarArgType", "synchronize"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps11CVarArgType", "userInfo"] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeAll"] +- !private ["Ps14CollectionType", "subscript"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "ArchivedProperties"] +- !private ["Ps28CustomDebugStringConvertible", "AutomaticProperties"] +- !private ["Ps28CustomDebugStringConvertible", "BasePath"] +- !private ["Ps28CustomDebugStringConvertible", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_QUEUE_SERIAL"] +- ["Ps28CustomDebugStringConvertible", "Flush"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Logger"] +- !private ["Ps28CustomDebugStringConvertible", "NSClassFromString"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSNotificationCenter"] +- !private ["Ps28CustomDebugStringConvertible", "NSUUID"] +- !private ["Ps28CustomDebugStringConvertible", "NSUserDefaults"] +- !private ["Ps28CustomDebugStringConvertible", "Network"] +- !private ["Ps28CustomDebugStringConvertible", "People"] +- !private ["Ps28CustomDebugStringConvertible", "Persistence"] +- ["Ps28CustomDebugStringConvertible", "Properties"] +- ["Ps28CustomDebugStringConvertible", "Queue"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Track"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplication"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationDidBecomeActiveNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationDidEnterBackgroundNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillEnterForegroundNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillResignActiveNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillTerminateNotification"] +- ["Ps28CustomDebugStringConvertible", "UIBackgroundTaskInvalid"] +- !private ["Ps28CustomDebugStringConvertible", "UIDevice"] +- !private ["Ps28CustomDebugStringConvertible", "UUIDString"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "addObserver"] +- !private ["Ps28CustomDebugStringConvertible", "apiToken"] +- !private ["Ps28CustomDebugStringConvertible", "appLinksNotificationRaised"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- !private ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "archiveProperties"] +- !private ["Ps28CustomDebugStringConvertible", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps28CustomDebugStringConvertible", "boolForKey"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentDevice"] +- ["Ps28CustomDebugStringConvertible", "debugDescription"] +- !private ["Ps28CustomDebugStringConvertible", "defaultCenter"] +- !private ["Ps28CustomDebugStringConvertible", "defaultDistinctId"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dispatchAndTrack"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_async"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_queue_create"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "endBackgroundTask"] +- !private ["Ps28CustomDebugStringConvertible", "eventsQueue"] +- ["Ps28CustomDebugStringConvertible", "flush"] +- !private ["Ps28CustomDebugStringConvertible", "flushInstance"] +- !private ["Ps28CustomDebugStringConvertible", "flushOnBackground"] +- !private ["Ps28CustomDebugStringConvertible", "identifierForVendor"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "loggingEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "networkActivityIndicatorVisible"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "removeAll"] +- !private ["Ps28CustomDebugStringConvertible", "removeObserver"] +- !private ["Ps28CustomDebugStringConvertible", "serialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "setBool"] +- !private ["Ps28CustomDebugStringConvertible", "setCurrentRadio"] +- !private ["Ps28CustomDebugStringConvertible", "setupListeners"] +- !private ["Ps28CustomDebugStringConvertible", "sharedApplication"] +- !private ["Ps28CustomDebugStringConvertible", "showNetworkActivityIndicator"] +- !private ["Ps28CustomDebugStringConvertible", "standardUserDefaults"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "superProperties"] +- !private ["Ps28CustomDebugStringConvertible", "synchronize"] +- !private ["Ps28CustomDebugStringConvertible", "taskId"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "timedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackInstance"] +- !private ["Ps28CustomDebugStringConvertible", "trackIntegration"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- !private ["Ps28CustomDebugStringConvertible", "unarchive"] +- ["Ps28CustomDebugStringConvertible", "updateNetworkActivityIndicator"] +- !private ["Ps28CustomDebugStringConvertible", "userInfo"] +- ["Ps28CustomDebugStringConvertible", ""] +- ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UUIDString"] +- !private ["Ps23CustomStringConvertible", "Value"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "addObserver"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps23CustomStringConvertible", "boolForKey"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "currentDevice"] +- !private ["Ps23CustomStringConvertible", "defaultCenter"] +- !private ["Ps23CustomStringConvertible", "endBackgroundTask"] +- !private ["Ps23CustomStringConvertible", "identifierForVendor"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "networkActivityIndicatorVisible"] +- !private ["Ps23CustomStringConvertible", "removeAll"] +- !private ["Ps23CustomStringConvertible", "removeObserver"] +- !private ["Ps23CustomStringConvertible", "setBool"] +- !private ["Ps23CustomStringConvertible", "sharedApplication"] +- !private ["Ps23CustomStringConvertible", "standardUserDefaults"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "synchronize"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "userInfo"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Debug"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Info"] +- ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "UUIDString"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "addObserver"] +- !private ["Ps9Equatable", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps9Equatable", "boolForKey"] +- !private ["Ps9Equatable", "currentDevice"] +- !private ["Ps9Equatable", "defaultCenter"] +- !private ["Ps9Equatable", "endBackgroundTask"] +- !private ["Ps9Equatable", "identifierForVendor"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isEmpty"] +- !private ["Ps9Equatable", "networkActivityIndicatorVisible"] +- !private ["Ps9Equatable", "removeObserver"] +- !private ["Ps9Equatable", "setBool"] +- !private ["Ps9Equatable", "sharedApplication"] +- !private ["Ps9Equatable", "standardUserDefaults"] +- !private ["Ps9Equatable", "synchronize"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps9Equatable", "userInfo"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Sf", "deinit"] +- !private ["C8Mixpanel5Flush", "_flushInterval"] +- !private ["C8Mixpanel5Flush", "applicationDidBecomeActive"] +- !private ["C8Mixpanel5Flush", "applicationWillResignActive"] +- !private ["C8Mixpanel5Flush", "deinit"] +- !private ["C8Mixpanel5Flush", "delegate"] +- !private ["C8Mixpanel5Flush", "flushEventsQueue"] +- !private ["C8Mixpanel5Flush", "flushInterval"] +- !private ["C8Mixpanel5Flush", "flushOnBackground"] +- !private ["C8Mixpanel5Flush", "flushPeopleQueue"] +- ["C8Mixpanel5Flush", "init"] +- !private ["C8Mixpanel5Flush", "useIPAddressForGeoLocation"] +- !private ["P8Mixpanel13FlushDelegate", "ArchivedProperties"] +- !private ["P8Mixpanel13FlushDelegate", "AutomaticProperties"] +- !private ["P8Mixpanel13FlushDelegate", "BasePath"] +- !private ["P8Mixpanel13FlushDelegate", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["P8Mixpanel13FlushDelegate", "DISPATCH_QUEUE_SERIAL"] +- ["P8Mixpanel13FlushDelegate", "Flush"] +- !private ["P8Mixpanel13FlushDelegate", "Logger"] +- !private ["P8Mixpanel13FlushDelegate", "NSClassFromString"] +- !private ["P8Mixpanel13FlushDelegate", "NSDate"] +- !private ["P8Mixpanel13FlushDelegate", "NSNotificationCenter"] +- !private ["P8Mixpanel13FlushDelegate", "NSUUID"] +- !private ["P8Mixpanel13FlushDelegate", "NSUserDefaults"] +- !private ["P8Mixpanel13FlushDelegate", "Network"] +- !private ["P8Mixpanel13FlushDelegate", "People"] +- !private ["P8Mixpanel13FlushDelegate", "Persistence"] +- ["P8Mixpanel13FlushDelegate", "Properties"] +- ["P8Mixpanel13FlushDelegate", "Queue"] +- !private ["P8Mixpanel13FlushDelegate", "Track"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplication"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationDidBecomeActiveNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationDidEnterBackgroundNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillEnterForegroundNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillResignActiveNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillTerminateNotification"] +- ["P8Mixpanel13FlushDelegate", "UIBackgroundTaskInvalid"] +- !private ["P8Mixpanel13FlushDelegate", "UIDevice"] +- !private ["P8Mixpanel13FlushDelegate", "apiToken"] +- !private ["P8Mixpanel13FlushDelegate", "appLinksNotificationRaised"] +- !private ["P8Mixpanel13FlushDelegate", "applicationDidBecomeActive"] +- !private ["P8Mixpanel13FlushDelegate", "applicationDidEnterBackground"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillEnterForeground"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillResignActive"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillTerminate"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "archiveProperties"] +- ["P8Mixpanel13FlushDelegate", "debugDescription"] +- !private ["P8Mixpanel13FlushDelegate", "defaultDistinctId"] +- !private ["P8Mixpanel13FlushDelegate", "delegate"] +- !private ["P8Mixpanel13FlushDelegate", "dispatchAndTrack"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_async"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_get_main_queue"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_queue_create"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "eventsQueue"] +- ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "flushInstance"] +- !private ["P8Mixpanel13FlushDelegate", "flushOnBackground"] +- !private ["P8Mixpanel13FlushDelegate", "loggingEnabled"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "serialQueue"] +- !private ["P8Mixpanel13FlushDelegate", "setCurrentRadio"] +- !private ["P8Mixpanel13FlushDelegate", "setupListeners"] +- !private ["P8Mixpanel13FlushDelegate", "showNetworkActivityIndicator"] +- !private ["P8Mixpanel13FlushDelegate", "superProperties"] +- !private ["P8Mixpanel13FlushDelegate", "taskId"] +- !private ["P8Mixpanel13FlushDelegate", "timedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackInstance"] +- !private ["P8Mixpanel13FlushDelegate", "trackIntegration"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["P8Mixpanel13FlushDelegate", "unarchive"] +- ["P8Mixpanel13FlushDelegate", "updateNetworkActivityIndicator"] +- ["P8Mixpanel13FlushDelegate", ""] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Debug"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Info"] +- ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "UUIDString"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "addObserver"] +- !private ["Ps8Hashable", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps8Hashable", "boolForKey"] +- !private ["Ps8Hashable", "currentDevice"] +- !private ["Ps8Hashable", "defaultCenter"] +- !private ["Ps8Hashable", "endBackgroundTask"] +- !private ["Ps8Hashable", "identifierForVendor"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isEmpty"] +- !private ["Ps8Hashable", "networkActivityIndicatorVisible"] +- !private ["Ps8Hashable", "removeObserver"] +- !private ["Ps8Hashable", "setBool"] +- !private ["Ps8Hashable", "sharedApplication"] +- !private ["Ps8Hashable", "standardUserDefaults"] +- !private ["Ps8Hashable", "synchronize"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps8Hashable", "userInfo"] +- !private ["SQ", "deinit"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeAll"] +- !private ["Ps9Indexable", "subscript"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["O8Mixpanel8LogLevel", "Debug"] +- !private ["O8Mixpanel8LogLevel", "Error"] +- !private ["O8Mixpanel8LogLevel", "Info"] +- !private ["O8Mixpanel8LogLevel", "Warning"] +- !private ["C8Mixpanel6Logger", "disableLevel"] +- !private ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps14MirrorPathType", "isEmpty"] +- ["P8Mixpanel16MixpanelDelegate", "Bool"] +- ["P8Mixpanel16MixpanelDelegate", "MixpanelInstance"] +- ["P8Mixpanel16MixpanelDelegate", "mixpanelWillFlush"] +- ["C8Mixpanel16MixpanelInstance", "AnyObject"] +- !private ["C8Mixpanel16MixpanelInstance", "ArchivedProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "AutomaticProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "BasePath"] +- ["C8Mixpanel16MixpanelInstance", "Bool"] +- !private ["C8Mixpanel16MixpanelInstance", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "DISPATCH_QUEUE_SERIAL"] +- ["C8Mixpanel16MixpanelInstance", "Double"] +- ["C8Mixpanel16MixpanelInstance", "Flush"] +- !private ["C8Mixpanel16MixpanelInstance", "Logger"] +- ["C8Mixpanel16MixpanelInstance", "MixpanelDelegate"] +- !private ["C8Mixpanel16MixpanelInstance", "NSClassFromString"] +- !private ["C8Mixpanel16MixpanelInstance", "NSDate"] +- !private ["C8Mixpanel16MixpanelInstance", "NSNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "NSNotificationCenter"] +- ["C8Mixpanel16MixpanelInstance", "NSObject"] +- !private ["C8Mixpanel16MixpanelInstance", "NSUUID"] +- !private ["C8Mixpanel16MixpanelInstance", "NSUserDefaults"] +- !private ["C8Mixpanel16MixpanelInstance", "Network"] +- ["C8Mixpanel16MixpanelInstance", "People"] +- !private ["C8Mixpanel16MixpanelInstance", "Persistence"] +- ["C8Mixpanel16MixpanelInstance", "Properties"] +- ["C8Mixpanel16MixpanelInstance", "Queue"] +- ["C8Mixpanel16MixpanelInstance", "String"] +- ["C8Mixpanel16MixpanelInstance", "Track"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplication"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationDidBecomeActiveNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationDidEnterBackgroundNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillEnterForegroundNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillResignActiveNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillTerminateNotification"] +- ["C8Mixpanel16MixpanelInstance", "UIBackgroundTaskInvalid"] +- !private ["C8Mixpanel16MixpanelInstance", "UIDevice"] +- ["C8Mixpanel16MixpanelInstance", "Void"] +- ["C8Mixpanel16MixpanelInstance", "apiToken"] +- !private ["C8Mixpanel16MixpanelInstance", "appLinksNotificationRaised"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationDidBecomeActive"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationDidEnterBackground"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillEnterForeground"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillResignActive"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillTerminate"] +- ["C8Mixpanel16MixpanelInstance", "archive"] +- ["C8Mixpanel16MixpanelInstance", "archiveProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- ["C8Mixpanel16MixpanelInstance", "createAlias"] +- ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "debugDescription"] +- ["C8Mixpanel16MixpanelInstance", "defaultDistinctId"] +- ["C8Mixpanel16MixpanelInstance", "deinit"] +- ["C8Mixpanel16MixpanelInstance", "delegate"] +- ["C8Mixpanel16MixpanelInstance", "dispatchAndTrack"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_async"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_get_main_queue"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_queue_create"] +- ["C8Mixpanel16MixpanelInstance", "dispatch_queue_t"] +- ["C8Mixpanel16MixpanelInstance", "distinctId"] +- ["C8Mixpanel16MixpanelInstance", "eventsQueue"] +- ["C8Mixpanel16MixpanelInstance", "flush"] +- ["C8Mixpanel16MixpanelInstance", "flushInstance"] +- ["C8Mixpanel16MixpanelInstance", "flushInterval"] +- ["C8Mixpanel16MixpanelInstance", "flushOnBackground"] +- ["C8Mixpanel16MixpanelInstance", "identify"] +- ["C8Mixpanel16MixpanelInstance", "init"] +- ["C8Mixpanel16MixpanelInstance", "loggingEnabled"] +- ["C8Mixpanel16MixpanelInstance", "people"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- ["C8Mixpanel16MixpanelInstance", "reset"] +- ["C8Mixpanel16MixpanelInstance", "serialQueue"] +- ["C8Mixpanel16MixpanelInstance", "serverURL"] +- ["C8Mixpanel16MixpanelInstance", "setCurrentRadio"] +- !private ["C8Mixpanel16MixpanelInstance", "setupListeners"] +- ["C8Mixpanel16MixpanelInstance", "showNetworkActivityIndicator"] +- ["C8Mixpanel16MixpanelInstance", "superProperties"] +- ["C8Mixpanel16MixpanelInstance", "taskId"] +- ["C8Mixpanel16MixpanelInstance", "time"] +- ["C8Mixpanel16MixpanelInstance", "timedEvents"] +- ["C8Mixpanel16MixpanelInstance", "track"] +- ["C8Mixpanel16MixpanelInstance", "trackInstance"] +- ["C8Mixpanel16MixpanelInstance", "trackIntegration"] +- ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- ["C8Mixpanel16MixpanelInstance", "unarchive"] +- ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["C8Mixpanel16MixpanelInstance", "updateNetworkActivityIndicator"] +- ["C8Mixpanel16MixpanelInstance", "useIPAddressForGeoLocation"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "removeAll"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "removeAll"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "removeAll"] +- !private ["PSo8NSCoding", "UUIDString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isEmpty"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo8NSCoding", "userInfo"] +- !private ["PSo9NSCopying", "UUIDString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "isEmpty"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "userInfo"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "isEmpty"] +- !private ["CSo14NSNotification", "userInfo"] +- !private ["CSo20NSNotificationCenter", "addObserver"] +- !private ["CSo20NSNotificationCenter", "defaultCenter"] +- !private ["CSo20NSNotificationCenter", "removeObserver"] +- !private ["CSo8NSObject", "UUIDString"] +- !private ["CSo8NSObject", "addObserver"] +- !private ["CSo8NSObject", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo8NSObject", "boolForKey"] +- !private ["CSo8NSObject", "currentDevice"] +- !private ["CSo8NSObject", "defaultCenter"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "endBackgroundTask"] +- !private ["CSo8NSObject", "identifierForVendor"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isEmpty"] +- !private ["CSo8NSObject", "networkActivityIndicatorVisible"] +- !private ["CSo8NSObject", "removeObserver"] +- !private ["CSo8NSObject", "setBool"] +- !private ["CSo8NSObject", "sharedApplication"] +- !private ["CSo8NSObject", "standardUserDefaults"] +- !private ["CSo8NSObject", "synchronize"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["CSo8NSObject", "userInfo"] +- !private ["PSo16NSObjectProtocol", "UUIDString"] +- !private ["PSo16NSObjectProtocol", "addObserver"] +- !private ["PSo16NSObjectProtocol", "beginBackgroundTaskWithExpirationHandler"] +- !private ["PSo16NSObjectProtocol", "boolForKey"] +- !private ["PSo16NSObjectProtocol", "currentDevice"] +- !private ["PSo16NSObjectProtocol", "defaultCenter"] +- !private ["PSo16NSObjectProtocol", "endBackgroundTask"] +- !private ["PSo16NSObjectProtocol", "identifierForVendor"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isEmpty"] +- !private ["PSo16NSObjectProtocol", "networkActivityIndicatorVisible"] +- !private ["PSo16NSObjectProtocol", "removeObserver"] +- !private ["PSo16NSObjectProtocol", "setBool"] +- !private ["PSo16NSObjectProtocol", "sharedApplication"] +- !private ["PSo16NSObjectProtocol", "standardUserDefaults"] +- !private ["PSo16NSObjectProtocol", "synchronize"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "userInfo"] +- !private ["PSo14NSSecureCoding", "UUIDString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "isEmpty"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSString", "isEmpty"] +- !private ["CSo6NSUUID", "UUIDString"] +- !private ["CSo6NSUUID", "init"] +- !private ["CSo14NSUserDefaults", "boolForKey"] +- !private ["CSo14NSUserDefaults", "setBool"] +- !private ["CSo14NSUserDefaults", "standardUserDefaults"] +- !private ["CSo14NSUserDefaults", "synchronize"] +- !private ["C8Mixpanel7Network", "trackIntegration"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16OutputStreamType", "isEmpty"] +- !private ["C8Mixpanel6People", "distinctId"] +- !private ["C8Mixpanel6People", "init"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["C8Mixpanel11Persistence", "archive"] +- !private ["C8Mixpanel11Persistence", "archiveEvents"] +- !private ["C8Mixpanel11Persistence", "archivePeople"] +- !private ["C8Mixpanel11Persistence", "archiveProperties"] +- !private ["C8Mixpanel11Persistence", "unarchive"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAll"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- !private ["Ps16RawRepresentable", "Warning"] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeAll"] +- !private ["Ps12SequenceType", "subscript"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Streamable", "isEmpty"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["SS", "isEmpty"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps30StringInterpolationConvertible", "isEmpty"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "isEmpty"] +- !private ["C8Mixpanel5Track", "clearSuperProperties"] +- !private ["C8Mixpanel5Track", "clearTimedEvents"] +- !private ["C8Mixpanel5Track", "init"] +- !private ["C8Mixpanel5Track", "registerSuperProperties"] +- !private ["C8Mixpanel5Track", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel5Track", "time"] +- !private ["C8Mixpanel5Track", "track"] +- !private ["C8Mixpanel5Track", "unregisterSuperProperty"] +- !private ["CSo13UIApplication", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo13UIApplication", "endBackgroundTask"] +- !private ["CSo13UIApplication", "networkActivityIndicatorVisible"] +- !private ["CSo13UIApplication", "sharedApplication"] +- !private ["CSo8UIDevice", "currentDevice"] +- !private ["CSo8UIDevice", "identifierForVendor"] +- !private ["CSo11UIResponder", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo11UIResponder", "endBackgroundTask"] +- !private ["CSo11UIResponder", "networkActivityIndicatorVisible"] +- !private ["CSo11UIResponder", "sharedApplication"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "removeAll"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "removeAll"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAll"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "removeAll"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- "P8Mixpanel12AppLifecycle" +- !private "V8Mixpanel18ArchivedProperties" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "V8Mixpanel8BasePath" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "C8Mixpanel5Flush" +- "P8Mixpanel13FlushDelegate" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- !private "O8Mixpanel8LogLevel" +- !private "C8Mixpanel6Logger" +- "Ps14MirrorPathType" +- "P8Mixpanel16MixpanelDelegate" +- "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- !private "PSo16NSMutableCopying" +- !private "CSo14NSNotification" +- !private "CSo20NSNotificationCenter" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo6NSUUID" +- !private "CSo14NSUserDefaults" +- !private "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "C8Mixpanel5Track" +- !private "CSo13UIApplication" +- !private "CSo8UIDevice" +- !private "CSo11UIResponder" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "727686c32d7ec615879f267f44d5ae62" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftdoc new file mode 100644 index 00000000..64aef361 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftmodule new file mode 100644 index 00000000..a23987b6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_dependency_info.dat new file mode 100644 index 00000000..4b64d174 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.d new file mode 100644 index 00000000..cad18ad0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o new file mode 100644 index 00000000..3a93a8a1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftdoc new file mode 100644 index 00000000..0a763391 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftmodule new file mode 100644 index 00000000..ea46ca6f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.d new file mode 100644 index 00000000..779f689c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o new file mode 100644 index 00000000..a4df2452 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.swiftdeps new file mode 100644 index 00000000..1776d71d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.swiftdeps @@ -0,0 +1,567 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "BasePath" +- "Method" +- "Resource" +- "Reason" +- "Network" +provides-nominal: +- "V8Mixpanel8BasePath" +- "O8Mixpanel6Method" +- "V8Mixpanel8Resource" +- "O8Mixpanel6Reason" +- "C8Mixpanel7Network" +provides-member: +- ["V8Mixpanel8BasePath", ""] +- ["O8Mixpanel6Method", ""] +- ["V8Mixpanel8Resource", ""] +- ["O8Mixpanel6Reason", ""] +- ["C8Mixpanel7Network", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "NSURLSession" +- !private "Void" +- !private "FlushType" +- "BasePath" +- !private "NSUTF8StringEncoding" +- !private "~=" +- "==" +- !private "Logger" +- "String" +- "NSURLResponse" +- "NSData" +- "Int" +- "StringLiteralType" +- !private "Dictionary" +- "Resource" +- !private "??" +- !private "JSONHandler" +- !private "NSURLRequest" +- "Bool" +- "Method" +- "Reason" +- "NSURL" +- !private "Array" +- "NSError" +- !private "NSMutableURLRequest" +- "BooleanLiteralType" +- "Network" +- !private "NSHTTPURLResponse" +depends-member: +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "FlushType"] +- !private ["Ps9AnyObject", "HTTPBody"] +- !private ["Ps9AnyObject", "HTTPMethod"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "JSONHandler"] +- !private ["Ps9AnyObject", "Key"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "Method"] +- !private ["Ps9AnyObject", "NSMutableURLRequest"] +- !private ["Ps9AnyObject", "NSURLSession"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "Reason"] +- !private ["Ps9AnyObject", "Resource"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "URLByAppendingPathComponent"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "apiRequest"] +- !private ["Ps9AnyObject", "buildResource"] +- !private ["Ps9AnyObject", "buildURLRequest"] +- !private ["Ps9AnyObject", "dataTaskWithRequest"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "debug"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "encodeAPIData"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "resume"] +- !private ["Ps9AnyObject", "setValue"] +- !private ["Ps9AnyObject", "sharedSession"] +- !private ["Ps9AnyObject", "statusCode"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "deinit"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- ["V8Mixpanel8BasePath", "MixpanelAPI"] +- ["V8Mixpanel8BasePath", "NSURL"] +- ["V8Mixpanel8BasePath", "String"] +- ["V8Mixpanel8BasePath", "buildURL"] +- ["V8Mixpanel8BasePath", "init"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "HTTPBody"] +- !private ["Ps11CVarArgType", "HTTPMethod"] +- !private ["Ps11CVarArgType", "Key"] +- !private ["Ps11CVarArgType", "URLByAppendingPathComponent"] +- !private ["Ps11CVarArgType", "Value"] +- !private ["Ps11CVarArgType", "dataTaskWithRequest"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "resume"] +- !private ["Ps11CVarArgType", "setValue"] +- !private ["Ps11CVarArgType", "sharedSession"] +- !private ["Ps11CVarArgType", "statusCode"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "HTTPBody"] +- !private ["Ps28CustomDebugStringConvertible", "HTTPMethod"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "dataTaskWithRequest"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "resume"] +- !private ["Ps28CustomDebugStringConvertible", "setValue"] +- !private ["Ps28CustomDebugStringConvertible", "sharedSession"] +- !private ["Ps28CustomDebugStringConvertible", "statusCode"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "HTTPBody"] +- !private ["Ps23CustomStringConvertible", "HTTPMethod"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "dataTaskWithRequest"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "resume"] +- !private ["Ps23CustomStringConvertible", "setValue"] +- !private ["Ps23CustomStringConvertible", "sharedSession"] +- !private ["Ps23CustomStringConvertible", "statusCode"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "HTTPBody"] +- !private ["Ps9Equatable", "HTTPMethod"] +- !private ["Ps9Equatable", "Key"] +- !private ["Ps9Equatable", "POST"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "URLByAppendingPathComponent"] +- !private ["Ps9Equatable", "Value"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "dataTaskWithRequest"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "resume"] +- !private ["Ps9Equatable", "setValue"] +- !private ["Ps9Equatable", "sharedSession"] +- !private ["Ps9Equatable", "statusCode"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["O8Mixpanel9FlushType", "Events"] +- !private ["O8Mixpanel9FlushType", "deinit"] +- !private ["O8Mixpanel9FlushType", "rawValue"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "HTTPBody"] +- !private ["Ps8Hashable", "HTTPMethod"] +- !private ["Ps8Hashable", "Key"] +- !private ["Ps8Hashable", "POST"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "URLByAppendingPathComponent"] +- !private ["Ps8Hashable", "Value"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "dataTaskWithRequest"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "resume"] +- !private ["Ps8Hashable", "setValue"] +- !private ["Ps8Hashable", "sharedSession"] +- !private ["Ps8Hashable", "statusCode"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "Value"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- !private ["C8Mixpanel6Logger", "debug"] +- ["O8Mixpanel6Method", "GET"] +- ["O8Mixpanel6Method", "POST"] +- ["O8Mixpanel6Method", "RawValue"] +- ["O8Mixpanel6Method", "deinit"] +- ["O8Mixpanel6Method", "hashValue"] +- ["O8Mixpanel6Method", "init"] +- ["O8Mixpanel6Method", "rawValue"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["PSo8NSCoding", "HTTPBody"] +- !private ["PSo8NSCoding", "HTTPMethod"] +- !private ["PSo8NSCoding", "Key"] +- !private ["PSo8NSCoding", "URLByAppendingPathComponent"] +- !private ["PSo8NSCoding", "Value"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "setValue"] +- !private ["PSo8NSCoding", "statusCode"] +- !private ["PSo9NSCopying", "HTTPBody"] +- !private ["PSo9NSCopying", "HTTPMethod"] +- !private ["PSo9NSCopying", "Key"] +- !private ["PSo9NSCopying", "URLByAppendingPathComponent"] +- !private ["PSo9NSCopying", "Value"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "resume"] +- !private ["PSo9NSCopying", "setValue"] +- !private ["PSo9NSCopying", "statusCode"] +- !private ["CSo12NSDictionary", "Key"] +- !private ["CSo12NSDictionary", "Value"] +- !private ["PSo17NSFastEnumeration", "Key"] +- !private ["PSo17NSFastEnumeration", "Value"] +- !private ["CSo17NSHTTPURLResponse", "statusCode"] +- !private ["PSo16NSMutableCopying", "HTTPBody"] +- !private ["PSo16NSMutableCopying", "HTTPMethod"] +- !private ["PSo16NSMutableCopying", "Key"] +- !private ["PSo16NSMutableCopying", "Value"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "setValue"] +- !private ["CSo19NSMutableURLRequest", "HTTPBody"] +- !private ["CSo19NSMutableURLRequest", "HTTPMethod"] +- !private ["CSo19NSMutableURLRequest", "deinit"] +- !private ["CSo19NSMutableURLRequest", "init"] +- !private ["CSo19NSMutableURLRequest", "setValue"] +- !private ["CSo8NSObject", "HTTPBody"] +- !private ["CSo8NSObject", "HTTPMethod"] +- !private ["CSo8NSObject", "Key"] +- !private ["CSo8NSObject", "URLByAppendingPathComponent"] +- !private ["CSo8NSObject", "Value"] +- !private ["CSo8NSObject", "dataTaskWithRequest"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "resume"] +- !private ["CSo8NSObject", "setValue"] +- !private ["CSo8NSObject", "sharedSession"] +- !private ["CSo8NSObject", "statusCode"] +- !private ["PSo16NSObjectProtocol", "HTTPBody"] +- !private ["PSo16NSObjectProtocol", "HTTPMethod"] +- !private ["PSo16NSObjectProtocol", "Key"] +- !private ["PSo16NSObjectProtocol", "URLByAppendingPathComponent"] +- !private ["PSo16NSObjectProtocol", "Value"] +- !private ["PSo16NSObjectProtocol", "dataTaskWithRequest"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "resume"] +- !private ["PSo16NSObjectProtocol", "setValue"] +- !private ["PSo16NSObjectProtocol", "sharedSession"] +- !private ["PSo16NSObjectProtocol", "statusCode"] +- !private ["PSo14NSSecureCoding", "HTTPBody"] +- !private ["PSo14NSSecureCoding", "HTTPMethod"] +- !private ["PSo14NSSecureCoding", "Key"] +- !private ["PSo14NSSecureCoding", "URLByAppendingPathComponent"] +- !private ["PSo14NSSecureCoding", "Value"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "setValue"] +- !private ["PSo14NSSecureCoding", "statusCode"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "URLByAppendingPathComponent"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo12NSURLRequest", "HTTPBody"] +- !private ["CSo12NSURLRequest", "HTTPMethod"] +- !private ["CSo12NSURLRequest", "init"] +- !private ["CSo12NSURLRequest", "setValue"] +- !private ["CSo13NSURLResponse", "statusCode"] +- !private ["CSo12NSURLSession", "dataTaskWithRequest"] +- !private ["CSo12NSURLSession", "sharedSession"] +- !private ["CSo20NSURLSessionDataTask", "resume"] +- !private ["CSo16NSURLSessionTask", "resume"] +- !private ["C8Mixpanel7Network", "BasePath"] +- ["C8Mixpanel7Network", "Bool"] +- !private ["C8Mixpanel7Network", "FlushType"] +- !private ["C8Mixpanel7Network", "Int"] +- !private ["C8Mixpanel7Network", "JSONHandler"] +- !private ["C8Mixpanel7Network", "Logger"] +- ["C8Mixpanel7Network", "Method"] +- ["C8Mixpanel7Network", "NSData"] +- !private ["C8Mixpanel7Network", "NSHTTPURLResponse"] +- !private ["C8Mixpanel7Network", "NSMutableURLRequest"] +- !private ["C8Mixpanel7Network", "NSURLRequest"] +- ["C8Mixpanel7Network", "NSURLResponse"] +- !private ["C8Mixpanel7Network", "NSURLSession"] +- !private ["C8Mixpanel7Network", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel7Network", "Network"] +- ["C8Mixpanel7Network", "Reason"] +- ["C8Mixpanel7Network", "Resource"] +- ["C8Mixpanel7Network", "String"] +- !private ["C8Mixpanel7Network", "Void"] +- ["C8Mixpanel7Network", "apiRequest"] +- ["C8Mixpanel7Network", "buildResource"] +- !private ["C8Mixpanel7Network", "buildURLRequest"] +- ["C8Mixpanel7Network", "deinit"] +- ["C8Mixpanel7Network", "init"] +- ["C8Mixpanel7Network", "trackIntegration"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "POST"] +- ["Ps16RawRepresentable", "RawValue"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- ["O8Mixpanel6Reason", "Int"] +- ["O8Mixpanel6Reason", "NSError"] +- ["O8Mixpanel6Reason", "NoData"] +- ["O8Mixpanel6Reason", "NotOKStatusCode"] +- ["O8Mixpanel6Reason", "Other"] +- ["O8Mixpanel6Reason", "ParseError"] +- ["V8Mixpanel8Resource", "A"] +- ["V8Mixpanel8Resource", "Method"] +- ["V8Mixpanel8Resource", "NSData"] +- ["V8Mixpanel8Resource", "String"] +- ["V8Mixpanel8Resource", "headers"] +- ["V8Mixpanel8Resource", "init"] +- ["V8Mixpanel8Resource", "method"] +- ["V8Mixpanel8Resource", "parse"] +- ["V8Mixpanel8Resource", "path"] +- ["V8Mixpanel8Resource", "requestBody"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "dataUsingEncoding"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps32_FileReferenceLiteralConvertible", "URLByAppendingPathComponent"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "URLByAppendingPathComponent"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- "V8Mixpanel8BasePath" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel11JSONHandler" +- !private "C8Mixpanel6Logger" +- "O8Mixpanel6Method" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSDictionary" +- !private "PSo17NSFastEnumeration" +- !private "CSo17NSHTTPURLResponse" +- !private "PSo16NSMutableCopying" +- !private "CSo19NSMutableURLRequest" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo12NSURLRequest" +- !private "CSo13NSURLResponse" +- !private "CSo12NSURLSession" +- !private "CSo20NSURLSessionDataTask" +- !private "CSo16NSURLSessionTask" +- "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- "O8Mixpanel6Reason" +- "V8Mixpanel8Resource" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "c70fc59c0c82bc82a2991974cec3735d" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftmodule new file mode 100644 index 00000000..42108d4e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.d new file mode 100644 index 00000000..0849d664 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o new file mode 100644 index 00000000..143ea335 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.swiftdeps new file mode 100644 index 00000000..b2a3b8a7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.swiftdeps @@ -0,0 +1,660 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "People" +provides-nominal: +- "C8Mixpanel6People" +provides-member: +- ["C8Mixpanel6People", ""] +provides-dynamic-lookup: +depends-top-level: +- "AnyObject" +- !private "UnsafePointer" +- !private "||" +- !private "*" +- !private "NSDate" +- !private "Dictionary" +- !private "..<" +- !private "dispatch_async" +- !private "CChar" +- !private "==" +- "Queue" +- !private ">" +- !private "round" +- !private "+=" +- "StringLiteralType" +- !private "!" +- !private "AutomaticProperties" +- "Properties" +- "Double" +- "dispatch_queue_t" +- "String" +- !private "UInt" +- !private "Int" +- !private "Persistence" +- !private "Track" +- !private "Array" +- !private "Float" +- "People" +- !private "QueueConstants" +- "BooleanLiteralType" +- "NSData" +- !private "MPAssert" +depends-member: +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "MPAssert"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "Persistence"] +- !private ["Ps9AnyObject", "Properties"] +- ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "UnsafePointer"] +- !private ["Ps9AnyObject", "addPeopleObject"] +- !private ["Ps9AnyObject", "addPeopleRecordToQueueWithAction"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "assertPropertyTypes"] +- !private ["Ps9AnyObject", "bytes"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "ignoreTime"] +- !private ["Ps9AnyObject", "increment"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "length"] +- !private ["Ps9AnyObject", "peopleProperties"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "round"] +- !private ["Ps9AnyObject", "serialQueue"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- ["Sa", "init"] +- !private ["Sa", "removeAtIndex"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "removeAtIndex"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "peopleProperties"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps22BidirectionalIndexType", "subscript"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Element"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "bytes"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "length"] +- !private ["Ps11CVarArgType", "subscript"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Elements"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "filter"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeAtIndex"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps14CollectionType", "values"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "bytes"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "length"] +- !private ["Ps28CustomDebugStringConvertible", "removeAtIndex"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "values"] +- ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "bytes"] +- !private ["Ps23CustomStringConvertible", "count"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "length"] +- !private ["Ps23CustomStringConvertible", "removeAtIndex"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "values"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "values"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "values"] +- !private ["Sd", "deinit"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Generator"] +- ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "bytes"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "length"] +- !private ["Ps9Equatable", "subscript"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps16ForwardIndexType", "subscript"] +- ["Ps13GeneratorType", "Element"] +- !private ["Vs16HalfOpenInterval", "deinit"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Element"] +- ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "bytes"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "length"] +- !private ["Ps8Hashable", "subscript"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Elements"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "filter"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeAtIndex"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "values"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Si", "deinit"] +- !private ["Si", "init"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "init"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps18LazyCollectionType", "Elements"] +- !private ["Ps18LazyCollectionType", "Generator"] +- !private ["Ps18LazyCollectionType", "Index"] +- !private ["Ps18LazyCollectionType", "SubSequence"] +- !private ["Ps18LazyCollectionType", "_Element"] +- !private ["Ps18LazyCollectionType", "filter"] +- !private ["Ps18LazyCollectionType", "isEmpty"] +- !private ["Vs20LazyFilterCollection", "Generator"] +- !private ["Vs20LazyFilterCollection", "Index"] +- !private ["Vs20LazyFilterCollection", "SubSequence"] +- !private ["Vs20LazyFilterCollection", "_Element"] +- !private ["Vs20LazyFilterCollection", "isEmpty"] +- !private ["Vs15LazyFilterIndex", "Distance"] +- !private ["Vs15LazyFilterIndex", "_DisabledRangeIndex"] +- !private ["Vs17LazyMapCollection", "Elements"] +- !private ["Vs17LazyMapCollection", "Generator"] +- !private ["Vs17LazyMapCollection", "Index"] +- !private ["Vs17LazyMapCollection", "SubSequence"] +- !private ["Vs17LazyMapCollection", "_Element"] +- !private ["Vs17LazyMapCollection", "deinit"] +- !private ["Vs17LazyMapCollection", "filter"] +- !private ["Vs16LazyMapGenerator", "Element"] +- !private ["Ps16LazySequenceType", "Elements"] +- !private ["Ps16LazySequenceType", "Generator"] +- !private ["Ps16LazySequenceType", "Index"] +- !private ["Ps16LazySequenceType", "SubSequence"] +- !private ["Ps16LazySequenceType", "_Element"] +- !private ["Ps16LazySequenceType", "filter"] +- !private ["Ps16LazySequenceType", "isEmpty"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "removeAtIndex"] +- !private ["Ps16MutableIndexable", "Element"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "removeAtIndex"] +- !private ["Ps16MutableSliceable", "Element"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "removeAtIndex"] +- !private ["CSo7NSArray", "Element"] +- !private ["PSo8NSCoding", "Element"] +- !private ["PSo8NSCoding", "bytes"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "length"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "Element"] +- !private ["PSo9NSCopying", "bytes"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "length"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSData", "bytes"] +- !private ["CSo6NSData", "length"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["PSo17NSFastEnumeration", "Element"] +- !private ["PSo16NSMutableCopying", "Element"] +- !private ["PSo16NSMutableCopying", "bytes"] +- !private ["PSo16NSMutableCopying", "length"] +- !private ["CSo8NSObject", "Element"] +- !private ["CSo8NSObject", "bytes"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "length"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "bytes"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "length"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo14NSSecureCoding", "Element"] +- !private ["PSo14NSSecureCoding", "bytes"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "length"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps21NilLiteralConvertible", "init"] +- !private ["Ps21NilLiteralConvertible", "subscript"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel6People", "AnyObject"] +- !private ["C8Mixpanel6People", "AutomaticProperties"] +- !private ["C8Mixpanel6People", "CChar"] +- ["C8Mixpanel6People", "Double"] +- !private ["C8Mixpanel6People", "Float"] +- !private ["C8Mixpanel6People", "Int"] +- !private ["C8Mixpanel6People", "MPAssert"] +- ["C8Mixpanel6People", "NSData"] +- !private ["C8Mixpanel6People", "NSDate"] +- !private ["C8Mixpanel6People", "Persistence"] +- ["C8Mixpanel6People", "Properties"] +- ["C8Mixpanel6People", "Queue"] +- !private ["C8Mixpanel6People", "QueueConstants"] +- ["C8Mixpanel6People", "String"] +- !private ["C8Mixpanel6People", "Track"] +- !private ["C8Mixpanel6People", "UInt"] +- !private ["C8Mixpanel6People", "UnsafePointer"] +- ["C8Mixpanel6People", "addPeopleObject"] +- ["C8Mixpanel6People", "addPeopleRecordToQueueWithAction"] +- ["C8Mixpanel6People", "addPushDeviceToken"] +- ["C8Mixpanel6People", "apiToken"] +- ["C8Mixpanel6People", "append"] +- ["C8Mixpanel6People", "clearCharges"] +- ["C8Mixpanel6People", "deinit"] +- ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "dispatch_async"] +- ["C8Mixpanel6People", "dispatch_queue_t"] +- ["C8Mixpanel6People", "distinctId"] +- ["C8Mixpanel6People", "ignoreTime"] +- ["C8Mixpanel6People", "increment"] +- ["C8Mixpanel6People", "init"] +- ["C8Mixpanel6People", "merge"] +- ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "round"] +- ["C8Mixpanel6People", "serialQueue"] +- ["C8Mixpanel6People", "set"] +- ["C8Mixpanel6People", "setOnce"] +- ["C8Mixpanel6People", "trackCharge"] +- ["C8Mixpanel6People", "unidentifiedQueue"] +- ["C8Mixpanel6People", "union"] +- ["C8Mixpanel6People", "unset"] +- !private ["C8Mixpanel11Persistence", "archivePeople"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps21RandomAccessIndexType", "subscript"] +- !private ["Vs5Range", "Generator"] +- !private ["Vs14RangeGenerator", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAtIndex"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Elements"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "filter"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeAtIndex"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps12SequenceType", "values"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps17SignedIntegerType", "init"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "init"] +- !private ["Ps10Strideable", "subscript"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["C8Mixpanel5Track", "assertPropertyTypes"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["SP", "init"] +- !private ["SP", "subscript"] +- !private ["Ps10_ArrayType", "Element"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "removeAtIndex"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "removeAtIndex"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps14_Incrementable", "subscript"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "init"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAtIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "values"] +- !private ["Ps12_PointerType", "init"] +- !private ["Ps12_PointerType", "subscript"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "subscript"] +- ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "removeAtIndex"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps12_Reflectable", "values"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- !private "Vs16HalfOpenInterval" +- "Ps8Hashable" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- !private "Ps18LazyCollectionType" +- !private "Vs20LazyFilterCollection" +- !private "Vs15LazyFilterIndex" +- !private "Vs17LazyMapCollection" +- !private "Vs16LazyMapGenerator" +- !private "Ps16LazySequenceType" +- "Ps14MirrorPathType" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "CSo7NSArray" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "CSo6NSDate" +- !private "PSo17NSFastEnumeration" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- !private "V8Mixpanel14QueueConstants" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Vs14RangeGenerator" +- "Ps30RangeReplaceableCollectionType" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "C8Mixpanel5Track" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "SP" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Ps12_PointerType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "7751455b003e86a79a93757e4e27ce4e" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftdoc new file mode 100644 index 00000000..846b638c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftmodule new file mode 100644 index 00000000..a001631f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/People~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.d new file mode 100644 index 00000000..2e12f4fe --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o new file mode 100644 index 00000000..70715c50 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.swiftdeps new file mode 100644 index 00000000..d1c3070c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.swiftdeps @@ -0,0 +1,583 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ArchivedProperties" +- "Persistence" +provides-nominal: +- "V8Mixpanel18ArchivedProperties" +- "C8Mixpanel11Persistence" +- "OC8Mixpanel11Persistence11ArchiveType" +provides-member: +- ["V8Mixpanel18ArchivedProperties", ""] +- ["C8Mixpanel11Persistence", ""] +- ["OC8Mixpanel11Persistence11ArchiveType", ""] +provides-dynamic-lookup: +depends-top-level: +- "Queue" +- !private "??" +- !private "NSKeyedUnarchiver" +- !private "NSSearchPathDomainMask" +- !private "FloatLiteralType" +- !private "Logger" +- "Persistence" +- !private "NSKeyedArchiver" +- "String" +- "AnyObject" +- !private "Array" +- "Properties" +- !private "UnicodeScalarType" +- "ArchivedProperties" +- !private "IntegerLiteralType" +- !private "NSFileManager" +- !private "NSSearchPathDirectory" +- "StringLiteralType" +- !private "~=" +- "==" +- !private "!" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSFileManager"] +- !private ["Ps9AnyObject", "NSKeyedArchiver"] +- !private ["Ps9AnyObject", "NSKeyedUnarchiver"] +- !private ["Ps9AnyObject", "NSSearchPathDirectory"] +- !private ["Ps9AnyObject", "NSSearchPathDomainMask"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "URLByAppendingPathComponent"] +- !private ["Ps9AnyObject", "URLsForDirectory"] +- !private ["Ps9AnyObject", "archiveEvents"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "archiveProperties"] +- !private ["Ps9AnyObject", "archiveRootObject"] +- !private ["Ps9AnyObject", "archiveToFile"] +- !private ["Ps9AnyObject", "defaultManager"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "filePathFor"] +- !private ["Ps9AnyObject", "filePathWithType"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "path"] +- !private ["Ps9AnyObject", "removeItemAtPath"] +- !private ["Ps9AnyObject", "unarchiveEvents"] +- !private ["Ps9AnyObject", "unarchiveObjectWithFile"] +- !private ["Ps9AnyObject", "unarchivePeople"] +- !private ["Ps9AnyObject", "unarchiveProperties"] +- !private ["Ps9AnyObject", "unarchiveWithFilePath"] +- !private ["Ps9AnyObject", "unarchiveWithType"] +- ["Ps9AnyObject", ""] +- ["OC8Mixpanel11Persistence11ArchiveType", "Events"] +- ["OC8Mixpanel11Persistence11ArchiveType", "People"] +- ["OC8Mixpanel11Persistence11ArchiveType", "Properties"] +- ["OC8Mixpanel11Persistence11ArchiveType", "RawValue"] +- ["OC8Mixpanel11Persistence11ArchiveType", "deinit"] +- ["OC8Mixpanel11Persistence11ArchiveType", "hashValue"] +- ["OC8Mixpanel11Persistence11ArchiveType", "init"] +- ["OC8Mixpanel11Persistence11ArchiveType", "rawValue"] +- ["V8Mixpanel18ArchivedProperties", "Properties"] +- ["V8Mixpanel18ArchivedProperties", "Queue"] +- ["V8Mixpanel18ArchivedProperties", "String"] +- ["V8Mixpanel18ArchivedProperties", "distinctId"] +- ["V8Mixpanel18ArchivedProperties", "init"] +- ["V8Mixpanel18ArchivedProperties", "peopleDistinctId"] +- ["V8Mixpanel18ArchivedProperties", "peopleUnidentifiedQueue"] +- ["V8Mixpanel18ArchivedProperties", "superProperties"] +- ["V8Mixpanel18ArchivedProperties", "timedEvents"] +- !private ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "UserDomainMask"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "URLByAppendingPathComponent"] +- !private ["Ps11CVarArgType", "URLsForDirectory"] +- !private ["Ps11CVarArgType", "archiveRootObject"] +- !private ["Ps11CVarArgType", "defaultManager"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "path"] +- !private ["Ps11CVarArgType", "removeItemAtPath"] +- !private ["Ps11CVarArgType", "unarchiveObjectWithFile"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps28CustomDebugStringConvertible", "URLsForDirectory"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "archiveRootObject"] +- !private ["Ps28CustomDebugStringConvertible", "defaultManager"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "path"] +- !private ["Ps28CustomDebugStringConvertible", "removeItemAtPath"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "unarchiveObjectWithFile"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps23CustomStringConvertible", "URLsForDirectory"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "archiveRootObject"] +- !private ["Ps23CustomStringConvertible", "defaultManager"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "path"] +- !private ["Ps23CustomStringConvertible", "removeItemAtPath"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "unarchiveObjectWithFile"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "LibraryDirectory"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "Properties"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "URLByAppendingPathComponent"] +- !private ["Ps9Equatable", "URLsForDirectory"] +- !private ["Ps9Equatable", "UserDomainMask"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "archiveRootObject"] +- !private ["Ps9Equatable", "defaultManager"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "path"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "removeItemAtPath"] +- !private ["Ps9Equatable", "unarchiveObjectWithFile"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "LibraryDirectory"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "Properties"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "URLByAppendingPathComponent"] +- !private ["Ps8Hashable", "URLsForDirectory"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "archiveRootObject"] +- !private ["Ps8Hashable", "defaultManager"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "path"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "removeItemAtPath"] +- !private ["Ps8Hashable", "unarchiveObjectWithFile"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "last"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["CSo7NSCoder", "archiveRootObject"] +- !private ["CSo7NSCoder", "unarchiveObjectWithFile"] +- !private ["PSo8NSCoding", "URLByAppendingPathComponent"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "path"] +- !private ["PSo9NSCopying", "URLByAppendingPathComponent"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "path"] +- !private ["CSo13NSFileManager", "URLsForDirectory"] +- !private ["CSo13NSFileManager", "defaultManager"] +- !private ["CSo13NSFileManager", "removeItemAtPath"] +- !private ["CSo15NSKeyedArchiver", "archiveRootObject"] +- !private ["CSo17NSKeyedUnarchiver", "unarchiveObjectWithFile"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "URLByAppendingPathComponent"] +- !private ["CSo8NSObject", "URLsForDirectory"] +- !private ["CSo8NSObject", "archiveRootObject"] +- !private ["CSo8NSObject", "defaultManager"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "path"] +- !private ["CSo8NSObject", "removeItemAtPath"] +- !private ["CSo8NSObject", "unarchiveObjectWithFile"] +- !private ["PSo16NSObjectProtocol", "URLByAppendingPathComponent"] +- !private ["PSo16NSObjectProtocol", "URLsForDirectory"] +- !private ["PSo16NSObjectProtocol", "archiveRootObject"] +- !private ["PSo16NSObjectProtocol", "defaultManager"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "path"] +- !private ["PSo16NSObjectProtocol", "removeItemAtPath"] +- !private ["PSo16NSObjectProtocol", "unarchiveObjectWithFile"] +- !private ["OSC21NSSearchPathDirectory", "LibraryDirectory"] +- !private ["VSC22NSSearchPathDomainMask", "UserDomainMask"] +- !private ["PSo14NSSecureCoding", "URLByAppendingPathComponent"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "path"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "URLByAppendingPathComponent"] +- !private ["CSo5NSURL", "path"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "UserDomainMask"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel11Persistence", "AnyObject"] +- ["C8Mixpanel11Persistence", "ArchiveType"] +- ["C8Mixpanel11Persistence", "ArchivedProperties"] +- !private ["C8Mixpanel11Persistence", "Logger"] +- !private ["C8Mixpanel11Persistence", "NSFileManager"] +- !private ["C8Mixpanel11Persistence", "NSKeyedArchiver"] +- !private ["C8Mixpanel11Persistence", "NSKeyedUnarchiver"] +- !private ["C8Mixpanel11Persistence", "NSSearchPathDirectory"] +- !private ["C8Mixpanel11Persistence", "NSSearchPathDomainMask"] +- ["C8Mixpanel11Persistence", "Properties"] +- ["C8Mixpanel11Persistence", "Queue"] +- ["C8Mixpanel11Persistence", "String"] +- ["C8Mixpanel11Persistence", "archive"] +- ["C8Mixpanel11Persistence", "archiveEvents"] +- ["C8Mixpanel11Persistence", "archivePeople"] +- ["C8Mixpanel11Persistence", "archiveProperties"] +- ["C8Mixpanel11Persistence", "archiveToFile"] +- ["C8Mixpanel11Persistence", "deinit"] +- !private ["C8Mixpanel11Persistence", "filePathFor"] +- ["C8Mixpanel11Persistence", "filePathWithType"] +- ["C8Mixpanel11Persistence", "init"] +- ["C8Mixpanel11Persistence", "unarchive"] +- !private ["C8Mixpanel11Persistence", "unarchiveEvents"] +- !private ["C8Mixpanel11Persistence", "unarchivePeople"] +- !private ["C8Mixpanel11Persistence", "unarchiveProperties"] +- !private ["C8Mixpanel11Persistence", "unarchiveWithFilePath"] +- !private ["C8Mixpanel11Persistence", "unarchiveWithType"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "LibraryDirectory"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps16RawRepresentable", "Properties"] +- ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "UserDomainMask"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "UserDomainMask"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "hashValue"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps32_FileReferenceLiteralConvertible", "URLByAppendingPathComponent"] +- !private ["Ps32_FileReferenceLiteralConvertible", "path"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "URLByAppendingPathComponent"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "path"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +depends-nominal: +- "Ps9AnyObject" +- "OC8Mixpanel11Persistence11ArchiveType" +- "V8Mixpanel18ArchivedProperties" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo7NSCoder" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo13NSFileManager" +- !private "CSo15NSKeyedArchiver" +- !private "CSo17NSKeyedUnarchiver" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "OSC21NSSearchPathDirectory" +- !private "VSC22NSSearchPathDomainMask" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "Ps16OutputStreamType" +- "C8Mixpanel11Persistence" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "e8fe3fa0070f6d3198509eeb56528723" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftmodule new file mode 100644 index 00000000..98f62875 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.d new file mode 100644 index 00000000..f18f528b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o new file mode 100644 index 00000000..9e6a818c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.swiftdeps new file mode 100644 index 00000000..5560e948 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.swiftdeps @@ -0,0 +1,154 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PrintLogging" +- "PrintDebugLogging" +provides-nominal: +- "C8Mixpanel12PrintLogging" +- "C8Mixpanel17PrintDebugLogging" +provides-member: +- ["C8Mixpanel12PrintLogging", ""] +- ["C8Mixpanel17PrintDebugLogging", ""] +provides-dynamic-lookup: +depends-top-level: +- "PrintDebugLogging" +- "LogMessage" +- !private "debugPrint" +- "Logging" +- "PrintLogging" +- !private "StringLiteralType" +- !private "print" +depends-member: +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "debugPrint"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "print"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "rawValue"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "rawValue"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["O8Mixpanel8LogLevel", "deinit"] +- !private ["O8Mixpanel8LogLevel", "rawValue"] +- !private ["V8Mixpanel10LogMessage", "file"] +- !private ["V8Mixpanel10LogMessage", "function"] +- !private ["V8Mixpanel10LogMessage", "level"] +- !private ["V8Mixpanel10LogMessage", "text"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "debugPrint"] +- !private ["P8Mixpanel7Logging", "print"] +- ["P8Mixpanel7Logging", ""] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel17PrintDebugLogging", "LogMessage"] +- ["C8Mixpanel17PrintDebugLogging", "addMessage"] +- !private ["C8Mixpanel17PrintDebugLogging", "debugPrint"] +- ["C8Mixpanel17PrintDebugLogging", "deinit"] +- ["C8Mixpanel17PrintDebugLogging", "init"] +- ["C8Mixpanel12PrintLogging", "LogMessage"] +- ["C8Mixpanel12PrintLogging", "addMessage"] +- ["C8Mixpanel12PrintLogging", "deinit"] +- ["C8Mixpanel12PrintLogging", "init"] +- !private ["C8Mixpanel12PrintLogging", "print"] +- !private ["Ps16RawRepresentable", "rawValue"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "O8Mixpanel8LogLevel" +- !private "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "Ps16OutputStreamType" +- "C8Mixpanel17PrintDebugLogging" +- "C8Mixpanel12PrintLogging" +- !private "Ps16RawRepresentable" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "11c6b8c178e8c5cbded946b4e1523f57" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftdoc new file mode 100644 index 00000000..4a1d95a8 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftmodule new file mode 100644 index 00000000..7ae83db5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.d new file mode 100644 index 00000000..67fea21e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o new file mode 100644 index 00000000..227e06e5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.swiftdeps new file mode 100644 index 00000000..372674cb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.swiftdeps @@ -0,0 +1,556 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "+=" +- "Track" +provides-nominal: +- "C8Mixpanel5Track" +provides-member: +- ["C8Mixpanel5Track", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "!" +- "Properties" +- !private "NSURL" +- "String" +- !private "||" +- !private "QueueConstants" +- !private "StringLiteralType" +- !private "==" +- "Track" +- "Queue" +- !private "NSDate" +- !private "Logger" +- !private "round" +- !private "AutomaticProperties" +- "Double" +- "+=" +- !private "!=" +- !private "UInt" +- "AnyObject" +- !private "-" +- !private ">" +- !private "Dictionary" +- !private "NSObject" +- !private "MPAssert" +- !private "&&" +- !private "Int" +- !private "NSNull" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "AnyObject"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "MPAssert"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "assertPropertyTypes"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isEmpty"] +- !private ["Ps9AnyObject", "properties"] +- !private ["Ps9AnyObject", "round"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "removeAtIndex"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "removeAtIndex"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "properties"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isEmpty"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "map"] +- !private ["Ps14CollectionType", "removeAll"] +- !private ["Ps14CollectionType", "removeAtIndex"] +- !private ["Ps14CollectionType", "removeValueForKey"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps14CollectionType", "updateValue"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "map"] +- !private ["Ps28CustomDebugStringConvertible", "removeAll"] +- !private ["Ps28CustomDebugStringConvertible", "removeAtIndex"] +- !private ["Ps28CustomDebugStringConvertible", "removeValueForKey"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "updateValue"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "map"] +- !private ["Ps23CustomStringConvertible", "removeAll"] +- !private ["Ps23CustomStringConvertible", "removeAtIndex"] +- !private ["Ps23CustomStringConvertible", "removeValueForKey"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "updateValue"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "map"] +- !private ["Vs10Dictionary", "removeAll"] +- !private ["Vs10Dictionary", "removeValueForKey"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "updateValue"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "map"] +- !private ["Ps28DictionaryLiteralConvertible", "removeAll"] +- !private ["Ps28DictionaryLiteralConvertible", "removeValueForKey"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "updateValue"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isEmpty"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isEmpty"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "map"] +- !private ["Ps9Indexable", "removeAll"] +- !private ["Ps9Indexable", "removeAtIndex"] +- !private ["Ps9Indexable", "removeValueForKey"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "updateValue"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps14MirrorPathType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "removeAtIndex"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "removeAtIndex"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "removeAtIndex"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isEmpty"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "isEmpty"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "isEmpty"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isEmpty"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isEmpty"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "isEmpty"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSString", "isEmpty"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16OutputStreamType", "isEmpty"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAtIndex"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "map"] +- !private ["Ps12SequenceType", "removeAll"] +- !private ["Ps12SequenceType", "removeAtIndex"] +- !private ["Ps12SequenceType", "removeValueForKey"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps12SequenceType", "updateValue"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Streamable", "isEmpty"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["SS", "isEmpty"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps30StringInterpolationConvertible", "isEmpty"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "isEmpty"] +- ["C8Mixpanel5Track", "AnyObject"] +- !private ["C8Mixpanel5Track", "AutomaticProperties"] +- ["C8Mixpanel5Track", "Double"] +- !private ["C8Mixpanel5Track", "Int"] +- !private ["C8Mixpanel5Track", "Logger"] +- !private ["C8Mixpanel5Track", "MPAssert"] +- !private ["C8Mixpanel5Track", "NSDate"] +- !private ["C8Mixpanel5Track", "NSNull"] +- !private ["C8Mixpanel5Track", "NSObject"] +- !private ["C8Mixpanel5Track", "NSURL"] +- ["C8Mixpanel5Track", "Properties"] +- ["C8Mixpanel5Track", "Queue"] +- !private ["C8Mixpanel5Track", "QueueConstants"] +- ["C8Mixpanel5Track", "String"] +- !private ["C8Mixpanel5Track", "Track"] +- !private ["C8Mixpanel5Track", "UInt"] +- ["C8Mixpanel5Track", "apiToken"] +- ["C8Mixpanel5Track", "assertPropertyTypes"] +- ["C8Mixpanel5Track", "clearSuperProperties"] +- ["C8Mixpanel5Track", "clearTimedEvents"] +- ["C8Mixpanel5Track", "deinit"] +- ["C8Mixpanel5Track", "init"] +- ["C8Mixpanel5Track", "registerSuperProperties"] +- ["C8Mixpanel5Track", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel5Track", "round"] +- ["C8Mixpanel5Track", "time"] +- ["C8Mixpanel5Track", "track"] +- ["C8Mixpanel5Track", "unregisterSuperProperty"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "removeAtIndex"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "removeAtIndex"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "map"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAll"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAtIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "removeValueForKey"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "updateValue"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "map"] +- !private ["Ps12_Reflectable", "removeAll"] +- !private ["Ps12_Reflectable", "removeAtIndex"] +- !private ["Ps12_Reflectable", "removeValueForKey"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "updateValue"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "V8Mixpanel14QueueConstants" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "C8Mixpanel5Track" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +interface-hash: "7316349c902b6f0d962911d2ba761a52" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftmodule new file mode 100644 index 00000000..20964d77 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.d new file mode 100644 index 00000000..78a6e037 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o new file mode 100644 index 00000000..d58d04c7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.swiftdeps new file mode 100644 index 00000000..b7d75b4b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.swiftdeps @@ -0,0 +1,492 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AutomaticProperties" +provides-nominal: +- "C8Mixpanel19AutomaticProperties" +provides-member: +- ["C8Mixpanel19AutomaticProperties", ""] +provides-dynamic-lookup: +depends-top-level: +- "Properties" +- "String" +- !private "withUnsafeMutablePointer" +- "UIScreen" +- !private "NSString" +- !private "UnsafePointer" +- !private "utsname" +- "UIDevice" +- !private "CChar" +- "CTTelephonyNetworkInfo" +- "AutomaticProperties" +- "StringLiteralType" +- !private "==" +- !private "uname" +- "NSBundle" +- "Int" +depends-member: +- ["Ps9AnyObject", "AutomaticProperties"] +- ["Ps9AnyObject", "CTTelephonyNetworkInfo"] +- ["Ps9AnyObject", "Int"] +- ["Ps9AnyObject", "NSBundle"] +- ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "String"] +- ["Ps9AnyObject", "UIDevice"] +- ["Ps9AnyObject", "UIScreen"] +- !private ["Ps9AnyObject", "UnsafePointer"] +- ["Ps9AnyObject", "bounds"] +- ["Ps9AnyObject", "carrierName"] +- !private ["Ps9AnyObject", "characters"] +- ["Ps9AnyObject", "currentDevice"] +- !private ["Ps9AnyObject", "currentRadioAccessTechnology"] +- ["Ps9AnyObject", "deinit"] +- ["Ps9AnyObject", "deviceModel"] +- !private ["Ps9AnyObject", "fromCString"] +- !private ["Ps9AnyObject", "hasPrefix"] +- ["Ps9AnyObject", "infoDictionary"] +- ["Ps9AnyObject", "init"] +- ["Ps9AnyObject", "libVersion"] +- ["Ps9AnyObject", "mainBundle"] +- ["Ps9AnyObject", "mainScreen"] +- ["Ps9AnyObject", "subscriberCellularProvider"] +- !private ["Ps9AnyObject", "substringFromIndex"] +- ["Ps9AnyObject", "systemName"] +- ["Ps9AnyObject", "systemVersion"] +- ["Ps9AnyObject", "telephonyInfo"] +- !private ["Ps9AnyObject", "uname"] +- !private ["Ps9AnyObject", "utsname"] +- !private ["Ps9AnyObject", "withUnsafeMutablePointer"] +- ["Ps9AnyObject", ""] +- ["C8Mixpanel19AutomaticProperties", "AutomaticProperties"] +- !private ["C8Mixpanel19AutomaticProperties", "CChar"] +- ["C8Mixpanel19AutomaticProperties", "CTTelephonyNetworkInfo"] +- ["C8Mixpanel19AutomaticProperties", "Int"] +- ["C8Mixpanel19AutomaticProperties", "NSBundle"] +- !private ["C8Mixpanel19AutomaticProperties", "NSString"] +- ["C8Mixpanel19AutomaticProperties", "Properties"] +- ["C8Mixpanel19AutomaticProperties", "String"] +- ["C8Mixpanel19AutomaticProperties", "UIDevice"] +- ["C8Mixpanel19AutomaticProperties", "UIScreen"] +- !private ["C8Mixpanel19AutomaticProperties", "UnsafePointer"] +- ["C8Mixpanel19AutomaticProperties", "deinit"] +- ["C8Mixpanel19AutomaticProperties", "deviceModel"] +- ["C8Mixpanel19AutomaticProperties", "getCurrentRadio"] +- ["C8Mixpanel19AutomaticProperties", "init"] +- ["C8Mixpanel19AutomaticProperties", "libVersion"] +- ["C8Mixpanel19AutomaticProperties", "peopleProperties"] +- ["C8Mixpanel19AutomaticProperties", "properties"] +- ["C8Mixpanel19AutomaticProperties", "telephonyInfo"] +- !private ["C8Mixpanel19AutomaticProperties", "uname"] +- !private ["C8Mixpanel19AutomaticProperties", "utsname"] +- !private ["C8Mixpanel19AutomaticProperties", "withUnsafeMutablePointer"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["VSC6CGRect", "size"] +- ["VSC6CGSize", "height"] +- ["VSC6CGSize", "width"] +- ["CSo9CTCarrier", "carrierName"] +- !private ["CSo22CTTelephonyNetworkInfo", "currentRadioAccessTechnology"] +- ["CSo22CTTelephonyNetworkInfo", "init"] +- ["CSo22CTTelephonyNetworkInfo", "subscriberCellularProvider"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- ["Ps11CVarArgType", "bounds"] +- ["Ps11CVarArgType", "carrierName"] +- !private ["Ps11CVarArgType", "characters"] +- ["Ps11CVarArgType", "currentDevice"] +- !private ["Ps11CVarArgType", "currentRadioAccessTechnology"] +- !private ["Ps11CVarArgType", "fromCString"] +- !private ["Ps11CVarArgType", "hasPrefix"] +- ["Ps11CVarArgType", "infoDictionary"] +- ["Ps11CVarArgType", "init"] +- ["Ps11CVarArgType", "mainBundle"] +- ["Ps11CVarArgType", "mainScreen"] +- ["Ps11CVarArgType", "subscriberCellularProvider"] +- !private ["Ps11CVarArgType", "substringFromIndex"] +- ["Ps11CVarArgType", "systemName"] +- ["Ps11CVarArgType", "systemVersion"] +- !private ["VSS13CharacterView", "Generator"] +- !private ["VSS13CharacterView", "Index"] +- !private ["VSS13CharacterView", "SubSequence"] +- !private ["VSS13CharacterView", "count"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- ["Ps14CollectionType", "SubSequence"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- ["Ps14CollectionType", "init"] +- ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "characters"] +- !private ["Ps10Comparable", "fromCString"] +- !private ["Ps10Comparable", "hasPrefix"] +- ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "bounds"] +- ["Ps28CustomDebugStringConvertible", "carrierName"] +- !private ["Ps28CustomDebugStringConvertible", "characters"] +- ["Ps28CustomDebugStringConvertible", "currentDevice"] +- !private ["Ps28CustomDebugStringConvertible", "currentRadioAccessTechnology"] +- !private ["Ps28CustomDebugStringConvertible", "fromCString"] +- !private ["Ps28CustomDebugStringConvertible", "hasPrefix"] +- ["Ps28CustomDebugStringConvertible", "infoDictionary"] +- ["Ps28CustomDebugStringConvertible", "init"] +- ["Ps28CustomDebugStringConvertible", "mainBundle"] +- ["Ps28CustomDebugStringConvertible", "mainScreen"] +- ["Ps28CustomDebugStringConvertible", "subscriberCellularProvider"] +- ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "substringFromIndex"] +- ["Ps28CustomDebugStringConvertible", "systemName"] +- ["Ps28CustomDebugStringConvertible", "systemVersion"] +- ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- ["Ps23CustomStringConvertible", "bounds"] +- ["Ps23CustomStringConvertible", "carrierName"] +- !private ["Ps23CustomStringConvertible", "characters"] +- ["Ps23CustomStringConvertible", "currentDevice"] +- !private ["Ps23CustomStringConvertible", "currentRadioAccessTechnology"] +- !private ["Ps23CustomStringConvertible", "fromCString"] +- !private ["Ps23CustomStringConvertible", "hasPrefix"] +- ["Ps23CustomStringConvertible", "infoDictionary"] +- ["Ps23CustomStringConvertible", "init"] +- ["Ps23CustomStringConvertible", "mainBundle"] +- ["Ps23CustomStringConvertible", "mainScreen"] +- ["Ps23CustomStringConvertible", "subscriberCellularProvider"] +- ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "substringFromIndex"] +- ["Ps23CustomStringConvertible", "systemName"] +- ["Ps23CustomStringConvertible", "systemVersion"] +- ["Vs10Dictionary", "Index"] +- ["Vs10Dictionary", "deinit"] +- ["Vs10Dictionary", "init"] +- ["Vs10Dictionary", "subscript"] +- ["Ps28DictionaryLiteralConvertible", "Index"] +- ["Ps28DictionaryLiteralConvertible", "init"] +- ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- ["Ps9Equatable", "bounds"] +- ["Ps9Equatable", "carrierName"] +- !private ["Ps9Equatable", "characters"] +- ["Ps9Equatable", "currentDevice"] +- !private ["Ps9Equatable", "currentRadioAccessTechnology"] +- !private ["Ps9Equatable", "fromCString"] +- !private ["Ps9Equatable", "hasPrefix"] +- ["Ps9Equatable", "height"] +- ["Ps9Equatable", "infoDictionary"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "mainBundle"] +- ["Ps9Equatable", "mainScreen"] +- ["Ps9Equatable", "size"] +- ["Ps9Equatable", "subscriberCellularProvider"] +- !private ["Ps9Equatable", "substringFromIndex"] +- ["Ps9Equatable", "systemName"] +- ["Ps9Equatable", "systemVersion"] +- ["Ps9Equatable", "width"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "characters"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "fromCString"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "hasPrefix"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "substringFromIndex"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- ["Ps16ForwardIndexType", "init"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- ["Ps8Hashable", "bounds"] +- ["Ps8Hashable", "carrierName"] +- !private ["Ps8Hashable", "characters"] +- ["Ps8Hashable", "currentDevice"] +- !private ["Ps8Hashable", "currentRadioAccessTechnology"] +- !private ["Ps8Hashable", "fromCString"] +- !private ["Ps8Hashable", "hasPrefix"] +- ["Ps8Hashable", "infoDictionary"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "mainBundle"] +- ["Ps8Hashable", "mainScreen"] +- ["Ps8Hashable", "subscriberCellularProvider"] +- !private ["Ps8Hashable", "substringFromIndex"] +- ["Ps8Hashable", "systemName"] +- ["Ps8Hashable", "systemVersion"] +- !private ["VVSS13CharacterView5Index", "Distance"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- ["Ps9Indexable", "init"] +- ["Ps9Indexable", "subscript"] +- ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- ["Si", "deinit"] +- ["Si", "init"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "characters"] +- !private ["Ps14MirrorPathType", "fromCString"] +- !private ["Ps14MirrorPathType", "hasPrefix"] +- ["Ps14MirrorPathType", "init"] +- ["CSo8NSBundle", "infoDictionary"] +- !private ["CSo8NSBundle", "init"] +- ["CSo8NSBundle", "mainBundle"] +- !private ["PSo8NSCoding", "characters"] +- !private ["PSo8NSCoding", "fromCString"] +- !private ["PSo8NSCoding", "hasPrefix"] +- !private ["PSo8NSCoding", "substringFromIndex"] +- !private ["PSo9NSCopying", "characters"] +- !private ["PSo9NSCopying", "fromCString"] +- !private ["PSo9NSCopying", "hasPrefix"] +- !private ["PSo9NSCopying", "substringFromIndex"] +- !private ["PSo16NSMutableCopying", "characters"] +- !private ["PSo16NSMutableCopying", "fromCString"] +- !private ["PSo16NSMutableCopying", "hasPrefix"] +- !private ["PSo16NSMutableCopying", "substringFromIndex"] +- ["CSo8NSObject", "bounds"] +- ["CSo8NSObject", "carrierName"] +- !private ["CSo8NSObject", "characters"] +- ["CSo8NSObject", "currentDevice"] +- !private ["CSo8NSObject", "currentRadioAccessTechnology"] +- !private ["CSo8NSObject", "fromCString"] +- !private ["CSo8NSObject", "hasPrefix"] +- ["CSo8NSObject", "infoDictionary"] +- ["CSo8NSObject", "init"] +- ["CSo8NSObject", "mainBundle"] +- ["CSo8NSObject", "mainScreen"] +- ["CSo8NSObject", "subscriberCellularProvider"] +- !private ["CSo8NSObject", "substringFromIndex"] +- ["CSo8NSObject", "systemName"] +- ["CSo8NSObject", "systemVersion"] +- ["PSo16NSObjectProtocol", "bounds"] +- ["PSo16NSObjectProtocol", "carrierName"] +- !private ["PSo16NSObjectProtocol", "characters"] +- ["PSo16NSObjectProtocol", "currentDevice"] +- !private ["PSo16NSObjectProtocol", "currentRadioAccessTechnology"] +- !private ["PSo16NSObjectProtocol", "fromCString"] +- !private ["PSo16NSObjectProtocol", "hasPrefix"] +- ["PSo16NSObjectProtocol", "infoDictionary"] +- ["PSo16NSObjectProtocol", "init"] +- ["PSo16NSObjectProtocol", "mainBundle"] +- ["PSo16NSObjectProtocol", "mainScreen"] +- ["PSo16NSObjectProtocol", "subscriberCellularProvider"] +- !private ["PSo16NSObjectProtocol", "substringFromIndex"] +- ["PSo16NSObjectProtocol", "systemName"] +- ["PSo16NSObjectProtocol", "systemVersion"] +- !private ["PSo14NSSecureCoding", "characters"] +- !private ["PSo14NSSecureCoding", "fromCString"] +- !private ["PSo14NSSecureCoding", "hasPrefix"] +- !private ["PSo14NSSecureCoding", "substringFromIndex"] +- !private ["CSo8NSString", "characters"] +- !private ["CSo8NSString", "fromCString"] +- !private ["CSo8NSString", "hasPrefix"] +- !private ["CSo8NSString", "substringFromIndex"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps21NilLiteralConvertible", "init"] +- ["Sq", "Some"] +- ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "characters"] +- !private ["Ps16OutputStreamType", "fromCString"] +- !private ["Ps16OutputStreamType", "hasPrefix"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- ["Ps12SequenceType", "SubSequence"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- ["Ps12SequenceType", "init"] +- ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- ["Ps16SignedNumberType", "init"] +- ["Vs5Slice", "Generator"] +- ["Vs5Slice", "Index"] +- ["Vs5Slice", "SubSequence"] +- ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "characters"] +- !private ["Ps10Streamable", "fromCString"] +- !private ["Ps10Streamable", "hasPrefix"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- ["Ps10Strideable", "init"] +- !private ["SS", "characters"] +- ["SS", "deinit"] +- !private ["SS", "fromCString"] +- !private ["SS", "hasPrefix"] +- !private ["Ps30StringInterpolationConvertible", "characters"] +- !private ["Ps30StringInterpolationConvertible", "fromCString"] +- !private ["Ps30StringInterpolationConvertible", "hasPrefix"] +- !private ["Ps24StringLiteralConvertible", "characters"] +- !private ["Ps24StringLiteralConvertible", "fromCString"] +- !private ["Ps24StringLiteralConvertible", "hasPrefix"] +- !private ["Ps24StringLiteralConvertible", "substringFromIndex"] +- ["CSo8UIDevice", "currentDevice"] +- ["CSo8UIDevice", "systemName"] +- ["CSo8UIDevice", "systemVersion"] +- ["CSo8UIScreen", "bounds"] +- ["CSo8UIScreen", "mainScreen"] +- ["PSo18UITraitEnvironment", "bounds"] +- ["PSo18UITraitEnvironment", "mainScreen"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "characters"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "fromCString"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "hasPrefix"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "substringFromIndex"] +- !private ["SP", "init"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "characters"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "fromCString"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "hasPrefix"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "characters"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "fromCString"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "hasPrefix"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "characters"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "fromCString"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "hasPrefix"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "characters"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "fromCString"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "hasPrefix"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- ["Ps12_IntegerType", "init"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "characters"] +- !private ["Ps21_ObjectiveCBridgeable", "fromCString"] +- !private ["Ps21_ObjectiveCBridgeable", "hasPrefix"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps12_PointerType", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "characters"] +- !private ["Ps12_Reflectable", "fromCString"] +- !private ["Ps12_Reflectable", "hasPrefix"] +- ["Ps12_Reflectable", "height"] +- ["Ps12_Reflectable", "init"] +- ["Ps12_Reflectable", "size"] +- ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "substringFromIndex"] +- ["Ps12_Reflectable", "width"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- ["Ps18_SignedIntegerType", "init"] +- !private ["VSC7utsname", "init"] +- !private ["VSC7utsname", "machine"] +depends-nominal: +- "Ps9AnyObject" +- "C8Mixpanel19AutomaticProperties" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "VSC6CGRect" +- "VSC6CGSize" +- "CSo9CTCarrier" +- "CSo22CTTelephonyNetworkInfo" +- "Ps11CVarArgType" +- !private "VSS13CharacterView" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Vs10Dictionary" +- "Ps28DictionaryLiteralConvertible" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- !private "VVSS13CharacterView5Index" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- "Ps14MirrorPathType" +- "CSo8NSBundle" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- "Vs5Slice" +- !private "Ps10Streamable" +- "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "CSo8UIDevice" +- "CSo8UIScreen" +- "PSo18UITraitEnvironment" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "SP" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps12_PointerType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +- !private "VSC7utsname" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "c7c6d2c8eb401bbf874c0e878907ee04" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftmodule new file mode 100644 index 00000000..bb02ad02 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.d new file mode 100644 index 00000000..686caaae --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o new file mode 100644 index 00000000..918c6234 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.swiftdeps new file mode 100644 index 00000000..caf434b7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.swiftdeps @@ -0,0 +1,40 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "QueueConstants" +- "APIConstants" +provides-nominal: +- "V8Mixpanel14QueueConstants" +- "V8Mixpanel12APIConstants" +provides-member: +- ["V8Mixpanel14QueueConstants", ""] +- ["V8Mixpanel12APIConstants", ""] +provides-dynamic-lookup: +depends-top-level: +- "QueueConstants" +- "FloatLiteralType" +- "IntegerLiteralType" +- "APIConstants" +depends-member: +- ["V8Mixpanel12APIConstants", "batchSize"] +- ["V8Mixpanel12APIConstants", "failuresTillBackoff"] +- ["V8Mixpanel12APIConstants", "init"] +- ["V8Mixpanel12APIConstants", "maxRetryBackoff"] +- ["V8Mixpanel12APIConstants", "minRetryBackoff"] +- ["V8Mixpanel14QueueConstants", "init"] +- ["V8Mixpanel14QueueConstants", "queueSize"] +depends-nominal: +- "V8Mixpanel12APIConstants" +- "V8Mixpanel14QueueConstants" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "8dfd0c594081336b654b279febbd1289" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftmodule new file mode 100644 index 00000000..f2dff308 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.d new file mode 100644 index 00000000..1b135874 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o new file mode 100644 index 00000000..7c3f7ea0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.swiftdeps new file mode 100644 index 00000000..2a91895f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.swiftdeps @@ -0,0 +1,179 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PropertyError" +- "Assertions" +- "MPAssert" +- "ErrorHandler" +provides-nominal: +- "O8Mixpanel13PropertyError" +- "C8Mixpanel10Assertions" +- "C8Mixpanel12ErrorHandler" +provides-member: +- ["O8Mixpanel13PropertyError", ""] +- ["C8Mixpanel10Assertions", ""] +- ["C8Mixpanel12ErrorHandler", ""] +provides-dynamic-lookup: +depends-top-level: +- "PropertyError" +- !private "FloatLiteralType" +- "String" +- "StaticString" +- "ErrorHandler" +- "Bool" +- "StringLiteralType" +- "ErrorType" +- !private "IntegerLiteralType" +- !private "NSThread" +- "UInt" +- "AnyObject" +- "Assertions" +- !private "Logger" +- "Swift" +- "MPAssert" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSThread"] +- ["Ps9AnyObject", "Swift"] +- !private ["Ps9AnyObject", "assertClosure"] +- !private ["Ps9AnyObject", "callStackSymbols"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "logError"] +- ["Ps9AnyObject", "swiftAssertClosure"] +- ["Ps9AnyObject", ""] +- ["C8Mixpanel10Assertions", "Swift"] +- ["C8Mixpanel10Assertions", "assertClosure"] +- ["C8Mixpanel10Assertions", "deinit"] +- ["C8Mixpanel10Assertions", "init"] +- ["C8Mixpanel10Assertions", "swiftAssertClosure"] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "callStackSymbols"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "callStackSymbols"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "callStackSymbols"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "callStackSymbols"] +- !private ["Ps9Equatable", "init"] +- ["C8Mixpanel12ErrorHandler", "ErrorType"] +- !private ["C8Mixpanel12ErrorHandler", "Logger"] +- !private ["C8Mixpanel12ErrorHandler", "NSThread"] +- ["C8Mixpanel12ErrorHandler", "deinit"] +- ["C8Mixpanel12ErrorHandler", "init"] +- ["C8Mixpanel12ErrorHandler", "logError"] +- ["C8Mixpanel12ErrorHandler", "wrap"] +- ["Ps9ErrorType", "_code"] +- ["Ps9ErrorType", "_domain"] +- ["Ps9ErrorType", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "callStackSymbols"] +- !private ["Ps8Hashable", "init"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "callStackSymbols"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "callStackSymbols"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSThread", "callStackSymbols"] +- !private ["Ps16OutputStreamType", "init"] +- ["O8Mixpanel13PropertyError", "AnyObject"] +- ["O8Mixpanel13PropertyError", "InvalidType"] +- ["O8Mixpanel13PropertyError", "_code"] +- ["O8Mixpanel13PropertyError", "_domain"] +- ["O8Mixpanel13PropertyError", "deinit"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- "C8Mixpanel10Assertions" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- "C8Mixpanel12ErrorHandler" +- "Ps9ErrorType" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo8NSThread" +- !private "Ps16OutputStreamType" +- "O8Mixpanel13PropertyError" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "cdcfe764bd50da5b0586cc5f726666ca" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftmodule new file mode 100644 index 00000000..48c22770 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.d new file mode 100644 index 00000000..33cc533c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o new file mode 100644 index 00000000..3aaada05 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.swiftdeps new file mode 100644 index 00000000..167a0031 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.swiftdeps @@ -0,0 +1,230 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FileLogging" +provides-nominal: +- "C8Mixpanel11FileLogging" +provides-member: +- ["C8Mixpanel11FileLogging", ""] +provides-dynamic-lookup: +depends-top-level: +- "NSFileHandle" +- "FileLogging" +- !private "StringLiteralType" +- "Logging" +- !private "NSUTF8StringEncoding" +- "LogMessage" +- !private "+" +- "String" +depends-member: +- !private ["Ps9AnyObject", "NSFileHandle"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "closeFile"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "fileHandle"] +- !private ["Ps9AnyObject", "fileHandleWithStandardError"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "seekToEndOfFile"] +- !private ["Ps9AnyObject", "writeData"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "closeFile"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "fileHandleWithStandardError"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "seekToEndOfFile"] +- !private ["Ps11CVarArgType", "writeData"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "closeFile"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "fileHandleWithStandardError"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "seekToEndOfFile"] +- !private ["Ps28CustomDebugStringConvertible", "writeData"] +- !private ["Ps23CustomStringConvertible", "closeFile"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "fileHandleWithStandardError"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "seekToEndOfFile"] +- !private ["Ps23CustomStringConvertible", "writeData"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "closeFile"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- !private ["Ps9Equatable", "fileHandleWithStandardError"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "seekToEndOfFile"] +- !private ["Ps9Equatable", "writeData"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- ["C8Mixpanel11FileLogging", "LogMessage"] +- ["C8Mixpanel11FileLogging", "NSFileHandle"] +- !private ["C8Mixpanel11FileLogging", "NSUTF8StringEncoding"] +- ["C8Mixpanel11FileLogging", "String"] +- ["C8Mixpanel11FileLogging", "addMessage"] +- ["C8Mixpanel11FileLogging", "deinit"] +- !private ["C8Mixpanel11FileLogging", "fileHandle"] +- ["C8Mixpanel11FileLogging", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "closeFile"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- !private ["Ps8Hashable", "fileHandleWithStandardError"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "seekToEndOfFile"] +- !private ["Ps8Hashable", "writeData"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["O8Mixpanel8LogLevel", "deinit"] +- !private ["O8Mixpanel8LogLevel", "rawValue"] +- !private ["V8Mixpanel10LogMessage", "file"] +- !private ["V8Mixpanel10LogMessage", "function"] +- !private ["V8Mixpanel10LogMessage", "level"] +- !private ["V8Mixpanel10LogMessage", "text"] +- !private ["P8Mixpanel7Logging", "NSFileHandle"] +- !private ["P8Mixpanel7Logging", "NSUTF8StringEncoding"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "fileHandle"] +- ["P8Mixpanel7Logging", ""] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "closeFile"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "fileHandleWithStandardError"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "seekToEndOfFile"] +- !private ["PSo8NSCoding", "writeData"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo12NSFileHandle", "closeFile"] +- !private ["CSo12NSFileHandle", "fileHandleWithStandardError"] +- !private ["CSo12NSFileHandle", "init"] +- !private ["CSo12NSFileHandle", "seekToEndOfFile"] +- !private ["CSo12NSFileHandle", "writeData"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "closeFile"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "fileHandleWithStandardError"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "seekToEndOfFile"] +- !private ["CSo8NSObject", "writeData"] +- !private ["PSo16NSObjectProtocol", "closeFile"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "fileHandleWithStandardError"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "seekToEndOfFile"] +- !private ["PSo16NSObjectProtocol", "writeData"] +- !private ["PSo14NSSecureCoding", "closeFile"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "fileHandleWithStandardError"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "seekToEndOfFile"] +- !private ["PSo14NSSecureCoding", "writeData"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16RawRepresentable", "rawValue"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "dataUsingEncoding"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "C8Mixpanel11FileLogging" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "O8Mixpanel8LogLevel" +- !private "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSFileHandle" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps16RawRepresentable" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "24cd98e0aa9f7719f6041cab748cda9d" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftdoc new file mode 100644 index 00000000..f824d4f5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftmodule new file mode 100644 index 00000000..99ddf9a9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.d new file mode 100644 index 00000000..30259180 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o new file mode 100644 index 00000000..44eb74a7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.swiftdeps new file mode 100644 index 00000000..a17fd21b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.swiftdeps @@ -0,0 +1,492 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FlushDelegate" +- "Flush" +provides-nominal: +- "P8Mixpanel13FlushDelegate" +- "C8Mixpanel5Flush" +provides-member: +- ["P8Mixpanel13FlushDelegate", ""] +- ["C8Mixpanel5Flush", ""] +provides-dynamic-lookup: +- "flushSelector" +depends-top-level: +- !private "APIConstants" +- "Bool" +- !private "dispatch_semaphore_wait" +- "Void" +- !private "DISPATCH_TIME_FOREVER" +- "Flush" +- !private "objc_sync_enter" +- !private "dispatch_async" +- !private "!" +- "BooleanLiteralType" +- "NSTimer" +- "FlushType" +- "FlushRequest" +- "AppLifecycle" +- !private "Array" +- "FloatLiteralType" +- "Double" +- !private ">" +- !private "dispatch_semaphore_signal" +- !private "IntegerLiteralType" +- !private "min" +- !private "objc_sync_exit" +- "Queue" +- !private "dispatch_get_main_queue" +- !private "..<" +- !private "JSONHandler" +- !private "dispatch_semaphore_create" +- "FlushDelegate" +depends-member: +- !private ["V8Mixpanel12APIConstants", "batchSize"] +- !private ["Ps9AnyObject", "APIConstants"] +- !private ["Ps9AnyObject", "Array"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_FOREVER"] +- ["Ps9AnyObject", "FlushRequest"] +- !private ["Ps9AnyObject", "JSONHandler"] +- !private ["Ps9AnyObject", "NSTimer"] +- !private ["Ps9AnyObject", "_flushInterval"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_semaphore_create"] +- !private ["Ps9AnyObject", "dispatch_semaphore_signal"] +- !private ["Ps9AnyObject", "dispatch_semaphore_wait"] +- !private ["Ps9AnyObject", "encodeAPIData"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "flushQueue"] +- !private ["Ps9AnyObject", "flushQueueInBatches"] +- !private ["Ps9AnyObject", "flushRequest"] +- !private ["Ps9AnyObject", "flushSelector"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "invalidate"] +- !private ["Ps9AnyObject", "min"] +- !private ["Ps9AnyObject", "objc_sync_enter"] +- !private ["Ps9AnyObject", "objc_sync_exit"] +- !private ["Ps9AnyObject", "requestNotAllowed"] +- !private ["Ps9AnyObject", "scheduledTimerWithTimeInterval"] +- !private ["Ps9AnyObject", "sendRequest"] +- !private ["Ps9AnyObject", "startFlushTimer"] +- !private ["Ps9AnyObject", "stopFlushTimer"] +- !private ["Ps9AnyObject", "timer"] +- !private ["Ps9AnyObject", "useIPAddressForGeoLocation"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "APIConstants"] +- !private ["P8Mixpanel12AppLifecycle", "Array"] +- !private ["P8Mixpanel12AppLifecycle", "DISPATCH_TIME_FOREVER"] +- ["P8Mixpanel12AppLifecycle", "FlushRequest"] +- !private ["P8Mixpanel12AppLifecycle", "JSONHandler"] +- !private ["P8Mixpanel12AppLifecycle", "NSTimer"] +- !private ["P8Mixpanel12AppLifecycle", "_flushInterval"] +- ["P8Mixpanel12AppLifecycle", "applicationDidBecomeActive"] +- ["P8Mixpanel12AppLifecycle", "applicationWillResignActive"] +- !private ["P8Mixpanel12AppLifecycle", "delegate"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_async"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_get_main_queue"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_create"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_signal"] +- !private ["P8Mixpanel12AppLifecycle", "dispatch_semaphore_wait"] +- !private ["P8Mixpanel12AppLifecycle", "flushInterval"] +- !private ["P8Mixpanel12AppLifecycle", "flushQueue"] +- !private ["P8Mixpanel12AppLifecycle", "flushQueueInBatches"] +- !private ["P8Mixpanel12AppLifecycle", "flushRequest"] +- !private ["P8Mixpanel12AppLifecycle", "flushSelector"] +- !private ["P8Mixpanel12AppLifecycle", "min"] +- !private ["P8Mixpanel12AppLifecycle", "objc_sync_enter"] +- !private ["P8Mixpanel12AppLifecycle", "objc_sync_exit"] +- !private ["P8Mixpanel12AppLifecycle", "startFlushTimer"] +- !private ["P8Mixpanel12AppLifecycle", "stopFlushTimer"] +- !private ["P8Mixpanel12AppLifecycle", "timer"] +- !private ["P8Mixpanel12AppLifecycle", "useIPAddressForGeoLocation"] +- ["P8Mixpanel12AppLifecycle", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "removeRange"] +- !private ["Sa", "subscript"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "removeRange"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Vs10ArraySlice", "SubSequence"] +- !private ["Vs10ArraySlice", "_Element"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "invalidate"] +- !private ["Ps11CVarArgType", "scheduledTimerWithTimeInterval"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeRange"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "invalidate"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "removeRange"] +- !private ["Ps28CustomDebugStringConvertible", "scheduledTimerWithTimeInterval"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "invalidate"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "removeRange"] +- !private ["Ps23CustomStringConvertible", "scheduledTimerWithTimeInterval"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "invalidate"] +- !private ["Ps9Equatable", "scheduledTimerWithTimeInterval"] +- !private ["C8Mixpanel5Flush", "APIConstants"] +- !private ["C8Mixpanel5Flush", "Array"] +- !private ["C8Mixpanel5Flush", "DISPATCH_TIME_FOREVER"] +- ["C8Mixpanel5Flush", "Double"] +- ["C8Mixpanel5Flush", "FlushDelegate"] +- ["C8Mixpanel5Flush", "FlushRequest"] +- ["C8Mixpanel5Flush", "FlushType"] +- !private ["C8Mixpanel5Flush", "JSONHandler"] +- ["C8Mixpanel5Flush", "NSTimer"] +- ["C8Mixpanel5Flush", "Queue"] +- ["C8Mixpanel5Flush", "_flushInterval"] +- ["C8Mixpanel5Flush", "applicationDidBecomeActive"] +- ["C8Mixpanel5Flush", "applicationWillResignActive"] +- ["C8Mixpanel5Flush", "deinit"] +- ["C8Mixpanel5Flush", "delegate"] +- !private ["C8Mixpanel5Flush", "dispatch_async"] +- !private ["C8Mixpanel5Flush", "dispatch_get_main_queue"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_create"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_signal"] +- !private ["C8Mixpanel5Flush", "dispatch_semaphore_wait"] +- ["C8Mixpanel5Flush", "flushEventsQueue"] +- ["C8Mixpanel5Flush", "flushInterval"] +- ["C8Mixpanel5Flush", "flushOnBackground"] +- ["C8Mixpanel5Flush", "flushPeopleQueue"] +- ["C8Mixpanel5Flush", "flushQueue"] +- ["C8Mixpanel5Flush", "flushQueueInBatches"] +- ["C8Mixpanel5Flush", "flushRequest"] +- ["C8Mixpanel5Flush", "flushSelector"] +- ["C8Mixpanel5Flush", "init"] +- !private ["C8Mixpanel5Flush", "min"] +- !private ["C8Mixpanel5Flush", "objc_sync_enter"] +- !private ["C8Mixpanel5Flush", "objc_sync_exit"] +- ["C8Mixpanel5Flush", "startFlushTimer"] +- ["C8Mixpanel5Flush", "stopFlushTimer"] +- ["C8Mixpanel5Flush", "timer"] +- ["C8Mixpanel5Flush", "useIPAddressForGeoLocation"] +- ["P8Mixpanel13FlushDelegate", "Bool"] +- ["P8Mixpanel13FlushDelegate", "Void"] +- ["P8Mixpanel13FlushDelegate", "flush"] +- ["P8Mixpanel13FlushDelegate", "updateNetworkActivityIndicator"] +- ["C8Mixpanel12FlushRequest", "init"] +- !private ["C8Mixpanel12FlushRequest", "requestNotAllowed"] +- !private ["C8Mixpanel12FlushRequest", "sendRequest"] +- !private ["O8Mixpanel9FlushType", "Events"] +- !private ["O8Mixpanel9FlushType", "People"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "invalidate"] +- !private ["Ps8Hashable", "scheduledTimerWithTimeInterval"] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeRange"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "removeRange"] +- !private ["Ps21MutableCollectionType", "subscript"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "removeRange"] +- !private ["Ps16MutableIndexable", "subscript"] +- !private ["Vs12MutableSlice", "Generator"] +- !private ["Vs12MutableSlice", "Index"] +- !private ["Vs12MutableSlice", "_Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "removeRange"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["CSo8NSObject", "invalidate"] +- !private ["CSo8NSObject", "scheduledTimerWithTimeInterval"] +- !private ["PSo16NSObjectProtocol", "invalidate"] +- !private ["PSo16NSObjectProtocol", "scheduledTimerWithTimeInterval"] +- !private ["CSo7NSTimer", "invalidate"] +- !private ["CSo7NSTimer", "scheduledTimerWithTimeInterval"] +- ["C8Mixpanel7Network", "init"] +- !private ["C8Mixpanel7Network", "requestNotAllowed"] +- !private ["C8Mixpanel7Network", "sendRequest"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "removeRange"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeRange"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "removeRange"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "removeRange"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "removeRange"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "removeRange"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +depends-nominal: +- !private "V8Mixpanel12APIConstants" +- "Ps9AnyObject" +- "P8Mixpanel12AppLifecycle" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Ps9Equatable" +- "C8Mixpanel5Flush" +- "P8Mixpanel13FlushDelegate" +- "C8Mixpanel12FlushRequest" +- !private "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel11JSONHandler" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Vs12MutableSlice" +- !private "Ps16MutableSliceable" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "CSo7NSTimer" +- "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Strideable" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "f29b3c5c17ca725828ed00f91150b5e5" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.d new file mode 100644 index 00000000..fdf787be --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o new file mode 100644 index 00000000..50a71e5a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.swiftdeps new file mode 100644 index 00000000..a17a7925 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.swiftdeps @@ -0,0 +1,578 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "FlushType" +- "FlushRequest" +provides-nominal: +- "O8Mixpanel9FlushType" +- "C8Mixpanel12FlushRequest" +provides-member: +- ["O8Mixpanel9FlushType", ""] +- ["C8Mixpanel12FlushRequest", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "??" +- !private "arc4random_uniform" +- !private "NSURLResponse" +- !private "NSTimeInterval" +- !private "Dictionary" +- !private "*" +- !private "Method" +- !private "Double" +- !private "APIConstants" +- "BooleanLiteralType" +- !private "NSDate" +- !private "NSHTTPURLResponse" +- !private "NSData" +- !private "BasePath" +- !private "pow" +- "FloatLiteralType" +- "String" +- !private "+=" +- !private ">=" +- "FlushRequest" +- "FlushType" +- "Bool" +- !private "NSUTF8StringEncoding" +- "IntegerLiteralType" +- "==" +- !private "~=" +- !private "-" +- !private "min" +- !private "+" +- !private "<" +- !private "Logger" +- "Network" +- !private "Resource" +- !private "Int" +- "StringLiteralType" +- !private "max" +- "Void" +depends-member: +- !private ["V8Mixpanel12APIConstants", "failuresTillBackoff"] +- !private ["V8Mixpanel12APIConstants", "maxRetryBackoff"] +- !private ["V8Mixpanel12APIConstants", "minRetryBackoff"] +- !private ["Ps16AbsoluteValuable", "IntegerLiteralType"] +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "APIConstants"] +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "Method"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "allHeaderFields"] +- !private ["Ps9AnyObject", "apiRequest"] +- !private ["Ps9AnyObject", "arc4random_uniform"] +- !private ["Ps9AnyObject", "buildResource"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- ["Ps9AnyObject", "flushRequestHandler"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "max"] +- !private ["Ps9AnyObject", "min"] +- ["Ps9AnyObject", "networkConsecutiveFailures"] +- ["Ps9AnyObject", "networkRequestsAllowedAfterTime"] +- !private ["Ps9AnyObject", "pow"] +- ["Ps9AnyObject", "requestNotAllowed"] +- ["Ps9AnyObject", "retryBackOffTimeWithConsecutiveFailures"] +- ["Ps9AnyObject", "sendRequest"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- ["Ps9AnyObject", "updateRetryDelay"] +- ["Ps9AnyObject", ""] +- !private ["V8Mixpanel8BasePath", "MixpanelAPI"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "IntegerLiteralType"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Stride"] +- !private ["Ps11CVarArgType", "allHeaderFields"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "IntegerLiteralType"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allHeaderFields"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "allHeaderFields"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "IntegerLiteralType"] +- !private ["Sd", "Stride"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "POST"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "allHeaderFields"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "IntegerLiteralType"] +- !private ["Sf", "Stride"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps23FloatLiteralConvertible", "Stride"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "IntegerLiteralType"] +- !private ["Ps17FloatingPointType", "Stride"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["C8Mixpanel12FlushRequest", "APIConstants"] +- !private ["C8Mixpanel12FlushRequest", "BasePath"] +- ["C8Mixpanel12FlushRequest", "Bool"] +- !private ["C8Mixpanel12FlushRequest", "Double"] +- ["C8Mixpanel12FlushRequest", "FlushType"] +- !private ["C8Mixpanel12FlushRequest", "Int"] +- !private ["C8Mixpanel12FlushRequest", "Logger"] +- !private ["C8Mixpanel12FlushRequest", "Method"] +- !private ["C8Mixpanel12FlushRequest", "NSData"] +- !private ["C8Mixpanel12FlushRequest", "NSDate"] +- !private ["C8Mixpanel12FlushRequest", "NSHTTPURLResponse"] +- !private ["C8Mixpanel12FlushRequest", "NSTimeInterval"] +- !private ["C8Mixpanel12FlushRequest", "NSURLResponse"] +- !private ["C8Mixpanel12FlushRequest", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel12FlushRequest", "Network"] +- !private ["C8Mixpanel12FlushRequest", "Resource"] +- ["C8Mixpanel12FlushRequest", "String"] +- ["C8Mixpanel12FlushRequest", "Void"] +- !private ["C8Mixpanel12FlushRequest", "arc4random_uniform"] +- ["C8Mixpanel12FlushRequest", "deinit"] +- !private ["C8Mixpanel12FlushRequest", "flushRequestHandler"] +- ["C8Mixpanel12FlushRequest", "init"] +- !private ["C8Mixpanel12FlushRequest", "max"] +- !private ["C8Mixpanel12FlushRequest", "min"] +- ["C8Mixpanel12FlushRequest", "networkConsecutiveFailures"] +- ["C8Mixpanel12FlushRequest", "networkRequestsAllowedAfterTime"] +- !private ["C8Mixpanel12FlushRequest", "pow"] +- ["C8Mixpanel12FlushRequest", "requestNotAllowed"] +- !private ["C8Mixpanel12FlushRequest", "retryBackOffTimeWithConsecutiveFailures"] +- ["C8Mixpanel12FlushRequest", "sendRequest"] +- !private ["C8Mixpanel12FlushRequest", "updateRetryDelay"] +- ["O8Mixpanel9FlushType", "Events"] +- ["O8Mixpanel9FlushType", "People"] +- ["O8Mixpanel9FlushType", "RawValue"] +- ["O8Mixpanel9FlushType", "deinit"] +- ["O8Mixpanel9FlushType", "hashValue"] +- ["O8Mixpanel9FlushType", "init"] +- ["O8Mixpanel9FlushType", "rawValue"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "POST"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "allHeaderFields"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Stride"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["O8Mixpanel6Method", "POST"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "allHeaderFields"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "allHeaderFields"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["CSo17NSHTTPURLResponse", "allHeaderFields"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "allHeaderFields"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "allHeaderFields"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo14NSSecureCoding", "allHeaderFields"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo13NSURLResponse", "allHeaderFields"] +- !private ["C8Mixpanel7Network", "APIConstants"] +- !private ["C8Mixpanel7Network", "BasePath"] +- ["C8Mixpanel7Network", "Bool"] +- !private ["C8Mixpanel7Network", "Double"] +- ["C8Mixpanel7Network", "FlushType"] +- !private ["C8Mixpanel7Network", "Int"] +- !private ["C8Mixpanel7Network", "Logger"] +- !private ["C8Mixpanel7Network", "Method"] +- !private ["C8Mixpanel7Network", "NSData"] +- !private ["C8Mixpanel7Network", "NSDate"] +- !private ["C8Mixpanel7Network", "NSHTTPURLResponse"] +- !private ["C8Mixpanel7Network", "NSTimeInterval"] +- !private ["C8Mixpanel7Network", "NSURLResponse"] +- !private ["C8Mixpanel7Network", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel7Network", "Network"] +- !private ["C8Mixpanel7Network", "Resource"] +- ["C8Mixpanel7Network", "String"] +- ["C8Mixpanel7Network", "Void"] +- !private ["C8Mixpanel7Network", "apiRequest"] +- !private ["C8Mixpanel7Network", "arc4random_uniform"] +- !private ["C8Mixpanel7Network", "buildResource"] +- ["C8Mixpanel7Network", "flushRequestHandler"] +- ["C8Mixpanel7Network", "init"] +- !private ["C8Mixpanel7Network", "max"] +- !private ["C8Mixpanel7Network", "min"] +- ["C8Mixpanel7Network", "networkConsecutiveFailures"] +- ["C8Mixpanel7Network", "networkRequestsAllowedAfterTime"] +- !private ["C8Mixpanel7Network", "pow"] +- ["C8Mixpanel7Network", "requestNotAllowed"] +- ["C8Mixpanel7Network", "retryBackOffTimeWithConsecutiveFailures"] +- ["C8Mixpanel7Network", "sendRequest"] +- ["C8Mixpanel7Network", "updateRetryDelay"] +- ["C8Mixpanel7Network", ""] +- !private ["Ps21NilLiteralConvertible", "Some"] +- !private ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps16RawRepresentable", "POST"] +- ["Ps16RawRepresentable", "RawValue"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Stride"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "dataUsingEncoding"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "Stride"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "IntegerLiteralType"] +- !private ["Ps19_CVarArgAlignedType", "Stride"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "IntegerLiteralType"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "Stride"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "V8Mixpanel12APIConstants" +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "V8Mixpanel8BasePath" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- "C8Mixpanel12FlushRequest" +- "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "O8Mixpanel6Method" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- !private "CSo17NSHTTPURLResponse" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo13NSURLResponse" +- "C8Mixpanel7Network" +- !private "Ps21NilLiteralConvertible" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "75f093034953f36d8757165dc89941a0" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftmodule new file mode 100644 index 00000000..4d788b1b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftmodule new file mode 100644 index 00000000..dcc33921 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.d new file mode 100644 index 00000000..7aceab64 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o new file mode 100644 index 00000000..54eef1ce Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.swiftdeps new file mode 100644 index 00000000..80c50925 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.swiftdeps @@ -0,0 +1,516 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "JSONHandler" +provides-nominal: +- "C8Mixpanel11JSONHandler" +provides-member: +- ["C8Mixpanel11JSONHandler", ""] +provides-dynamic-lookup: +depends-top-level: +- !private "Double" +- "AnyObject" +- !private "NSCharacterSet" +- !private "Array" +- !private "NSDateFormatter" +- !private "NSLocale" +- !private "Int" +- !private "NSURL" +- !private "UInt" +- "String" +- "NSData" +- !private "StringLiteralType" +- !private "NSJSONSerialization" +- !private "Logger" +- !private "Properties" +- !private "NSDataBase64EncodingOptions" +- !private "NSDate" +- !private "Float" +- "JSONHandler" +- !private "NSTimeZone" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSCharacterSet"] +- !private ["Ps9AnyObject", "NSDataBase64EncodingOptions"] +- !private ["Ps9AnyObject", "NSDateFormatter"] +- !private ["Ps9AnyObject", "NSJSONSerialization"] +- !private ["Ps9AnyObject", "NSLocale"] +- !private ["Ps9AnyObject", "NSTimeZone"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "URLQueryAllowedCharacterSet"] +- !private ["Ps9AnyObject", "absoluteString"] +- !private ["Ps9AnyObject", "base64EncodedStringWithOptions"] +- !private ["Ps9AnyObject", "dataWithJSONObject"] +- !private ["Ps9AnyObject", "dateFormat"] +- !private ["Ps9AnyObject", "description"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isValidJSONObject"] +- !private ["Ps9AnyObject", "locale"] +- !private ["Ps9AnyObject", "makeObjectSerializable"] +- !private ["Ps9AnyObject", "serializeJSONObject"] +- !private ["Ps9AnyObject", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps9AnyObject", "stringFromDate"] +- !private ["Ps9AnyObject", "timeZone"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "deinit"] +- !private ["Sa", "map"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Encoding64CharacterLineLength"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "map"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "URLQueryAllowedCharacterSet"] +- !private ["Ps11CVarArgType", "absoluteString"] +- !private ["Ps11CVarArgType", "base64EncodedStringWithOptions"] +- !private ["Ps11CVarArgType", "dataWithJSONObject"] +- !private ["Ps11CVarArgType", "dateFormat"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isValidJSONObject"] +- !private ["Ps11CVarArgType", "locale"] +- !private ["Ps11CVarArgType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps11CVarArgType", "stringFromDate"] +- !private ["Ps11CVarArgType", "timeZone"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "map"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URLQueryAllowedCharacterSet"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "absoluteString"] +- !private ["Ps28CustomDebugStringConvertible", "base64EncodedStringWithOptions"] +- !private ["Ps28CustomDebugStringConvertible", "dataWithJSONObject"] +- !private ["Ps28CustomDebugStringConvertible", "dateFormat"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isValidJSONObject"] +- !private ["Ps28CustomDebugStringConvertible", "locale"] +- !private ["Ps28CustomDebugStringConvertible", "map"] +- !private ["Ps28CustomDebugStringConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps28CustomDebugStringConvertible", "stringFromDate"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeZone"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URLQueryAllowedCharacterSet"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "absoluteString"] +- !private ["Ps23CustomStringConvertible", "base64EncodedStringWithOptions"] +- !private ["Ps23CustomStringConvertible", "dataWithJSONObject"] +- !private ["Ps23CustomStringConvertible", "dateFormat"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isValidJSONObject"] +- !private ["Ps23CustomStringConvertible", "locale"] +- !private ["Ps23CustomStringConvertible", "map"] +- !private ["Ps23CustomStringConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps23CustomStringConvertible", "stringFromDate"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeZone"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "map"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "map"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Encoding64CharacterLineLength"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "URLQueryAllowedCharacterSet"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "absoluteString"] +- !private ["Ps9Equatable", "base64EncodedStringWithOptions"] +- !private ["Ps9Equatable", "dataWithJSONObject"] +- !private ["Ps9Equatable", "dateFormat"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isValidJSONObject"] +- !private ["Ps9Equatable", "locale"] +- !private ["Ps9Equatable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps9Equatable", "stringFromDate"] +- !private ["Ps9Equatable", "timeZone"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "URLQueryAllowedCharacterSet"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "absoluteString"] +- !private ["Ps8Hashable", "base64EncodedStringWithOptions"] +- !private ["Ps8Hashable", "dataWithJSONObject"] +- !private ["Ps8Hashable", "dateFormat"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isValidJSONObject"] +- !private ["Ps8Hashable", "locale"] +- !private ["Ps8Hashable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps8Hashable", "stringFromDate"] +- !private ["Ps8Hashable", "timeZone"] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "map"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- ["C8Mixpanel11JSONHandler", "AnyObject"] +- !private ["C8Mixpanel11JSONHandler", "Array"] +- !private ["C8Mixpanel11JSONHandler", "Double"] +- !private ["C8Mixpanel11JSONHandler", "Float"] +- !private ["C8Mixpanel11JSONHandler", "Int"] +- !private ["C8Mixpanel11JSONHandler", "Logger"] +- ["C8Mixpanel11JSONHandler", "MPObjectToParse"] +- !private ["C8Mixpanel11JSONHandler", "NSCharacterSet"] +- ["C8Mixpanel11JSONHandler", "NSData"] +- !private ["C8Mixpanel11JSONHandler", "NSDataBase64EncodingOptions"] +- !private ["C8Mixpanel11JSONHandler", "NSDate"] +- !private ["C8Mixpanel11JSONHandler", "NSDateFormatter"] +- !private ["C8Mixpanel11JSONHandler", "NSJSONSerialization"] +- !private ["C8Mixpanel11JSONHandler", "NSLocale"] +- !private ["C8Mixpanel11JSONHandler", "NSTimeZone"] +- !private ["C8Mixpanel11JSONHandler", "NSURL"] +- !private ["C8Mixpanel11JSONHandler", "Properties"] +- ["C8Mixpanel11JSONHandler", "String"] +- !private ["C8Mixpanel11JSONHandler", "UInt"] +- ["C8Mixpanel11JSONHandler", "deinit"] +- ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- ["C8Mixpanel11JSONHandler", "init"] +- !private ["C8Mixpanel11JSONHandler", "makeObjectSerializable"] +- ["C8Mixpanel11JSONHandler", "serializeJSONObject"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["C8Mixpanel6Logger", "warn"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "map"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "map"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "map"] +- !private ["CSo14NSCharacterSet", "URLQueryAllowedCharacterSet"] +- !private ["PSo8NSCoding", "URLQueryAllowedCharacterSet"] +- !private ["PSo8NSCoding", "absoluteString"] +- !private ["PSo8NSCoding", "base64EncodedStringWithOptions"] +- !private ["PSo8NSCoding", "dateFormat"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "locale"] +- !private ["PSo8NSCoding", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo8NSCoding", "stringFromDate"] +- !private ["PSo8NSCoding", "timeZone"] +- !private ["PSo9NSCopying", "URLQueryAllowedCharacterSet"] +- !private ["PSo9NSCopying", "absoluteString"] +- !private ["PSo9NSCopying", "base64EncodedStringWithOptions"] +- !private ["PSo9NSCopying", "dateFormat"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "locale"] +- !private ["PSo9NSCopying", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo9NSCopying", "stringFromDate"] +- !private ["PSo9NSCopying", "timeZone"] +- !private ["CSo6NSData", "base64EncodedStringWithOptions"] +- !private ["VSC27NSDataBase64EncodingOptions", "Encoding64CharacterLineLength"] +- !private ["CSo15NSDateFormatter", "dateFormat"] +- !private ["CSo15NSDateFormatter", "init"] +- !private ["CSo15NSDateFormatter", "locale"] +- !private ["CSo15NSDateFormatter", "stringFromDate"] +- !private ["CSo15NSDateFormatter", "timeZone"] +- !private ["CSo11NSFormatter", "dateFormat"] +- !private ["CSo11NSFormatter", "init"] +- !private ["CSo11NSFormatter", "locale"] +- !private ["CSo11NSFormatter", "stringFromDate"] +- !private ["CSo11NSFormatter", "timeZone"] +- !private ["CSo19NSJSONSerialization", "dataWithJSONObject"] +- !private ["CSo19NSJSONSerialization", "isValidJSONObject"] +- !private ["VSC20NSJSONWritingOptions", "Element"] +- !private ["CSo8NSLocale", "init"] +- !private ["PSo16NSMutableCopying", "URLQueryAllowedCharacterSet"] +- !private ["PSo16NSMutableCopying", "base64EncodedStringWithOptions"] +- !private ["PSo16NSMutableCopying", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSObject", "URLQueryAllowedCharacterSet"] +- !private ["CSo8NSObject", "absoluteString"] +- !private ["CSo8NSObject", "base64EncodedStringWithOptions"] +- !private ["CSo8NSObject", "dataWithJSONObject"] +- !private ["CSo8NSObject", "dateFormat"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isValidJSONObject"] +- !private ["CSo8NSObject", "locale"] +- !private ["CSo8NSObject", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSObject", "stringFromDate"] +- !private ["CSo8NSObject", "timeZone"] +- !private ["PSo16NSObjectProtocol", "URLQueryAllowedCharacterSet"] +- !private ["PSo16NSObjectProtocol", "absoluteString"] +- !private ["PSo16NSObjectProtocol", "base64EncodedStringWithOptions"] +- !private ["PSo16NSObjectProtocol", "dataWithJSONObject"] +- !private ["PSo16NSObjectProtocol", "dateFormat"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isValidJSONObject"] +- !private ["PSo16NSObjectProtocol", "locale"] +- !private ["PSo16NSObjectProtocol", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["PSo16NSObjectProtocol", "stringFromDate"] +- !private ["PSo16NSObjectProtocol", "timeZone"] +- !private ["PSo14NSSecureCoding", "absoluteString"] +- !private ["PSo14NSSecureCoding", "base64EncodedStringWithOptions"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo8NSString", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["CSo10NSTimeZone", "init"] +- !private ["CSo5NSURL", "absoluteString"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "Element"] +- !private ["Ps13OptionSetType", "Encoding64CharacterLineLength"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "map"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Encoding64CharacterLineLength"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "map"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "Element"] +- !private ["Ps14SetAlgebraType", "Encoding64CharacterLineLength"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps30StringInterpolationConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps24StringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "map"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "map"] +- !private ["Ps32_FileReferenceLiteralConvertible", "absoluteString"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "map"] +- !private ["Ps21_ObjectiveCBridgeable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "absoluteString"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "map"] +- !private ["Ps12_Reflectable", "stringByAddingPercentEncodingWithAllowedCharacters"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- "C8Mixpanel11JSONHandler" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo14NSCharacterSet" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "VSC27NSDataBase64EncodingOptions" +- !private "CSo15NSDateFormatter" +- !private "CSo11NSFormatter" +- !private "CSo19NSJSONSerialization" +- !private "VSC20NSJSONWritingOptions" +- !private "CSo8NSLocale" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo10NSTimeZone" +- !private "CSo5NSURL" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "description" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "47f28b44a776ad89633b1eb5fe959f9c" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftmodule new file mode 100644 index 00000000..262bbebe Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.d new file mode 100644 index 00000000..720112c7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o new file mode 100644 index 00000000..04d4499b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.swiftdeps new file mode 100644 index 00000000..e3138fda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.swiftdeps @@ -0,0 +1,522 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "LogLevel" +- "LogMessage" +- "Logging" +- "Logger" +provides-nominal: +- "O8Mixpanel8LogLevel" +- "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- "C8Mixpanel6Logger" +provides-member: +- ["O8Mixpanel8LogLevel", ""] +- ["V8Mixpanel10LogMessage", ""] +- ["P8Mixpanel7Logging", ""] +- ["C8Mixpanel6Logger", ""] +provides-dynamic-lookup: +depends-top-level: +- "LogMessage" +- "String" +- "Any" +- !private "FloatLiteralType" +- "Set" +- "StringLiteralType" +- "Logger" +- "Logging" +- !private "~=" +- "==" +- !private "UnicodeScalarType" +- "LogLevel" +- !private "IntegerLiteralType" +depends-member: +- !private ["Ps9AnyObject", "LogMessage"] +- ["Ps9AnyObject", "Logging"] +- ["Ps9AnyObject", "Set"] +- !private ["Ps9AnyObject", "componentsSeparatedByString"] +- !private ["Ps9AnyObject", "enabledLevels"] +- !private ["Ps9AnyObject", "forwardLogMessage"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "loggers"] +- ["Ps9AnyObject", ""] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "forEach"] +- ["Sa", "init"] +- !private ["Sa", "last"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "contains"] +- !private ["Ps23ArrayLiteralConvertible", "forEach"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "insert"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Ps23ArrayLiteralConvertible", "remove"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["Ps11CVarArgType", "Distance"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "componentsSeparatedByString"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- ["Ps14CollectionType", "SubSequence"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "contains"] +- !private ["Ps14CollectionType", "forEach"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "insert"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "remove"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "componentsSeparatedByString"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "componentsSeparatedByString"] +- !private ["Ps28CustomDebugStringConvertible", "contains"] +- !private ["Ps28CustomDebugStringConvertible", "forEach"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "insert"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "remove"] +- ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "componentsSeparatedByString"] +- !private ["Ps23CustomStringConvertible", "contains"] +- !private ["Ps23CustomStringConvertible", "forEach"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "insert"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "remove"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Debug"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Generator"] +- !private ["Ps9Equatable", "Info"] +- ["Ps9Equatable", "IntegerLiteralType"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "componentsSeparatedByString"] +- !private ["Ps9Equatable", "contains"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "insert"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "remove"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Debug"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Generator"] +- !private ["Ps8Hashable", "Info"] +- ["Ps8Hashable", "IntegerLiteralType"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "componentsSeparatedByString"] +- !private ["Ps8Hashable", "contains"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "insert"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "remove"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- ["Ps9Indexable", "SubSequence"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "contains"] +- !private ["Ps9Indexable", "forEach"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "insert"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "remove"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- ["O8Mixpanel8LogLevel", "Debug"] +- ["O8Mixpanel8LogLevel", "Error"] +- ["O8Mixpanel8LogLevel", "Info"] +- ["O8Mixpanel8LogLevel", "RawValue"] +- ["O8Mixpanel8LogLevel", "Warning"] +- ["O8Mixpanel8LogLevel", "deinit"] +- ["O8Mixpanel8LogLevel", "hashValue"] +- ["O8Mixpanel8LogLevel", "init"] +- ["O8Mixpanel8LogLevel", "rawValue"] +- ["V8Mixpanel10LogMessage", "LogLevel"] +- ["V8Mixpanel10LogMessage", "String"] +- ["V8Mixpanel10LogMessage", "file"] +- ["V8Mixpanel10LogMessage", "function"] +- ["V8Mixpanel10LogMessage", "init"] +- ["V8Mixpanel10LogMessage", "level"] +- ["V8Mixpanel10LogMessage", "text"] +- ["C8Mixpanel6Logger", "Any"] +- ["C8Mixpanel6Logger", "LogLevel"] +- !private ["C8Mixpanel6Logger", "LogMessage"] +- ["C8Mixpanel6Logger", "Logging"] +- ["C8Mixpanel6Logger", "Set"] +- ["C8Mixpanel6Logger", "String"] +- ["C8Mixpanel6Logger", "addLogging"] +- ["C8Mixpanel6Logger", "debug"] +- ["C8Mixpanel6Logger", "deinit"] +- ["C8Mixpanel6Logger", "disableLevel"] +- ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "enabledLevels"] +- ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "forwardLogMessage"] +- ["C8Mixpanel6Logger", "info"] +- ["C8Mixpanel6Logger", "init"] +- !private ["C8Mixpanel6Logger", "loggers"] +- ["C8Mixpanel6Logger", "warn"] +- ["P8Mixpanel7Logging", "LogMessage"] +- ["P8Mixpanel7Logging", "addMessage"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "componentsSeparatedByString"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "forEach"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "last"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "forEach"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "forEach"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["PSo8NSCoding", "componentsSeparatedByString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "componentsSeparatedByString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "componentsSeparatedByString"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "componentsSeparatedByString"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "componentsSeparatedByString"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "componentsSeparatedByString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "componentsSeparatedByString"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "componentsSeparatedByString"] +- !private ["Ps16OutputStreamType", "init"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "forEach"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "Warning"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- ["Ps12SequenceType", "SubSequence"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "contains"] +- !private ["Ps12SequenceType", "forEach"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "insert"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "remove"] +- !private ["Vs3Set", "Generator"] +- !private ["Vs3Set", "contains"] +- ["Vs3Set", "init"] +- !private ["Vs3Set", "insert"] +- !private ["Vs3Set", "remove"] +- !private ["Vs12SetGenerator", "Element"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps10Streamable", "componentsSeparatedByString"] +- !private ["Ps10Streamable", "init"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["SS", "componentsSeparatedByString"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "componentsSeparatedByString"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "forEach"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "componentsSeparatedByString"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "forEach"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "hashValue"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "componentsSeparatedByString"] +- !private ["Ps21_ObjectiveCBridgeable", "contains"] +- !private ["Ps21_ObjectiveCBridgeable", "forEach"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "insert"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "remove"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "componentsSeparatedByString"] +- !private ["Ps12_Reflectable", "contains"] +- !private ["Ps12_Reflectable", "forEach"] +- !private ["Ps12_Reflectable", "hashValue"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "insert"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "remove"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- "O8Mixpanel8LogLevel" +- "V8Mixpanel10LogMessage" +- "C8Mixpanel6Logger" +- "P8Mixpanel7Logging" +- "Ps14MirrorPathType" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- "Ps12SequenceType" +- "Vs3Set" +- !private "Vs12SetGenerator" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Ps10Streamable" +- "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "bbe3e740851c457208bc0fa5315fed86" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftdoc new file mode 100644 index 00000000..42736ac7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftmodule new file mode 100644 index 00000000..53770489 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..38356dda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Debug-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-master.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-master.swiftdeps new file mode 100644 index 00000000..fc24504d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-master.swiftdeps @@ -0,0 +1,19 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "e2baf8ee9decbfa11fe73855eb1209ac" +build_time: [522881547, 450495000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift": [522361229, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift": [522872641, 0] diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.LinkFileList new file mode 100644 index 00000000..d6413421 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.d new file mode 100644 index 00000000..a336c384 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o new file mode 100644 index 00000000..54a7a7cb Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdeps new file mode 100644 index 00000000..6a7d136d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdeps @@ -0,0 +1,250 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "Mixpanel" +- "MixpanelManager" +provides-nominal: +- "C8Mixpanel8Mixpanel" +- "C8Mixpanel15MixpanelManager" +provides-member: +- ["C8Mixpanel8Mixpanel", ""] +- ["C8Mixpanel15MixpanelManager", ""] +provides-dynamic-lookup: +depends-top-level: +- "IntegerLiteralType" +- "String" +- !private "PrintLogging" +- !private "StringLiteralType" +- "AnyObject" +- !private "Logger" +- "Double" +- "Mixpanel" +- "FloatLiteralType" +- "MixpanelInstance" +- "NSObject" +- !private "NSUUID" +- "MixpanelManager" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "MixpanelInstance"] +- ["Ps9AnyObject", "MixpanelManager"] +- !private ["Ps9AnyObject", "NSUUID"] +- !private ["Ps9AnyObject", "PrintLogging"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "UUIDString"] +- !private ["Ps9AnyObject", "addLogging"] +- !private ["Ps9AnyObject", "getInstance"] +- !private ["Ps9AnyObject", "getMainInstance"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "instances"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "removeInstance"] +- !private ["Ps9AnyObject", "setMainInstance"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "UUIDString"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "UUIDString"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "UUIDString"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "UUIDString"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "UUIDString"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["C8Mixpanel6Logger", "addLogging"] +- !private ["C8Mixpanel6Logger", "warn"] +- !private ["P8Mixpanel7Logging", "init"] +- !private ["Ps14MirrorPathType", "init"] +- ["C8Mixpanel8Mixpanel", "AnyObject"] +- ["C8Mixpanel8Mixpanel", "Double"] +- ["C8Mixpanel8Mixpanel", "MixpanelInstance"] +- !private ["C8Mixpanel8Mixpanel", "MixpanelManager"] +- ["C8Mixpanel8Mixpanel", "NSObject"] +- !private ["C8Mixpanel8Mixpanel", "NSUUID"] +- ["C8Mixpanel8Mixpanel", "String"] +- ["C8Mixpanel8Mixpanel", "deinit"] +- ["C8Mixpanel8Mixpanel", "getInstance"] +- ["C8Mixpanel8Mixpanel", "init"] +- ["C8Mixpanel8Mixpanel", "initialize"] +- ["C8Mixpanel8Mixpanel", "mainInstance"] +- ["C8Mixpanel8Mixpanel", "removeInstance"] +- ["C8Mixpanel8Mixpanel", "setMainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "init"] +- ["C8Mixpanel15MixpanelManager", "AnyObject"] +- ["C8Mixpanel15MixpanelManager", "Double"] +- !private ["C8Mixpanel15MixpanelManager", "Logger"] +- ["C8Mixpanel15MixpanelManager", "MixpanelInstance"] +- ["C8Mixpanel15MixpanelManager", "MixpanelManager"] +- ["C8Mixpanel15MixpanelManager", "NSObject"] +- !private ["C8Mixpanel15MixpanelManager", "PrintLogging"] +- ["C8Mixpanel15MixpanelManager", "String"] +- ["C8Mixpanel15MixpanelManager", "deinit"] +- ["C8Mixpanel15MixpanelManager", "getInstance"] +- ["C8Mixpanel15MixpanelManager", "getMainInstance"] +- ["C8Mixpanel15MixpanelManager", "init"] +- ["C8Mixpanel15MixpanelManager", "initialize"] +- !private ["C8Mixpanel15MixpanelManager", "instances"] +- !private ["C8Mixpanel15MixpanelManager", "mainInstance"] +- ["C8Mixpanel15MixpanelManager", "removeInstance"] +- ["C8Mixpanel15MixpanelManager", "setMainInstance"] +- ["C8Mixpanel15MixpanelManager", "sharedInstance"] +- !private ["PSo8NSCoding", "UUIDString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "UUIDString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "UUIDString"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "UUIDString"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "UUIDString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- !private ["CSo6NSUUID", "UUIDString"] +- !private ["CSo6NSUUID", "init"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel12PrintLogging", "deinit"] +- !private ["C8Mixpanel12PrintLogging", "init"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "C8Mixpanel6Logger" +- !private "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "C8Mixpanel15MixpanelManager" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo6NSUUID" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel12PrintLogging" +- !private "Ps12SequenceType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "23eb6f60b94407163e4fd5bcac150036" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc new file mode 100644 index 00000000..e1624d98 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule new file mode 100644 index 00000000..875c39c4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.d new file mode 100644 index 00000000..37dec29a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o new file mode 100644 index 00000000..1705c394 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.swiftdeps new file mode 100644 index 00000000..34e52e0b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.swiftdeps @@ -0,0 +1,1061 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelDelegate" +- "Properties" +- "Queue" +- "AppLifecycle" +- "MixpanelInstance" +provides-nominal: +- "P8Mixpanel16MixpanelDelegate" +- "P8Mixpanel12AppLifecycle" +- "C8Mixpanel16MixpanelInstance" +provides-member: +- ["P8Mixpanel16MixpanelDelegate", ""] +- ["P8Mixpanel12AppLifecycle", ""] +- ["C8Mixpanel16MixpanelInstance", ""] +- ["C8Mixpanel16MixpanelInstance", "identify"] +- ["C8Mixpanel16MixpanelInstance", "createAlias"] +- ["C8Mixpanel16MixpanelInstance", "reset"] +- ["C8Mixpanel16MixpanelInstance", "archive"] +- ["C8Mixpanel16MixpanelInstance", "unarchive"] +- ["C8Mixpanel16MixpanelInstance", "archiveProperties"] +- ["C8Mixpanel16MixpanelInstance", "trackIntegration"] +- ["C8Mixpanel16MixpanelInstance", "flush"] +- ["C8Mixpanel16MixpanelInstance", "track"] +- ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- ["C8Mixpanel16MixpanelInstance", "time"] +- ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["C8Mixpanel16MixpanelInstance", "dispatchAndTrack"] +provides-dynamic-lookup: +- "applicationDidEnterBackground" +- "applicationWillTerminate" +- "applicationWillResignActive" +- "setCurrentRadio" +- "applicationWillEnterForeground" +- "applicationDidBecomeActive" +- "appLinksNotificationRaised" +depends-top-level: +- !private "+" +- "NSObject" +- !private "NSClassFromString" +- !private "NSUserDefaults" +- !private "UIApplicationLaunchOptionsRemoteNotificationKey" +- !private "DISPATCH_QUEUE_SERIAL" +- !private "UIApplicationWillEnterForegroundNotification" +- "Track" +- "AnyObject" +- !private "dispatch_get_main_queue" +- !private "UIApplicationWillResignActiveNotification" +- !private "Persistence" +- !private "ArchivedProperties" +- "Bool" +- !private "UIApplicationDidBecomeActiveNotification" +- "CustomDebugStringConvertible" +- !private "NSNotification" +- "FlushDelegate" +- !private "==" +- !private "UIDevice" +- "MixpanelInstance" +- !private "CTRadioAccessTechnologyDidChangeNotification" +- !private "Dictionary" +- "Double" +- "Void" +- !private "dispatch_async" +- !private "UnicodeScalarType" +- !private "UIApplication" +- "Queue" +- !private "BasePath" +- !private "NSDate" +- "BooleanLiteralType" +- "Properties" +- "dispatch_queue_t" +- "String" +- !private "Logger" +- "People" +- !private "NSNotificationCenter" +- !private "NSUUID" +- !private "!=" +- "UIBackgroundTaskInvalid" +- !private "AutomaticProperties" +- "MixpanelDelegate" +- !private "dispatch_queue_create" +- !private "UIApplicationWillTerminateNotification" +- !private "Network" +- !private "UIApplicationDidEnterBackgroundNotification" +- "AppLifecycle" +- "StringLiteralType" +- !private "!" +- "Flush" +depends-member: +- !private ["Ps9AnyObject", "ArchivedProperties"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["Ps9AnyObject", "DISPATCH_QUEUE_SERIAL"] +- ["Ps9AnyObject", "Flush"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSClassFromString"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSNotificationCenter"] +- !private ["Ps9AnyObject", "NSUUID"] +- !private ["Ps9AnyObject", "NSUserDefaults"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "People"] +- !private ["Ps9AnyObject", "Persistence"] +- ["Ps9AnyObject", "Properties"] +- ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "UIApplication"] +- !private ["Ps9AnyObject", "UIApplicationDidBecomeActiveNotification"] +- !private ["Ps9AnyObject", "UIApplicationDidEnterBackgroundNotification"] +- !private ["Ps9AnyObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9AnyObject", "UIApplicationWillEnterForegroundNotification"] +- !private ["Ps9AnyObject", "UIApplicationWillResignActiveNotification"] +- !private ["Ps9AnyObject", "UIApplicationWillTerminateNotification"] +- ["Ps9AnyObject", "UIBackgroundTaskInvalid"] +- !private ["Ps9AnyObject", "UIDevice"] +- !private ["Ps9AnyObject", "UUIDString"] +- !private ["Ps9AnyObject", "_flushInterval"] +- !private ["Ps9AnyObject", "addObserver"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "appLinksNotificationRaised"] +- !private ["Ps9AnyObject", "applicationDidBecomeActive"] +- !private ["Ps9AnyObject", "applicationDidEnterBackground"] +- !private ["Ps9AnyObject", "applicationWillEnterForeground"] +- !private ["Ps9AnyObject", "applicationWillResignActive"] +- !private ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "archiveEvents"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "archiveProperties"] +- !private ["Ps9AnyObject", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps9AnyObject", "boolForKey"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "clearTimedEvents"] +- !private ["Ps9AnyObject", "currentDevice"] +- ["Ps9AnyObject", "debugDescription"] +- !private ["Ps9AnyObject", "defaultCenter"] +- !private ["Ps9AnyObject", "defaultDistinctId"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "disableLevel"] +- !private ["Ps9AnyObject", "dispatchAndTrack"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_queue_create"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "enableLevel"] +- !private ["Ps9AnyObject", "endBackgroundTask"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "eventsQueue"] +- ["Ps9AnyObject", "flush"] +- !private ["Ps9AnyObject", "flushEventsQueue"] +- !private ["Ps9AnyObject", "flushInstance"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "flushOnBackground"] +- !private ["Ps9AnyObject", "flushPeopleQueue"] +- !private ["Ps9AnyObject", "getCurrentRadio"] +- !private ["Ps9AnyObject", "identifierForVendor"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isEmpty"] +- !private ["Ps9AnyObject", "loggingEnabled"] +- !private ["Ps9AnyObject", "networkActivityIndicatorVisible"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "properties"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- !private ["Ps9AnyObject", "removeObserver"] +- !private ["Ps9AnyObject", "serialQueue"] +- !private ["Ps9AnyObject", "setBool"] +- !private ["Ps9AnyObject", "setCurrentRadio"] +- !private ["Ps9AnyObject", "setupListeners"] +- !private ["Ps9AnyObject", "sharedApplication"] +- !private ["Ps9AnyObject", "showNetworkActivityIndicator"] +- !private ["Ps9AnyObject", "standardUserDefaults"] +- !private ["Ps9AnyObject", "superProperties"] +- !private ["Ps9AnyObject", "synchronize"] +- !private ["Ps9AnyObject", "taskId"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "timedEvents"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackInstance"] +- !private ["Ps9AnyObject", "trackIntegration"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- !private ["Ps9AnyObject", "unarchive"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- ["Ps9AnyObject", "updateNetworkActivityIndicator"] +- !private ["Ps9AnyObject", "useIPAddressForGeoLocation"] +- !private ["Ps9AnyObject", "userInfo"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "_flushInterval"] +- ["P8Mixpanel12AppLifecycle", "applicationDidBecomeActive"] +- ["P8Mixpanel12AppLifecycle", "applicationWillResignActive"] +- !private ["P8Mixpanel12AppLifecycle", "delegate"] +- !private ["P8Mixpanel12AppLifecycle", "flushEventsQueue"] +- !private ["P8Mixpanel12AppLifecycle", "flushInterval"] +- !private ["P8Mixpanel12AppLifecycle", "flushOnBackground"] +- !private ["P8Mixpanel12AppLifecycle", "flushPeopleQueue"] +- ["P8Mixpanel12AppLifecycle", "init"] +- !private ["P8Mixpanel12AppLifecycle", "useIPAddressForGeoLocation"] +- !private ["V8Mixpanel18ArchivedProperties", "init"] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "removeAll"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "removeAll"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "getCurrentRadio"] +- !private ["C8Mixpanel19AutomaticProperties", "properties"] +- !private ["V8Mixpanel8BasePath", "MixpanelAPI"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- ["Ps11CVarArgType", "Distance"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "UUIDString"] +- !private ["Ps11CVarArgType", "addObserver"] +- !private ["Ps11CVarArgType", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps11CVarArgType", "boolForKey"] +- !private ["Ps11CVarArgType", "currentDevice"] +- !private ["Ps11CVarArgType", "defaultCenter"] +- !private ["Ps11CVarArgType", "endBackgroundTask"] +- !private ["Ps11CVarArgType", "identifierForVendor"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isEmpty"] +- !private ["Ps11CVarArgType", "networkActivityIndicatorVisible"] +- !private ["Ps11CVarArgType", "removeObserver"] +- !private ["Ps11CVarArgType", "setBool"] +- !private ["Ps11CVarArgType", "sharedApplication"] +- !private ["Ps11CVarArgType", "standardUserDefaults"] +- !private ["Ps11CVarArgType", "synchronize"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps11CVarArgType", "userInfo"] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeAll"] +- !private ["Ps14CollectionType", "subscript"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "ArchivedProperties"] +- !private ["Ps28CustomDebugStringConvertible", "AutomaticProperties"] +- !private ["Ps28CustomDebugStringConvertible", "BasePath"] +- !private ["Ps28CustomDebugStringConvertible", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_QUEUE_SERIAL"] +- ["Ps28CustomDebugStringConvertible", "Flush"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Logger"] +- !private ["Ps28CustomDebugStringConvertible", "NSClassFromString"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSNotificationCenter"] +- !private ["Ps28CustomDebugStringConvertible", "NSUUID"] +- !private ["Ps28CustomDebugStringConvertible", "NSUserDefaults"] +- !private ["Ps28CustomDebugStringConvertible", "Network"] +- !private ["Ps28CustomDebugStringConvertible", "People"] +- !private ["Ps28CustomDebugStringConvertible", "Persistence"] +- ["Ps28CustomDebugStringConvertible", "Properties"] +- ["Ps28CustomDebugStringConvertible", "Queue"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Track"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplication"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationDidBecomeActiveNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationDidEnterBackgroundNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillEnterForegroundNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillResignActiveNotification"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationWillTerminateNotification"] +- ["Ps28CustomDebugStringConvertible", "UIBackgroundTaskInvalid"] +- !private ["Ps28CustomDebugStringConvertible", "UIDevice"] +- !private ["Ps28CustomDebugStringConvertible", "UUIDString"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "addObserver"] +- !private ["Ps28CustomDebugStringConvertible", "apiToken"] +- !private ["Ps28CustomDebugStringConvertible", "appLinksNotificationRaised"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- !private ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- !private ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "archiveProperties"] +- !private ["Ps28CustomDebugStringConvertible", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps28CustomDebugStringConvertible", "boolForKey"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentDevice"] +- ["Ps28CustomDebugStringConvertible", "debugDescription"] +- !private ["Ps28CustomDebugStringConvertible", "defaultCenter"] +- !private ["Ps28CustomDebugStringConvertible", "defaultDistinctId"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dispatchAndTrack"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_async"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_queue_create"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "endBackgroundTask"] +- !private ["Ps28CustomDebugStringConvertible", "eventsQueue"] +- ["Ps28CustomDebugStringConvertible", "flush"] +- !private ["Ps28CustomDebugStringConvertible", "flushInstance"] +- !private ["Ps28CustomDebugStringConvertible", "flushOnBackground"] +- !private ["Ps28CustomDebugStringConvertible", "identifierForVendor"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "loggingEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "networkActivityIndicatorVisible"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "removeAll"] +- !private ["Ps28CustomDebugStringConvertible", "removeObserver"] +- !private ["Ps28CustomDebugStringConvertible", "serialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "setBool"] +- !private ["Ps28CustomDebugStringConvertible", "setCurrentRadio"] +- !private ["Ps28CustomDebugStringConvertible", "setupListeners"] +- !private ["Ps28CustomDebugStringConvertible", "sharedApplication"] +- !private ["Ps28CustomDebugStringConvertible", "showNetworkActivityIndicator"] +- !private ["Ps28CustomDebugStringConvertible", "standardUserDefaults"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "superProperties"] +- !private ["Ps28CustomDebugStringConvertible", "synchronize"] +- !private ["Ps28CustomDebugStringConvertible", "taskId"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "timedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackInstance"] +- !private ["Ps28CustomDebugStringConvertible", "trackIntegration"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- !private ["Ps28CustomDebugStringConvertible", "unarchive"] +- ["Ps28CustomDebugStringConvertible", "updateNetworkActivityIndicator"] +- !private ["Ps28CustomDebugStringConvertible", "userInfo"] +- ["Ps28CustomDebugStringConvertible", ""] +- ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UUIDString"] +- !private ["Ps23CustomStringConvertible", "Value"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "addObserver"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps23CustomStringConvertible", "boolForKey"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "currentDevice"] +- !private ["Ps23CustomStringConvertible", "defaultCenter"] +- !private ["Ps23CustomStringConvertible", "endBackgroundTask"] +- !private ["Ps23CustomStringConvertible", "identifierForVendor"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "networkActivityIndicatorVisible"] +- !private ["Ps23CustomStringConvertible", "removeAll"] +- !private ["Ps23CustomStringConvertible", "removeObserver"] +- !private ["Ps23CustomStringConvertible", "setBool"] +- !private ["Ps23CustomStringConvertible", "sharedApplication"] +- !private ["Ps23CustomStringConvertible", "standardUserDefaults"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "synchronize"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "userInfo"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Debug"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Info"] +- ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "UUIDString"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "addObserver"] +- !private ["Ps9Equatable", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps9Equatable", "boolForKey"] +- !private ["Ps9Equatable", "currentDevice"] +- !private ["Ps9Equatable", "defaultCenter"] +- !private ["Ps9Equatable", "endBackgroundTask"] +- !private ["Ps9Equatable", "identifierForVendor"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isEmpty"] +- !private ["Ps9Equatable", "networkActivityIndicatorVisible"] +- !private ["Ps9Equatable", "removeObserver"] +- !private ["Ps9Equatable", "setBool"] +- !private ["Ps9Equatable", "sharedApplication"] +- !private ["Ps9Equatable", "standardUserDefaults"] +- !private ["Ps9Equatable", "synchronize"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps9Equatable", "userInfo"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Sf", "deinit"] +- !private ["C8Mixpanel5Flush", "_flushInterval"] +- !private ["C8Mixpanel5Flush", "applicationDidBecomeActive"] +- !private ["C8Mixpanel5Flush", "applicationWillResignActive"] +- !private ["C8Mixpanel5Flush", "deinit"] +- !private ["C8Mixpanel5Flush", "delegate"] +- !private ["C8Mixpanel5Flush", "flushEventsQueue"] +- !private ["C8Mixpanel5Flush", "flushInterval"] +- !private ["C8Mixpanel5Flush", "flushOnBackground"] +- !private ["C8Mixpanel5Flush", "flushPeopleQueue"] +- ["C8Mixpanel5Flush", "init"] +- !private ["C8Mixpanel5Flush", "useIPAddressForGeoLocation"] +- !private ["P8Mixpanel13FlushDelegate", "ArchivedProperties"] +- !private ["P8Mixpanel13FlushDelegate", "AutomaticProperties"] +- !private ["P8Mixpanel13FlushDelegate", "BasePath"] +- !private ["P8Mixpanel13FlushDelegate", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["P8Mixpanel13FlushDelegate", "DISPATCH_QUEUE_SERIAL"] +- ["P8Mixpanel13FlushDelegate", "Flush"] +- !private ["P8Mixpanel13FlushDelegate", "Logger"] +- !private ["P8Mixpanel13FlushDelegate", "NSClassFromString"] +- !private ["P8Mixpanel13FlushDelegate", "NSDate"] +- !private ["P8Mixpanel13FlushDelegate", "NSNotificationCenter"] +- !private ["P8Mixpanel13FlushDelegate", "NSUUID"] +- !private ["P8Mixpanel13FlushDelegate", "NSUserDefaults"] +- !private ["P8Mixpanel13FlushDelegate", "Network"] +- !private ["P8Mixpanel13FlushDelegate", "People"] +- !private ["P8Mixpanel13FlushDelegate", "Persistence"] +- ["P8Mixpanel13FlushDelegate", "Properties"] +- ["P8Mixpanel13FlushDelegate", "Queue"] +- !private ["P8Mixpanel13FlushDelegate", "Track"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplication"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationDidBecomeActiveNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationDidEnterBackgroundNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillEnterForegroundNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillResignActiveNotification"] +- !private ["P8Mixpanel13FlushDelegate", "UIApplicationWillTerminateNotification"] +- ["P8Mixpanel13FlushDelegate", "UIBackgroundTaskInvalid"] +- !private ["P8Mixpanel13FlushDelegate", "UIDevice"] +- !private ["P8Mixpanel13FlushDelegate", "apiToken"] +- !private ["P8Mixpanel13FlushDelegate", "appLinksNotificationRaised"] +- !private ["P8Mixpanel13FlushDelegate", "applicationDidBecomeActive"] +- !private ["P8Mixpanel13FlushDelegate", "applicationDidEnterBackground"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillEnterForeground"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillResignActive"] +- !private ["P8Mixpanel13FlushDelegate", "applicationWillTerminate"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "archiveProperties"] +- ["P8Mixpanel13FlushDelegate", "debugDescription"] +- !private ["P8Mixpanel13FlushDelegate", "defaultDistinctId"] +- !private ["P8Mixpanel13FlushDelegate", "delegate"] +- !private ["P8Mixpanel13FlushDelegate", "dispatchAndTrack"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_async"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_get_main_queue"] +- !private ["P8Mixpanel13FlushDelegate", "dispatch_queue_create"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "eventsQueue"] +- ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "flushInstance"] +- !private ["P8Mixpanel13FlushDelegate", "flushOnBackground"] +- !private ["P8Mixpanel13FlushDelegate", "loggingEnabled"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "serialQueue"] +- !private ["P8Mixpanel13FlushDelegate", "setCurrentRadio"] +- !private ["P8Mixpanel13FlushDelegate", "setupListeners"] +- !private ["P8Mixpanel13FlushDelegate", "showNetworkActivityIndicator"] +- !private ["P8Mixpanel13FlushDelegate", "superProperties"] +- !private ["P8Mixpanel13FlushDelegate", "taskId"] +- !private ["P8Mixpanel13FlushDelegate", "timedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackInstance"] +- !private ["P8Mixpanel13FlushDelegate", "trackIntegration"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["P8Mixpanel13FlushDelegate", "unarchive"] +- ["P8Mixpanel13FlushDelegate", "updateNetworkActivityIndicator"] +- ["P8Mixpanel13FlushDelegate", ""] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Debug"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Info"] +- ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "UUIDString"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "addObserver"] +- !private ["Ps8Hashable", "beginBackgroundTaskWithExpirationHandler"] +- !private ["Ps8Hashable", "boolForKey"] +- !private ["Ps8Hashable", "currentDevice"] +- !private ["Ps8Hashable", "defaultCenter"] +- !private ["Ps8Hashable", "endBackgroundTask"] +- !private ["Ps8Hashable", "identifierForVendor"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isEmpty"] +- !private ["Ps8Hashable", "networkActivityIndicatorVisible"] +- !private ["Ps8Hashable", "removeObserver"] +- !private ["Ps8Hashable", "setBool"] +- !private ["Ps8Hashable", "sharedApplication"] +- !private ["Ps8Hashable", "standardUserDefaults"] +- !private ["Ps8Hashable", "synchronize"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps8Hashable", "userInfo"] +- !private ["SQ", "deinit"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeAll"] +- !private ["Ps9Indexable", "subscript"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["O8Mixpanel8LogLevel", "Debug"] +- !private ["O8Mixpanel8LogLevel", "Error"] +- !private ["O8Mixpanel8LogLevel", "Info"] +- !private ["O8Mixpanel8LogLevel", "Warning"] +- !private ["C8Mixpanel6Logger", "disableLevel"] +- !private ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps14MirrorPathType", "isEmpty"] +- ["P8Mixpanel16MixpanelDelegate", "Bool"] +- ["P8Mixpanel16MixpanelDelegate", "MixpanelInstance"] +- ["P8Mixpanel16MixpanelDelegate", "mixpanelWillFlush"] +- ["C8Mixpanel16MixpanelInstance", "AnyObject"] +- !private ["C8Mixpanel16MixpanelInstance", "ArchivedProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "AutomaticProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "BasePath"] +- ["C8Mixpanel16MixpanelInstance", "Bool"] +- !private ["C8Mixpanel16MixpanelInstance", "CTRadioAccessTechnologyDidChangeNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "DISPATCH_QUEUE_SERIAL"] +- ["C8Mixpanel16MixpanelInstance", "Double"] +- ["C8Mixpanel16MixpanelInstance", "Flush"] +- !private ["C8Mixpanel16MixpanelInstance", "Logger"] +- ["C8Mixpanel16MixpanelInstance", "MixpanelDelegate"] +- !private ["C8Mixpanel16MixpanelInstance", "NSClassFromString"] +- !private ["C8Mixpanel16MixpanelInstance", "NSDate"] +- !private ["C8Mixpanel16MixpanelInstance", "NSNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "NSNotificationCenter"] +- ["C8Mixpanel16MixpanelInstance", "NSObject"] +- !private ["C8Mixpanel16MixpanelInstance", "NSUUID"] +- !private ["C8Mixpanel16MixpanelInstance", "NSUserDefaults"] +- !private ["C8Mixpanel16MixpanelInstance", "Network"] +- ["C8Mixpanel16MixpanelInstance", "People"] +- !private ["C8Mixpanel16MixpanelInstance", "Persistence"] +- ["C8Mixpanel16MixpanelInstance", "Properties"] +- ["C8Mixpanel16MixpanelInstance", "Queue"] +- ["C8Mixpanel16MixpanelInstance", "String"] +- ["C8Mixpanel16MixpanelInstance", "Track"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplication"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationDidBecomeActiveNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationDidEnterBackgroundNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillEnterForegroundNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillResignActiveNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "UIApplicationWillTerminateNotification"] +- ["C8Mixpanel16MixpanelInstance", "UIBackgroundTaskInvalid"] +- !private ["C8Mixpanel16MixpanelInstance", "UIDevice"] +- ["C8Mixpanel16MixpanelInstance", "Void"] +- ["C8Mixpanel16MixpanelInstance", "apiToken"] +- !private ["C8Mixpanel16MixpanelInstance", "appLinksNotificationRaised"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationDidBecomeActive"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationDidEnterBackground"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillEnterForeground"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillResignActive"] +- !private ["C8Mixpanel16MixpanelInstance", "applicationWillTerminate"] +- ["C8Mixpanel16MixpanelInstance", "archive"] +- ["C8Mixpanel16MixpanelInstance", "archiveProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- ["C8Mixpanel16MixpanelInstance", "createAlias"] +- ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "debugDescription"] +- ["C8Mixpanel16MixpanelInstance", "defaultDistinctId"] +- ["C8Mixpanel16MixpanelInstance", "deinit"] +- ["C8Mixpanel16MixpanelInstance", "delegate"] +- ["C8Mixpanel16MixpanelInstance", "dispatchAndTrack"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_async"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_get_main_queue"] +- !private ["C8Mixpanel16MixpanelInstance", "dispatch_queue_create"] +- ["C8Mixpanel16MixpanelInstance", "dispatch_queue_t"] +- ["C8Mixpanel16MixpanelInstance", "distinctId"] +- ["C8Mixpanel16MixpanelInstance", "eventsQueue"] +- ["C8Mixpanel16MixpanelInstance", "flush"] +- ["C8Mixpanel16MixpanelInstance", "flushInstance"] +- ["C8Mixpanel16MixpanelInstance", "flushInterval"] +- ["C8Mixpanel16MixpanelInstance", "flushOnBackground"] +- ["C8Mixpanel16MixpanelInstance", "identify"] +- ["C8Mixpanel16MixpanelInstance", "init"] +- ["C8Mixpanel16MixpanelInstance", "loggingEnabled"] +- ["C8Mixpanel16MixpanelInstance", "people"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- ["C8Mixpanel16MixpanelInstance", "reset"] +- ["C8Mixpanel16MixpanelInstance", "serialQueue"] +- ["C8Mixpanel16MixpanelInstance", "serverURL"] +- ["C8Mixpanel16MixpanelInstance", "setCurrentRadio"] +- !private ["C8Mixpanel16MixpanelInstance", "setupListeners"] +- ["C8Mixpanel16MixpanelInstance", "showNetworkActivityIndicator"] +- ["C8Mixpanel16MixpanelInstance", "superProperties"] +- ["C8Mixpanel16MixpanelInstance", "taskId"] +- ["C8Mixpanel16MixpanelInstance", "time"] +- ["C8Mixpanel16MixpanelInstance", "timedEvents"] +- ["C8Mixpanel16MixpanelInstance", "track"] +- ["C8Mixpanel16MixpanelInstance", "trackInstance"] +- ["C8Mixpanel16MixpanelInstance", "trackIntegration"] +- ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- ["C8Mixpanel16MixpanelInstance", "unarchive"] +- ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["C8Mixpanel16MixpanelInstance", "updateNetworkActivityIndicator"] +- ["C8Mixpanel16MixpanelInstance", "useIPAddressForGeoLocation"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "removeAll"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "removeAll"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "removeAll"] +- !private ["PSo8NSCoding", "UUIDString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isEmpty"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo8NSCoding", "userInfo"] +- !private ["PSo9NSCopying", "UUIDString"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "isEmpty"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "userInfo"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "isEmpty"] +- !private ["CSo14NSNotification", "userInfo"] +- !private ["CSo20NSNotificationCenter", "addObserver"] +- !private ["CSo20NSNotificationCenter", "defaultCenter"] +- !private ["CSo20NSNotificationCenter", "removeObserver"] +- !private ["CSo8NSObject", "UUIDString"] +- !private ["CSo8NSObject", "addObserver"] +- !private ["CSo8NSObject", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo8NSObject", "boolForKey"] +- !private ["CSo8NSObject", "currentDevice"] +- !private ["CSo8NSObject", "defaultCenter"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "endBackgroundTask"] +- !private ["CSo8NSObject", "identifierForVendor"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isEmpty"] +- !private ["CSo8NSObject", "networkActivityIndicatorVisible"] +- !private ["CSo8NSObject", "removeObserver"] +- !private ["CSo8NSObject", "setBool"] +- !private ["CSo8NSObject", "sharedApplication"] +- !private ["CSo8NSObject", "standardUserDefaults"] +- !private ["CSo8NSObject", "synchronize"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["CSo8NSObject", "userInfo"] +- !private ["PSo16NSObjectProtocol", "UUIDString"] +- !private ["PSo16NSObjectProtocol", "addObserver"] +- !private ["PSo16NSObjectProtocol", "beginBackgroundTaskWithExpirationHandler"] +- !private ["PSo16NSObjectProtocol", "boolForKey"] +- !private ["PSo16NSObjectProtocol", "currentDevice"] +- !private ["PSo16NSObjectProtocol", "defaultCenter"] +- !private ["PSo16NSObjectProtocol", "endBackgroundTask"] +- !private ["PSo16NSObjectProtocol", "identifierForVendor"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isEmpty"] +- !private ["PSo16NSObjectProtocol", "networkActivityIndicatorVisible"] +- !private ["PSo16NSObjectProtocol", "removeObserver"] +- !private ["PSo16NSObjectProtocol", "setBool"] +- !private ["PSo16NSObjectProtocol", "sharedApplication"] +- !private ["PSo16NSObjectProtocol", "standardUserDefaults"] +- !private ["PSo16NSObjectProtocol", "synchronize"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "userInfo"] +- !private ["PSo14NSSecureCoding", "UUIDString"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "isEmpty"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSString", "isEmpty"] +- !private ["CSo6NSUUID", "UUIDString"] +- !private ["CSo6NSUUID", "init"] +- !private ["CSo14NSUserDefaults", "boolForKey"] +- !private ["CSo14NSUserDefaults", "setBool"] +- !private ["CSo14NSUserDefaults", "standardUserDefaults"] +- !private ["CSo14NSUserDefaults", "synchronize"] +- !private ["C8Mixpanel7Network", "trackIntegration"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16OutputStreamType", "isEmpty"] +- !private ["C8Mixpanel6People", "distinctId"] +- !private ["C8Mixpanel6People", "init"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["C8Mixpanel11Persistence", "archive"] +- !private ["C8Mixpanel11Persistence", "archiveEvents"] +- !private ["C8Mixpanel11Persistence", "archivePeople"] +- !private ["C8Mixpanel11Persistence", "archiveProperties"] +- !private ["C8Mixpanel11Persistence", "unarchive"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAll"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- !private ["Ps16RawRepresentable", "Warning"] +- ["Ps12SequenceType", "Element"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeAll"] +- !private ["Ps12SequenceType", "subscript"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Streamable", "isEmpty"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["SS", "isEmpty"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps30StringInterpolationConvertible", "isEmpty"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "isEmpty"] +- !private ["C8Mixpanel5Track", "clearSuperProperties"] +- !private ["C8Mixpanel5Track", "clearTimedEvents"] +- !private ["C8Mixpanel5Track", "init"] +- !private ["C8Mixpanel5Track", "registerSuperProperties"] +- !private ["C8Mixpanel5Track", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel5Track", "time"] +- !private ["C8Mixpanel5Track", "track"] +- !private ["C8Mixpanel5Track", "unregisterSuperProperty"] +- !private ["CSo13UIApplication", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo13UIApplication", "endBackgroundTask"] +- !private ["CSo13UIApplication", "networkActivityIndicatorVisible"] +- !private ["CSo13UIApplication", "sharedApplication"] +- !private ["CSo8UIDevice", "currentDevice"] +- !private ["CSo8UIDevice", "identifierForVendor"] +- !private ["CSo11UIResponder", "beginBackgroundTaskWithExpirationHandler"] +- !private ["CSo11UIResponder", "endBackgroundTask"] +- !private ["CSo11UIResponder", "networkActivityIndicatorVisible"] +- !private ["CSo11UIResponder", "sharedApplication"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "removeAll"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "removeAll"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAll"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "removeAll"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- "P8Mixpanel12AppLifecycle" +- !private "V8Mixpanel18ArchivedProperties" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "V8Mixpanel8BasePath" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "C8Mixpanel5Flush" +- "P8Mixpanel13FlushDelegate" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- !private "O8Mixpanel8LogLevel" +- !private "C8Mixpanel6Logger" +- "Ps14MirrorPathType" +- "P8Mixpanel16MixpanelDelegate" +- "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- !private "PSo16NSMutableCopying" +- !private "CSo14NSNotification" +- !private "CSo20NSNotificationCenter" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo6NSUUID" +- !private "CSo14NSUserDefaults" +- !private "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "C8Mixpanel5Track" +- !private "CSo13UIApplication" +- !private "CSo8UIDevice" +- !private "CSo11UIResponder" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "727686c32d7ec615879f267f44d5ae62" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftdoc new file mode 100644 index 00000000..9551911f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftmodule new file mode 100644 index 00000000..e2e5b7d3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.d new file mode 100644 index 00000000..4a8bd754 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelPropertyConvertible.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelPropertyConvertible.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelPropertyConvertible.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.dia new file mode 100644 index 00000000..5ed02731 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.o new file mode 100644 index 00000000..a5ebf3ab Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.swiftdeps new file mode 100644 index 00000000..e3f9f41b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible.swiftdeps @@ -0,0 +1,210 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PropertyArray" +- "PropertyDictionary" +- "MixpanelPropertyConvertible" +- "MixpanelNumberConvertible" +- "assertPropertyTypes" +provides-nominal: +- "P8Mixpanel27MixpanelPropertyConvertible" +- "P8Mixpanel25MixpanelNumberConvertible" +- "SS" +- "Si" +- "Su" +- "Sd" +- "Sf" +- "Sb" +- "CSo6NSNull" +- "V10Foundation4Date" +- "V10Foundation3URL" +- "Sa" +- "Vs10Dictionary" +provides-member: +- ["P8Mixpanel27MixpanelPropertyConvertible", ""] +- ["P8Mixpanel25MixpanelNumberConvertible", ""] +- ["SS", ""] +- ["Si", ""] +- ["Su", ""] +- ["Sd", ""] +- ["Sf", ""] +- ["Sb", ""] +- ["CSo6NSNull", ""] +- ["V10Foundation4Date", ""] +- ["V10Foundation3URL", ""] +- ["Sa", ""] +- ["Vs10Dictionary", ""] +provides-dynamic-lookup: +depends-top-level: +- "Int" +- "Any" +- !private "||" +- "Bool" +- "PropertyDictionary" +- "Dictionary" +- "Date" +- "NSNull" +- "assertPropertyTypes" +- "String" +- "Double" +- "MixpanelNumberConvertible" +- !private "StringLiteralType" +- "Properties" +- "UInt" +- "URL" +- "Float" +- !private "!=" +- !private "MPAssert" +- "PropertyArray" +- "Array" +- "MixpanelPropertyConvertible" +depends-member: +- !private ["Ps9AnyObject", "init"] +- ["Sa", "deinit"] +- ["Sb", "deinit"] +- !private ["Ps7CVarArg", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Collection", "Iterator"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Iterator"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- ["Ps28CustomDebugStringConvertible", "some"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "Element"] +- !private ["Ps17CustomReflectable", "Iterator"] +- !private ["Ps17CustomReflectable", "init"] +- ["Ps17CustomReflectable", "some"] +- !private ["Ps23CustomStringConvertible", "Iterator"] +- !private ["Ps23CustomStringConvertible", "init"] +- ["V10Foundation4Date", "deinit"] +- !private ["Vs10Dictionary", "Iterator"] +- ["Vs10Dictionary", "deinit"] +- !private ["Vs18DictionaryIterator", "Element"] +- !private ["Ps28DictionaryLiteralConvertible", "Iterator"] +- ["Sd", "deinit"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Sf", "deinit"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps9Indexable", "Iterator"] +- !private ["Ps13IndexableBase", "Iterator"] +- ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps16IteratorProtocol", "Element"] +- !private ["Ps10MirrorPath", "init"] +- ["P8Mixpanel25MixpanelNumberConvertible", ""] +- !private ["P8Mixpanel27MixpanelPropertyConvertible", "Iterator"] +- ["P8Mixpanel27MixpanelPropertyConvertible", "deinit"] +- !private ["P8Mixpanel27MixpanelPropertyConvertible", "init"] +- ["P8Mixpanel27MixpanelPropertyConvertible", ""] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- ["CSo6NSNull", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "init"] +- ["Ps21NilLiteralConvertible", "some"] +- !private ["Sq", "deinit"] +- ["Sq", "some"] +- !private ["Ps12OutputStream", "init"] +- !private ["Ps8Sequence", "Iterator"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- ["V10Foundation3URL", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Iterator"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +depends-nominal: +- !private "Ps9AnyObject" +- "Sa" +- "Sb" +- !private "Ps7CVarArg" +- !private "Vs9Character" +- !private "Ps10Collection" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- "Ps17CustomReflectable" +- !private "Ps23CustomStringConvertible" +- "V10Foundation4Date" +- "Vs10Dictionary" +- !private "Vs18DictionaryIterator" +- !private "Ps28DictionaryLiteralConvertible" +- "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- "Sf" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Ps13IndexableBase" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps16IteratorProtocol" +- !private "Ps10MirrorPath" +- "P8Mixpanel25MixpanelNumberConvertible" +- "P8Mixpanel27MixpanelPropertyConvertible" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- "CSo6NSNull" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps12OutputStream" +- !private "Ps8Sequence" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- "V10Foundation3URL" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/SwiftOnoneSupport.swiftmodule" +interface-hash: "4eb757ff120977cb5abe31c26fba6a26" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftdoc new file mode 100644 index 00000000..4f6a7e81 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftmodule new file mode 100644 index 00000000..98109291 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelPropertyConvertible~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_dependency_info.dat new file mode 100644 index 00000000..fdb7892b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.d new file mode 100644 index 00000000..cad18ad0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o new file mode 100644 index 00000000..c0fa29d0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftdoc new file mode 100644 index 00000000..60a95573 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftmodule new file mode 100644 index 00000000..612bf3d3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.d new file mode 100644 index 00000000..5f09ee43 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o new file mode 100644 index 00000000..3c5d41e3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.swiftdeps new file mode 100644 index 00000000..c4e96d07 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.swiftdeps @@ -0,0 +1,567 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "BasePath" +- "Method" +- "Resource" +- "Reason" +- "Network" +provides-nominal: +- "V8Mixpanel8BasePath" +- "O8Mixpanel6Method" +- "V8Mixpanel8Resource" +- "O8Mixpanel6Reason" +- "C8Mixpanel7Network" +provides-member: +- ["V8Mixpanel8BasePath", ""] +- ["O8Mixpanel6Method", ""] +- ["V8Mixpanel8Resource", ""] +- ["O8Mixpanel6Reason", ""] +- ["C8Mixpanel7Network", ""] +provides-dynamic-lookup: +depends-top-level: +- "String" +- "BasePath" +- "Network" +- "NSURL" +- "NSError" +- !private "NSMutableURLRequest" +- !private "Array" +- !private "NSUTF8StringEncoding" +- "StringLiteralType" +- !private "NSURLRequest" +- "Method" +- "==" +- !private "~=" +- "Reason" +- !private "Logger" +- !private "NSHTTPURLResponse" +- "Resource" +- !private "FlushType" +- !private "Dictionary" +- !private "NSURLSession" +- !private "??" +- !private "Void" +- "Int" +- "NSData" +- "Bool" +- "NSURLResponse" +- "BooleanLiteralType" +- !private "JSONHandler" +depends-member: +- !private ["Ps9AnyObject", "BasePath"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "FlushType"] +- !private ["Ps9AnyObject", "HTTPBody"] +- !private ["Ps9AnyObject", "HTTPMethod"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "JSONHandler"] +- !private ["Ps9AnyObject", "Key"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "Method"] +- !private ["Ps9AnyObject", "NSMutableURLRequest"] +- !private ["Ps9AnyObject", "NSURLSession"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "Network"] +- !private ["Ps9AnyObject", "Reason"] +- !private ["Ps9AnyObject", "Resource"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "URLByAppendingPathComponent"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "apiRequest"] +- !private ["Ps9AnyObject", "buildResource"] +- !private ["Ps9AnyObject", "buildURLRequest"] +- !private ["Ps9AnyObject", "dataTaskWithRequest"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "debug"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "encodeAPIData"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "resume"] +- !private ["Ps9AnyObject", "setValue"] +- !private ["Ps9AnyObject", "sharedSession"] +- !private ["Ps9AnyObject", "statusCode"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "deinit"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- ["V8Mixpanel8BasePath", "MixpanelAPI"] +- ["V8Mixpanel8BasePath", "NSURL"] +- ["V8Mixpanel8BasePath", "String"] +- ["V8Mixpanel8BasePath", "buildURL"] +- ["V8Mixpanel8BasePath", "init"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "HTTPBody"] +- !private ["Ps11CVarArgType", "HTTPMethod"] +- !private ["Ps11CVarArgType", "Key"] +- !private ["Ps11CVarArgType", "URLByAppendingPathComponent"] +- !private ["Ps11CVarArgType", "Value"] +- !private ["Ps11CVarArgType", "dataTaskWithRequest"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "resume"] +- !private ["Ps11CVarArgType", "setValue"] +- !private ["Ps11CVarArgType", "sharedSession"] +- !private ["Ps11CVarArgType", "statusCode"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "HTTPBody"] +- !private ["Ps28CustomDebugStringConvertible", "HTTPMethod"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "dataTaskWithRequest"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "resume"] +- !private ["Ps28CustomDebugStringConvertible", "setValue"] +- !private ["Ps28CustomDebugStringConvertible", "sharedSession"] +- !private ["Ps28CustomDebugStringConvertible", "statusCode"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "HTTPBody"] +- !private ["Ps23CustomStringConvertible", "HTTPMethod"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "dataTaskWithRequest"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "resume"] +- !private ["Ps23CustomStringConvertible", "setValue"] +- !private ["Ps23CustomStringConvertible", "sharedSession"] +- !private ["Ps23CustomStringConvertible", "statusCode"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "HTTPBody"] +- !private ["Ps9Equatable", "HTTPMethod"] +- !private ["Ps9Equatable", "Key"] +- !private ["Ps9Equatable", "POST"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "URLByAppendingPathComponent"] +- !private ["Ps9Equatable", "Value"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "dataTaskWithRequest"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "resume"] +- !private ["Ps9Equatable", "setValue"] +- !private ["Ps9Equatable", "sharedSession"] +- !private ["Ps9Equatable", "statusCode"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["O8Mixpanel9FlushType", "Events"] +- !private ["O8Mixpanel9FlushType", "deinit"] +- !private ["O8Mixpanel9FlushType", "rawValue"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "HTTPBody"] +- !private ["Ps8Hashable", "HTTPMethod"] +- !private ["Ps8Hashable", "Key"] +- !private ["Ps8Hashable", "POST"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "URLByAppendingPathComponent"] +- !private ["Ps8Hashable", "Value"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "dataTaskWithRequest"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "resume"] +- !private ["Ps8Hashable", "setValue"] +- !private ["Ps8Hashable", "sharedSession"] +- !private ["Ps8Hashable", "statusCode"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "Value"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel11JSONHandler", "encodeAPIData"] +- !private ["C8Mixpanel6Logger", "debug"] +- ["O8Mixpanel6Method", "GET"] +- ["O8Mixpanel6Method", "POST"] +- ["O8Mixpanel6Method", "RawValue"] +- ["O8Mixpanel6Method", "deinit"] +- ["O8Mixpanel6Method", "hashValue"] +- ["O8Mixpanel6Method", "init"] +- ["O8Mixpanel6Method", "rawValue"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["PSo8NSCoding", "HTTPBody"] +- !private ["PSo8NSCoding", "HTTPMethod"] +- !private ["PSo8NSCoding", "Key"] +- !private ["PSo8NSCoding", "URLByAppendingPathComponent"] +- !private ["PSo8NSCoding", "Value"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "setValue"] +- !private ["PSo8NSCoding", "statusCode"] +- !private ["PSo9NSCopying", "HTTPBody"] +- !private ["PSo9NSCopying", "HTTPMethod"] +- !private ["PSo9NSCopying", "Key"] +- !private ["PSo9NSCopying", "URLByAppendingPathComponent"] +- !private ["PSo9NSCopying", "Value"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "resume"] +- !private ["PSo9NSCopying", "setValue"] +- !private ["PSo9NSCopying", "statusCode"] +- !private ["CSo12NSDictionary", "Key"] +- !private ["CSo12NSDictionary", "Value"] +- !private ["PSo17NSFastEnumeration", "Key"] +- !private ["PSo17NSFastEnumeration", "Value"] +- !private ["CSo17NSHTTPURLResponse", "statusCode"] +- !private ["PSo16NSMutableCopying", "HTTPBody"] +- !private ["PSo16NSMutableCopying", "HTTPMethod"] +- !private ["PSo16NSMutableCopying", "Key"] +- !private ["PSo16NSMutableCopying", "Value"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "setValue"] +- !private ["CSo19NSMutableURLRequest", "HTTPBody"] +- !private ["CSo19NSMutableURLRequest", "HTTPMethod"] +- !private ["CSo19NSMutableURLRequest", "deinit"] +- !private ["CSo19NSMutableURLRequest", "init"] +- !private ["CSo19NSMutableURLRequest", "setValue"] +- !private ["CSo8NSObject", "HTTPBody"] +- !private ["CSo8NSObject", "HTTPMethod"] +- !private ["CSo8NSObject", "Key"] +- !private ["CSo8NSObject", "URLByAppendingPathComponent"] +- !private ["CSo8NSObject", "Value"] +- !private ["CSo8NSObject", "dataTaskWithRequest"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "resume"] +- !private ["CSo8NSObject", "setValue"] +- !private ["CSo8NSObject", "sharedSession"] +- !private ["CSo8NSObject", "statusCode"] +- !private ["PSo16NSObjectProtocol", "HTTPBody"] +- !private ["PSo16NSObjectProtocol", "HTTPMethod"] +- !private ["PSo16NSObjectProtocol", "Key"] +- !private ["PSo16NSObjectProtocol", "URLByAppendingPathComponent"] +- !private ["PSo16NSObjectProtocol", "Value"] +- !private ["PSo16NSObjectProtocol", "dataTaskWithRequest"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "resume"] +- !private ["PSo16NSObjectProtocol", "setValue"] +- !private ["PSo16NSObjectProtocol", "sharedSession"] +- !private ["PSo16NSObjectProtocol", "statusCode"] +- !private ["PSo14NSSecureCoding", "HTTPBody"] +- !private ["PSo14NSSecureCoding", "HTTPMethod"] +- !private ["PSo14NSSecureCoding", "Key"] +- !private ["PSo14NSSecureCoding", "URLByAppendingPathComponent"] +- !private ["PSo14NSSecureCoding", "Value"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "setValue"] +- !private ["PSo14NSSecureCoding", "statusCode"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "URLByAppendingPathComponent"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo12NSURLRequest", "HTTPBody"] +- !private ["CSo12NSURLRequest", "HTTPMethod"] +- !private ["CSo12NSURLRequest", "init"] +- !private ["CSo12NSURLRequest", "setValue"] +- !private ["CSo13NSURLResponse", "statusCode"] +- !private ["CSo12NSURLSession", "dataTaskWithRequest"] +- !private ["CSo12NSURLSession", "sharedSession"] +- !private ["CSo20NSURLSessionDataTask", "resume"] +- !private ["CSo16NSURLSessionTask", "resume"] +- !private ["C8Mixpanel7Network", "BasePath"] +- ["C8Mixpanel7Network", "Bool"] +- !private ["C8Mixpanel7Network", "FlushType"] +- !private ["C8Mixpanel7Network", "Int"] +- !private ["C8Mixpanel7Network", "JSONHandler"] +- !private ["C8Mixpanel7Network", "Logger"] +- ["C8Mixpanel7Network", "Method"] +- ["C8Mixpanel7Network", "NSData"] +- !private ["C8Mixpanel7Network", "NSHTTPURLResponse"] +- !private ["C8Mixpanel7Network", "NSMutableURLRequest"] +- !private ["C8Mixpanel7Network", "NSURLRequest"] +- ["C8Mixpanel7Network", "NSURLResponse"] +- !private ["C8Mixpanel7Network", "NSURLSession"] +- !private ["C8Mixpanel7Network", "NSUTF8StringEncoding"] +- !private ["C8Mixpanel7Network", "Network"] +- ["C8Mixpanel7Network", "Reason"] +- ["C8Mixpanel7Network", "Resource"] +- ["C8Mixpanel7Network", "String"] +- !private ["C8Mixpanel7Network", "Void"] +- ["C8Mixpanel7Network", "apiRequest"] +- ["C8Mixpanel7Network", "buildResource"] +- !private ["C8Mixpanel7Network", "buildURLRequest"] +- ["C8Mixpanel7Network", "deinit"] +- ["C8Mixpanel7Network", "init"] +- ["C8Mixpanel7Network", "trackIntegration"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "POST"] +- ["Ps16RawRepresentable", "RawValue"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- ["O8Mixpanel6Reason", "Int"] +- ["O8Mixpanel6Reason", "NSError"] +- ["O8Mixpanel6Reason", "NoData"] +- ["O8Mixpanel6Reason", "NotOKStatusCode"] +- ["O8Mixpanel6Reason", "Other"] +- ["O8Mixpanel6Reason", "ParseError"] +- ["V8Mixpanel8Resource", "A"] +- ["V8Mixpanel8Resource", "Method"] +- ["V8Mixpanel8Resource", "NSData"] +- ["V8Mixpanel8Resource", "String"] +- ["V8Mixpanel8Resource", "headers"] +- ["V8Mixpanel8Resource", "init"] +- ["V8Mixpanel8Resource", "method"] +- ["V8Mixpanel8Resource", "parse"] +- ["V8Mixpanel8Resource", "path"] +- ["V8Mixpanel8Resource", "requestBody"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "hashValue"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "dataUsingEncoding"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps32_FileReferenceLiteralConvertible", "URLByAppendingPathComponent"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "URLByAppendingPathComponent"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- "V8Mixpanel8BasePath" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "O8Mixpanel9FlushType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel11JSONHandler" +- !private "C8Mixpanel6Logger" +- "O8Mixpanel6Method" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSDictionary" +- !private "PSo17NSFastEnumeration" +- !private "CSo17NSHTTPURLResponse" +- !private "PSo16NSMutableCopying" +- !private "CSo19NSMutableURLRequest" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo12NSURLRequest" +- !private "CSo13NSURLResponse" +- !private "CSo12NSURLSession" +- !private "CSo20NSURLSessionDataTask" +- !private "CSo16NSURLSessionTask" +- "C8Mixpanel7Network" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- "O8Mixpanel6Reason" +- "V8Mixpanel8Resource" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "c70fc59c0c82bc82a2991974cec3735d" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftmodule new file mode 100644 index 00000000..415b5db2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.d new file mode 100644 index 00000000..ebec9b96 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o new file mode 100644 index 00000000..5cf349e0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.swiftdeps new file mode 100644 index 00000000..27cdcf03 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.swiftdeps @@ -0,0 +1,664 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "People" +provides-nominal: +- "C8Mixpanel6People" +provides-member: +- ["C8Mixpanel6People", ""] +provides-dynamic-lookup: +depends-top-level: +- "BooleanLiteralType" +- !private "+=" +- "Queue" +- "NSData" +- !private "QueueConstants" +- "String" +- "AnyObject" +- !private "dispatch_async" +- !private "Float" +- "Properties" +- !private "Int" +- !private "..<" +- !private "Persistence" +- !private "UInt" +- !private "*" +- !private "MPAssert" +- !private "CChar" +- "Double" +- !private "||" +- !private "Dictionary" +- !private "UnsafePointer" +- !private "!" +- !private "round" +- !private "Array" +- "StringLiteralType" +- !private ">" +- !private "==" +- !private "AutomaticProperties" +- !private "NSDate" +- !private "Track" +- "dispatch_queue_t" +- "People" +depends-member: +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "MPAssert"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "Persistence"] +- !private ["Ps9AnyObject", "Properties"] +- ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "UnsafePointer"] +- !private ["Ps9AnyObject", "addPeopleObject"] +- !private ["Ps9AnyObject", "addPeopleRecordToQueueWithAction"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "assertPropertyTypes"] +- !private ["Ps9AnyObject", "bytes"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "deviceTokenDataToString"] +- !private ["Ps9AnyObject", "dispatch_async"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "ignoreTime"] +- !private ["Ps9AnyObject", "increment"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "length"] +- !private ["Ps9AnyObject", "peopleProperties"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "round"] +- !private ["Ps9AnyObject", "serialQueue"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- ["Sa", "Generator"] +- ["Sa", "Index"] +- ["Sa", "SubSequence"] +- ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- ["Sa", "init"] +- !private ["Sa", "removeAtIndex"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- ["Ps23ArrayLiteralConvertible", "Generator"] +- ["Ps23ArrayLiteralConvertible", "Index"] +- ["Ps23ArrayLiteralConvertible", "SubSequence"] +- ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "removeAtIndex"] +- ["Vs10ArraySlice", "Generator"] +- ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "peopleProperties"] +- ["Ps22BidirectionalIndexType", "Distance"] +- ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps22BidirectionalIndexType", "subscript"] +- ["Ps21BitwiseOperationsType", "Distance"] +- ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Element"] +- ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "bytes"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "length"] +- !private ["Ps11CVarArgType", "subscript"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Elements"] +- ["Ps14CollectionType", "Generator"] +- ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "filter"] +- ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "removeAtIndex"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps14CollectionType", "values"] +- ["Ps10Comparable", "Distance"] +- ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- ["Ps28CustomDebugStringConvertible", "Generator"] +- ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "bytes"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "length"] +- !private ["Ps28CustomDebugStringConvertible", "removeAtIndex"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "values"] +- ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- ["Ps23CustomStringConvertible", "Generator"] +- ["Ps23CustomStringConvertible", "Index"] +- ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "bytes"] +- !private ["Ps23CustomStringConvertible", "count"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "length"] +- !private ["Ps23CustomStringConvertible", "removeAtIndex"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "values"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "values"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "values"] +- !private ["Sd", "deinit"] +- ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Generator"] +- ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "bytes"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "length"] +- !private ["Ps9Equatable", "subscript"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- ["Ps16ForwardIndexType", "Distance"] +- ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps16ForwardIndexType", "subscript"] +- ["Ps13GeneratorType", "Element"] +- !private ["Vs16HalfOpenInterval", "deinit"] +- ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Element"] +- ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "bytes"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "length"] +- !private ["Ps8Hashable", "subscript"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Elements"] +- ["Ps9Indexable", "Generator"] +- ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "filter"] +- ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "removeAtIndex"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "values"] +- ["Vs17IndexingGenerator", "Element"] +- ["Si", "Distance"] +- ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Si", "deinit"] +- !private ["Si", "init"] +- ["Ps21IntegerArithmeticType", "Distance"] +- ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "init"] +- ["Ps25IntegerLiteralConvertible", "Distance"] +- ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- ["Ps11IntegerType", "Distance"] +- ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps18LazyCollectionType", "Elements"] +- !private ["Ps18LazyCollectionType", "Generator"] +- !private ["Ps18LazyCollectionType", "Index"] +- !private ["Ps18LazyCollectionType", "SubSequence"] +- !private ["Ps18LazyCollectionType", "_Element"] +- !private ["Ps18LazyCollectionType", "filter"] +- !private ["Ps18LazyCollectionType", "isEmpty"] +- !private ["Vs20LazyFilterCollection", "Generator"] +- !private ["Vs20LazyFilterCollection", "Index"] +- !private ["Vs20LazyFilterCollection", "SubSequence"] +- !private ["Vs20LazyFilterCollection", "_Element"] +- !private ["Vs20LazyFilterCollection", "isEmpty"] +- !private ["Vs15LazyFilterIndex", "Distance"] +- !private ["Vs15LazyFilterIndex", "_DisabledRangeIndex"] +- !private ["Vs17LazyMapCollection", "Elements"] +- !private ["Vs17LazyMapCollection", "Generator"] +- !private ["Vs17LazyMapCollection", "Index"] +- !private ["Vs17LazyMapCollection", "SubSequence"] +- !private ["Vs17LazyMapCollection", "_Element"] +- !private ["Vs17LazyMapCollection", "deinit"] +- !private ["Vs17LazyMapCollection", "filter"] +- !private ["Vs16LazyMapGenerator", "Element"] +- !private ["Ps16LazySequenceType", "Elements"] +- !private ["Ps16LazySequenceType", "Generator"] +- !private ["Ps16LazySequenceType", "Index"] +- !private ["Ps16LazySequenceType", "SubSequence"] +- !private ["Ps16LazySequenceType", "_Element"] +- !private ["Ps16LazySequenceType", "filter"] +- !private ["Ps16LazySequenceType", "isEmpty"] +- ["Ps14MirrorPathType", "Distance"] +- ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- ["Ps21MutableCollectionType", "Generator"] +- ["Ps21MutableCollectionType", "Index"] +- ["Ps21MutableCollectionType", "SubSequence"] +- ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "removeAtIndex"] +- !private ["Ps16MutableIndexable", "Element"] +- ["Ps16MutableIndexable", "Generator"] +- ["Ps16MutableIndexable", "Index"] +- ["Ps16MutableIndexable", "SubSequence"] +- ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "removeAtIndex"] +- !private ["Ps16MutableSliceable", "Element"] +- ["Ps16MutableSliceable", "Generator"] +- ["Ps16MutableSliceable", "Index"] +- ["Ps16MutableSliceable", "SubSequence"] +- ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "removeAtIndex"] +- !private ["CSo7NSArray", "Element"] +- !private ["PSo8NSCoding", "Element"] +- !private ["PSo8NSCoding", "bytes"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "length"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "Element"] +- !private ["PSo9NSCopying", "bytes"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "length"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSData", "bytes"] +- !private ["CSo6NSData", "length"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["PSo17NSFastEnumeration", "Element"] +- !private ["PSo16NSMutableCopying", "Element"] +- !private ["PSo16NSMutableCopying", "bytes"] +- !private ["PSo16NSMutableCopying", "length"] +- !private ["CSo8NSObject", "Element"] +- !private ["CSo8NSObject", "bytes"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "length"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "bytes"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "length"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo14NSSecureCoding", "Element"] +- !private ["PSo14NSSecureCoding", "bytes"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "length"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps21NilLiteralConvertible", "init"] +- !private ["Ps21NilLiteralConvertible", "subscript"] +- ["Sq", "Some"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel6People", "AnyObject"] +- !private ["C8Mixpanel6People", "AutomaticProperties"] +- !private ["C8Mixpanel6People", "CChar"] +- ["C8Mixpanel6People", "Double"] +- !private ["C8Mixpanel6People", "Float"] +- !private ["C8Mixpanel6People", "Int"] +- !private ["C8Mixpanel6People", "MPAssert"] +- ["C8Mixpanel6People", "NSData"] +- !private ["C8Mixpanel6People", "NSDate"] +- !private ["C8Mixpanel6People", "Persistence"] +- ["C8Mixpanel6People", "Properties"] +- ["C8Mixpanel6People", "Queue"] +- !private ["C8Mixpanel6People", "QueueConstants"] +- ["C8Mixpanel6People", "String"] +- !private ["C8Mixpanel6People", "Track"] +- !private ["C8Mixpanel6People", "UInt"] +- !private ["C8Mixpanel6People", "UnsafePointer"] +- ["C8Mixpanel6People", "addPeopleObject"] +- ["C8Mixpanel6People", "addPeopleRecordToQueueWithAction"] +- ["C8Mixpanel6People", "addPushDeviceToken"] +- ["C8Mixpanel6People", "apiToken"] +- ["C8Mixpanel6People", "append"] +- ["C8Mixpanel6People", "clearCharges"] +- ["C8Mixpanel6People", "deinit"] +- ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "deviceTokenDataToString"] +- !private ["C8Mixpanel6People", "dispatch_async"] +- ["C8Mixpanel6People", "dispatch_queue_t"] +- ["C8Mixpanel6People", "distinctId"] +- ["C8Mixpanel6People", "ignoreTime"] +- ["C8Mixpanel6People", "increment"] +- ["C8Mixpanel6People", "init"] +- ["C8Mixpanel6People", "merge"] +- ["C8Mixpanel6People", "peopleQueue"] +- ["C8Mixpanel6People", "remove"] +- ["C8Mixpanel6People", "removePushDeviceToken"] +- !private ["C8Mixpanel6People", "round"] +- ["C8Mixpanel6People", "serialQueue"] +- ["C8Mixpanel6People", "set"] +- ["C8Mixpanel6People", "setOnce"] +- ["C8Mixpanel6People", "trackCharge"] +- ["C8Mixpanel6People", "unidentifiedQueue"] +- ["C8Mixpanel6People", "union"] +- ["C8Mixpanel6People", "unset"] +- !private ["C8Mixpanel11Persistence", "archivePeople"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- ["Ps21RandomAccessIndexType", "Distance"] +- ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps21RandomAccessIndexType", "subscript"] +- !private ["Vs5Range", "Generator"] +- !private ["Vs14RangeGenerator", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- ["Ps30RangeReplaceableCollectionType", "Generator"] +- ["Ps30RangeReplaceableCollectionType", "Index"] +- ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAtIndex"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Elements"] +- ["Ps12SequenceType", "Generator"] +- ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "filter"] +- ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "removeAtIndex"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps12SequenceType", "values"] +- ["Ps17SignedIntegerType", "Distance"] +- ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps17SignedIntegerType", "init"] +- ["Ps16SignedNumberType", "Distance"] +- ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- ["Ps10Strideable", "Distance"] +- ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "init"] +- !private ["Ps10Strideable", "subscript"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["C8Mixpanel5Track", "assertPropertyTypes"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["SP", "init"] +- !private ["SP", "subscript"] +- !private ["Ps10_ArrayType", "Element"] +- ["Ps10_ArrayType", "Generator"] +- ["Ps10_ArrayType", "Index"] +- ["Ps10_ArrayType", "SubSequence"] +- ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "removeAtIndex"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- ["Ps24_DestructorSafeContainer", "Generator"] +- ["Ps24_DestructorSafeContainer", "Index"] +- ["Ps24_DestructorSafeContainer", "SubSequence"] +- ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "removeAtIndex"] +- ["Ps14_Incrementable", "Distance"] +- ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps14_Incrementable", "subscript"] +- ["Ps22_IntegerArithmeticType", "Distance"] +- ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- ["Ps12_IntegerType", "Distance"] +- ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "init"] +- ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- ["Ps21_ObjectiveCBridgeable", "Generator"] +- ["Ps21_ObjectiveCBridgeable", "Index"] +- ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAtIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "values"] +- !private ["Ps12_PointerType", "init"] +- !private ["Ps12_PointerType", "subscript"] +- ["Ps22_RandomAccessAmbiguity", "Distance"] +- ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "subscript"] +- ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- ["Ps12_Reflectable", "Generator"] +- ["Ps12_Reflectable", "Index"] +- ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "removeAtIndex"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps12_Reflectable", "values"] +- ["Ps18_SignedIntegerType", "Distance"] +- ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- "Ps22BidirectionalIndexType" +- "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- "Ps14CollectionType" +- "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- "Ps16ForwardIndexType" +- "Ps13GeneratorType" +- !private "Vs16HalfOpenInterval" +- "Ps8Hashable" +- "Ps9Indexable" +- "Vs17IndexingGenerator" +- "Si" +- "Ps21IntegerArithmeticType" +- "Ps25IntegerLiteralConvertible" +- "Ps11IntegerType" +- !private "Ps18LazyCollectionType" +- !private "Vs20LazyFilterCollection" +- !private "Vs15LazyFilterIndex" +- !private "Vs17LazyMapCollection" +- !private "Vs16LazyMapGenerator" +- !private "Ps16LazySequenceType" +- "Ps14MirrorPathType" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- !private "CSo7NSArray" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "CSo6NSDate" +- !private "PSo17NSFastEnumeration" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- !private "V8Mixpanel14QueueConstants" +- "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Vs14RangeGenerator" +- "Ps30RangeReplaceableCollectionType" +- "Ps12SequenceType" +- "Ps17SignedIntegerType" +- "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "C8Mixpanel5Track" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "SP" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- "Ps14_Incrementable" +- "Ps22_IntegerArithmeticType" +- "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Ps12_PointerType" +- "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "202d60d3f32862b065121c5824127a85" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftdoc new file mode 100644 index 00000000..2f7cf8e2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftmodule new file mode 100644 index 00000000..9d1d398b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.d new file mode 100644 index 00000000..576acc82 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o new file mode 100644 index 00000000..edcb2f19 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.swiftdeps new file mode 100644 index 00000000..3353de0a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.swiftdeps @@ -0,0 +1,583 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ArchivedProperties" +- "Persistence" +provides-nominal: +- "V8Mixpanel18ArchivedProperties" +- "C8Mixpanel11Persistence" +- "OC8Mixpanel11Persistence11ArchiveType" +provides-member: +- ["V8Mixpanel18ArchivedProperties", ""] +- ["C8Mixpanel11Persistence", ""] +- ["OC8Mixpanel11Persistence11ArchiveType", ""] +provides-dynamic-lookup: +depends-top-level: +- "Persistence" +- !private "!" +- "AnyObject" +- "Queue" +- !private "FloatLiteralType" +- !private "NSSearchPathDirectory" +- !private "Logger" +- "Properties" +- !private "NSFileManager" +- !private "??" +- "String" +- !private "UnicodeScalarType" +- "ArchivedProperties" +- !private "NSKeyedUnarchiver" +- !private "IntegerLiteralType" +- !private "NSKeyedArchiver" +- "StringLiteralType" +- !private "~=" +- "==" +- !private "Array" +- !private "NSSearchPathDomainMask" +depends-member: +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "NSFileManager"] +- !private ["Ps9AnyObject", "NSKeyedArchiver"] +- !private ["Ps9AnyObject", "NSKeyedUnarchiver"] +- !private ["Ps9AnyObject", "NSSearchPathDirectory"] +- !private ["Ps9AnyObject", "NSSearchPathDomainMask"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "URLByAppendingPathComponent"] +- !private ["Ps9AnyObject", "URLsForDirectory"] +- !private ["Ps9AnyObject", "archiveEvents"] +- !private ["Ps9AnyObject", "archivePeople"] +- !private ["Ps9AnyObject", "archiveProperties"] +- !private ["Ps9AnyObject", "archiveRootObject"] +- !private ["Ps9AnyObject", "archiveToFile"] +- !private ["Ps9AnyObject", "defaultManager"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "filePathFor"] +- !private ["Ps9AnyObject", "filePathWithType"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "path"] +- !private ["Ps9AnyObject", "removeItemAtPath"] +- !private ["Ps9AnyObject", "unarchiveEvents"] +- !private ["Ps9AnyObject", "unarchiveObjectWithFile"] +- !private ["Ps9AnyObject", "unarchivePeople"] +- !private ["Ps9AnyObject", "unarchiveProperties"] +- !private ["Ps9AnyObject", "unarchiveWithFilePath"] +- !private ["Ps9AnyObject", "unarchiveWithType"] +- ["Ps9AnyObject", ""] +- ["OC8Mixpanel11Persistence11ArchiveType", "Events"] +- ["OC8Mixpanel11Persistence11ArchiveType", "People"] +- ["OC8Mixpanel11Persistence11ArchiveType", "Properties"] +- ["OC8Mixpanel11Persistence11ArchiveType", "RawValue"] +- ["OC8Mixpanel11Persistence11ArchiveType", "deinit"] +- ["OC8Mixpanel11Persistence11ArchiveType", "hashValue"] +- ["OC8Mixpanel11Persistence11ArchiveType", "init"] +- ["OC8Mixpanel11Persistence11ArchiveType", "rawValue"] +- ["V8Mixpanel18ArchivedProperties", "Properties"] +- ["V8Mixpanel18ArchivedProperties", "Queue"] +- ["V8Mixpanel18ArchivedProperties", "String"] +- ["V8Mixpanel18ArchivedProperties", "distinctId"] +- ["V8Mixpanel18ArchivedProperties", "init"] +- ["V8Mixpanel18ArchivedProperties", "peopleDistinctId"] +- ["V8Mixpanel18ArchivedProperties", "peopleUnidentifiedQueue"] +- ["V8Mixpanel18ArchivedProperties", "superProperties"] +- ["V8Mixpanel18ArchivedProperties", "timedEvents"] +- !private ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "UserDomainMask"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "hashValue"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "hashValue"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "URLByAppendingPathComponent"] +- !private ["Ps11CVarArgType", "URLsForDirectory"] +- !private ["Ps11CVarArgType", "archiveRootObject"] +- !private ["Ps11CVarArgType", "defaultManager"] +- !private ["Ps11CVarArgType", "hashValue"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "path"] +- !private ["Ps11CVarArgType", "removeItemAtPath"] +- !private ["Ps11CVarArgType", "unarchiveObjectWithFile"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "hashValue"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps28CustomDebugStringConvertible", "URLsForDirectory"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "archiveRootObject"] +- !private ["Ps28CustomDebugStringConvertible", "defaultManager"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "path"] +- !private ["Ps28CustomDebugStringConvertible", "removeItemAtPath"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "unarchiveObjectWithFile"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URLByAppendingPathComponent"] +- !private ["Ps23CustomStringConvertible", "URLsForDirectory"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "archiveRootObject"] +- !private ["Ps23CustomStringConvertible", "defaultManager"] +- !private ["Ps23CustomStringConvertible", "hashValue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "path"] +- !private ["Ps23CustomStringConvertible", "removeItemAtPath"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "unarchiveObjectWithFile"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "LibraryDirectory"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "Properties"] +- ["Ps9Equatable", "RawValue"] +- !private ["Ps9Equatable", "URLByAppendingPathComponent"] +- !private ["Ps9Equatable", "URLsForDirectory"] +- !private ["Ps9Equatable", "UserDomainMask"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "archiveRootObject"] +- !private ["Ps9Equatable", "defaultManager"] +- ["Ps9Equatable", "hashValue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "path"] +- ["Ps9Equatable", "rawValue"] +- !private ["Ps9Equatable", "removeItemAtPath"] +- !private ["Ps9Equatable", "unarchiveObjectWithFile"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "hashValue"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "LibraryDirectory"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "Properties"] +- ["Ps8Hashable", "RawValue"] +- !private ["Ps8Hashable", "URLByAppendingPathComponent"] +- !private ["Ps8Hashable", "URLsForDirectory"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "archiveRootObject"] +- !private ["Ps8Hashable", "defaultManager"] +- ["Ps8Hashable", "hashValue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "path"] +- ["Ps8Hashable", "rawValue"] +- !private ["Ps8Hashable", "removeItemAtPath"] +- !private ["Ps8Hashable", "unarchiveObjectWithFile"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "hashValue"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "hashValue"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "hashValue"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "hashValue"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "hashValue"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "last"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["CSo7NSCoder", "archiveRootObject"] +- !private ["CSo7NSCoder", "unarchiveObjectWithFile"] +- !private ["PSo8NSCoding", "URLByAppendingPathComponent"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "path"] +- !private ["PSo9NSCopying", "URLByAppendingPathComponent"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "path"] +- !private ["CSo13NSFileManager", "URLsForDirectory"] +- !private ["CSo13NSFileManager", "defaultManager"] +- !private ["CSo13NSFileManager", "removeItemAtPath"] +- !private ["CSo15NSKeyedArchiver", "archiveRootObject"] +- !private ["CSo17NSKeyedUnarchiver", "unarchiveObjectWithFile"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "URLByAppendingPathComponent"] +- !private ["CSo8NSObject", "URLsForDirectory"] +- !private ["CSo8NSObject", "archiveRootObject"] +- !private ["CSo8NSObject", "defaultManager"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "path"] +- !private ["CSo8NSObject", "removeItemAtPath"] +- !private ["CSo8NSObject", "unarchiveObjectWithFile"] +- !private ["PSo16NSObjectProtocol", "URLByAppendingPathComponent"] +- !private ["PSo16NSObjectProtocol", "URLsForDirectory"] +- !private ["PSo16NSObjectProtocol", "archiveRootObject"] +- !private ["PSo16NSObjectProtocol", "defaultManager"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "path"] +- !private ["PSo16NSObjectProtocol", "removeItemAtPath"] +- !private ["PSo16NSObjectProtocol", "unarchiveObjectWithFile"] +- !private ["OSC21NSSearchPathDirectory", "LibraryDirectory"] +- !private ["VSC22NSSearchPathDomainMask", "UserDomainMask"] +- !private ["PSo14NSSecureCoding", "URLByAppendingPathComponent"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "path"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "URLByAppendingPathComponent"] +- !private ["CSo5NSURL", "path"] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "UserDomainMask"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel11Persistence", "AnyObject"] +- ["C8Mixpanel11Persistence", "ArchiveType"] +- ["C8Mixpanel11Persistence", "ArchivedProperties"] +- !private ["C8Mixpanel11Persistence", "Logger"] +- !private ["C8Mixpanel11Persistence", "NSFileManager"] +- !private ["C8Mixpanel11Persistence", "NSKeyedArchiver"] +- !private ["C8Mixpanel11Persistence", "NSKeyedUnarchiver"] +- !private ["C8Mixpanel11Persistence", "NSSearchPathDirectory"] +- !private ["C8Mixpanel11Persistence", "NSSearchPathDomainMask"] +- ["C8Mixpanel11Persistence", "Properties"] +- ["C8Mixpanel11Persistence", "Queue"] +- ["C8Mixpanel11Persistence", "String"] +- ["C8Mixpanel11Persistence", "archive"] +- ["C8Mixpanel11Persistence", "archiveEvents"] +- ["C8Mixpanel11Persistence", "archivePeople"] +- ["C8Mixpanel11Persistence", "archiveProperties"] +- ["C8Mixpanel11Persistence", "archiveToFile"] +- ["C8Mixpanel11Persistence", "deinit"] +- !private ["C8Mixpanel11Persistence", "filePathFor"] +- ["C8Mixpanel11Persistence", "filePathWithType"] +- ["C8Mixpanel11Persistence", "init"] +- ["C8Mixpanel11Persistence", "unarchive"] +- !private ["C8Mixpanel11Persistence", "unarchiveEvents"] +- !private ["C8Mixpanel11Persistence", "unarchivePeople"] +- !private ["C8Mixpanel11Persistence", "unarchiveProperties"] +- !private ["C8Mixpanel11Persistence", "unarchiveWithFilePath"] +- !private ["C8Mixpanel11Persistence", "unarchiveWithType"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "hashValue"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "LibraryDirectory"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps16RawRepresentable", "Properties"] +- ["Ps16RawRepresentable", "RawValue"] +- !private ["Ps16RawRepresentable", "UserDomainMask"] +- ["Ps16RawRepresentable", "hashValue"] +- ["Ps16RawRepresentable", "init"] +- ["Ps16RawRepresentable", "rawValue"] +- ["Ps16RawRepresentable", ""] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "UserDomainMask"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "hashValue"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "hashValue"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "hashValue"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "hashValue"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps32_FileReferenceLiteralConvertible", "URLByAppendingPathComponent"] +- !private ["Ps32_FileReferenceLiteralConvertible", "path"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "hashValue"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "hashValue"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "hashValue"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "hashValue"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "URLByAppendingPathComponent"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "hashValue"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "path"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "hashValue"] +depends-nominal: +- "Ps9AnyObject" +- "OC8Mixpanel11Persistence11ArchiveType" +- "V8Mixpanel18ArchivedProperties" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo7NSCoder" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo13NSFileManager" +- !private "CSo15NSKeyedArchiver" +- !private "CSo17NSKeyedUnarchiver" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "OSC21NSSearchPathDirectory" +- !private "VSC22NSSearchPathDomainMask" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "Ps16OutputStreamType" +- "C8Mixpanel11Persistence" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Ps30RangeReplaceableCollectionType" +- "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "e8fe3fa0070f6d3198509eeb56528723" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftmodule new file mode 100644 index 00000000..6fa4520a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.d new file mode 100644 index 00000000..a5caea4a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o new file mode 100644 index 00000000..ef07e971 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.swiftdeps new file mode 100644 index 00000000..c8725d73 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.swiftdeps @@ -0,0 +1,154 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PrintLogging" +- "PrintDebugLogging" +provides-nominal: +- "C8Mixpanel12PrintLogging" +- "C8Mixpanel17PrintDebugLogging" +provides-member: +- ["C8Mixpanel12PrintLogging", ""] +- ["C8Mixpanel17PrintDebugLogging", ""] +provides-dynamic-lookup: +depends-top-level: +- "PrintLogging" +- !private "print" +- !private "StringLiteralType" +- "Logging" +- "PrintDebugLogging" +- "LogMessage" +- !private "debugPrint" +depends-member: +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "debugPrint"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "print"] +- ["Ps9AnyObject", ""] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "rawValue"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "rawValue"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["O8Mixpanel8LogLevel", "deinit"] +- !private ["O8Mixpanel8LogLevel", "rawValue"] +- !private ["V8Mixpanel10LogMessage", "file"] +- !private ["V8Mixpanel10LogMessage", "function"] +- !private ["V8Mixpanel10LogMessage", "level"] +- !private ["V8Mixpanel10LogMessage", "text"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "debugPrint"] +- !private ["P8Mixpanel7Logging", "print"] +- ["P8Mixpanel7Logging", ""] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "init"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["Ps16OutputStreamType", "init"] +- ["C8Mixpanel17PrintDebugLogging", "LogMessage"] +- ["C8Mixpanel17PrintDebugLogging", "addMessage"] +- !private ["C8Mixpanel17PrintDebugLogging", "debugPrint"] +- ["C8Mixpanel17PrintDebugLogging", "deinit"] +- ["C8Mixpanel17PrintDebugLogging", "init"] +- ["C8Mixpanel12PrintLogging", "LogMessage"] +- ["C8Mixpanel12PrintLogging", "addMessage"] +- ["C8Mixpanel12PrintLogging", "deinit"] +- ["C8Mixpanel12PrintLogging", "init"] +- !private ["C8Mixpanel12PrintLogging", "print"] +- !private ["Ps16RawRepresentable", "rawValue"] +- !private ["Ps10Streamable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps12_Reflectable", "init"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sb" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps10Comparable" +- !private "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps8Hashable" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "O8Mixpanel8LogLevel" +- !private "V8Mixpanel10LogMessage" +- "P8Mixpanel7Logging" +- !private "Ps14MirrorPathType" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "Ps16OutputStreamType" +- "C8Mixpanel17PrintDebugLogging" +- "C8Mixpanel12PrintLogging" +- !private "Ps16RawRepresentable" +- !private "Ps10Streamable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "11c6b8c178e8c5cbded946b4e1523f57" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftdoc new file mode 100644 index 00000000..f4e0d2a6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftmodule new file mode 100644 index 00000000..8005d44f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.d new file mode 100644 index 00000000..046fe07e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o new file mode 100644 index 00000000..c9ddb4dc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.swiftdeps new file mode 100644 index 00000000..be30dbf9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.swiftdeps @@ -0,0 +1,558 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "+=" +- "Track" +provides-nominal: +- "C8Mixpanel5Track" +provides-member: +- ["C8Mixpanel5Track", ""] +provides-dynamic-lookup: +depends-top-level: +- "+=" +- "Track" +- !private "AutomaticProperties" +- "Double" +- !private "!=" +- !private ">" +- "AnyObject" +- !private "NSDate" +- !private "-" +- !private "MPAssert" +- !private "||" +- !private "Int" +- !private "NSURL" +- !private "QueueConstants" +- !private "&&" +- !private "UInt" +- !private "!" +- "Queue" +- !private "Float" +- !private "NSObject" +- "String" +- !private "StringLiteralType" +- !private "==" +- !private "Logger" +- "Properties" +- !private "round" +- !private "Dictionary" +- !private "NSNull" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "MPAssert"] +- !private ["Ps9AnyObject", "Properties"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "Track"] +- !private ["Ps9AnyObject", "apiToken"] +- !private ["Ps9AnyObject", "assertPropertyTypes"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "isEmpty"] +- !private ["Ps9AnyObject", "properties"] +- !private ["Ps9AnyObject", "round"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "removeAtIndex"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "removeAtIndex"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "properties"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "isEmpty"] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "map"] +- !private ["Ps14CollectionType", "removeAll"] +- !private ["Ps14CollectionType", "removeAtIndex"] +- !private ["Ps14CollectionType", "removeValueForKey"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps14CollectionType", "updateValue"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "map"] +- !private ["Ps28CustomDebugStringConvertible", "removeAll"] +- !private ["Ps28CustomDebugStringConvertible", "removeAtIndex"] +- !private ["Ps28CustomDebugStringConvertible", "removeValueForKey"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "updateValue"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "map"] +- !private ["Ps23CustomStringConvertible", "removeAll"] +- !private ["Ps23CustomStringConvertible", "removeAtIndex"] +- !private ["Ps23CustomStringConvertible", "removeValueForKey"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "updateValue"] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "init"] +- !private ["Vs10Dictionary", "map"] +- !private ["Vs10Dictionary", "removeAll"] +- !private ["Vs10Dictionary", "removeValueForKey"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs10Dictionary", "updateValue"] +- !private ["Vs19DictionaryGenerator", "Element"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "map"] +- !private ["Ps28DictionaryLiteralConvertible", "removeAll"] +- !private ["Ps28DictionaryLiteralConvertible", "removeValueForKey"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "updateValue"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "isEmpty"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "isEmpty"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "map"] +- !private ["Ps9Indexable", "removeAll"] +- !private ["Ps9Indexable", "removeAtIndex"] +- !private ["Ps9Indexable", "removeValueForKey"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "updateValue"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Si", "init"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "init"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["Ps14MirrorPathType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "removeAtIndex"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "removeAtIndex"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "removeAtIndex"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "isEmpty"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "isEmpty"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["PSo16NSMutableCopying", "isEmpty"] +- !private ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "isEmpty"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "isEmpty"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "isEmpty"] +- !private ["CSo8NSString", "init"] +- !private ["CSo8NSString", "isEmpty"] +- ["Ps21NilLiteralConvertible", "Some"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps16OutputStreamType", "isEmpty"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "removeAtIndex"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "map"] +- !private ["Ps12SequenceType", "removeAll"] +- !private ["Ps12SequenceType", "removeAtIndex"] +- !private ["Ps12SequenceType", "removeValueForKey"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps12SequenceType", "updateValue"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Streamable", "isEmpty"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["SS", "isEmpty"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps30StringInterpolationConvertible", "isEmpty"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "isEmpty"] +- ["C8Mixpanel5Track", "AnyObject"] +- !private ["C8Mixpanel5Track", "AutomaticProperties"] +- ["C8Mixpanel5Track", "Double"] +- !private ["C8Mixpanel5Track", "Float"] +- !private ["C8Mixpanel5Track", "Int"] +- !private ["C8Mixpanel5Track", "Logger"] +- !private ["C8Mixpanel5Track", "MPAssert"] +- !private ["C8Mixpanel5Track", "NSDate"] +- !private ["C8Mixpanel5Track", "NSNull"] +- !private ["C8Mixpanel5Track", "NSObject"] +- !private ["C8Mixpanel5Track", "NSURL"] +- ["C8Mixpanel5Track", "Properties"] +- ["C8Mixpanel5Track", "Queue"] +- !private ["C8Mixpanel5Track", "QueueConstants"] +- ["C8Mixpanel5Track", "String"] +- !private ["C8Mixpanel5Track", "Track"] +- !private ["C8Mixpanel5Track", "UInt"] +- ["C8Mixpanel5Track", "apiToken"] +- ["C8Mixpanel5Track", "assertPropertyTypes"] +- ["C8Mixpanel5Track", "clearSuperProperties"] +- ["C8Mixpanel5Track", "clearTimedEvents"] +- ["C8Mixpanel5Track", "deinit"] +- ["C8Mixpanel5Track", "init"] +- ["C8Mixpanel5Track", "registerSuperProperties"] +- ["C8Mixpanel5Track", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel5Track", "round"] +- ["C8Mixpanel5Track", "time"] +- ["C8Mixpanel5Track", "track"] +- ["C8Mixpanel5Track", "unregisterSuperProperty"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "isEmpty"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "removeAtIndex"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "isEmpty"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "isEmpty"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "isEmpty"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "isEmpty"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "removeAtIndex"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "map"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAll"] +- !private ["Ps21_ObjectiveCBridgeable", "removeAtIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "removeValueForKey"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "updateValue"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "map"] +- !private ["Ps12_Reflectable", "removeAll"] +- !private ["Ps12_Reflectable", "removeAtIndex"] +- !private ["Ps12_Reflectable", "removeValueForKey"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "updateValue"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- !private "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs19DictionaryGenerator" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- !private "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "C8Mixpanel6Logger" +- !private "Ps14MirrorPathType" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSObject" +- !private "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- "Ps21NilLiteralConvertible" +- "Sq" +- !private "Ps16OutputStreamType" +- !private "V8Mixpanel14QueueConstants" +- !private "Ps21RandomAccessIndexType" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "C8Mixpanel5Track" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +interface-hash: "5602f94d6ea1999f1295548c75416335" diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftmodule new file mode 100644 index 00000000..f51f1223 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Script-E1345A791D46C9A200496D0D.sh b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Script-E1345A791D46C9A200496D0D.sh new file mode 100755 index 00000000..abe3cdda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Script-E1345A791D46C9A200496D0D.sh @@ -0,0 +1,6 @@ +#!/bin/sh +if which swiftlint >/dev/null; then +swiftlint +else +echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" +fi diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh new file mode 100755 index 00000000..abe3cdda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh @@ -0,0 +1,6 @@ +#!/bin/sh +if which swiftlint >/dev/null; then +swiftlint +else +echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" +fi diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/dgph b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/dgph new file mode 100644 index 00000000..6f7b1c32 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/dgph~ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/dgph~ new file mode 100644 index 00000000..8c3da5df Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/swift-overrides.hmap new file mode 100644 index 00000000..b2705ae6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module-overlay.yaml b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module-overlay.yaml new file mode 100644 index 00000000..b15cf850 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module-overlay.yaml @@ -0,0 +1,13 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [{ + 'type': 'directory', + 'name': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules' + 'contents': [{ + 'type': 'file', + 'name': 'module.modulemap', + 'external-contents': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap', + }] + }] +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap new file mode 100644 index 00000000..d70a5b99 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/unextended-module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.__Swift { + exclude header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c new file mode 100644 index 00000000..469efa4b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c @@ -0,0 +1 @@ + const unsigned char MixpanelVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Mixpanel PROJECT:Mixpanel-1" "\n"; const double MixpanelVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-target-headers.hmap new file mode 100644 index 00000000..07af1f94 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap new file mode 100644 index 00000000..721b2bd3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel.hmap new file mode 100644 index 00000000..27fd1e5e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..32e2dc41 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/arm64\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList new file mode 100644 index 00000000..a527f7d6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc new file mode 100644 index 00000000..9de41b0c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule new file mode 100644 index 00000000..f5610ba3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d new file mode 100644 index 00000000..a7d8a715 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d @@ -0,0 +1,18 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.dia new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/People.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.o new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..cd364d2e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphoneos\/Mixpanel.build\/Objects-normal\/armv7\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.LinkFileList new file mode 100644 index 00000000..ef168477 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh new file mode 100755 index 00000000..abe3cdda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh @@ -0,0 +1,6 @@ +#!/bin/sh +if which swiftlint >/dev/null; then +swiftlint +else +echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" +fi diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/dgph b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/dgph new file mode 100644 index 00000000..c8715f33 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/dgph~ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/dgph~ new file mode 100644 index 00000000..c8715f33 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/swift-overrides.hmap new file mode 100644 index 00000000..b2705ae6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module-overlay.yaml b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module-overlay.yaml new file mode 100644 index 00000000..1ccbc6f1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module-overlay.yaml @@ -0,0 +1,13 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [{ + 'type': 'directory', + 'name': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos/Mixpanel.framework/Modules' + 'contents': [{ + 'type': 'file', + 'name': 'module.modulemap', + 'external-contents': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap', + }] + }] +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap new file mode 100644 index 00000000..d70a5b99 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.__Swift { + exclude header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c new file mode 100644 index 00000000..469efa4b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c @@ -0,0 +1 @@ + const unsigned char MixpanelVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Mixpanel PROJECT:Mixpanel-1" "\n"; const double MixpanelVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-all-target-headers.hmap new file mode 100644 index 00000000..07af1f94 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-generated-files.hmap new file mode 100644 index 00000000..173da9b6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-own-target-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-project-headers.hmap new file mode 100644 index 00000000..ebde8c7c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel.hmap new file mode 100644 index 00000000..004dd914 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Mixpanel.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o new file mode 100644 index 00000000..5ac95c85 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o new file mode 100644 index 00000000..fb19dfec Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o new file mode 100644 index 00000000..b65d5e10 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o new file mode 100644 index 00000000..77ac5422 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o new file mode 100644 index 00000000..e6ce938b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o new file mode 100644 index 00000000..60ca8855 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o new file mode 100644 index 00000000..8093c470 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o new file mode 100644 index 00000000..cb0d7356 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel new file mode 100755 index 00000000..8b7b4cb8 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..9b44e57d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/i386\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-master.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-master.swiftdeps new file mode 100644 index 00000000..d7f1dec7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-master.swiftdeps @@ -0,0 +1,19 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "6c1a2d7e5742f26d153fca7d38393d3a" +build_time: [522805437, 744011000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift": [9223372036854775807, 0] diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.LinkFileList new file mode 100644 index 00000000..3d435917 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o new file mode 100644 index 00000000..3bdf0791 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc new file mode 100644 index 00000000..89daf5e6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule new file mode 100644 index 00000000..768dc2ac Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.d new file mode 100644 index 00000000..c5d66e22 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.d @@ -0,0 +1,18 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Constants.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Flush.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FileLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/JSONHandler.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/AutomaticProperties.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Logger.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Error.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/FlushRequest.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel-Swift.h : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o new file mode 100644 index 00000000..9411789f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/MixpanelInstance.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_dependency_info.dat new file mode 100644 index 00000000..c442c0f5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.d new file mode 100644 index 00000000..4a77429a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o new file mode 100644 index 00000000..588527c7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Mixpanel_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o new file mode 100644 index 00000000..d788ff8d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Network.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o new file mode 100644 index 00000000..3c80cea3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/People.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o new file mode 100644 index 00000000..5ab810bc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Persistence.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o new file mode 100644 index 00000000..1f5ad539 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/PrintLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o new file mode 100644 index 00000000..86581412 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/i386/Track.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o new file mode 100644 index 00000000..86f5aebd Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o new file mode 100644 index 00000000..8f8dc8fe Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o new file mode 100644 index 00000000..e3bf9022 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o new file mode 100644 index 00000000..8e7a1da0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o new file mode 100644 index 00000000..6933c414 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o new file mode 100644 index 00000000..667c7f10 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o new file mode 100644 index 00000000..0ce7d023 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o new file mode 100644 index 00000000..9d4d1765 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel new file mode 100755 index 00000000..ba9cbc51 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-OutputFileMap.json new file mode 100644 index 00000000..34150f17 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-OutputFileMap.json @@ -0,0 +1 @@ +{"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/MixpanelInstance.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/MixpanelInstance.swiftdeps"},"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/JSONHandler.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/JSONHandler.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Constants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Constants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/People.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/People.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Track.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Track.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Network.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Network.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/PrintLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/PrintLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/AutomaticProperties.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/AutomaticProperties.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Error.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Error.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Flush.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Flush.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Persistence.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Persistence.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FileLogging.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FileLogging.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Logger.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Logger.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/FlushRequest.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/FlushRequest.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/Mixpanel\/Mixpanel.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/Mixpanel.build\/Release-iphonesimulator\/Mixpanel.build\/Objects-normal\/x86_64\/Mixpanel.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-master.swiftdeps b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-master.swiftdeps new file mode 100644 index 00000000..1406895e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-master.swiftdeps @@ -0,0 +1,19 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "8f9c13b8aa91f4012808068255cd6e03" +build_time: [522805425, 795730000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift": [9223372036854775807, 0] diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.LinkFileList b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.LinkFileList new file mode 100644 index 00000000..188c7217 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.LinkFileList @@ -0,0 +1,16 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o new file mode 100644 index 00000000..f671a001 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc new file mode 100644 index 00000000..e1624d98 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule new file mode 100644 index 00000000..e505e676 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.d new file mode 100644 index 00000000..e70641dd --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.d @@ -0,0 +1,18 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Constants.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Flush.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FileLogging.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/JSONHandler.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/AutomaticProperties.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Logger.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Error.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/FlushRequest.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.o : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel-Swift.h : /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o new file mode 100644 index 00000000..0d9dc0a8 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/MixpanelInstance.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_dependency_info.dat new file mode 100644 index 00000000..8ae2ee66 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.d b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.d new file mode 100644 index 00000000..4a77429a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.dia b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o new file mode 100644 index 00000000..67d066ff Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Mixpanel_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o new file mode 100644 index 00000000..0cc4b020 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Network.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o new file mode 100644 index 00000000..e778a508 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/People.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o new file mode 100644 index 00000000..a6bb7ed7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Persistence.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o new file mode 100644 index 00000000..3057a127 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/PrintLogging.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o new file mode 100644 index 00000000..2a2e8a46 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Objects-normal/x86_64/Track.o differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh new file mode 100755 index 00000000..abe3cdda --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/Script-E13C160E1D414EAA008FFF78.sh @@ -0,0 +1,6 @@ +#!/bin/sh +if which swiftlint >/dev/null; then +swiftlint +else +echo "warning: SwiftLint not installed, download from https://github.com/realm/SwiftLint" +fi diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/dgph b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/dgph new file mode 100644 index 00000000..9e0d53b9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/dgph~ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/dgph~ new file mode 100644 index 00000000..9e0d53b9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/swift-overrides.hmap new file mode 100644 index 00000000..b2705ae6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module-overlay.yaml b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module-overlay.yaml new file mode 100644 index 00000000..127b8bc5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module-overlay.yaml @@ -0,0 +1,13 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [{ + 'type': 'directory', + 'name': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules' + 'contents': [{ + 'type': 'file', + 'name': 'module.modulemap', + 'external-contents': '/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap', + }] + }] +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap new file mode 100644 index 00000000..d70a5b99 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphonesimulator/Mixpanel.build/unextended-module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.__Swift { + exclude header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Intermediates/Mixpanel.build/all-product-headers.yaml b/MixpanelDemo/Build/Intermediates/Mixpanel.build/all-product-headers.yaml new file mode 100644 index 00000000..be1ebc8a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Mixpanel.build/all-product-headers.yaml @@ -0,0 +1,33 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [ + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers", + 'contents': [ + { + 'type': 'file', + 'name': "Mixpanel-Swift.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" + }, + { + 'type': 'file', + 'name': "Mixpanel.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.h" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules", + 'contents': [ + { + 'type': 'file', + 'name': "module.modulemap", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Debug-iphonesimulator/Mixpanel.build/module.modulemap" + } + ] + } + ] +} diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000..5ba713fa Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000..32288e88 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000..cb26edb3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..9ebc8717 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..9ee06752 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 00000000..ccc75e07 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..0f610ed0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..1b27c299 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..6f695cd1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..23ef69f2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..cc8188c7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..cb399173 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..8cf590ac Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..fd90279a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h new file mode 100644 index 00000000..79c3be14 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist new file mode 100644 index 00000000..0c67376e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Main-SBPartialInfo.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Main-SBPartialInfo.plist new file mode 100644 index 00000000..ef6bfe22 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Main-SBPartialInfo.plist @@ -0,0 +1,10 @@ + + + + + UIAppFonts + + SFUIText.ttf + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Mixpanel.framework.xcent b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Mixpanel.framework.xcent new file mode 100644 index 00000000..e1bf887a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Mixpanel.framework.xcent @@ -0,0 +1,14 @@ + + + + + application-identifier + E8FVX7QLET.com.mixpanel.swiftdemo + aps-environment + development + com.apple.developer.team-identifier + E8FVX7QLET + get-task-allow + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-generated-files.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-project-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-project-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo.app.xcent b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo.app.xcent new file mode 100644 index 00000000..e1bf887a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo.app.xcent @@ -0,0 +1,14 @@ + + + + + application-identifier + E8FVX7QLET.com.mixpanel.swiftdemo + aps-environment + development + com.apple.developer.team-identifier + E8FVX7QLET + get-task-allow + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/MixpanelDemo.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.d new file mode 100644 index 00000000..5a5e1055 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.o new file mode 100644 index 00000000..5c509bed Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.swiftdeps new file mode 100644 index 00000000..d7b7c40a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.swiftdeps @@ -0,0 +1,602 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ActionCompleteViewController" +provides-nominal: +- "C12MixpanelDemo28ActionCompleteViewController" +provides-member: +- ["C12MixpanelDemo28ActionCompleteViewController", ""] +provides-dynamic-lookup: +- "actionStr" +- "descStr" +- "viewDidAppear" +- "descLabel" +- "popupView" +- "actionLabel" +- "viewDidLoad" +- "handleTap" +depends-top-level: +- !private "Int64" +- !private "DISPATCH_TIME_NOW" +- !private "BooleanLiteralType" +- !private "*" +- !private "NSEC_PER_SEC" +- "Bool" +- !private "Double" +- "UITapGestureRecognizer" +- "UIView" +- "UIViewController" +- !private "dispatch_get_main_queue" +- "ActionCompleteViewController" +- !private "dispatch_time" +- "String" +- "UILabel" +- !private "dispatch_after" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- ["C12MixpanelDemo28ActionCompleteViewController", "Bool"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "DISPATCH_TIME_NOW"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "Double"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "Int64"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "NSEC_PER_SEC"] +- ["C12MixpanelDemo28ActionCompleteViewController", "String"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UILabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UITapGestureRecognizer"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UIView"] +- ["C12MixpanelDemo28ActionCompleteViewController", "actionLabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- ["C12MixpanelDemo28ActionCompleteViewController", "deinit"] +- ["C12MixpanelDemo28ActionCompleteViewController", "descLabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dismissViewControllerAnimated"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_after"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_get_main_queue"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_time"] +- ["C12MixpanelDemo28ActionCompleteViewController", "handleTap"] +- ["C12MixpanelDemo28ActionCompleteViewController", "init"] +- ["C12MixpanelDemo28ActionCompleteViewController", "popupView"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "view"] +- ["C12MixpanelDemo28ActionCompleteViewController", "viewDidAppear"] +- ["C12MixpanelDemo28ActionCompleteViewController", "viewDidLoad"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_NOW"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int64"] +- !private ["Ps9AnyObject", "NSEC_PER_SEC"] +- !private ["Ps9AnyObject", "UITapGestureRecognizer"] +- ["Ps9AnyObject", "actionLabel"] +- ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "addGestureRecognizer"] +- !private ["Ps9AnyObject", "clipsToBounds"] +- !private ["Ps9AnyObject", "cornerRadius"] +- ["Ps9AnyObject", "descLabel"] +- ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "dismissViewControllerAnimated"] +- !private ["Ps9AnyObject", "dispatch_after"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_time"] +- ["Ps9AnyObject", "handleTap"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "layer"] +- ["Ps9AnyObject", "popupView"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "view"] +- ["Ps9AnyObject", "viewDidAppear"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", ""] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["CSo7CALayer", "cornerRadius"] +- !private ["PSo13CAMediaTiming", "cornerRadius"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "DISPATCH_TIME_NOW"] +- !private ["Ps11CVarArgType", "Double"] +- !private ["Ps11CVarArgType", "Int64"] +- !private ["Ps11CVarArgType", "NSEC_PER_SEC"] +- !private ["Ps11CVarArgType", "UITapGestureRecognizer"] +- ["Ps11CVarArgType", "actionLabel"] +- ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "addGestureRecognizer"] +- !private ["Ps11CVarArgType", "clipsToBounds"] +- !private ["Ps11CVarArgType", "cornerRadius"] +- ["Ps11CVarArgType", "descLabel"] +- ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "dismissViewControllerAnimated"] +- !private ["Ps11CVarArgType", "dispatch_after"] +- !private ["Ps11CVarArgType", "dispatch_get_main_queue"] +- !private ["Ps11CVarArgType", "dispatch_time"] +- ["Ps11CVarArgType", "handleTap"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "layer"] +- ["Ps11CVarArgType", "popupView"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "view"] +- ["Ps11CVarArgType", "viewDidAppear"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", ""] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps28CustomDebugStringConvertible", "Double"] +- !private ["Ps28CustomDebugStringConvertible", "Int64"] +- !private ["Ps28CustomDebugStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps28CustomDebugStringConvertible", "UITapGestureRecognizer"] +- ["Ps28CustomDebugStringConvertible", "actionLabel"] +- ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "addGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "clipsToBounds"] +- !private ["Ps28CustomDebugStringConvertible", "cornerRadius"] +- ["Ps28CustomDebugStringConvertible", "descLabel"] +- ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "dismissViewControllerAnimated"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_after"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_time"] +- ["Ps28CustomDebugStringConvertible", "handleTap"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "layer"] +- ["Ps28CustomDebugStringConvertible", "popupView"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "view"] +- ["Ps28CustomDebugStringConvertible", "viewDidAppear"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps23CustomStringConvertible", "Double"] +- !private ["Ps23CustomStringConvertible", "Int64"] +- !private ["Ps23CustomStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps23CustomStringConvertible", "UITapGestureRecognizer"] +- ["Ps23CustomStringConvertible", "actionLabel"] +- ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "addGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "clipsToBounds"] +- !private ["Ps23CustomStringConvertible", "cornerRadius"] +- ["Ps23CustomStringConvertible", "descLabel"] +- ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "dismissViewControllerAnimated"] +- !private ["Ps23CustomStringConvertible", "dispatch_after"] +- !private ["Ps23CustomStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps23CustomStringConvertible", "dispatch_time"] +- ["Ps23CustomStringConvertible", "handleTap"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "layer"] +- ["Ps23CustomStringConvertible", "popupView"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "view"] +- ["Ps23CustomStringConvertible", "viewDidAppear"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "DISPATCH_TIME_NOW"] +- !private ["Ps9Equatable", "Double"] +- !private ["Ps9Equatable", "Int64"] +- !private ["Ps9Equatable", "NSEC_PER_SEC"] +- !private ["Ps9Equatable", "UITapGestureRecognizer"] +- ["Ps9Equatable", "actionLabel"] +- ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "addGestureRecognizer"] +- !private ["Ps9Equatable", "clipsToBounds"] +- !private ["Ps9Equatable", "cornerRadius"] +- ["Ps9Equatable", "descLabel"] +- ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "dismissViewControllerAnimated"] +- !private ["Ps9Equatable", "dispatch_after"] +- !private ["Ps9Equatable", "dispatch_get_main_queue"] +- !private ["Ps9Equatable", "dispatch_time"] +- ["Ps9Equatable", "handleTap"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "layer"] +- ["Ps9Equatable", "popupView"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "view"] +- ["Ps9Equatable", "viewDidAppear"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", ""] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps8Hashable", "DISPATCH_TIME_NOW"] +- !private ["Ps8Hashable", "Double"] +- !private ["Ps8Hashable", "Int64"] +- !private ["Ps8Hashable", "NSEC_PER_SEC"] +- !private ["Ps8Hashable", "UITapGestureRecognizer"] +- ["Ps8Hashable", "actionLabel"] +- ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "addGestureRecognizer"] +- !private ["Ps8Hashable", "clipsToBounds"] +- !private ["Ps8Hashable", "cornerRadius"] +- ["Ps8Hashable", "descLabel"] +- ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "dismissViewControllerAnimated"] +- !private ["Ps8Hashable", "dispatch_after"] +- !private ["Ps8Hashable", "dispatch_get_main_queue"] +- !private ["Ps8Hashable", "dispatch_time"] +- ["Ps8Hashable", "handleTap"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "layer"] +- ["Ps8Hashable", "popupView"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "view"] +- ["Ps8Hashable", "viewDidAppear"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Vs5Int64", "init"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "DISPATCH_TIME_NOW"] +- !private ["PSo8NSCoding", "Double"] +- !private ["PSo8NSCoding", "Int64"] +- !private ["PSo8NSCoding", "NSEC_PER_SEC"] +- !private ["PSo8NSCoding", "UITapGestureRecognizer"] +- ["PSo8NSCoding", "actionLabel"] +- ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "addGestureRecognizer"] +- !private ["PSo8NSCoding", "clipsToBounds"] +- !private ["PSo8NSCoding", "cornerRadius"] +- ["PSo8NSCoding", "descLabel"] +- ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "dismissViewControllerAnimated"] +- !private ["PSo8NSCoding", "dispatch_after"] +- !private ["PSo8NSCoding", "dispatch_get_main_queue"] +- !private ["PSo8NSCoding", "dispatch_time"] +- ["PSo8NSCoding", "handleTap"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "layer"] +- ["PSo8NSCoding", "popupView"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "view"] +- ["PSo8NSCoding", "viewDidAppear"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", ""] +- !private ["PSo26NSExtensionRequestHandling", "DISPATCH_TIME_NOW"] +- !private ["PSo26NSExtensionRequestHandling", "Double"] +- !private ["PSo26NSExtensionRequestHandling", "Int64"] +- !private ["PSo26NSExtensionRequestHandling", "NSEC_PER_SEC"] +- !private ["PSo26NSExtensionRequestHandling", "UITapGestureRecognizer"] +- ["PSo26NSExtensionRequestHandling", "actionLabel"] +- ["PSo26NSExtensionRequestHandling", "actionStr"] +- ["PSo26NSExtensionRequestHandling", "descLabel"] +- ["PSo26NSExtensionRequestHandling", "descStr"] +- !private ["PSo26NSExtensionRequestHandling", "dismissViewControllerAnimated"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_after"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_get_main_queue"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_time"] +- ["PSo26NSExtensionRequestHandling", "handleTap"] +- ["PSo26NSExtensionRequestHandling", "init"] +- ["PSo26NSExtensionRequestHandling", "popupView"] +- !private ["PSo26NSExtensionRequestHandling", "view"] +- ["PSo26NSExtensionRequestHandling", "viewDidAppear"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", ""] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "DISPATCH_TIME_NOW"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Int64"] +- !private ["CSo8NSObject", "NSEC_PER_SEC"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UILabel"] +- ["CSo8NSObject", "UITapGestureRecognizer"] +- ["CSo8NSObject", "UIView"] +- ["CSo8NSObject", "actionLabel"] +- ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "addGestureRecognizer"] +- !private ["CSo8NSObject", "clipsToBounds"] +- !private ["CSo8NSObject", "cornerRadius"] +- ["CSo8NSObject", "descLabel"] +- ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "dismissViewControllerAnimated"] +- !private ["CSo8NSObject", "dispatch_after"] +- !private ["CSo8NSObject", "dispatch_get_main_queue"] +- !private ["CSo8NSObject", "dispatch_time"] +- ["CSo8NSObject", "handleTap"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "layer"] +- ["CSo8NSObject", "popupView"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "view"] +- ["CSo8NSObject", "viewDidAppear"] +- ["CSo8NSObject", "viewDidLoad"] +- !private ["PSo16NSObjectProtocol", "DISPATCH_TIME_NOW"] +- !private ["PSo16NSObjectProtocol", "Double"] +- !private ["PSo16NSObjectProtocol", "Int64"] +- !private ["PSo16NSObjectProtocol", "NSEC_PER_SEC"] +- !private ["PSo16NSObjectProtocol", "UITapGestureRecognizer"] +- ["PSo16NSObjectProtocol", "actionLabel"] +- ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "addGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "clipsToBounds"] +- !private ["PSo16NSObjectProtocol", "cornerRadius"] +- ["PSo16NSObjectProtocol", "descLabel"] +- ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "dismissViewControllerAnimated"] +- !private ["PSo16NSObjectProtocol", "dispatch_after"] +- !private ["PSo16NSObjectProtocol", "dispatch_get_main_queue"] +- !private ["PSo16NSObjectProtocol", "dispatch_time"] +- ["PSo16NSObjectProtocol", "handleTap"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "layer"] +- ["PSo16NSObjectProtocol", "popupView"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "view"] +- ["PSo16NSObjectProtocol", "viewDidAppear"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", ""] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Ps10Strideable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "addGestureRecognizer"] +- !private ["PSo29UIAccessibilityIdentification", "clipsToBounds"] +- !private ["PSo29UIAccessibilityIdentification", "layer"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo12UIAppearance", "addGestureRecognizer"] +- !private ["PSo12UIAppearance", "clipsToBounds"] +- !private ["PSo12UIAppearance", "layer"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo21UIAppearanceContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo21UIAppearanceContainer", "Double"] +- !private ["PSo21UIAppearanceContainer", "Int64"] +- !private ["PSo21UIAppearanceContainer", "NSEC_PER_SEC"] +- !private ["PSo21UIAppearanceContainer", "UITapGestureRecognizer"] +- ["PSo21UIAppearanceContainer", "actionLabel"] +- ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "addGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "clipsToBounds"] +- ["PSo21UIAppearanceContainer", "descLabel"] +- ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "dismissViewControllerAnimated"] +- !private ["PSo21UIAppearanceContainer", "dispatch_after"] +- !private ["PSo21UIAppearanceContainer", "dispatch_get_main_queue"] +- !private ["PSo21UIAppearanceContainer", "dispatch_time"] +- ["PSo21UIAppearanceContainer", "handleTap"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "layer"] +- ["PSo21UIAppearanceContainer", "popupView"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "view"] +- ["PSo21UIAppearanceContainer", "viewDidAppear"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo18UIContentContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIContentContainer", "Double"] +- !private ["PSo18UIContentContainer", "Int64"] +- !private ["PSo18UIContentContainer", "NSEC_PER_SEC"] +- !private ["PSo18UIContentContainer", "UITapGestureRecognizer"] +- ["PSo18UIContentContainer", "actionLabel"] +- ["PSo18UIContentContainer", "actionStr"] +- ["PSo18UIContentContainer", "descLabel"] +- ["PSo18UIContentContainer", "descStr"] +- !private ["PSo18UIContentContainer", "dismissViewControllerAnimated"] +- !private ["PSo18UIContentContainer", "dispatch_after"] +- !private ["PSo18UIContentContainer", "dispatch_get_main_queue"] +- !private ["PSo18UIContentContainer", "dispatch_time"] +- ["PSo18UIContentContainer", "handleTap"] +- ["PSo18UIContentContainer", "init"] +- ["PSo18UIContentContainer", "popupView"] +- !private ["PSo18UIContentContainer", "view"] +- ["PSo18UIContentContainer", "viewDidAppear"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "addGestureRecognizer"] +- !private ["PSo17UICoordinateSpace", "clipsToBounds"] +- !private ["PSo17UICoordinateSpace", "layer"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo13UIDynamicItem", "addGestureRecognizer"] +- !private ["PSo13UIDynamicItem", "clipsToBounds"] +- !private ["PSo13UIDynamicItem", "layer"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo18UIFocusEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIFocusEnvironment", "Double"] +- !private ["PSo18UIFocusEnvironment", "Int64"] +- !private ["PSo18UIFocusEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UIFocusEnvironment", "UITapGestureRecognizer"] +- ["PSo18UIFocusEnvironment", "actionLabel"] +- ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "addGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "clipsToBounds"] +- ["PSo18UIFocusEnvironment", "descLabel"] +- ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "dismissViewControllerAnimated"] +- !private ["PSo18UIFocusEnvironment", "dispatch_after"] +- !private ["PSo18UIFocusEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UIFocusEnvironment", "dispatch_time"] +- ["PSo18UIFocusEnvironment", "handleTap"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "layer"] +- ["PSo18UIFocusEnvironment", "popupView"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "view"] +- ["PSo18UIFocusEnvironment", "viewDidAppear"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["CSo19UIGestureRecognizer", "init"] +- !private ["CSo7UILabel", "text"] +- ["CSo11UIResponder", "Bool"] +- !private ["CSo11UIResponder", "DISPATCH_TIME_NOW"] +- !private ["CSo11UIResponder", "Double"] +- !private ["CSo11UIResponder", "Int64"] +- !private ["CSo11UIResponder", "NSEC_PER_SEC"] +- ["CSo11UIResponder", "String"] +- ["CSo11UIResponder", "UILabel"] +- ["CSo11UIResponder", "UITapGestureRecognizer"] +- ["CSo11UIResponder", "UIView"] +- ["CSo11UIResponder", "actionLabel"] +- ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "addGestureRecognizer"] +- !private ["CSo11UIResponder", "clipsToBounds"] +- ["CSo11UIResponder", "descLabel"] +- ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "dismissViewControllerAnimated"] +- !private ["CSo11UIResponder", "dispatch_after"] +- !private ["CSo11UIResponder", "dispatch_get_main_queue"] +- !private ["CSo11UIResponder", "dispatch_time"] +- ["CSo11UIResponder", "handleTap"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "layer"] +- ["CSo11UIResponder", "popupView"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "view"] +- ["CSo11UIResponder", "viewDidAppear"] +- ["CSo11UIResponder", "viewDidLoad"] +- !private ["PSo16UIStateRestoring", "DISPATCH_TIME_NOW"] +- !private ["PSo16UIStateRestoring", "Double"] +- !private ["PSo16UIStateRestoring", "Int64"] +- !private ["PSo16UIStateRestoring", "NSEC_PER_SEC"] +- !private ["PSo16UIStateRestoring", "UITapGestureRecognizer"] +- ["PSo16UIStateRestoring", "actionLabel"] +- ["PSo16UIStateRestoring", "actionStr"] +- ["PSo16UIStateRestoring", "descLabel"] +- ["PSo16UIStateRestoring", "descStr"] +- !private ["PSo16UIStateRestoring", "dismissViewControllerAnimated"] +- !private ["PSo16UIStateRestoring", "dispatch_after"] +- !private ["PSo16UIStateRestoring", "dispatch_get_main_queue"] +- !private ["PSo16UIStateRestoring", "dispatch_time"] +- ["PSo16UIStateRestoring", "handleTap"] +- ["PSo16UIStateRestoring", "init"] +- ["PSo16UIStateRestoring", "popupView"] +- !private ["PSo16UIStateRestoring", "view"] +- ["PSo16UIStateRestoring", "viewDidAppear"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo22UITapGestureRecognizer", "init"] +- !private ["PSo18UITraitEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UITraitEnvironment", "Double"] +- !private ["PSo18UITraitEnvironment", "Int64"] +- !private ["PSo18UITraitEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UITraitEnvironment", "UITapGestureRecognizer"] +- ["PSo18UITraitEnvironment", "actionLabel"] +- ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "addGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "clipsToBounds"] +- ["PSo18UITraitEnvironment", "descLabel"] +- ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "dismissViewControllerAnimated"] +- !private ["PSo18UITraitEnvironment", "dispatch_after"] +- !private ["PSo18UITraitEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UITraitEnvironment", "dispatch_time"] +- ["PSo18UITraitEnvironment", "handleTap"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "layer"] +- ["PSo18UITraitEnvironment", "popupView"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "view"] +- ["PSo18UITraitEnvironment", "viewDidAppear"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "addGestureRecognizer"] +- !private ["CSo6UIView", "clipsToBounds"] +- !private ["CSo6UIView", "layer"] +- !private ["CSo6UIView", "text"] +- ["CSo16UIViewController", "Bool"] +- !private ["CSo16UIViewController", "DISPATCH_TIME_NOW"] +- !private ["CSo16UIViewController", "Double"] +- !private ["CSo16UIViewController", "Int64"] +- !private ["CSo16UIViewController", "NSEC_PER_SEC"] +- ["CSo16UIViewController", "String"] +- ["CSo16UIViewController", "UILabel"] +- ["CSo16UIViewController", "UITapGestureRecognizer"] +- ["CSo16UIViewController", "UIView"] +- ["CSo16UIViewController", "actionLabel"] +- ["CSo16UIViewController", "actionStr"] +- ["CSo16UIViewController", "descLabel"] +- ["CSo16UIViewController", "descStr"] +- !private ["CSo16UIViewController", "dismissViewControllerAnimated"] +- !private ["CSo16UIViewController", "dispatch_after"] +- !private ["CSo16UIViewController", "dispatch_get_main_queue"] +- !private ["CSo16UIViewController", "dispatch_time"] +- ["CSo16UIViewController", "handleTap"] +- ["CSo16UIViewController", "init"] +- ["CSo16UIViewController", "popupView"] +- !private ["CSo16UIViewController", "view"] +- ["CSo16UIViewController", "viewDidAppear"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", ""] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "addGestureRecognizer"] +- !private ["Ps12_Reflectable", "clipsToBounds"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "layer"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "CSo7CALayer" +- !private "PSo13CAMediaTiming" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "Ps16ForwardIndexType" +- "Ps8Hashable" +- !private "SQ" +- !private "Vs5Int64" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- "PSo8NSCoding" +- "PSo26NSExtensionRequestHandling" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Ps21RandomAccessIndexType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Ps10Strideable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "CSo19UIGestureRecognizer" +- !private "CSo7UILabel" +- "CSo11UIResponder" +- "PSo16UIStateRestoring" +- !private "CSo22UITapGestureRecognizer" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "408a83bd423eed7aa4a0631b909720ca" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftmodule new file mode 100644 index 00000000..fac23f5c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.d new file mode 100644 index 00000000..046c4b58 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.dia new file mode 100644 index 00000000..9c69b68e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.o new file mode 100644 index 00000000..08494dca Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.swiftdeps new file mode 100644 index 00000000..6c3a6770 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.swiftdeps @@ -0,0 +1,662 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AppDelegate" +provides-nominal: +- "C12MixpanelDemo11AppDelegate" +provides-member: +- ["C12MixpanelDemo11AppDelegate", ""] +provides-dynamic-lookup: +- "window" +- "applicationDidBecomeActive" +- "application" +- "application" +- "application" +- "application" +- "applicationWillTerminate" +depends-top-level: +- !private "StringLiteralType" +- !private "UIUserNotificationSettings" +- "AnyObject" +- "UIResponder" +- "NSError" +- !private "UIAlertController" +- "UIApplicationDelegate" +- "Bool" +- "UIWindow" +- "NSData" +- "AppDelegate" +- "UIApplication" +- !private "Array" +- !private "Dictionary" +- !private "Mixpanel" +- !private "BooleanLiteralType" +- !private "UIAlertAction" +- !private "debugPrint" +- !private "String" +- "NSObject" +depends-member: +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "UIAlertAction"] +- !private ["Ps9AnyObject", "UIAlertController"] +- !private ["Ps9AnyObject", "UIApplication"] +- !private ["Ps9AnyObject", "UIUserNotificationSettings"] +- !private ["Ps9AnyObject", "addAction"] +- !private ["Ps9AnyObject", "addPushDeviceToken"] +- ["Ps9AnyObject", "application"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationDidEnterBackground"] +- ["Ps9AnyObject", "applicationDidFinishLaunching"] +- ["Ps9AnyObject", "applicationDidReceiveMemoryWarning"] +- ["Ps9AnyObject", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9AnyObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9AnyObject", "applicationShouldRequestHealthAuthorization"] +- ["Ps9AnyObject", "applicationSignificantTimeChange"] +- ["Ps9AnyObject", "applicationWillEnterForeground"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "debugPrint"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "identify"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "loggingEnabled"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "registerForRemoteNotifications"] +- !private ["Ps9AnyObject", "registerUserNotificationSettings"] +- !private ["Ps9AnyObject", "rootViewController"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "sharedApplication"] +- !private ["Ps9AnyObject", "subscript"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- ["Ps9AnyObject", "window"] +- ["Ps9AnyObject", ""] +- ["C12MixpanelDemo11AppDelegate", "AnyObject"] +- ["C12MixpanelDemo11AppDelegate", "Bool"] +- !private ["C12MixpanelDemo11AppDelegate", "Mixpanel"] +- ["C12MixpanelDemo11AppDelegate", "NSData"] +- ["C12MixpanelDemo11AppDelegate", "NSError"] +- ["C12MixpanelDemo11AppDelegate", "NSObject"] +- !private ["C12MixpanelDemo11AppDelegate", "String"] +- !private ["C12MixpanelDemo11AppDelegate", "UIAlertAction"] +- !private ["C12MixpanelDemo11AppDelegate", "UIAlertController"] +- ["C12MixpanelDemo11AppDelegate", "UIApplication"] +- !private ["C12MixpanelDemo11AppDelegate", "UIUserNotificationSettings"] +- ["C12MixpanelDemo11AppDelegate", "UIWindow"] +- ["C12MixpanelDemo11AppDelegate", "application"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidBecomeActive"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidEnterBackground"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidFinishLaunching"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidReceiveMemoryWarning"] +- ["C12MixpanelDemo11AppDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["C12MixpanelDemo11AppDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["C12MixpanelDemo11AppDelegate", "applicationShouldRequestHealthAuthorization"] +- ["C12MixpanelDemo11AppDelegate", "applicationSignificantTimeChange"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillEnterForeground"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillResignActive"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillTerminate"] +- !private ["C12MixpanelDemo11AppDelegate", "debugPrint"] +- ["C12MixpanelDemo11AppDelegate", "deinit"] +- ["C12MixpanelDemo11AppDelegate", "init"] +- ["C12MixpanelDemo11AppDelegate", "window"] +- !private ["Ps23ArrayLiteralConvertible", "Alert"] +- !private ["Ps23ArrayLiteralConvertible", "Badge"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Sound"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "UIAlertAction"] +- !private ["Ps11CVarArgType", "UIAlertController"] +- !private ["Ps11CVarArgType", "UIApplication"] +- !private ["Ps11CVarArgType", "UIUserNotificationSettings"] +- !private ["Ps11CVarArgType", "addAction"] +- ["Ps11CVarArgType", "application"] +- ["Ps11CVarArgType", "applicationDidBecomeActive"] +- ["Ps11CVarArgType", "applicationDidEnterBackground"] +- ["Ps11CVarArgType", "applicationDidFinishLaunching"] +- ["Ps11CVarArgType", "applicationDidReceiveMemoryWarning"] +- ["Ps11CVarArgType", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps11CVarArgType", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps11CVarArgType", "applicationShouldRequestHealthAuthorization"] +- ["Ps11CVarArgType", "applicationSignificantTimeChange"] +- ["Ps11CVarArgType", "applicationWillEnterForeground"] +- ["Ps11CVarArgType", "applicationWillResignActive"] +- ["Ps11CVarArgType", "applicationWillTerminate"] +- !private ["Ps11CVarArgType", "debugPrint"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "presentViewController"] +- !private ["Ps11CVarArgType", "registerForRemoteNotifications"] +- !private ["Ps11CVarArgType", "registerUserNotificationSettings"] +- !private ["Ps11CVarArgType", "rootViewController"] +- !private ["Ps11CVarArgType", "sharedApplication"] +- ["Ps11CVarArgType", "window"] +- ["Ps11CVarArgType", ""] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIAlertAction"] +- !private ["Ps28CustomDebugStringConvertible", "UIAlertController"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplication"] +- !private ["Ps28CustomDebugStringConvertible", "UIUserNotificationSettings"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "addAction"] +- ["Ps28CustomDebugStringConvertible", "application"] +- ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- ["Ps28CustomDebugStringConvertible", "applicationDidFinishLaunching"] +- ["Ps28CustomDebugStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps28CustomDebugStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps28CustomDebugStringConvertible", "applicationSignificantTimeChange"] +- ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "debugPrint"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "flushInterval"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "loggingEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "registerForRemoteNotifications"] +- !private ["Ps28CustomDebugStringConvertible", "registerUserNotificationSettings"] +- !private ["Ps28CustomDebugStringConvertible", "rootViewController"] +- !private ["Ps28CustomDebugStringConvertible", "sharedApplication"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- ["Ps28CustomDebugStringConvertible", "window"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIAlertAction"] +- !private ["Ps23CustomStringConvertible", "UIAlertController"] +- !private ["Ps23CustomStringConvertible", "UIApplication"] +- !private ["Ps23CustomStringConvertible", "UIUserNotificationSettings"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "addAction"] +- ["Ps23CustomStringConvertible", "application"] +- ["Ps23CustomStringConvertible", "applicationDidBecomeActive"] +- ["Ps23CustomStringConvertible", "applicationDidEnterBackground"] +- ["Ps23CustomStringConvertible", "applicationDidFinishLaunching"] +- ["Ps23CustomStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps23CustomStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps23CustomStringConvertible", "applicationSignificantTimeChange"] +- ["Ps23CustomStringConvertible", "applicationWillEnterForeground"] +- ["Ps23CustomStringConvertible", "applicationWillResignActive"] +- ["Ps23CustomStringConvertible", "applicationWillTerminate"] +- !private ["Ps23CustomStringConvertible", "debugPrint"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- !private ["Ps23CustomStringConvertible", "registerForRemoteNotifications"] +- !private ["Ps23CustomStringConvertible", "registerUserNotificationSettings"] +- !private ["Ps23CustomStringConvertible", "rootViewController"] +- !private ["Ps23CustomStringConvertible", "sharedApplication"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "window"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Alert"] +- !private ["Ps9Equatable", "Badge"] +- !private ["Ps9Equatable", "Default"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "Sound"] +- !private ["Ps9Equatable", "UIAlertAction"] +- !private ["Ps9Equatable", "UIAlertController"] +- !private ["Ps9Equatable", "UIApplication"] +- !private ["Ps9Equatable", "UIUserNotificationSettings"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "addAction"] +- ["Ps9Equatable", "application"] +- ["Ps9Equatable", "applicationDidBecomeActive"] +- ["Ps9Equatable", "applicationDidEnterBackground"] +- ["Ps9Equatable", "applicationDidFinishLaunching"] +- ["Ps9Equatable", "applicationDidReceiveMemoryWarning"] +- ["Ps9Equatable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9Equatable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9Equatable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9Equatable", "applicationSignificantTimeChange"] +- ["Ps9Equatable", "applicationWillEnterForeground"] +- ["Ps9Equatable", "applicationWillResignActive"] +- ["Ps9Equatable", "applicationWillTerminate"] +- !private ["Ps9Equatable", "debugPrint"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "presentViewController"] +- !private ["Ps9Equatable", "registerForRemoteNotifications"] +- !private ["Ps9Equatable", "registerUserNotificationSettings"] +- !private ["Ps9Equatable", "rootViewController"] +- !private ["Ps9Equatable", "sharedApplication"] +- ["Ps9Equatable", "window"] +- ["Ps9Equatable", ""] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "flushInterval"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "loggingEnabled"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Alert"] +- !private ["Ps8Hashable", "Default"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "UIAlertAction"] +- !private ["Ps8Hashable", "UIAlertController"] +- !private ["Ps8Hashable", "UIApplication"] +- !private ["Ps8Hashable", "UIUserNotificationSettings"] +- !private ["Ps8Hashable", "addAction"] +- ["Ps8Hashable", "application"] +- ["Ps8Hashable", "applicationDidBecomeActive"] +- ["Ps8Hashable", "applicationDidEnterBackground"] +- ["Ps8Hashable", "applicationDidFinishLaunching"] +- ["Ps8Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps8Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps8Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps8Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps8Hashable", "applicationSignificantTimeChange"] +- ["Ps8Hashable", "applicationWillEnterForeground"] +- ["Ps8Hashable", "applicationWillResignActive"] +- ["Ps8Hashable", "applicationWillTerminate"] +- !private ["Ps8Hashable", "debugPrint"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "presentViewController"] +- !private ["Ps8Hashable", "registerForRemoteNotifications"] +- !private ["Ps8Hashable", "registerUserNotificationSettings"] +- !private ["Ps8Hashable", "rootViewController"] +- !private ["Ps8Hashable", "sharedApplication"] +- ["Ps8Hashable", "window"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "flushInterval"] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "loggingEnabled"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- !private ["PSo8NSCoding", "addAction"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "presentViewController"] +- !private ["PSo8NSCoding", "rootViewController"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo26NSExtensionRequestHandling", "addAction"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["CSo8NSObject", "AnyObject"] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "NSData"] +- ["CSo8NSObject", "NSError"] +- ["CSo8NSObject", "NSObject"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "UIAlertAction"] +- !private ["CSo8NSObject", "UIAlertController"] +- ["CSo8NSObject", "UIApplication"] +- !private ["CSo8NSObject", "UIUserNotificationSettings"] +- ["CSo8NSObject", "UIWindow"] +- !private ["CSo8NSObject", "addAction"] +- ["CSo8NSObject", "application"] +- ["CSo8NSObject", "applicationDidBecomeActive"] +- ["CSo8NSObject", "applicationDidEnterBackground"] +- ["CSo8NSObject", "applicationDidFinishLaunching"] +- ["CSo8NSObject", "applicationDidReceiveMemoryWarning"] +- ["CSo8NSObject", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo8NSObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo8NSObject", "applicationShouldRequestHealthAuthorization"] +- ["CSo8NSObject", "applicationSignificantTimeChange"] +- ["CSo8NSObject", "applicationWillEnterForeground"] +- ["CSo8NSObject", "applicationWillResignActive"] +- ["CSo8NSObject", "applicationWillTerminate"] +- !private ["CSo8NSObject", "debugPrint"] +- !private ["CSo8NSObject", "deinit"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "presentViewController"] +- !private ["CSo8NSObject", "registerForRemoteNotifications"] +- !private ["CSo8NSObject", "registerUserNotificationSettings"] +- !private ["CSo8NSObject", "rootViewController"] +- !private ["CSo8NSObject", "sharedApplication"] +- ["CSo8NSObject", "window"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "UIAlertAction"] +- !private ["PSo16NSObjectProtocol", "UIAlertController"] +- !private ["PSo16NSObjectProtocol", "UIApplication"] +- !private ["PSo16NSObjectProtocol", "UIUserNotificationSettings"] +- !private ["PSo16NSObjectProtocol", "addAction"] +- ["PSo16NSObjectProtocol", "application"] +- ["PSo16NSObjectProtocol", "applicationDidBecomeActive"] +- ["PSo16NSObjectProtocol", "applicationDidEnterBackground"] +- ["PSo16NSObjectProtocol", "applicationDidFinishLaunching"] +- ["PSo16NSObjectProtocol", "applicationDidReceiveMemoryWarning"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo16NSObjectProtocol", "applicationShouldRequestHealthAuthorization"] +- ["PSo16NSObjectProtocol", "applicationSignificantTimeChange"] +- ["PSo16NSObjectProtocol", "applicationWillEnterForeground"] +- ["PSo16NSObjectProtocol", "applicationWillResignActive"] +- ["PSo16NSObjectProtocol", "applicationWillTerminate"] +- !private ["PSo16NSObjectProtocol", "debugPrint"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- !private ["PSo16NSObjectProtocol", "registerForRemoteNotifications"] +- !private ["PSo16NSObjectProtocol", "registerUserNotificationSettings"] +- !private ["PSo16NSObjectProtocol", "rootViewController"] +- !private ["PSo16NSObjectProtocol", "sharedApplication"] +- ["PSo16NSObjectProtocol", "window"] +- ["PSo16NSObjectProtocol", ""] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "Alert"] +- !private ["Ps13OptionSetType", "Badge"] +- !private ["Ps13OptionSetType", "Element"] +- !private ["Ps13OptionSetType", "Sound"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["C8Mixpanel6People", "addPushDeviceToken"] +- !private ["C8Mixpanel6People", "set"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps16RawRepresentable", "Alert"] +- !private ["Ps16RawRepresentable", "Badge"] +- !private ["Ps16RawRepresentable", "Default"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Sound"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "Alert"] +- !private ["Ps14SetAlgebraType", "Badge"] +- !private ["Ps14SetAlgebraType", "Element"] +- !private ["Ps14SetAlgebraType", "Sound"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["PSo29UIAccessibilityIdentification", "rootViewController"] +- !private ["CSo13UIAlertAction", "init"] +- !private ["OSC18UIAlertActionStyle", "Default"] +- !private ["CSo17UIAlertController", "addAction"] +- !private ["CSo17UIAlertController", "init"] +- !private ["OSC22UIAlertControllerStyle", "Alert"] +- !private ["PSo12UIAppearance", "rootViewController"] +- !private ["PSo21UIAppearanceContainer", "addAction"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- !private ["PSo21UIAppearanceContainer", "rootViewController"] +- !private ["CSo13UIApplication", "registerForRemoteNotifications"] +- !private ["CSo13UIApplication", "registerUserNotificationSettings"] +- !private ["CSo13UIApplication", "sharedApplication"] +- !private ["PSo21UIApplicationDelegate", "Mixpanel"] +- !private ["PSo21UIApplicationDelegate", "UIAlertAction"] +- !private ["PSo21UIApplicationDelegate", "UIAlertController"] +- !private ["PSo21UIApplicationDelegate", "UIApplication"] +- !private ["PSo21UIApplicationDelegate", "UIUserNotificationSettings"] +- ["PSo21UIApplicationDelegate", "application"] +- ["PSo21UIApplicationDelegate", "applicationDidBecomeActive"] +- ["PSo21UIApplicationDelegate", "applicationDidEnterBackground"] +- ["PSo21UIApplicationDelegate", "applicationDidFinishLaunching"] +- ["PSo21UIApplicationDelegate", "applicationDidReceiveMemoryWarning"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo21UIApplicationDelegate", "applicationShouldRequestHealthAuthorization"] +- ["PSo21UIApplicationDelegate", "applicationSignificantTimeChange"] +- ["PSo21UIApplicationDelegate", "applicationWillEnterForeground"] +- ["PSo21UIApplicationDelegate", "applicationWillResignActive"] +- ["PSo21UIApplicationDelegate", "applicationWillTerminate"] +- !private ["PSo21UIApplicationDelegate", "debugPrint"] +- ["PSo21UIApplicationDelegate", "window"] +- ["PSo21UIApplicationDelegate", ""] +- !private ["PSo18UIContentContainer", "addAction"] +- !private ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- !private ["PSo17UICoordinateSpace", "rootViewController"] +- !private ["PSo13UIDynamicItem", "rootViewController"] +- !private ["PSo18UIFocusEnvironment", "addAction"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- !private ["PSo18UIFocusEnvironment", "rootViewController"] +- ["CSo11UIResponder", "AnyObject"] +- ["CSo11UIResponder", "Bool"] +- !private ["CSo11UIResponder", "Mixpanel"] +- ["CSo11UIResponder", "NSData"] +- ["CSo11UIResponder", "NSError"] +- ["CSo11UIResponder", "NSObject"] +- !private ["CSo11UIResponder", "String"] +- !private ["CSo11UIResponder", "UIAlertAction"] +- !private ["CSo11UIResponder", "UIAlertController"] +- ["CSo11UIResponder", "UIApplication"] +- !private ["CSo11UIResponder", "UIUserNotificationSettings"] +- ["CSo11UIResponder", "UIWindow"] +- !private ["CSo11UIResponder", "addAction"] +- ["CSo11UIResponder", "application"] +- ["CSo11UIResponder", "applicationDidBecomeActive"] +- ["CSo11UIResponder", "applicationDidEnterBackground"] +- ["CSo11UIResponder", "applicationDidFinishLaunching"] +- ["CSo11UIResponder", "applicationDidReceiveMemoryWarning"] +- ["CSo11UIResponder", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo11UIResponder", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo11UIResponder", "applicationShouldRequestHealthAuthorization"] +- ["CSo11UIResponder", "applicationSignificantTimeChange"] +- ["CSo11UIResponder", "applicationWillEnterForeground"] +- ["CSo11UIResponder", "applicationWillResignActive"] +- ["CSo11UIResponder", "applicationWillTerminate"] +- !private ["CSo11UIResponder", "debugPrint"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "presentViewController"] +- !private ["CSo11UIResponder", "registerForRemoteNotifications"] +- !private ["CSo11UIResponder", "registerUserNotificationSettings"] +- !private ["CSo11UIResponder", "rootViewController"] +- !private ["CSo11UIResponder", "sharedApplication"] +- ["CSo11UIResponder", "window"] +- ["CSo11UIResponder", ""] +- !private ["PSo16UIStateRestoring", "addAction"] +- !private ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- !private ["PSo18UITraitEnvironment", "addAction"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- !private ["PSo18UITraitEnvironment", "rootViewController"] +- !private ["CSo26UIUserNotificationSettings", "init"] +- !private ["VSC22UIUserNotificationType", "Alert"] +- !private ["VSC22UIUserNotificationType", "Badge"] +- !private ["VSC22UIUserNotificationType", "Element"] +- !private ["VSC22UIUserNotificationType", "Sound"] +- !private ["CSo6UIView", "rootViewController"] +- !private ["CSo16UIViewController", "addAction"] +- !private ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "presentViewController"] +- !private ["CSo8UIWindow", "rootViewController"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "rootViewController"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- "C12MixpanelDemo11AppDelegate" +- !private "Ps23ArrayLiteralConvertible" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- "Ps9Equatable" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo26NSExtensionRequestHandling" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "C8Mixpanel6People" +- !private "Ps21RandomAccessIndexType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Strideable" +- !private "SS" +- !private "PSo29UIAccessibilityIdentification" +- !private "CSo13UIAlertAction" +- !private "OSC18UIAlertActionStyle" +- !private "CSo17UIAlertController" +- !private "OSC22UIAlertControllerStyle" +- !private "PSo12UIAppearance" +- !private "PSo21UIAppearanceContainer" +- !private "CSo13UIApplication" +- "PSo21UIApplicationDelegate" +- !private "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- !private "PSo18UIFocusEnvironment" +- "CSo11UIResponder" +- !private "PSo16UIStateRestoring" +- !private "PSo18UITraitEnvironment" +- !private "CSo26UIUserNotificationSettings" +- !private "VSC22UIUserNotificationType" +- !private "CSo6UIView" +- !private "CSo16UIViewController" +- !private "CSo8UIWindow" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "subscript" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "d6f9ae40a13c6b959f30d7d6a41595a5" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule new file mode 100644 index 00000000..8cfdb3fe Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-OutputFileMap.json new file mode 100644 index 00000000..20dfb98d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/MixpanelDemo-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/AppDelegate.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/AppDelegate~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/AppDelegate.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/AppDelegate.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/AppDelegate.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/AppDelegate.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/AppDelegate.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/TrackingViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/TrackingViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/TrackingViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/TrackingViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/TrackingViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/TrackingViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/TrackingViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/UtilityViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/UtilityViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/UtilityViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/UtilityViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/UtilityViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/UtilityViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/UtilityViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/ActionCompleteViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/ActionCompleteViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/ActionCompleteViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/ActionCompleteViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/ActionCompleteViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/ActionCompleteViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/ActionCompleteViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/PeopleViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/PeopleViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/PeopleViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/PeopleViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/PeopleViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/PeopleViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemo.build\/Objects-normal\/arm64\/PeopleViewController.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-Swift.h new file mode 100644 index 00000000..79c3be14 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-master.swiftdeps new file mode 100644 index 00000000..1a8c4ea1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo-master.swiftdeps @@ -0,0 +1,9 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "0027ae1a01a04863c9b4439fc1e04acf" +build_time: [522805032, 795761000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift": [522804981, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift": [522804981, 0] diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.LinkFileList new file mode 100644 index 00000000..f2be4daf --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/AppDelegate.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/ActionCompleteViewController.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.swiftmodule new file mode 100644 index 00000000..4ea21fca Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo_dependency_info.dat b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo_dependency_info.dat new file mode 100644 index 00000000..47ed46d6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/MixpanelDemo_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.d new file mode 100644 index 00000000..96ce3587 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.o new file mode 100644 index 00000000..c5962796 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.swiftdeps new file mode 100644 index 00000000..b2015a2f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController.swiftdeps @@ -0,0 +1,1325 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PeopleViewController" +provides-nominal: +- "C12MixpanelDemo20PeopleViewController" +provides-member: +- ["C12MixpanelDemo20PeopleViewController", ""] +provides-dynamic-lookup: +- "viewDidLoad" +- "tableViewItems" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +depends-top-level: +- !private "UnicodeScalarType" +- !private "BooleanLiteralType" +- "Int" +- !private "UIColor" +- "UITableView" +- !private "UIModalPresentationStyle" +- !private "Mixpanel" +- "UIViewController" +- "Array" +- "PeopleViewController" +- !private "Properties" +- !private "NSURL" +- "NSIndexPath" +- !private "NSNull" +- !private "Dictionary" +- "UITableViewDataSource" +- "UITableViewDelegate" +- "StringLiteralType" +- !private "NSDate" +- !private "UIModalTransitionStyle" +- !private "ActionCompleteViewController" +- "UITableViewCell" +- !private "~=" +depends-member: +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "clearCharges"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "deleteUser"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "increment"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "presentViewController"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "setOnce"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- !private ["Ps9AnyObject", "trackCharge"] +- !private ["Ps9AnyObject", "union"] +- !private ["Ps9AnyObject", "unset"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["PSo8CAAction", "init"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "NSDate"] +- !private ["PSo8NSCoding", "NSNull"] +- !private ["PSo8NSCoding", "NSURL"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["CSo6NSDate", "init"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "NSDate"] +- !private ["PSo26NSExtensionRequestHandling", "NSNull"] +- !private ["PSo26NSExtensionRequestHandling", "NSURL"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo6NSNull", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDate"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel6People", "append"] +- !private ["C8Mixpanel6People", "clearCharges"] +- !private ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "setOnce"] +- !private ["C8Mixpanel6People", "trackCharge"] +- !private ["C8Mixpanel6People", "union"] +- !private ["C8Mixpanel6People", "unset"] +- !private ["C12MixpanelDemo20PeopleViewController", "ActionCompleteViewController"] +- ["C12MixpanelDemo20PeopleViewController", "Int"] +- !private ["C12MixpanelDemo20PeopleViewController", "Mixpanel"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSDate"] +- ["C12MixpanelDemo20PeopleViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSNull"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSURL"] +- !private ["C12MixpanelDemo20PeopleViewController", "Properties"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIColor"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo20PeopleViewController", "UITableView"] +- ["C12MixpanelDemo20PeopleViewController", "UITableViewCell"] +- ["C12MixpanelDemo20PeopleViewController", "deinit"] +- ["C12MixpanelDemo20PeopleViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo20PeopleViewController", "init"] +- ["C12MixpanelDemo20PeopleViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo20PeopleViewController", "presentViewController"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo20PeopleViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo20PeopleViewController", "storyboard"] +- ["C12MixpanelDemo20PeopleViewController", "tableView"] +- ["C12MixpanelDemo20PeopleViewController", "tableViewItems"] +- ["C12MixpanelDemo20PeopleViewController", "viewDidLoad"] +- ["C12MixpanelDemo20PeopleViewController", "viewForZoomingInScrollView"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "NSDate"] +- !private ["PSo21UIAppearanceContainer", "NSNull"] +- !private ["PSo21UIAppearanceContainer", "NSURL"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "NSDate"] +- !private ["PSo18UIContentContainer", "NSNull"] +- !private ["PSo18UIContentContainer", "NSURL"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "NSDate"] +- !private ["PSo18UIFocusEnvironment", "NSNull"] +- !private ["PSo18UIFocusEnvironment", "NSURL"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Mixpanel"] +- !private ["CSo11UIResponder", "NSDate"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "NSNull"] +- !private ["CSo11UIResponder", "NSURL"] +- !private ["CSo11UIResponder", "Properties"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "NSDate"] +- !private ["PSo20UIScrollViewDelegate", "NSNull"] +- !private ["PSo20UIScrollViewDelegate", "NSURL"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "NSDate"] +- !private ["PSo16UIStateRestoring", "NSNull"] +- !private ["PSo16UIStateRestoring", "NSURL"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "NSDate"] +- !private ["PSo21UITableViewDataSource", "NSNull"] +- !private ["PSo21UITableViewDataSource", "NSURL"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "NSDate"] +- !private ["PSo19UITableViewDelegate", "NSNull"] +- !private ["PSo19UITableViewDelegate", "NSURL"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "NSDate"] +- !private ["PSo18UITraitEnvironment", "NSNull"] +- !private ["PSo18UITraitEnvironment", "NSURL"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Mixpanel"] +- !private ["CSo16UIViewController", "NSDate"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "NSNull"] +- !private ["CSo16UIViewController", "NSURL"] +- !private ["CSo16UIViewController", "Properties"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "PSo8CAAction" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo6NSNull" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo7NSValue" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- "C12MixpanelDemo20PeopleViewController" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "b080b3342f9c214e6a1473ff4151a857" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftmodule new file mode 100644 index 00000000..a8312d24 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/PeopleViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.d new file mode 100644 index 00000000..09cf9ade --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.o new file mode 100644 index 00000000..14a6d6e6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.swiftdeps new file mode 100644 index 00000000..c2bef5e9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController.swiftdeps @@ -0,0 +1,1529 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "TrackingViewController" +provides-nominal: +- "C12MixpanelDemo22TrackingViewController" +provides-member: +- ["C12MixpanelDemo22TrackingViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +- "viewDidLoad" +depends-top-level: +- !private "NSEC_PER_SEC" +- !private "Double" +- !private "UnicodeScalarType" +- "Array" +- !private "BooleanLiteralType" +- !private "UIModalPresentationStyle" +- "UITableView" +- !private "Int64" +- !private "NSDate" +- "NSIndexPath" +- "Int" +- !private "DISPATCH_TIME_NOW" +- !private "NSURL" +- !private "*" +- !private "NSNull" +- !private "dispatch_after" +- !private "Mixpanel" +- "UIViewController" +- "StringLiteralType" +- !private "UIColor" +- !private "dispatch_time" +- !private "dispatch_get_main_queue" +- !private "+=" +- "UITableViewCell" +- !private "ActionCompleteViewController" +- !private "UIModalTransitionStyle" +- "TrackingViewController" +- "UITableViewDelegate" +- !private "~=" +- !private "Dictionary" +- "UITableViewDataSource" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_NOW"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Int64"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSEC_PER_SEC"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "clearTimedEvents"] +- !private ["Ps9AnyObject", "currentSuperProperties"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "dispatch_after"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_time"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["PSo8CAAction", "init"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "DISPATCH_TIME_NOW"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Double"] +- !private ["Ps11CVarArgType", "Element"] +- !private ["Ps11CVarArgType", "Int64"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSEC_PER_SEC"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "Value"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- !private ["Ps11CVarArgType", "dispatch_after"] +- !private ["Ps11CVarArgType", "dispatch_get_main_queue"] +- !private ["Ps11CVarArgType", "dispatch_time"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps28CustomDebugStringConvertible", "Double"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Int64"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "clearSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearTimedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_after"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_time"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperPropertiesOnce"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "unregisterSuperProperty"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Double"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "Int64"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps23CustomStringConvertible", "dispatch_after"] +- !private ["Ps23CustomStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps23CustomStringConvertible", "dispatch_time"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "DISPATCH_TIME_NOW"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Double"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Int64"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSEC_PER_SEC"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "Value"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- !private ["Ps9Equatable", "dispatch_after"] +- !private ["Ps9Equatable", "dispatch_get_main_queue"] +- !private ["Ps9Equatable", "dispatch_time"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["P8Mixpanel13FlushDelegate", "clearSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "clearTimedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "currentSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperPropertiesOnce"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "unregisterSuperProperty"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "DISPATCH_TIME_NOW"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Double"] +- !private ["Ps8Hashable", "Element"] +- !private ["Ps8Hashable", "Int64"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSEC_PER_SEC"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "Value"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- !private ["Ps8Hashable", "dispatch_after"] +- !private ["Ps8Hashable", "dispatch_get_main_queue"] +- !private ["Ps8Hashable", "dispatch_time"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs5Int64", "init"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- !private ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "DISPATCH_TIME_NOW"] +- !private ["PSo8NSCoding", "Double"] +- !private ["PSo8NSCoding", "Int64"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "NSDate"] +- !private ["PSo8NSCoding", "NSEC_PER_SEC"] +- !private ["PSo8NSCoding", "NSNull"] +- !private ["PSo8NSCoding", "NSURL"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- !private ["PSo8NSCoding", "dispatch_after"] +- !private ["PSo8NSCoding", "dispatch_get_main_queue"] +- !private ["PSo8NSCoding", "dispatch_time"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["CSo6NSDate", "deinit"] +- !private ["CSo6NSDate", "init"] +- !private ["PSo26NSExtensionRequestHandling", "DISPATCH_TIME_NOW"] +- !private ["PSo26NSExtensionRequestHandling", "Double"] +- !private ["PSo26NSExtensionRequestHandling", "Int64"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "NSDate"] +- !private ["PSo26NSExtensionRequestHandling", "NSEC_PER_SEC"] +- !private ["PSo26NSExtensionRequestHandling", "NSNull"] +- !private ["PSo26NSExtensionRequestHandling", "NSURL"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_after"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_get_main_queue"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_time"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo6NSNull", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- !private ["CSo8NSObject", "DISPATCH_TIME_NOW"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Element"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Int64"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDate"] +- !private ["CSo8NSObject", "NSEC_PER_SEC"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "Value"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- !private ["CSo8NSObject", "dispatch_after"] +- !private ["CSo8NSObject", "dispatch_get_main_queue"] +- !private ["CSo8NSObject", "dispatch_time"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "DISPATCH_TIME_NOW"] +- !private ["PSo16NSObjectProtocol", "Double"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "Int64"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSEC_PER_SEC"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "Value"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- !private ["PSo16NSObjectProtocol", "dispatch_after"] +- !private ["PSo16NSObjectProtocol", "dispatch_get_main_queue"] +- !private ["PSo16NSObjectProtocol", "dispatch_time"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["C12MixpanelDemo22TrackingViewController", "ActionCompleteViewController"] +- !private ["C12MixpanelDemo22TrackingViewController", "DISPATCH_TIME_NOW"] +- !private ["C12MixpanelDemo22TrackingViewController", "Double"] +- ["C12MixpanelDemo22TrackingViewController", "Int"] +- !private ["C12MixpanelDemo22TrackingViewController", "Int64"] +- !private ["C12MixpanelDemo22TrackingViewController", "Mixpanel"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSDate"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSEC_PER_SEC"] +- ["C12MixpanelDemo22TrackingViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSNull"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSURL"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIColor"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo22TrackingViewController", "UITableView"] +- ["C12MixpanelDemo22TrackingViewController", "UITableViewCell"] +- ["C12MixpanelDemo22TrackingViewController", "deinit"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_after"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_get_main_queue"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_time"] +- ["C12MixpanelDemo22TrackingViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo22TrackingViewController", "init"] +- ["C12MixpanelDemo22TrackingViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo22TrackingViewController", "presentViewController"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo22TrackingViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo22TrackingViewController", "storyboard"] +- ["C12MixpanelDemo22TrackingViewController", "tableView"] +- ["C12MixpanelDemo22TrackingViewController", "tableViewItems"] +- ["C12MixpanelDemo22TrackingViewController", "viewDidLoad"] +- ["C12MixpanelDemo22TrackingViewController", "viewForZoomingInScrollView"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo21UIAppearanceContainer", "Double"] +- !private ["PSo21UIAppearanceContainer", "Int64"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "NSDate"] +- !private ["PSo21UIAppearanceContainer", "NSEC_PER_SEC"] +- !private ["PSo21UIAppearanceContainer", "NSNull"] +- !private ["PSo21UIAppearanceContainer", "NSURL"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- !private ["PSo21UIAppearanceContainer", "dispatch_after"] +- !private ["PSo21UIAppearanceContainer", "dispatch_get_main_queue"] +- !private ["PSo21UIAppearanceContainer", "dispatch_time"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIContentContainer", "Double"] +- !private ["PSo18UIContentContainer", "Int64"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "NSDate"] +- !private ["PSo18UIContentContainer", "NSEC_PER_SEC"] +- !private ["PSo18UIContentContainer", "NSNull"] +- !private ["PSo18UIContentContainer", "NSURL"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- !private ["PSo18UIContentContainer", "dispatch_after"] +- !private ["PSo18UIContentContainer", "dispatch_get_main_queue"] +- !private ["PSo18UIContentContainer", "dispatch_time"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIFocusEnvironment", "Double"] +- !private ["PSo18UIFocusEnvironment", "Int64"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "NSDate"] +- !private ["PSo18UIFocusEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UIFocusEnvironment", "NSNull"] +- !private ["PSo18UIFocusEnvironment", "NSURL"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- !private ["PSo18UIFocusEnvironment", "dispatch_after"] +- !private ["PSo18UIFocusEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UIFocusEnvironment", "dispatch_time"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- !private ["CSo11UIResponder", "DISPATCH_TIME_NOW"] +- !private ["CSo11UIResponder", "Double"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Int64"] +- !private ["CSo11UIResponder", "Mixpanel"] +- !private ["CSo11UIResponder", "NSDate"] +- !private ["CSo11UIResponder", "NSEC_PER_SEC"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "NSNull"] +- !private ["CSo11UIResponder", "NSURL"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- !private ["CSo11UIResponder", "dispatch_after"] +- !private ["CSo11UIResponder", "dispatch_get_main_queue"] +- !private ["CSo11UIResponder", "dispatch_time"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "DISPATCH_TIME_NOW"] +- !private ["PSo20UIScrollViewDelegate", "Double"] +- !private ["PSo20UIScrollViewDelegate", "Int64"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "NSDate"] +- !private ["PSo20UIScrollViewDelegate", "NSEC_PER_SEC"] +- !private ["PSo20UIScrollViewDelegate", "NSNull"] +- !private ["PSo20UIScrollViewDelegate", "NSURL"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_after"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_get_main_queue"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_time"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "DISPATCH_TIME_NOW"] +- !private ["PSo16UIStateRestoring", "Double"] +- !private ["PSo16UIStateRestoring", "Int64"] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "NSDate"] +- !private ["PSo16UIStateRestoring", "NSEC_PER_SEC"] +- !private ["PSo16UIStateRestoring", "NSNull"] +- !private ["PSo16UIStateRestoring", "NSURL"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- !private ["PSo16UIStateRestoring", "dispatch_after"] +- !private ["PSo16UIStateRestoring", "dispatch_get_main_queue"] +- !private ["PSo16UIStateRestoring", "dispatch_time"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "DISPATCH_TIME_NOW"] +- !private ["PSo21UITableViewDataSource", "Double"] +- !private ["PSo21UITableViewDataSource", "Int64"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "NSDate"] +- !private ["PSo21UITableViewDataSource", "NSEC_PER_SEC"] +- !private ["PSo21UITableViewDataSource", "NSNull"] +- !private ["PSo21UITableViewDataSource", "NSURL"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- !private ["PSo21UITableViewDataSource", "dispatch_after"] +- !private ["PSo21UITableViewDataSource", "dispatch_get_main_queue"] +- !private ["PSo21UITableViewDataSource", "dispatch_time"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "DISPATCH_TIME_NOW"] +- !private ["PSo19UITableViewDelegate", "Double"] +- !private ["PSo19UITableViewDelegate", "Int64"] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "NSDate"] +- !private ["PSo19UITableViewDelegate", "NSEC_PER_SEC"] +- !private ["PSo19UITableViewDelegate", "NSNull"] +- !private ["PSo19UITableViewDelegate", "NSURL"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- !private ["PSo19UITableViewDelegate", "dispatch_after"] +- !private ["PSo19UITableViewDelegate", "dispatch_get_main_queue"] +- !private ["PSo19UITableViewDelegate", "dispatch_time"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UITraitEnvironment", "Double"] +- !private ["PSo18UITraitEnvironment", "Int64"] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "NSDate"] +- !private ["PSo18UITraitEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UITraitEnvironment", "NSNull"] +- !private ["PSo18UITraitEnvironment", "NSURL"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- !private ["PSo18UITraitEnvironment", "dispatch_after"] +- !private ["PSo18UITraitEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UITraitEnvironment", "dispatch_time"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- !private ["CSo16UIViewController", "DISPATCH_TIME_NOW"] +- !private ["CSo16UIViewController", "Double"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Int64"] +- !private ["CSo16UIViewController", "Mixpanel"] +- !private ["CSo16UIViewController", "NSDate"] +- !private ["CSo16UIViewController", "NSEC_PER_SEC"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "NSNull"] +- !private ["CSo16UIViewController", "NSURL"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- !private ["CSo16UIViewController", "dispatch_after"] +- !private ["CSo16UIViewController", "dispatch_get_main_queue"] +- !private ["CSo16UIViewController", "dispatch_time"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "PSo8CAAction" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo6NSNull" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo7NSValue" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "C12MixpanelDemo22TrackingViewController" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "167b08616bade02fda98c72c559f8b7b" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftmodule new file mode 100644 index 00000000..0174ff72 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/TrackingViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.d new file mode 100644 index 00000000..32b14006 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.o new file mode 100644 index 00000000..4f006d40 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.swiftdeps new file mode 100644 index 00000000..6ff71fab --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController.swiftdeps @@ -0,0 +1,1215 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "UtilityViewController" +provides-nominal: +- "C12MixpanelDemo21UtilityViewController" +provides-member: +- ["C12MixpanelDemo21UtilityViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "viewDidLoad" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +depends-top-level: +- !private "Mixpanel" +- "UtilityViewController" +- "UITableView" +- !private "BooleanLiteralType" +- !private "UIModalPresentationStyle" +- "NSIndexPath" +- "Int" +- !private "UIColor" +- "StringLiteralType" +- "UITableViewDelegate" +- "UITableViewDataSource" +- !private "ActionCompleteViewController" +- "UIViewController" +- !private "UIModalTransitionStyle" +- "UITableViewCell" +- "Array" +- !private "~=" +depends-member: +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "createAlias"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "flush"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "reset"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "createAlias"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "createAlias"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "archive"] +- !private ["C8Mixpanel16MixpanelInstance", "createAlias"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Mixpanel"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Mixpanel"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["C12MixpanelDemo21UtilityViewController", "ActionCompleteViewController"] +- ["C12MixpanelDemo21UtilityViewController", "Int"] +- !private ["C12MixpanelDemo21UtilityViewController", "Mixpanel"] +- ["C12MixpanelDemo21UtilityViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIColor"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo21UtilityViewController", "UITableView"] +- ["C12MixpanelDemo21UtilityViewController", "UITableViewCell"] +- ["C12MixpanelDemo21UtilityViewController", "deinit"] +- ["C12MixpanelDemo21UtilityViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo21UtilityViewController", "init"] +- ["C12MixpanelDemo21UtilityViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo21UtilityViewController", "presentViewController"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo21UtilityViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo21UtilityViewController", "storyboard"] +- ["C12MixpanelDemo21UtilityViewController", "tableView"] +- ["C12MixpanelDemo21UtilityViewController", "tableViewItems"] +- ["C12MixpanelDemo21UtilityViewController", "viewDidLoad"] +- ["C12MixpanelDemo21UtilityViewController", "viewForZoomingInScrollView"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo7NSValue" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "C12MixpanelDemo21UtilityViewController" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "ff54430ae71aacd33f64a292fa1c5b6d" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftmodule new file mode 100644 index 00000000..dd5847d6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/Objects-normal/arm64/UtilityViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/assetcatalog_dependencies b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/assetcatalog_dependencies new file mode 100644 index 00000000..03d016b3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/assetcatalog_dependencies differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/assetcatalog_generated_info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/assetcatalog_generated_info.plist new file mode 100644 index 00000000..0c67376e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/assetcatalog_generated_info.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/dgph new file mode 100644 index 00000000..2ff7ca3a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/dgph~ new file mode 100644 index 00000000..2ff7ca3a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/swift-overrides.hmap new file mode 100644 index 00000000..c5ca52c6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemo.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/MixpanelDemoTests.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.d new file mode 100644 index 00000000..da548122 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.o new file mode 100644 index 00000000..0ea763ed Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.swiftdeps new file mode 100644 index 00000000..5991ff15 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.swiftdeps @@ -0,0 +1,282 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "LoggerTests" +- "CounterLogging" +provides-nominal: +- "C17MixpanelDemoTests11LoggerTests" +- "C17MixpanelDemoTests14CounterLogging" +provides-member: +- ["C17MixpanelDemoTests11LoggerTests", ""] +- ["C17MixpanelDemoTests14CounterLogging", ""] +provides-dynamic-lookup: +- "testEnableInfo" +- "testEnableDebug" +- "testEnableWarning" +- "testDisabledLogging" +- "setUp" +- "testEnableError" +depends-top-level: +- !private "XCTAssertEqual" +- "Logging" +- "XCTestCase" +- !private "StringLiteralType" +- "LoggerTests" +- "LogMessage" +- !private "Logger" +- !private "+" +- "CounterLogging" +depends-member: +- !private ["Ps9AnyObject", "CounterLogging"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "XCTAssertEqual"] +- !private ["Ps9AnyObject", "addLogging"] +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "count"] +- ["Ps9AnyObject", "counter"] +- !private ["Ps9AnyObject", "debug"] +- !private ["Ps9AnyObject", "disableLevel"] +- !private ["Ps9AnyObject", "enableLevel"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "info"] +- !private ["Ps9AnyObject", "init"] +- ["Ps9AnyObject", "setUp"] +- ["Ps9AnyObject", "testDisabledLogging"] +- ["Ps9AnyObject", "testEnableDebug"] +- ["Ps9AnyObject", "testEnableError"] +- ["Ps9AnyObject", "testEnableInfo"] +- ["Ps9AnyObject", "testEnableWarning"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Ps7CVarArg", "CounterLogging"] +- !private ["Ps7CVarArg", "Logger"] +- !private ["Ps7CVarArg", "XCTAssertEqual"] +- ["Ps7CVarArg", "counter"] +- !private ["Ps7CVarArg", "init"] +- ["Ps7CVarArg", "setUp"] +- ["Ps7CVarArg", "testDisabledLogging"] +- ["Ps7CVarArg", "testEnableDebug"] +- ["Ps7CVarArg", "testEnableError"] +- ["Ps7CVarArg", "testEnableInfo"] +- ["Ps7CVarArg", "testEnableWarning"] +- ["Ps7CVarArg", ""] +- ["C17MixpanelDemoTests14CounterLogging", "LogMessage"] +- ["C17MixpanelDemoTests14CounterLogging", "addMessage"] +- ["C17MixpanelDemoTests14CounterLogging", "count"] +- ["C17MixpanelDemoTests14CounterLogging", "deinit"] +- ["C17MixpanelDemoTests14CounterLogging", "init"] +- !private ["Ps28CustomDebugStringConvertible", "CounterLogging"] +- !private ["Ps28CustomDebugStringConvertible", "Logger"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertEqual"] +- ["Ps28CustomDebugStringConvertible", "counter"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- ["Ps28CustomDebugStringConvertible", "setUp"] +- ["Ps28CustomDebugStringConvertible", "testDisabledLogging"] +- ["Ps28CustomDebugStringConvertible", "testEnableDebug"] +- ["Ps28CustomDebugStringConvertible", "testEnableError"] +- ["Ps28CustomDebugStringConvertible", "testEnableInfo"] +- ["Ps28CustomDebugStringConvertible", "testEnableWarning"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "CounterLogging"] +- !private ["Ps23CustomStringConvertible", "Logger"] +- !private ["Ps23CustomStringConvertible", "XCTAssertEqual"] +- ["Ps23CustomStringConvertible", "counter"] +- !private ["Ps23CustomStringConvertible", "init"] +- ["Ps23CustomStringConvertible", "setUp"] +- ["Ps23CustomStringConvertible", "testDisabledLogging"] +- ["Ps23CustomStringConvertible", "testEnableDebug"] +- ["Ps23CustomStringConvertible", "testEnableError"] +- ["Ps23CustomStringConvertible", "testEnableInfo"] +- ["Ps23CustomStringConvertible", "testEnableWarning"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Ps9Equatable", "CounterLogging"] +- !private ["Ps9Equatable", "Debug"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Info"] +- !private ["Ps9Equatable", "Logger"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "XCTAssertEqual"] +- ["Ps9Equatable", "counter"] +- !private ["Ps9Equatable", "init"] +- ["Ps9Equatable", "setUp"] +- ["Ps9Equatable", "testDisabledLogging"] +- ["Ps9Equatable", "testEnableDebug"] +- ["Ps9Equatable", "testEnableError"] +- ["Ps9Equatable", "testEnableInfo"] +- ["Ps9Equatable", "testEnableWarning"] +- ["Ps9Equatable", ""] +- !private ["Ps8Hashable", "CounterLogging"] +- !private ["Ps8Hashable", "Debug"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Info"] +- !private ["Ps8Hashable", "Logger"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "XCTAssertEqual"] +- ["Ps8Hashable", "counter"] +- !private ["Ps8Hashable", "init"] +- ["Ps8Hashable", "setUp"] +- ["Ps8Hashable", "testDisabledLogging"] +- ["Ps8Hashable", "testEnableDebug"] +- ["Ps8Hashable", "testEnableError"] +- ["Ps8Hashable", "testEnableInfo"] +- ["Ps8Hashable", "testEnableWarning"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["O8Mixpanel8LogLevel", "Debug"] +- !private ["O8Mixpanel8LogLevel", "Error"] +- !private ["O8Mixpanel8LogLevel", "Info"] +- !private ["O8Mixpanel8LogLevel", "Warning"] +- !private ["C8Mixpanel6Logger", "addLogging"] +- !private ["C8Mixpanel6Logger", "debug"] +- !private ["C8Mixpanel6Logger", "disableLevel"] +- !private ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["C8Mixpanel6Logger", "warn"] +- ["C17MixpanelDemoTests11LoggerTests", "CounterLogging"] +- !private ["C17MixpanelDemoTests11LoggerTests", "Logger"] +- !private ["C17MixpanelDemoTests11LoggerTests", "XCTAssertEqual"] +- ["C17MixpanelDemoTests11LoggerTests", "counter"] +- ["C17MixpanelDemoTests11LoggerTests", "deinit"] +- ["C17MixpanelDemoTests11LoggerTests", "init"] +- ["C17MixpanelDemoTests11LoggerTests", "setUp"] +- ["C17MixpanelDemoTests11LoggerTests", "testDisabledLogging"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableDebug"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableError"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableInfo"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableWarning"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "count"] +- !private ["P8Mixpanel7Logging", "init"] +- ["P8Mixpanel7Logging", ""] +- ["CSo8NSObject", "CounterLogging"] +- !private ["CSo8NSObject", "Logger"] +- !private ["CSo8NSObject", "XCTAssertEqual"] +- ["CSo8NSObject", "counter"] +- ["CSo8NSObject", "init"] +- ["CSo8NSObject", "setUp"] +- ["CSo8NSObject", "testDisabledLogging"] +- ["CSo8NSObject", "testEnableDebug"] +- ["CSo8NSObject", "testEnableError"] +- ["CSo8NSObject", "testEnableInfo"] +- ["CSo8NSObject", "testEnableWarning"] +- !private ["PSo16NSObjectProtocol", "CounterLogging"] +- !private ["PSo16NSObjectProtocol", "Logger"] +- !private ["PSo16NSObjectProtocol", "XCTAssertEqual"] +- ["PSo16NSObjectProtocol", "counter"] +- !private ["PSo16NSObjectProtocol", "init"] +- ["PSo16NSObjectProtocol", "setUp"] +- ["PSo16NSObjectProtocol", "testDisabledLogging"] +- ["PSo16NSObjectProtocol", "testEnableDebug"] +- ["PSo16NSObjectProtocol", "testEnableError"] +- ["PSo16NSObjectProtocol", "testEnableInfo"] +- ["PSo16NSObjectProtocol", "testEnableWarning"] +- ["PSo16NSObjectProtocol", ""] +- !private ["Sq", "deinit"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- !private ["Ps16RawRepresentable", "Warning"] +- !private ["Vs12StaticString", "deinit"] +- ["CSo6XCTest", "CounterLogging"] +- !private ["CSo6XCTest", "Logger"] +- !private ["CSo6XCTest", "XCTAssertEqual"] +- ["CSo6XCTest", "counter"] +- ["CSo6XCTest", "init"] +- ["CSo6XCTest", "setUp"] +- ["CSo6XCTest", "testDisabledLogging"] +- ["CSo6XCTest", "testEnableDebug"] +- ["CSo6XCTest", "testEnableError"] +- ["CSo6XCTest", "testEnableInfo"] +- ["CSo6XCTest", "testEnableWarning"] +- ["CSo10XCTestCase", "CounterLogging"] +- !private ["CSo10XCTestCase", "Logger"] +- !private ["CSo10XCTestCase", "XCTAssertEqual"] +- ["CSo10XCTestCase", "counter"] +- ["CSo10XCTestCase", "init"] +- ["CSo10XCTestCase", "setUp"] +- ["CSo10XCTestCase", "testDisabledLogging"] +- ["CSo10XCTestCase", "testEnableDebug"] +- ["CSo10XCTestCase", "testEnableError"] +- ["CSo10XCTestCase", "testEnableInfo"] +- ["CSo10XCTestCase", "testEnableWarning"] +- ["CSo10XCTestCase", ""] +depends-nominal: +- "Ps9AnyObject" +- "Ps7CVarArg" +- "C17MixpanelDemoTests14CounterLogging" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Ps9Equatable" +- "Ps8Hashable" +- !private "SQ" +- !private "O8Mixpanel8LogLevel" +- !private "C8Mixpanel6Logger" +- "C17MixpanelDemoTests11LoggerTests" +- "P8Mixpanel7Logging" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Sq" +- !private "Ps16RawRepresentable" +- !private "Vs12StaticString" +- "CSo6XCTest" +- "CSo10XCTestCase" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule" +interface-hash: "d853201908eb522d8ac1344f2c0607e0" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftdoc new file mode 100644 index 00000000..ce0699ab Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftmodule new file mode 100644 index 00000000..c51abc7d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.d new file mode 100644 index 00000000..971d20a8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.o new file mode 100644 index 00000000..193263f2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.swiftdeps new file mode 100644 index 00000000..8fac0afb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.swiftdeps @@ -0,0 +1,598 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelBaseTests" +provides-nominal: +- "C17MixpanelDemoTests17MixpanelBaseTests" +provides-member: +- ["C17MixpanelDemoTests17MixpanelBaseTests", ""] +provides-dynamic-lookup: +- "flushAndWaitForSerialQueue" +- "requestCount" +- "setUp" +- "waitForSerialQueue" +- "tearDown" +- "assertDefaultPeopleProperties" +- "allPropertyTypes" +depends-top-level: +- !private "kTestToken" +- "AnyObject" +- !private "StringLiteralType" +- !private "stubTrack" +- "MixpanelDelegate" +- !private "URL" +- !private "Array" +- !private "Mixpanel" +- !private "UnicodeScalarType" +- !private "DateFormatter" +- !private "NSLog" +- !private "BooleanLiteralType" +- "Bool" +- !private "LSNocilla" +- !private "NSNull" +- "MixpanelInstance" +- "String" +- !private "XCTAssertNotNil" +- "MixpanelBaseTests" +- "XCTestCase" +- !private "Dictionary" +depends-member: +- !private ["Ps9AnyObject", "DateFormatter"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "LSNocilla"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSLog"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "URL"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "XCTAssertNotNil"] +- ["Ps9AnyObject", "allPropertyTypes"] +- ["Ps9AnyObject", "assertDefaultPeopleProperties"] +- !private ["Ps9AnyObject", "clearStubs"] +- !private ["Ps9AnyObject", "date"] +- !private ["Ps9AnyObject", "dateFormat"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "flush"] +- ["Ps9AnyObject", "flushAndWaitForSerialQueue"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "kTestToken"] +- ["Ps9AnyObject", "mixpanel"] +- ["Ps9AnyObject", "mixpanelWillFlush"] +- ["Ps9AnyObject", "requestCount"] +- !private ["Ps9AnyObject", "reset"] +- !private ["Ps9AnyObject", "serialQueue"] +- ["Ps9AnyObject", "setUp"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "start"] +- !private ["Ps9AnyObject", "stop"] +- !private ["Ps9AnyObject", "stubTrack"] +- !private ["Ps9AnyObject", "sync"] +- ["Ps9AnyObject", "tearDown"] +- ["Ps9AnyObject", "waitForSerialQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "deinit"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23BidirectionalCollection", "Element"] +- !private ["Ps22BidirectionalIndexable", "Element"] +- !private ["PSo8CAAction", "init"] +- !private ["Ps7CVarArg", "DateFormatter"] +- !private ["Ps7CVarArg", "LSNocilla"] +- !private ["Ps7CVarArg", "Mixpanel"] +- !private ["Ps7CVarArg", "NSLog"] +- !private ["Ps7CVarArg", "NSNull"] +- !private ["Ps7CVarArg", "URL"] +- !private ["Ps7CVarArg", "XCTAssertNotNil"] +- ["Ps7CVarArg", "allPropertyTypes"] +- ["Ps7CVarArg", "assertDefaultPeopleProperties"] +- !private ["Ps7CVarArg", "clearStubs"] +- !private ["Ps7CVarArg", "date"] +- !private ["Ps7CVarArg", "dateFormat"] +- ["Ps7CVarArg", "flushAndWaitForSerialQueue"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "kTestToken"] +- ["Ps7CVarArg", "mixpanel"] +- ["Ps7CVarArg", "mixpanelWillFlush"] +- ["Ps7CVarArg", "requestCount"] +- ["Ps7CVarArg", "setUp"] +- !private ["Ps7CVarArg", "sharedInstance"] +- !private ["Ps7CVarArg", "start"] +- !private ["Ps7CVarArg", "stop"] +- !private ["Ps7CVarArg", "stubTrack"] +- !private ["Ps7CVarArg", "sync"] +- ["Ps7CVarArg", "tearDown"] +- ["Ps7CVarArg", "waitForSerialQueue"] +- ["Ps7CVarArg", ""] +- !private ["Ps10Collection", "Element"] +- !private ["Ps10Collection", "Index"] +- !private ["Ps10Collection", "Iterator"] +- !private ["Ps10Collection", "Key"] +- !private ["Ps10Collection", "SubSequence"] +- !private ["Ps10Collection", "Value"] +- !private ["Ps10Collection", "_Element"] +- !private ["Ps10Collection", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "DateFormatter"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "LSNocilla"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSLog"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "URL"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNotNil"] +- ["Ps28CustomDebugStringConvertible", "allPropertyTypes"] +- ["Ps28CustomDebugStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearStubs"] +- !private ["Ps28CustomDebugStringConvertible", "date"] +- !private ["Ps28CustomDebugStringConvertible", "dateFormat"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- ["Ps28CustomDebugStringConvertible", "flushAndWaitForSerialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "kTestToken"] +- ["Ps28CustomDebugStringConvertible", "mixpanel"] +- ["Ps28CustomDebugStringConvertible", "mixpanelWillFlush"] +- ["Ps28CustomDebugStringConvertible", "requestCount"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- !private ["Ps28CustomDebugStringConvertible", "serialQueue"] +- ["Ps28CustomDebugStringConvertible", "setUp"] +- !private ["Ps28CustomDebugStringConvertible", "sharedInstance"] +- !private ["Ps28CustomDebugStringConvertible", "start"] +- !private ["Ps28CustomDebugStringConvertible", "stop"] +- !private ["Ps28CustomDebugStringConvertible", "stubTrack"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "sync"] +- ["Ps28CustomDebugStringConvertible", "tearDown"] +- ["Ps28CustomDebugStringConvertible", "waitForSerialQueue"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "Element"] +- !private ["Ps17CustomReflectable", "Index"] +- !private ["Ps17CustomReflectable", "Key"] +- !private ["Ps17CustomReflectable", "SubSequence"] +- !private ["Ps17CustomReflectable", "Value"] +- !private ["Ps17CustomReflectable", "subscript"] +- !private ["Ps23CustomStringConvertible", "DateFormatter"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "LSNocilla"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSLog"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "URL"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNotNil"] +- ["Ps23CustomStringConvertible", "allPropertyTypes"] +- ["Ps23CustomStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps23CustomStringConvertible", "clearStubs"] +- !private ["Ps23CustomStringConvertible", "date"] +- !private ["Ps23CustomStringConvertible", "dateFormat"] +- ["Ps23CustomStringConvertible", "flushAndWaitForSerialQueue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "kTestToken"] +- ["Ps23CustomStringConvertible", "mixpanel"] +- ["Ps23CustomStringConvertible", "mixpanelWillFlush"] +- ["Ps23CustomStringConvertible", "requestCount"] +- ["Ps23CustomStringConvertible", "setUp"] +- !private ["Ps23CustomStringConvertible", "sharedInstance"] +- !private ["Ps23CustomStringConvertible", "start"] +- !private ["Ps23CustomStringConvertible", "stop"] +- !private ["Ps23CustomStringConvertible", "stubTrack"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- !private ["Ps23CustomStringConvertible", "sync"] +- ["Ps23CustomStringConvertible", "tearDown"] +- ["Ps23CustomStringConvertible", "waitForSerialQueue"] +- ["Ps23CustomStringConvertible", ""] +- !private ["V10Foundation4Date", "deinit"] +- !private ["CSo13DateFormatter", "date"] +- !private ["CSo13DateFormatter", "dateFormat"] +- !private ["CSo13DateFormatter", "init"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["CSo14DispatchObject", "sync"] +- !private ["CSo13DispatchQueue", "sync"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "DateFormatter"] +- !private ["Ps9Equatable", "LSNocilla"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSLog"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "URL"] +- !private ["Ps9Equatable", "XCTAssertNotNil"] +- ["Ps9Equatable", "allPropertyTypes"] +- ["Ps9Equatable", "assertDefaultPeopleProperties"] +- !private ["Ps9Equatable", "clearStubs"] +- !private ["Ps9Equatable", "date"] +- !private ["Ps9Equatable", "dateFormat"] +- ["Ps9Equatable", "flushAndWaitForSerialQueue"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "kTestToken"] +- ["Ps9Equatable", "mixpanel"] +- ["Ps9Equatable", "mixpanelWillFlush"] +- ["Ps9Equatable", "requestCount"] +- ["Ps9Equatable", "setUp"] +- !private ["Ps9Equatable", "sharedInstance"] +- !private ["Ps9Equatable", "start"] +- !private ["Ps9Equatable", "stop"] +- !private ["Ps9Equatable", "stubTrack"] +- !private ["Ps9Equatable", "sync"] +- ["Ps9Equatable", "tearDown"] +- ["Ps9Equatable", "waitForSerialQueue"] +- ["Ps9Equatable", ""] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["P8Mixpanel13FlushDelegate", "serialQueue"] +- !private ["CSo9Formatter", "date"] +- !private ["CSo9Formatter", "dateFormat"] +- !private ["CSo9Formatter", "init"] +- !private ["Ps8Hashable", "DateFormatter"] +- !private ["Ps8Hashable", "LSNocilla"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSLog"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "URL"] +- !private ["Ps8Hashable", "XCTAssertNotNil"] +- ["Ps8Hashable", "allPropertyTypes"] +- ["Ps8Hashable", "assertDefaultPeopleProperties"] +- !private ["Ps8Hashable", "clearStubs"] +- !private ["Ps8Hashable", "date"] +- !private ["Ps8Hashable", "dateFormat"] +- ["Ps8Hashable", "flushAndWaitForSerialQueue"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "kTestToken"] +- ["Ps8Hashable", "mixpanel"] +- ["Ps8Hashable", "mixpanelWillFlush"] +- ["Ps8Hashable", "requestCount"] +- ["Ps8Hashable", "setUp"] +- !private ["Ps8Hashable", "sharedInstance"] +- !private ["Ps8Hashable", "start"] +- !private ["Ps8Hashable", "stop"] +- !private ["Ps8Hashable", "stubTrack"] +- !private ["Ps8Hashable", "sync"] +- ["Ps8Hashable", "tearDown"] +- ["Ps8Hashable", "waitForSerialQueue"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Iterator"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps13IndexableBase", "Element"] +- !private ["Ps13IndexableBase", "Index"] +- !private ["Ps13IndexableBase", "Iterator"] +- !private ["Ps13IndexableBase", "Key"] +- !private ["Ps13IndexableBase", "SubSequence"] +- !private ["Ps13IndexableBase", "Value"] +- !private ["Ps13IndexableBase", "_Element"] +- !private ["Ps13IndexableBase", "subscript"] +- !private ["Vs16IndexingIterator", "Element"] +- !private ["Si", "deinit"] +- !private ["Ps16IteratorProtocol", "Element"] +- !private ["CSo9LSNocilla", "clearStubs"] +- !private ["CSo9LSNocilla", "sharedInstance"] +- !private ["CSo9LSNocilla", "start"] +- !private ["CSo9LSNocilla", "stop"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "AnyObject"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "Bool"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "DateFormatter"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "LSNocilla"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Mixpanel"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "MixpanelInstance"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSLog"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSNull"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "URL"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNotNil"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "allPropertyTypes"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "deinit"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "flushAndWaitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "kTestToken"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanel"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanelWillFlush"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "requestCount"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "setUp"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "stubTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "tearDown"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "waitForSerialQueue"] +- !private ["P8Mixpanel16MixpanelDelegate", "DateFormatter"] +- !private ["P8Mixpanel16MixpanelDelegate", "LSNocilla"] +- !private ["P8Mixpanel16MixpanelDelegate", "Mixpanel"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSLog"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSNull"] +- !private ["P8Mixpanel16MixpanelDelegate", "URL"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNotNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "kTestToken"] +- !private ["P8Mixpanel16MixpanelDelegate", "mixpanel"] +- ["P8Mixpanel16MixpanelDelegate", "mixpanelWillFlush"] +- !private ["P8Mixpanel16MixpanelDelegate", "stubTrack"] +- !private ["P8Mixpanel16MixpanelDelegate", "waitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", ""] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- !private ["C8Mixpanel16MixpanelInstance", "serialQueue"] +- !private ["Ps17MutableCollection", "Element"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["PSo8NSCoding", "date"] +- !private ["PSo8NSCoding", "dateFormat"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "date"] +- !private ["PSo9NSCopying", "dateFormat"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo6NSNull", "init"] +- ["CSo8NSObject", "AnyObject"] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "DateFormatter"] +- !private ["CSo8NSObject", "LSNocilla"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "MixpanelInstance"] +- !private ["CSo8NSObject", "NSLog"] +- !private ["CSo8NSObject", "NSNull"] +- ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "URL"] +- !private ["CSo8NSObject", "XCTAssertNotNil"] +- ["CSo8NSObject", "allPropertyTypes"] +- ["CSo8NSObject", "assertDefaultPeopleProperties"] +- !private ["CSo8NSObject", "clearStubs"] +- !private ["CSo8NSObject", "date"] +- !private ["CSo8NSObject", "dateFormat"] +- ["CSo8NSObject", "flushAndWaitForSerialQueue"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "kTestToken"] +- ["CSo8NSObject", "mixpanel"] +- ["CSo8NSObject", "mixpanelWillFlush"] +- ["CSo8NSObject", "requestCount"] +- ["CSo8NSObject", "setUp"] +- !private ["CSo8NSObject", "sharedInstance"] +- !private ["CSo8NSObject", "start"] +- !private ["CSo8NSObject", "stop"] +- !private ["CSo8NSObject", "stubTrack"] +- !private ["CSo8NSObject", "sync"] +- ["CSo8NSObject", "tearDown"] +- ["CSo8NSObject", "waitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "DateFormatter"] +- !private ["PSo16NSObjectProtocol", "LSNocilla"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSLog"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "URL"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNotNil"] +- ["PSo16NSObjectProtocol", "allPropertyTypes"] +- ["PSo16NSObjectProtocol", "assertDefaultPeopleProperties"] +- !private ["PSo16NSObjectProtocol", "clearStubs"] +- !private ["PSo16NSObjectProtocol", "date"] +- !private ["PSo16NSObjectProtocol", "dateFormat"] +- ["PSo16NSObjectProtocol", "flushAndWaitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "kTestToken"] +- ["PSo16NSObjectProtocol", "mixpanel"] +- ["PSo16NSObjectProtocol", "mixpanelWillFlush"] +- ["PSo16NSObjectProtocol", "requestCount"] +- ["PSo16NSObjectProtocol", "setUp"] +- !private ["PSo16NSObjectProtocol", "sharedInstance"] +- !private ["PSo16NSObjectProtocol", "start"] +- !private ["PSo16NSObjectProtocol", "stop"] +- !private ["PSo16NSObjectProtocol", "stubTrack"] +- !private ["PSo16NSObjectProtocol", "sync"] +- ["PSo16NSObjectProtocol", "tearDown"] +- ["PSo16NSObjectProtocol", "waitForSerialQueue"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo9OS_object", "sync"] +- !private ["Ps22RandomAccessCollection", "Element"] +- !private ["Ps21RandomAccessIndexable", "Element"] +- !private ["Ps26RangeReplaceableCollection", "Element"] +- !private ["Ps25RangeReplaceableIndexable", "Element"] +- !private ["P10Foundation20ReferenceConvertible", "init"] +- !private ["Ps8Sequence", "Element"] +- !private ["Ps8Sequence", "Index"] +- !private ["Ps8Sequence", "Iterator"] +- !private ["Ps8Sequence", "Key"] +- !private ["Ps8Sequence", "SubSequence"] +- !private ["Ps8Sequence", "Value"] +- !private ["Ps8Sequence", "_Element"] +- !private ["Ps8Sequence", "subscript"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "Iterator"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["SS", "deinit"] +- !private ["V10Foundation3URL", "deinit"] +- !private ["V10Foundation3URL", "init"] +- ["CSo6XCTest", "AnyObject"] +- ["CSo6XCTest", "Bool"] +- !private ["CSo6XCTest", "DateFormatter"] +- !private ["CSo6XCTest", "LSNocilla"] +- !private ["CSo6XCTest", "Mixpanel"] +- ["CSo6XCTest", "MixpanelInstance"] +- !private ["CSo6XCTest", "NSLog"] +- !private ["CSo6XCTest", "NSNull"] +- ["CSo6XCTest", "String"] +- !private ["CSo6XCTest", "URL"] +- !private ["CSo6XCTest", "XCTAssertNotNil"] +- ["CSo6XCTest", "allPropertyTypes"] +- ["CSo6XCTest", "assertDefaultPeopleProperties"] +- ["CSo6XCTest", "flushAndWaitForSerialQueue"] +- ["CSo6XCTest", "init"] +- !private ["CSo6XCTest", "kTestToken"] +- ["CSo6XCTest", "mixpanel"] +- ["CSo6XCTest", "mixpanelWillFlush"] +- ["CSo6XCTest", "requestCount"] +- ["CSo6XCTest", "setUp"] +- !private ["CSo6XCTest", "stubTrack"] +- ["CSo6XCTest", "tearDown"] +- ["CSo6XCTest", "waitForSerialQueue"] +- ["CSo10XCTestCase", "AnyObject"] +- ["CSo10XCTestCase", "Bool"] +- !private ["CSo10XCTestCase", "DateFormatter"] +- !private ["CSo10XCTestCase", "LSNocilla"] +- !private ["CSo10XCTestCase", "Mixpanel"] +- ["CSo10XCTestCase", "MixpanelInstance"] +- !private ["CSo10XCTestCase", "NSLog"] +- !private ["CSo10XCTestCase", "NSNull"] +- ["CSo10XCTestCase", "String"] +- !private ["CSo10XCTestCase", "URL"] +- !private ["CSo10XCTestCase", "XCTAssertNotNil"] +- ["CSo10XCTestCase", "allPropertyTypes"] +- ["CSo10XCTestCase", "assertDefaultPeopleProperties"] +- ["CSo10XCTestCase", "flushAndWaitForSerialQueue"] +- ["CSo10XCTestCase", "init"] +- !private ["CSo10XCTestCase", "kTestToken"] +- ["CSo10XCTestCase", "mixpanel"] +- ["CSo10XCTestCase", "mixpanelWillFlush"] +- ["CSo10XCTestCase", "requestCount"] +- ["CSo10XCTestCase", "setUp"] +- !private ["CSo10XCTestCase", "stubTrack"] +- ["CSo10XCTestCase", "tearDown"] +- ["CSo10XCTestCase", "waitForSerialQueue"] +- ["CSo10XCTestCase", ""] +- !private ["Ps14_ArrayProtocol", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Ps23BidirectionalCollection" +- !private "Ps22BidirectionalIndexable" +- !private "PSo8CAAction" +- "Ps7CVarArg" +- !private "Ps10Collection" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- !private "V10Foundation4Date" +- !private "CSo13DateFormatter" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "CSo14DispatchObject" +- !private "CSo13DispatchQueue" +- !private "Sd" +- "Ps9Equatable" +- !private "P8Mixpanel13FlushDelegate" +- !private "CSo9Formatter" +- "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Ps13IndexableBase" +- !private "Vs16IndexingIterator" +- !private "Si" +- !private "Ps16IteratorProtocol" +- !private "CSo9LSNocilla" +- !private "C8Mixpanel8Mixpanel" +- "C17MixpanelDemoTests17MixpanelBaseTests" +- "P8Mixpanel16MixpanelDelegate" +- !private "C8Mixpanel16MixpanelInstance" +- !private "Ps17MutableCollection" +- !private "Ps16MutableIndexable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSNull" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo9OS_object" +- !private "Ps22RandomAccessCollection" +- !private "Ps21RandomAccessIndexable" +- !private "Ps26RangeReplaceableCollection" +- !private "Ps25RangeReplaceableIndexable" +- !private "P10Foundation20ReferenceConvertible" +- !private "Ps8Sequence" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "SS" +- !private "V10Foundation3URL" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "Ps14_ArrayProtocol" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule" +interface-hash: "49b3ea544a4befb0f3285e011d449117" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftdoc new file mode 100644 index 00000000..be255b7b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftmodule new file mode 100644 index 00000000..848d3118 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests-OutputFileMap.json new file mode 100644 index 00000000..75b36dbe --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelPeopleTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelPeopleTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelPeopleTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelPeopleTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelPeopleTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelPeopleTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelPeopleTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/TestConstants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/TestConstants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/TestConstants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/TestConstants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/TestConstants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/TestConstants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/TestConstants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelBaseTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelBaseTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelBaseTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelBaseTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelBaseTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelBaseTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelBaseTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelDemoTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/MixpanelDemoTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/LoggerTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/LoggerTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/LoggerTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/LoggerTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/LoggerTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/LoggerTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphoneos\/MixpanelDemoTests.build\/Objects-normal\/arm64\/LoggerTests.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..6281e0cd --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/LoggerTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelBaseTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.d new file mode 100644 index 00000000..fa720725 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.o new file mode 100644 index 00000000..1fcb663b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.swiftdeps new file mode 100644 index 00000000..8ee9402a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests.swiftdeps @@ -0,0 +1,1738 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelDemoTests" +provides-nominal: +- "C17MixpanelDemoTests17MixpanelDemoTests" +provides-member: +- ["C17MixpanelDemoTests17MixpanelDemoTests", ""] +provides-dynamic-lookup: +- "testIdentify" +- "testTrackWithDefaultProperties" +- "testTrackLaunchOptions" +- "testNetworkingWithStress" +- "testEventTiming" +- "testDropEvents" +- "testFlushPeople" +- "testTelephonyInfoInitialized" +- "testAddingEventsAfterFlush" +- "testTrackPushNotification" +- "testReset" +- "testUnexpectedBeahviours" +- "testInvalidPropertiesTrack" +- "test5XXResponse" +- "testRetryAfterHTTPHeader" +- "testFlushNetworkFailure" +- "testTrackWithCustomProperties" +- "testTrackWithCustomDistinctIdAndToken" +- "testInvalidSuperProperties" +- "testValidPropertiesTrack" +- "testRegisterSuperProperties" +- "testNestedUnsupportedTypes" +- "testTrackPushNotificationMalformed" +- "testMixpanelDelegate" +- "testValidSuperProperties" +- "testFlushEvents" +- "testArchive" +depends-top-level: +- !private "Persistence" +- !private ">=" +- !private "StringLiteralType" +- !private "-" +- !private "URL" +- !private "+" +- !private "Int" +- !private "XCTAssert" +- !private "kTestToken" +- !private "fabs" +- !private "Double" +- !private "stubTrack" +- !private "Dictionary" +- !private "XCTAssertNotNil" +- !private "stubEngage" +- "MixpanelDemoTests" +- !private "Properties" +- !private "UnicodeScalarType" +- !private "NSError" +- !private "Date" +- !private "String" +- !private "XCTAssertNil" +- !private "LSNocilla" +- !private "print" +- !private "UInt" +- "MixpanelBaseTests" +- !private "NSDictionary" +- !private "Queue" +- !private "Data" +- !private "AnyObject" +- !private "UIApplicationLaunchOptionsRemoteNotificationKey" +- !private "FileManager" +- !private "Array" +- !private "==" +- !private "AutomaticProperties" +- !private "Mixpanel" +- !private "<" +- !private "XCTAssertTrue" +- !private "XCTAssertEqual" +- !private "..<" +depends-member: +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Data"] +- !private ["Ps9AnyObject", "Date"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Encoding"] +- !private ["Ps9AnyObject", "FileManager"] +- !private ["Ps9AnyObject", "LSNocilla"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDictionary"] +- !private ["Ps9AnyObject", "NSError"] +- !private ["Ps9AnyObject", "Persistence"] +- !private ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9AnyObject", "UInt"] +- !private ["Ps9AnyObject", "URL"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "XCTAssert"] +- !private ["Ps9AnyObject", "XCTAssertEqual"] +- !private ["Ps9AnyObject", "XCTAssertNil"] +- !private ["Ps9AnyObject", "XCTAssertNotNil"] +- !private ["Ps9AnyObject", "XCTAssertTrue"] +- !private ["Ps9AnyObject", "XCTExpectAssert"] +- !private ["Ps9AnyObject", "allPropertyTypes"] +- !private ["Ps9AnyObject", "andFailWithError"] +- !private ["Ps9AnyObject", "andReturn"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "assertDefaultPeopleProperties"] +- !private ["Ps9AnyObject", "clearStubs"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "currentSuperProperties"] +- !private ["Ps9AnyObject", "data"] +- !private ["Ps9AnyObject", "default"] +- !private ["Ps9AnyObject", "defaultDistinctId"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "eventsQueue"] +- !private ["Ps9AnyObject", "fabs"] +- !private ["Ps9AnyObject", "fileExists"] +- !private ["Ps9AnyObject", "filePathWithType"] +- !private ["Ps9AnyObject", "flush"] +- !private ["Ps9AnyObject", "flushAndWaitForSerialQueue"] +- !private ["Ps9AnyObject", "flushInstance"] +- !private ["Ps9AnyObject", "flushRequest"] +- !private ["Ps9AnyObject", "identify"] +- !private ["Ps9AnyObject", "increment"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "kTestToken"] +- !private ["Ps9AnyObject", "mixpanel"] +- !private ["Ps9AnyObject", "networkConsecutiveFailures"] +- !private ["Ps9AnyObject", "networkRequestsAllowedAfterTime"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "print"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- !private ["Ps9AnyObject", "reset"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "stubEngage"] +- !private ["Ps9AnyObject", "stubTrack"] +- !private ["Ps9AnyObject", "subscript"] +- !private ["Ps9AnyObject", "telephonyInfo"] +- ["Ps9AnyObject", "test5XXResponse"] +- ["Ps9AnyObject", "testAddingEventsAfterFlush"] +- ["Ps9AnyObject", "testArchive"] +- ["Ps9AnyObject", "testDropEvents"] +- ["Ps9AnyObject", "testEventTiming"] +- ["Ps9AnyObject", "testFlushEvents"] +- ["Ps9AnyObject", "testFlushNetworkFailure"] +- ["Ps9AnyObject", "testFlushPeople"] +- ["Ps9AnyObject", "testIdentify"] +- ["Ps9AnyObject", "testInvalidPropertiesTrack"] +- ["Ps9AnyObject", "testInvalidSuperProperties"] +- ["Ps9AnyObject", "testMixpanelDelegate"] +- ["Ps9AnyObject", "testNestedUnsupportedTypes"] +- ["Ps9AnyObject", "testNetworkingWithStress"] +- ["Ps9AnyObject", "testRegisterSuperProperties"] +- ["Ps9AnyObject", "testReset"] +- ["Ps9AnyObject", "testRetryAfterHTTPHeader"] +- ["Ps9AnyObject", "testTelephonyInfoInitialized"] +- ["Ps9AnyObject", "testTrackLaunchOptions"] +- ["Ps9AnyObject", "testTrackPushNotification"] +- ["Ps9AnyObject", "testTrackPushNotificationMalformed"] +- ["Ps9AnyObject", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps9AnyObject", "testTrackWithCustomProperties"] +- ["Ps9AnyObject", "testTrackWithDefaultProperties"] +- ["Ps9AnyObject", "testUnexpectedBeahviours"] +- ["Ps9AnyObject", "testValidPropertiesTrack"] +- ["Ps9AnyObject", "testValidSuperProperties"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "timedEvents"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "union"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- !private ["Ps9AnyObject", "waitForSerialQueue"] +- !private ["Ps9AnyObject", "withHeader"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "flushRequest"] +- !private ["OC8Mixpanel11Persistence11ArchiveType", "Events"] +- !private ["OC8Mixpanel11Persistence11ArchiveType", "People"] +- !private ["OC8Mixpanel11Persistence11ArchiveType", "Properties"] +- !private ["Sa", "Element"] +- !private ["Sa", "IndexDistance"] +- !private ["Sa", "Iterator"] +- !private ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "IndexDistance"] +- !private ["Ps23ArrayLiteralConvertible", "Iterator"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["C8Mixpanel19AutomaticProperties", "telephonyInfo"] +- !private ["Ps23BidirectionalCollection", "Element"] +- !private ["Ps23BidirectionalCollection", "IndexDistance"] +- !private ["Ps23BidirectionalCollection", "Iterator"] +- !private ["Ps23BidirectionalCollection", "_Element"] +- !private ["Ps23BidirectionalCollection", "append"] +- !private ["Ps23BidirectionalCollection", "count"] +- !private ["Ps23BidirectionalCollection", "init"] +- !private ["Ps23BidirectionalCollection", "isEmpty"] +- !private ["Ps23BidirectionalCollection", "last"] +- !private ["Ps23BidirectionalCollection", "write"] +- !private ["Ps22BidirectionalIndexable", "Element"] +- !private ["Ps22BidirectionalIndexable", "IndexDistance"] +- !private ["Ps22BidirectionalIndexable", "Iterator"] +- !private ["Ps22BidirectionalIndexable", "_Element"] +- !private ["Ps22BidirectionalIndexable", "append"] +- !private ["Ps22BidirectionalIndexable", "count"] +- !private ["Ps22BidirectionalIndexable", "init"] +- !private ["Ps22BidirectionalIndexable", "isEmpty"] +- !private ["Ps22BidirectionalIndexable", "last"] +- !private ["Ps22BidirectionalIndexable", "write"] +- !private ["Ps19BinaryFloatingPoint", "Stride"] +- !private ["Ps17BitwiseOperations", "IntegerLiteralType"] +- !private ["Ps17BitwiseOperations", "Stride"] +- !private ["Ps17BitwiseOperations", "_DisabledRangeIndex"] +- !private ["Ps17BitwiseOperations", "init"] +- !private ["Sb", "deinit"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps7CVarArg", "AutomaticProperties"] +- !private ["Ps7CVarArg", "Data"] +- !private ["Ps7CVarArg", "Date"] +- !private ["Ps7CVarArg", "Encoding"] +- !private ["Ps7CVarArg", "FileManager"] +- !private ["Ps7CVarArg", "IntegerLiteralType"] +- !private ["Ps7CVarArg", "LSNocilla"] +- !private ["Ps7CVarArg", "Mixpanel"] +- !private ["Ps7CVarArg", "NSDictionary"] +- !private ["Ps7CVarArg", "NSError"] +- !private ["Ps7CVarArg", "Persistence"] +- !private ["Ps7CVarArg", "Queue"] +- !private ["Ps7CVarArg", "Stride"] +- !private ["Ps7CVarArg", "String"] +- !private ["Ps7CVarArg", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps7CVarArg", "UInt"] +- !private ["Ps7CVarArg", "URL"] +- !private ["Ps7CVarArg", "XCTAssert"] +- !private ["Ps7CVarArg", "XCTAssertEqual"] +- !private ["Ps7CVarArg", "XCTAssertNil"] +- !private ["Ps7CVarArg", "XCTAssertNotNil"] +- !private ["Ps7CVarArg", "XCTAssertTrue"] +- !private ["Ps7CVarArg", "XCTExpectAssert"] +- !private ["Ps7CVarArg", "_DisabledRangeIndex"] +- !private ["Ps7CVarArg", "allPropertyTypes"] +- !private ["Ps7CVarArg", "andFailWithError"] +- !private ["Ps7CVarArg", "andReturn"] +- !private ["Ps7CVarArg", "assertDefaultPeopleProperties"] +- !private ["Ps7CVarArg", "clearStubs"] +- !private ["Ps7CVarArg", "data"] +- !private ["Ps7CVarArg", "default"] +- !private ["Ps7CVarArg", "fabs"] +- !private ["Ps7CVarArg", "fileExists"] +- !private ["Ps7CVarArg", "flushAndWaitForSerialQueue"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "kTestToken"] +- !private ["Ps7CVarArg", "mixpanel"] +- !private ["Ps7CVarArg", "print"] +- !private ["Ps7CVarArg", "sharedInstance"] +- !private ["Ps7CVarArg", "stubEngage"] +- !private ["Ps7CVarArg", "stubTrack"] +- ["Ps7CVarArg", "test5XXResponse"] +- ["Ps7CVarArg", "testAddingEventsAfterFlush"] +- ["Ps7CVarArg", "testArchive"] +- ["Ps7CVarArg", "testDropEvents"] +- ["Ps7CVarArg", "testEventTiming"] +- ["Ps7CVarArg", "testFlushEvents"] +- ["Ps7CVarArg", "testFlushNetworkFailure"] +- ["Ps7CVarArg", "testFlushPeople"] +- ["Ps7CVarArg", "testIdentify"] +- ["Ps7CVarArg", "testInvalidPropertiesTrack"] +- ["Ps7CVarArg", "testInvalidSuperProperties"] +- ["Ps7CVarArg", "testMixpanelDelegate"] +- ["Ps7CVarArg", "testNestedUnsupportedTypes"] +- ["Ps7CVarArg", "testNetworkingWithStress"] +- ["Ps7CVarArg", "testRegisterSuperProperties"] +- ["Ps7CVarArg", "testReset"] +- ["Ps7CVarArg", "testRetryAfterHTTPHeader"] +- ["Ps7CVarArg", "testTelephonyInfoInitialized"] +- ["Ps7CVarArg", "testTrackLaunchOptions"] +- ["Ps7CVarArg", "testTrackPushNotification"] +- ["Ps7CVarArg", "testTrackPushNotificationMalformed"] +- ["Ps7CVarArg", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps7CVarArg", "testTrackWithCustomProperties"] +- ["Ps7CVarArg", "testTrackWithDefaultProperties"] +- ["Ps7CVarArg", "testUnexpectedBeahviours"] +- ["Ps7CVarArg", "testValidPropertiesTrack"] +- ["Ps7CVarArg", "testValidSuperProperties"] +- !private ["Ps7CVarArg", "waitForSerialQueue"] +- !private ["Ps7CVarArg", "withHeader"] +- ["Ps7CVarArg", ""] +- !private ["Vs9Character", "deinit"] +- !private ["Ps10Collection", "Element"] +- !private ["Ps10Collection", "Index"] +- !private ["Ps10Collection", "IndexDistance"] +- !private ["Ps10Collection", "Iterator"] +- !private ["Ps10Collection", "Key"] +- !private ["Ps10Collection", "SubSequence"] +- !private ["Ps10Collection", "Value"] +- !private ["Ps10Collection", "_Element"] +- !private ["Ps10Collection", "append"] +- !private ["Ps10Collection", "count"] +- !private ["Ps10Collection", "init"] +- !private ["Ps10Collection", "isEmpty"] +- !private ["Ps10Collection", "last"] +- !private ["Ps10Collection", "subscript"] +- !private ["Ps10Collection", "write"] +- !private ["Ps10Comparable", "Encoding"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "data"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps10Comparable", "timeIntervalSince1970"] +- !private ["Vs14CountableRange", "Iterator"] +- !private ["Vs14CountableRange", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "AutomaticProperties"] +- !private ["Ps28CustomDebugStringConvertible", "Data"] +- !private ["Ps28CustomDebugStringConvertible", "Date"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Encoding"] +- !private ["Ps28CustomDebugStringConvertible", "FileManager"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "IndexDistance"] +- !private ["Ps28CustomDebugStringConvertible", "Iterator"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "LSNocilla"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDictionary"] +- !private ["Ps28CustomDebugStringConvertible", "NSError"] +- !private ["Ps28CustomDebugStringConvertible", "Persistence"] +- !private ["Ps28CustomDebugStringConvertible", "Queue"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "String"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps28CustomDebugStringConvertible", "UInt"] +- !private ["Ps28CustomDebugStringConvertible", "URL"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssert"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertEqual"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNil"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNotNil"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertTrue"] +- !private ["Ps28CustomDebugStringConvertible", "XCTExpectAssert"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allPropertyTypes"] +- !private ["Ps28CustomDebugStringConvertible", "andFailWithError"] +- !private ["Ps28CustomDebugStringConvertible", "andReturn"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearStubs"] +- !private ["Ps28CustomDebugStringConvertible", "clearSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "data"] +- !private ["Ps28CustomDebugStringConvertible", "default"] +- !private ["Ps28CustomDebugStringConvertible", "defaultDistinctId"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "eventsQueue"] +- !private ["Ps28CustomDebugStringConvertible", "fabs"] +- !private ["Ps28CustomDebugStringConvertible", "fileExists"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- !private ["Ps28CustomDebugStringConvertible", "flushAndWaitForSerialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "flushInstance"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "kTestToken"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "print"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperPropertiesOnce"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- !private ["Ps28CustomDebugStringConvertible", "sharedInstance"] +- !private ["Ps28CustomDebugStringConvertible", "stubEngage"] +- !private ["Ps28CustomDebugStringConvertible", "stubTrack"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "test5XXResponse"] +- ["Ps28CustomDebugStringConvertible", "testAddingEventsAfterFlush"] +- ["Ps28CustomDebugStringConvertible", "testArchive"] +- ["Ps28CustomDebugStringConvertible", "testDropEvents"] +- ["Ps28CustomDebugStringConvertible", "testEventTiming"] +- ["Ps28CustomDebugStringConvertible", "testFlushEvents"] +- ["Ps28CustomDebugStringConvertible", "testFlushNetworkFailure"] +- ["Ps28CustomDebugStringConvertible", "testFlushPeople"] +- ["Ps28CustomDebugStringConvertible", "testIdentify"] +- ["Ps28CustomDebugStringConvertible", "testInvalidPropertiesTrack"] +- ["Ps28CustomDebugStringConvertible", "testInvalidSuperProperties"] +- ["Ps28CustomDebugStringConvertible", "testMixpanelDelegate"] +- ["Ps28CustomDebugStringConvertible", "testNestedUnsupportedTypes"] +- ["Ps28CustomDebugStringConvertible", "testNetworkingWithStress"] +- ["Ps28CustomDebugStringConvertible", "testRegisterSuperProperties"] +- ["Ps28CustomDebugStringConvertible", "testReset"] +- ["Ps28CustomDebugStringConvertible", "testRetryAfterHTTPHeader"] +- ["Ps28CustomDebugStringConvertible", "testTelephonyInfoInitialized"] +- ["Ps28CustomDebugStringConvertible", "testTrackLaunchOptions"] +- ["Ps28CustomDebugStringConvertible", "testTrackPushNotification"] +- ["Ps28CustomDebugStringConvertible", "testTrackPushNotificationMalformed"] +- ["Ps28CustomDebugStringConvertible", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps28CustomDebugStringConvertible", "testTrackWithCustomProperties"] +- ["Ps28CustomDebugStringConvertible", "testTrackWithDefaultProperties"] +- ["Ps28CustomDebugStringConvertible", "testUnexpectedBeahviours"] +- ["Ps28CustomDebugStringConvertible", "testValidPropertiesTrack"] +- ["Ps28CustomDebugStringConvertible", "testValidSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "timedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- !private ["Ps28CustomDebugStringConvertible", "unregisterSuperProperty"] +- !private ["Ps28CustomDebugStringConvertible", "waitForSerialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "withHeader"] +- !private ["Ps28CustomDebugStringConvertible", "write"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "Encoding"] +- !private ["Ps29CustomPlaygroundQuickLookable", "IntegerLiteralType"] +- !private ["Ps29CustomPlaygroundQuickLookable", "Stride"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_DisabledRangeIndex"] +- !private ["Ps29CustomPlaygroundQuickLookable", "data"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps29CustomPlaygroundQuickLookable", "timeIntervalSince1970"] +- !private ["Ps17CustomReflectable", "Element"] +- !private ["Ps17CustomReflectable", "Encoding"] +- !private ["Ps17CustomReflectable", "Index"] +- !private ["Ps17CustomReflectable", "IndexDistance"] +- !private ["Ps17CustomReflectable", "IntegerLiteralType"] +- !private ["Ps17CustomReflectable", "Iterator"] +- !private ["Ps17CustomReflectable", "Key"] +- !private ["Ps17CustomReflectable", "Stride"] +- !private ["Ps17CustomReflectable", "SubSequence"] +- !private ["Ps17CustomReflectable", "Value"] +- !private ["Ps17CustomReflectable", "_DisabledRangeIndex"] +- !private ["Ps17CustomReflectable", "_Element"] +- !private ["Ps17CustomReflectable", "append"] +- !private ["Ps17CustomReflectable", "count"] +- !private ["Ps17CustomReflectable", "data"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps17CustomReflectable", "isEmpty"] +- !private ["Ps17CustomReflectable", "last"] +- !private ["Ps17CustomReflectable", "subscript"] +- !private ["Ps23CustomStringConvertible", "AutomaticProperties"] +- !private ["Ps23CustomStringConvertible", "Data"] +- !private ["Ps23CustomStringConvertible", "Date"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Encoding"] +- !private ["Ps23CustomStringConvertible", "FileManager"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IndexDistance"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Iterator"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "LSNocilla"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDictionary"] +- !private ["Ps23CustomStringConvertible", "NSError"] +- !private ["Ps23CustomStringConvertible", "Persistence"] +- !private ["Ps23CustomStringConvertible", "Queue"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "String"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps23CustomStringConvertible", "UInt"] +- !private ["Ps23CustomStringConvertible", "URL"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "XCTAssert"] +- !private ["Ps23CustomStringConvertible", "XCTAssertEqual"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNil"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNotNil"] +- !private ["Ps23CustomStringConvertible", "XCTAssertTrue"] +- !private ["Ps23CustomStringConvertible", "XCTExpectAssert"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "allPropertyTypes"] +- !private ["Ps23CustomStringConvertible", "andFailWithError"] +- !private ["Ps23CustomStringConvertible", "andReturn"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps23CustomStringConvertible", "clearStubs"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "data"] +- !private ["Ps23CustomStringConvertible", "default"] +- !private ["Ps23CustomStringConvertible", "fabs"] +- !private ["Ps23CustomStringConvertible", "fileExists"] +- !private ["Ps23CustomStringConvertible", "flushAndWaitForSerialQueue"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "kTestToken"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "mixpanel"] +- !private ["Ps23CustomStringConvertible", "print"] +- !private ["Ps23CustomStringConvertible", "sharedInstance"] +- !private ["Ps23CustomStringConvertible", "stubEngage"] +- !private ["Ps23CustomStringConvertible", "stubTrack"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "test5XXResponse"] +- ["Ps23CustomStringConvertible", "testAddingEventsAfterFlush"] +- ["Ps23CustomStringConvertible", "testArchive"] +- ["Ps23CustomStringConvertible", "testDropEvents"] +- ["Ps23CustomStringConvertible", "testEventTiming"] +- ["Ps23CustomStringConvertible", "testFlushEvents"] +- ["Ps23CustomStringConvertible", "testFlushNetworkFailure"] +- ["Ps23CustomStringConvertible", "testFlushPeople"] +- ["Ps23CustomStringConvertible", "testIdentify"] +- ["Ps23CustomStringConvertible", "testInvalidPropertiesTrack"] +- ["Ps23CustomStringConvertible", "testInvalidSuperProperties"] +- ["Ps23CustomStringConvertible", "testMixpanelDelegate"] +- ["Ps23CustomStringConvertible", "testNestedUnsupportedTypes"] +- ["Ps23CustomStringConvertible", "testNetworkingWithStress"] +- ["Ps23CustomStringConvertible", "testRegisterSuperProperties"] +- ["Ps23CustomStringConvertible", "testReset"] +- ["Ps23CustomStringConvertible", "testRetryAfterHTTPHeader"] +- ["Ps23CustomStringConvertible", "testTelephonyInfoInitialized"] +- ["Ps23CustomStringConvertible", "testTrackLaunchOptions"] +- ["Ps23CustomStringConvertible", "testTrackPushNotification"] +- ["Ps23CustomStringConvertible", "testTrackPushNotificationMalformed"] +- ["Ps23CustomStringConvertible", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps23CustomStringConvertible", "testTrackWithCustomProperties"] +- ["Ps23CustomStringConvertible", "testTrackWithDefaultProperties"] +- ["Ps23CustomStringConvertible", "testUnexpectedBeahviours"] +- ["Ps23CustomStringConvertible", "testValidPropertiesTrack"] +- ["Ps23CustomStringConvertible", "testValidSuperProperties"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "utf8"] +- !private ["Ps23CustomStringConvertible", "waitForSerialQueue"] +- !private ["Ps23CustomStringConvertible", "withHeader"] +- !private ["Ps23CustomStringConvertible", "write"] +- ["Ps23CustomStringConvertible", ""] +- !private ["V10Foundation4Data", "deinit"] +- !private ["V10Foundation4Data", "init"] +- !private ["V10Foundation4Data", "write"] +- ["V10Foundation4Date", "deinit"] +- !private ["V10Foundation4Date", "init"] +- !private ["V10Foundation4Date", "timeIntervalSince1970"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "IndexDistance"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "count"] +- ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "isEmpty"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "IndexDistance"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "count"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "isEmpty"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "Stride"] +- ["Sd", "deinit"] +- !private ["VE10FoundationSS8Encoding", "utf8"] +- !private ["Ps9Equatable", "AutomaticProperties"] +- !private ["Ps9Equatable", "Data"] +- !private ["Ps9Equatable", "Date"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Encoding"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "FileManager"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Iterator"] +- !private ["Ps9Equatable", "LSNocilla"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDictionary"] +- !private ["Ps9Equatable", "NSError"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "Persistence"] +- !private ["Ps9Equatable", "Properties"] +- !private ["Ps9Equatable", "Queue"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "String"] +- !private ["Ps9Equatable", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9Equatable", "UInt"] +- !private ["Ps9Equatable", "URL"] +- !private ["Ps9Equatable", "XCTAssert"] +- !private ["Ps9Equatable", "XCTAssertEqual"] +- !private ["Ps9Equatable", "XCTAssertNil"] +- !private ["Ps9Equatable", "XCTAssertNotNil"] +- !private ["Ps9Equatable", "XCTAssertTrue"] +- !private ["Ps9Equatable", "XCTExpectAssert"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_Element"] +- !private ["Ps9Equatable", "allPropertyTypes"] +- !private ["Ps9Equatable", "andFailWithError"] +- !private ["Ps9Equatable", "andReturn"] +- !private ["Ps9Equatable", "assertDefaultPeopleProperties"] +- !private ["Ps9Equatable", "clearStubs"] +- !private ["Ps9Equatable", "data"] +- !private ["Ps9Equatable", "default"] +- !private ["Ps9Equatable", "fabs"] +- !private ["Ps9Equatable", "fileExists"] +- !private ["Ps9Equatable", "flushAndWaitForSerialQueue"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "kTestToken"] +- !private ["Ps9Equatable", "mixpanel"] +- !private ["Ps9Equatable", "print"] +- !private ["Ps9Equatable", "sharedInstance"] +- !private ["Ps9Equatable", "stubEngage"] +- !private ["Ps9Equatable", "stubTrack"] +- ["Ps9Equatable", "test5XXResponse"] +- ["Ps9Equatable", "testAddingEventsAfterFlush"] +- ["Ps9Equatable", "testArchive"] +- ["Ps9Equatable", "testDropEvents"] +- ["Ps9Equatable", "testEventTiming"] +- ["Ps9Equatable", "testFlushEvents"] +- ["Ps9Equatable", "testFlushNetworkFailure"] +- ["Ps9Equatable", "testFlushPeople"] +- ["Ps9Equatable", "testIdentify"] +- ["Ps9Equatable", "testInvalidPropertiesTrack"] +- ["Ps9Equatable", "testInvalidSuperProperties"] +- ["Ps9Equatable", "testMixpanelDelegate"] +- ["Ps9Equatable", "testNestedUnsupportedTypes"] +- ["Ps9Equatable", "testNetworkingWithStress"] +- ["Ps9Equatable", "testRegisterSuperProperties"] +- ["Ps9Equatable", "testReset"] +- ["Ps9Equatable", "testRetryAfterHTTPHeader"] +- ["Ps9Equatable", "testTelephonyInfoInitialized"] +- ["Ps9Equatable", "testTrackLaunchOptions"] +- ["Ps9Equatable", "testTrackPushNotification"] +- ["Ps9Equatable", "testTrackPushNotificationMalformed"] +- ["Ps9Equatable", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps9Equatable", "testTrackWithCustomProperties"] +- ["Ps9Equatable", "testTrackWithDefaultProperties"] +- ["Ps9Equatable", "testUnexpectedBeahviours"] +- ["Ps9Equatable", "testValidPropertiesTrack"] +- ["Ps9Equatable", "testValidSuperProperties"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps9Equatable", "utf8"] +- !private ["Ps9Equatable", "waitForSerialQueue"] +- !private ["Ps9Equatable", "withHeader"] +- !private ["Ps9Equatable", "write"] +- ["Ps9Equatable", ""] +- !private ["Ps13ErrorProtocol", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "Encoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "data"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["CSo11FileManager", "default"] +- !private ["CSo11FileManager", "fileExists"] +- !private ["Sf", "Stride"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "Stride"] +- !private ["Ps13FloatingPoint", "Stride"] +- !private ["C8Mixpanel5Flush", "flushRequest"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "clearSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "currentSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "defaultDistinctId"] +- !private ["P8Mixpanel13FlushDelegate", "delegate"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "eventsQueue"] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "flushInstance"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperPropertiesOnce"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "timedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["P8Mixpanel13FlushDelegate", "unregisterSuperProperty"] +- !private ["C8Mixpanel12FlushRequest", "networkConsecutiveFailures"] +- !private ["C8Mixpanel12FlushRequest", "networkRequestsAllowedAfterTime"] +- !private ["Ps8Hashable", "AutomaticProperties"] +- !private ["Ps8Hashable", "Data"] +- !private ["Ps8Hashable", "Date"] +- !private ["Ps8Hashable", "Encoding"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "FileManager"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "LSNocilla"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDictionary"] +- !private ["Ps8Hashable", "NSError"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "Persistence"] +- !private ["Ps8Hashable", "Properties"] +- !private ["Ps8Hashable", "Queue"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "String"] +- !private ["Ps8Hashable", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps8Hashable", "UInt"] +- !private ["Ps8Hashable", "URL"] +- !private ["Ps8Hashable", "XCTAssert"] +- !private ["Ps8Hashable", "XCTAssertEqual"] +- !private ["Ps8Hashable", "XCTAssertNil"] +- !private ["Ps8Hashable", "XCTAssertNotNil"] +- !private ["Ps8Hashable", "XCTAssertTrue"] +- !private ["Ps8Hashable", "XCTExpectAssert"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "allPropertyTypes"] +- !private ["Ps8Hashable", "andFailWithError"] +- !private ["Ps8Hashable", "andReturn"] +- !private ["Ps8Hashable", "assertDefaultPeopleProperties"] +- !private ["Ps8Hashable", "clearStubs"] +- !private ["Ps8Hashable", "data"] +- !private ["Ps8Hashable", "default"] +- !private ["Ps8Hashable", "fabs"] +- !private ["Ps8Hashable", "fileExists"] +- !private ["Ps8Hashable", "flushAndWaitForSerialQueue"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "kTestToken"] +- !private ["Ps8Hashable", "mixpanel"] +- !private ["Ps8Hashable", "print"] +- !private ["Ps8Hashable", "sharedInstance"] +- !private ["Ps8Hashable", "stubEngage"] +- !private ["Ps8Hashable", "stubTrack"] +- ["Ps8Hashable", "test5XXResponse"] +- ["Ps8Hashable", "testAddingEventsAfterFlush"] +- ["Ps8Hashable", "testArchive"] +- ["Ps8Hashable", "testDropEvents"] +- ["Ps8Hashable", "testEventTiming"] +- ["Ps8Hashable", "testFlushEvents"] +- ["Ps8Hashable", "testFlushNetworkFailure"] +- ["Ps8Hashable", "testFlushPeople"] +- ["Ps8Hashable", "testIdentify"] +- ["Ps8Hashable", "testInvalidPropertiesTrack"] +- ["Ps8Hashable", "testInvalidSuperProperties"] +- ["Ps8Hashable", "testMixpanelDelegate"] +- ["Ps8Hashable", "testNestedUnsupportedTypes"] +- ["Ps8Hashable", "testNetworkingWithStress"] +- ["Ps8Hashable", "testRegisterSuperProperties"] +- ["Ps8Hashable", "testReset"] +- ["Ps8Hashable", "testRetryAfterHTTPHeader"] +- ["Ps8Hashable", "testTelephonyInfoInitialized"] +- ["Ps8Hashable", "testTrackLaunchOptions"] +- ["Ps8Hashable", "testTrackPushNotification"] +- ["Ps8Hashable", "testTrackPushNotificationMalformed"] +- ["Ps8Hashable", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps8Hashable", "testTrackWithCustomProperties"] +- ["Ps8Hashable", "testTrackWithDefaultProperties"] +- ["Ps8Hashable", "testUnexpectedBeahviours"] +- ["Ps8Hashable", "testValidPropertiesTrack"] +- ["Ps8Hashable", "testValidSuperProperties"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps8Hashable", "utf8"] +- !private ["Ps8Hashable", "waitForSerialQueue"] +- !private ["Ps8Hashable", "withHeader"] +- !private ["Ps8Hashable", "write"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "IndexDistance"] +- !private ["Ps9Indexable", "Iterator"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps9Indexable", "write"] +- !private ["Ps13IndexableBase", "Element"] +- !private ["Ps13IndexableBase", "Index"] +- !private ["Ps13IndexableBase", "IndexDistance"] +- !private ["Ps13IndexableBase", "Iterator"] +- !private ["Ps13IndexableBase", "Key"] +- !private ["Ps13IndexableBase", "SubSequence"] +- !private ["Ps13IndexableBase", "Value"] +- !private ["Ps13IndexableBase", "_Element"] +- !private ["Ps13IndexableBase", "append"] +- !private ["Ps13IndexableBase", "count"] +- !private ["Ps13IndexableBase", "init"] +- !private ["Ps13IndexableBase", "isEmpty"] +- !private ["Ps13IndexableBase", "last"] +- !private ["Ps13IndexableBase", "subscript"] +- !private ["Ps13IndexableBase", "write"] +- !private ["Vs16IndexingIterator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "Stride"] +- !private ["Si", "_DisabledRangeIndex"] +- ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps7Integer", "IntegerLiteralType"] +- !private ["Ps7Integer", "Stride"] +- !private ["Ps7Integer", "_DisabledRangeIndex"] +- !private ["Ps7Integer", "init"] +- !private ["Ps17IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps17IntegerArithmetic", "Stride"] +- !private ["Ps17IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps17IntegerArithmetic", "init"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Stride"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps16IteratorProtocol", "Element"] +- !private ["PSo10LSHTTPBody", "Encoding"] +- !private ["PSo10LSHTTPBody", "data"] +- !private ["PSo10LSHTTPBody", "init"] +- !private ["PSo12LSMatcheable", "Encoding"] +- !private ["PSo12LSMatcheable", "data"] +- !private ["PSo12LSMatcheable", "init"] +- !private ["CSo9LSNocilla", "clearStubs"] +- !private ["CSo9LSNocilla", "sharedInstance"] +- !private ["CSo16LSStubRequestDSL", "andFailWithError"] +- !private ["CSo16LSStubRequestDSL", "andReturn"] +- !private ["CSo17LSStubResponseDSL", "withHeader"] +- !private ["Ps10MirrorPath", "Encoding"] +- !private ["Ps10MirrorPath", "IntegerLiteralType"] +- !private ["Ps10MirrorPath", "Stride"] +- !private ["Ps10MirrorPath", "_DisabledRangeIndex"] +- !private ["Ps10MirrorPath", "data"] +- !private ["Ps10MirrorPath", "init"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "AnyObject"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "AutomaticProperties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Data"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Date"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Double"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "FileManager"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Int"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "LSNocilla"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSDictionary"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSError"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Persistence"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Queue"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "UInt"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "URL"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssert"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNil"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "assertDefaultPeopleProperties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "fabs"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "flushAndWaitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "kTestToken"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "print"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "stubEngage"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "stubTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "test5XXResponse"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testAddingEventsAfterFlush"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testArchive"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testDropEvents"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testEventTiming"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testFlushEvents"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testFlushNetworkFailure"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testFlushPeople"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testIdentify"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testInvalidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testInvalidSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testMixpanelDelegate"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testNestedUnsupportedTypes"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testNetworkingWithStress"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testRegisterSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testReset"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testRetryAfterHTTPHeader"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTelephonyInfoInitialized"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackLaunchOptions"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackPushNotification"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackPushNotificationMalformed"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackWithCustomDistinctIdAndToken"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackWithCustomProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackWithDefaultProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testUnexpectedBeahviours"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testValidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testValidSuperProperties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "waitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", ""] +- !private ["P8Mixpanel16MixpanelDelegate", "AutomaticProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "Data"] +- !private ["P8Mixpanel16MixpanelDelegate", "Date"] +- !private ["P8Mixpanel16MixpanelDelegate", "FileManager"] +- !private ["P8Mixpanel16MixpanelDelegate", "LSNocilla"] +- !private ["P8Mixpanel16MixpanelDelegate", "Mixpanel"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSDictionary"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSError"] +- !private ["P8Mixpanel16MixpanelDelegate", "Persistence"] +- !private ["P8Mixpanel16MixpanelDelegate", "Queue"] +- !private ["P8Mixpanel16MixpanelDelegate", "String"] +- !private ["P8Mixpanel16MixpanelDelegate", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["P8Mixpanel16MixpanelDelegate", "UInt"] +- !private ["P8Mixpanel16MixpanelDelegate", "URL"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssert"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertEqual"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNotNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertTrue"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTExpectAssert"] +- !private ["P8Mixpanel16MixpanelDelegate", "allPropertyTypes"] +- !private ["P8Mixpanel16MixpanelDelegate", "assertDefaultPeopleProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "fabs"] +- !private ["P8Mixpanel16MixpanelDelegate", "flushAndWaitForSerialQueue"] +- !private ["P8Mixpanel16MixpanelDelegate", "init"] +- !private ["P8Mixpanel16MixpanelDelegate", "kTestToken"] +- !private ["P8Mixpanel16MixpanelDelegate", "mixpanel"] +- !private ["P8Mixpanel16MixpanelDelegate", "print"] +- !private ["P8Mixpanel16MixpanelDelegate", "stubEngage"] +- !private ["P8Mixpanel16MixpanelDelegate", "stubTrack"] +- ["P8Mixpanel16MixpanelDelegate", "test5XXResponse"] +- ["P8Mixpanel16MixpanelDelegate", "testAddingEventsAfterFlush"] +- ["P8Mixpanel16MixpanelDelegate", "testArchive"] +- ["P8Mixpanel16MixpanelDelegate", "testDropEvents"] +- ["P8Mixpanel16MixpanelDelegate", "testEventTiming"] +- ["P8Mixpanel16MixpanelDelegate", "testFlushEvents"] +- ["P8Mixpanel16MixpanelDelegate", "testFlushNetworkFailure"] +- ["P8Mixpanel16MixpanelDelegate", "testFlushPeople"] +- ["P8Mixpanel16MixpanelDelegate", "testIdentify"] +- ["P8Mixpanel16MixpanelDelegate", "testInvalidPropertiesTrack"] +- ["P8Mixpanel16MixpanelDelegate", "testInvalidSuperProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testMixpanelDelegate"] +- ["P8Mixpanel16MixpanelDelegate", "testNestedUnsupportedTypes"] +- ["P8Mixpanel16MixpanelDelegate", "testNetworkingWithStress"] +- ["P8Mixpanel16MixpanelDelegate", "testRegisterSuperProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testReset"] +- ["P8Mixpanel16MixpanelDelegate", "testRetryAfterHTTPHeader"] +- ["P8Mixpanel16MixpanelDelegate", "testTelephonyInfoInitialized"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackLaunchOptions"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackPushNotification"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackPushNotificationMalformed"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackWithCustomDistinctIdAndToken"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackWithCustomProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackWithDefaultProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testUnexpectedBeahviours"] +- ["P8Mixpanel16MixpanelDelegate", "testValidPropertiesTrack"] +- ["P8Mixpanel16MixpanelDelegate", "testValidSuperProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "waitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", ""] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "AnyObject"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "AutomaticProperties"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Data"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Date"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Double"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "FileManager"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Int"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "LSNocilla"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSDictionary"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSError"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Persistence"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Queue"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "UInt"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "URL"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssert"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertNil"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "deinit"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "fabs"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "flushAndWaitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "kTestToken"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "print"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "stubEngage"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "stubTrack"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "test5XXResponse"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testAddingEventsAfterFlush"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testArchive"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testDropEvents"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testEventTiming"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testFlushEvents"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testFlushNetworkFailure"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testFlushPeople"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testIdentify"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testInvalidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testInvalidSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testMixpanelDelegate"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testNestedUnsupportedTypes"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testNetworkingWithStress"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testRegisterSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testReset"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testRetryAfterHTTPHeader"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTelephonyInfoInitialized"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackLaunchOptions"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackPushNotification"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackPushNotificationMalformed"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackWithCustomDistinctIdAndToken"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackWithCustomProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackWithDefaultProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testUnexpectedBeahviours"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testValidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testValidSuperProperties"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "waitForSerialQueue"] +- !private ["C8Mixpanel16MixpanelInstance", "archive"] +- !private ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "defaultDistinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "delegate"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "eventsQueue"] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "flushInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "timedEvents"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- !private ["Ps17MutableCollection", "Element"] +- !private ["Ps17MutableCollection", "IndexDistance"] +- !private ["Ps17MutableCollection", "Iterator"] +- !private ["Ps17MutableCollection", "_Element"] +- !private ["Ps17MutableCollection", "append"] +- !private ["Ps17MutableCollection", "count"] +- !private ["Ps17MutableCollection", "init"] +- !private ["Ps17MutableCollection", "isEmpty"] +- !private ["Ps17MutableCollection", "last"] +- !private ["Ps17MutableCollection", "write"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "IndexDistance"] +- !private ["Ps16MutableIndexable", "Iterator"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["Ps16MutableIndexable", "write"] +- !private ["PSo8NSCoding", "Encoding"] +- !private ["PSo8NSCoding", "data"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "Encoding"] +- !private ["PSo9NSCopying", "data"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo12NSDictionary", "init"] +- !private ["CSo7NSError", "init"] +- !private ["PSo17NSFastEnumeration", "init"] +- !private ["PSo16NSMutableCopying", "Encoding"] +- !private ["PSo16NSMutableCopying", "data"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "AnyObject"] +- !private ["CSo8NSObject", "AutomaticProperties"] +- !private ["CSo8NSObject", "Data"] +- !private ["CSo8NSObject", "Date"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Encoding"] +- !private ["CSo8NSObject", "FileManager"] +- !private ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "LSNocilla"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDictionary"] +- !private ["CSo8NSObject", "NSError"] +- !private ["CSo8NSObject", "Persistence"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "Queue"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["CSo8NSObject", "UInt"] +- !private ["CSo8NSObject", "URL"] +- !private ["CSo8NSObject", "XCTAssert"] +- !private ["CSo8NSObject", "XCTAssertEqual"] +- !private ["CSo8NSObject", "XCTAssertNil"] +- !private ["CSo8NSObject", "XCTAssertNotNil"] +- !private ["CSo8NSObject", "XCTAssertTrue"] +- !private ["CSo8NSObject", "XCTExpectAssert"] +- !private ["CSo8NSObject", "allPropertyTypes"] +- !private ["CSo8NSObject", "andFailWithError"] +- !private ["CSo8NSObject", "andReturn"] +- !private ["CSo8NSObject", "assertDefaultPeopleProperties"] +- !private ["CSo8NSObject", "clearStubs"] +- !private ["CSo8NSObject", "data"] +- !private ["CSo8NSObject", "default"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "fabs"] +- !private ["CSo8NSObject", "fileExists"] +- !private ["CSo8NSObject", "flushAndWaitForSerialQueue"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "kTestToken"] +- !private ["CSo8NSObject", "mixpanel"] +- !private ["CSo8NSObject", "print"] +- !private ["CSo8NSObject", "sharedInstance"] +- !private ["CSo8NSObject", "stubEngage"] +- !private ["CSo8NSObject", "stubTrack"] +- ["CSo8NSObject", "test5XXResponse"] +- ["CSo8NSObject", "testAddingEventsAfterFlush"] +- ["CSo8NSObject", "testArchive"] +- ["CSo8NSObject", "testDropEvents"] +- ["CSo8NSObject", "testEventTiming"] +- ["CSo8NSObject", "testFlushEvents"] +- ["CSo8NSObject", "testFlushNetworkFailure"] +- ["CSo8NSObject", "testFlushPeople"] +- ["CSo8NSObject", "testIdentify"] +- ["CSo8NSObject", "testInvalidPropertiesTrack"] +- ["CSo8NSObject", "testInvalidSuperProperties"] +- ["CSo8NSObject", "testMixpanelDelegate"] +- ["CSo8NSObject", "testNestedUnsupportedTypes"] +- ["CSo8NSObject", "testNetworkingWithStress"] +- ["CSo8NSObject", "testRegisterSuperProperties"] +- ["CSo8NSObject", "testReset"] +- ["CSo8NSObject", "testRetryAfterHTTPHeader"] +- ["CSo8NSObject", "testTelephonyInfoInitialized"] +- ["CSo8NSObject", "testTrackLaunchOptions"] +- ["CSo8NSObject", "testTrackPushNotification"] +- ["CSo8NSObject", "testTrackPushNotificationMalformed"] +- ["CSo8NSObject", "testTrackWithCustomDistinctIdAndToken"] +- ["CSo8NSObject", "testTrackWithCustomProperties"] +- ["CSo8NSObject", "testTrackWithDefaultProperties"] +- ["CSo8NSObject", "testUnexpectedBeahviours"] +- ["CSo8NSObject", "testValidPropertiesTrack"] +- ["CSo8NSObject", "testValidSuperProperties"] +- !private ["CSo8NSObject", "waitForSerialQueue"] +- !private ["CSo8NSObject", "withHeader"] +- !private ["PSo16NSObjectProtocol", "AutomaticProperties"] +- !private ["PSo16NSObjectProtocol", "Data"] +- !private ["PSo16NSObjectProtocol", "Date"] +- !private ["PSo16NSObjectProtocol", "Encoding"] +- !private ["PSo16NSObjectProtocol", "FileManager"] +- !private ["PSo16NSObjectProtocol", "LSNocilla"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDictionary"] +- !private ["PSo16NSObjectProtocol", "NSError"] +- !private ["PSo16NSObjectProtocol", "Persistence"] +- !private ["PSo16NSObjectProtocol", "Queue"] +- !private ["PSo16NSObjectProtocol", "String"] +- !private ["PSo16NSObjectProtocol", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["PSo16NSObjectProtocol", "UInt"] +- !private ["PSo16NSObjectProtocol", "URL"] +- !private ["PSo16NSObjectProtocol", "XCTAssert"] +- !private ["PSo16NSObjectProtocol", "XCTAssertEqual"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNil"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNotNil"] +- !private ["PSo16NSObjectProtocol", "XCTAssertTrue"] +- !private ["PSo16NSObjectProtocol", "XCTExpectAssert"] +- !private ["PSo16NSObjectProtocol", "allPropertyTypes"] +- !private ["PSo16NSObjectProtocol", "andFailWithError"] +- !private ["PSo16NSObjectProtocol", "andReturn"] +- !private ["PSo16NSObjectProtocol", "assertDefaultPeopleProperties"] +- !private ["PSo16NSObjectProtocol", "clearStubs"] +- !private ["PSo16NSObjectProtocol", "data"] +- !private ["PSo16NSObjectProtocol", "default"] +- !private ["PSo16NSObjectProtocol", "fabs"] +- !private ["PSo16NSObjectProtocol", "fileExists"] +- !private ["PSo16NSObjectProtocol", "flushAndWaitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "kTestToken"] +- !private ["PSo16NSObjectProtocol", "mixpanel"] +- !private ["PSo16NSObjectProtocol", "print"] +- !private ["PSo16NSObjectProtocol", "sharedInstance"] +- !private ["PSo16NSObjectProtocol", "stubEngage"] +- !private ["PSo16NSObjectProtocol", "stubTrack"] +- ["PSo16NSObjectProtocol", "test5XXResponse"] +- ["PSo16NSObjectProtocol", "testAddingEventsAfterFlush"] +- ["PSo16NSObjectProtocol", "testArchive"] +- ["PSo16NSObjectProtocol", "testDropEvents"] +- ["PSo16NSObjectProtocol", "testEventTiming"] +- ["PSo16NSObjectProtocol", "testFlushEvents"] +- ["PSo16NSObjectProtocol", "testFlushNetworkFailure"] +- ["PSo16NSObjectProtocol", "testFlushPeople"] +- ["PSo16NSObjectProtocol", "testIdentify"] +- ["PSo16NSObjectProtocol", "testInvalidPropertiesTrack"] +- ["PSo16NSObjectProtocol", "testInvalidSuperProperties"] +- ["PSo16NSObjectProtocol", "testMixpanelDelegate"] +- ["PSo16NSObjectProtocol", "testNestedUnsupportedTypes"] +- ["PSo16NSObjectProtocol", "testNetworkingWithStress"] +- ["PSo16NSObjectProtocol", "testRegisterSuperProperties"] +- ["PSo16NSObjectProtocol", "testReset"] +- ["PSo16NSObjectProtocol", "testRetryAfterHTTPHeader"] +- ["PSo16NSObjectProtocol", "testTelephonyInfoInitialized"] +- ["PSo16NSObjectProtocol", "testTrackLaunchOptions"] +- ["PSo16NSObjectProtocol", "testTrackPushNotification"] +- ["PSo16NSObjectProtocol", "testTrackPushNotificationMalformed"] +- ["PSo16NSObjectProtocol", "testTrackWithCustomDistinctIdAndToken"] +- ["PSo16NSObjectProtocol", "testTrackWithCustomProperties"] +- ["PSo16NSObjectProtocol", "testTrackWithDefaultProperties"] +- ["PSo16NSObjectProtocol", "testUnexpectedBeahviours"] +- ["PSo16NSObjectProtocol", "testValidPropertiesTrack"] +- ["PSo16NSObjectProtocol", "testValidSuperProperties"] +- !private ["PSo16NSObjectProtocol", "waitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "withHeader"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "Encoding"] +- !private ["PSo14NSSecureCoding", "data"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "Encoding"] +- !private ["CSo8NSString", "data"] +- !private ["CSo8NSString", "init"] +- !private ["C8Mixpanel7Network", "networkConsecutiveFailures"] +- !private ["C8Mixpanel7Network", "networkRequestsAllowedAfterTime"] +- !private ["Ps9OptionSet", "Element"] +- !private ["Sq", "deinit"] +- !private ["Ps12OutputStream", "Encoding"] +- !private ["Ps12OutputStream", "data"] +- !private ["Ps12OutputStream", "init"] +- !private ["C8Mixpanel6People", "append"] +- !private ["C8Mixpanel6People", "distinctId"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["C8Mixpanel6People", "union"] +- !private ["C8Mixpanel11Persistence", "filePathWithType"] +- !private ["Ps22RandomAccessCollection", "Element"] +- !private ["Ps22RandomAccessCollection", "IndexDistance"] +- !private ["Ps22RandomAccessCollection", "Iterator"] +- !private ["Ps22RandomAccessCollection", "_Element"] +- !private ["Ps22RandomAccessCollection", "append"] +- !private ["Ps22RandomAccessCollection", "count"] +- !private ["Ps22RandomAccessCollection", "init"] +- !private ["Ps22RandomAccessCollection", "isEmpty"] +- !private ["Ps22RandomAccessCollection", "last"] +- !private ["Ps22RandomAccessCollection", "write"] +- !private ["Ps21RandomAccessIndexable", "Element"] +- !private ["Ps21RandomAccessIndexable", "IndexDistance"] +- !private ["Ps21RandomAccessIndexable", "Iterator"] +- !private ["Ps21RandomAccessIndexable", "_Element"] +- !private ["Ps21RandomAccessIndexable", "append"] +- !private ["Ps21RandomAccessIndexable", "count"] +- !private ["Ps21RandomAccessIndexable", "init"] +- !private ["Ps21RandomAccessIndexable", "isEmpty"] +- !private ["Ps21RandomAccessIndexable", "last"] +- !private ["Ps21RandomAccessIndexable", "write"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps26RangeReplaceableCollection", "Element"] +- !private ["Ps26RangeReplaceableCollection", "IndexDistance"] +- !private ["Ps26RangeReplaceableCollection", "Iterator"] +- !private ["Ps26RangeReplaceableCollection", "_Element"] +- !private ["Ps26RangeReplaceableCollection", "append"] +- !private ["Ps26RangeReplaceableCollection", "count"] +- !private ["Ps26RangeReplaceableCollection", "init"] +- !private ["Ps26RangeReplaceableCollection", "isEmpty"] +- !private ["Ps26RangeReplaceableCollection", "last"] +- !private ["Ps25RangeReplaceableIndexable", "Element"] +- !private ["Ps25RangeReplaceableIndexable", "IndexDistance"] +- !private ["Ps25RangeReplaceableIndexable", "Iterator"] +- !private ["Ps25RangeReplaceableIndexable", "_Element"] +- !private ["Ps25RangeReplaceableIndexable", "append"] +- !private ["Ps25RangeReplaceableIndexable", "count"] +- !private ["Ps25RangeReplaceableIndexable", "init"] +- !private ["Ps25RangeReplaceableIndexable", "isEmpty"] +- !private ["Ps25RangeReplaceableIndexable", "last"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps16RawRepresentable", "Properties"] +- !private ["Ps16RawRepresentable", "utf8"] +- !private ["P10Foundation20ReferenceConvertible", "init"] +- !private ["P10Foundation20ReferenceConvertible", "timeIntervalSince1970"] +- !private ["P10Foundation20ReferenceConvertible", "write"] +- !private ["Ps8Sequence", "Element"] +- !private ["Ps8Sequence", "Index"] +- !private ["Ps8Sequence", "IndexDistance"] +- !private ["Ps8Sequence", "Iterator"] +- !private ["Ps8Sequence", "Key"] +- !private ["Ps8Sequence", "SubSequence"] +- !private ["Ps8Sequence", "Value"] +- !private ["Ps8Sequence", "_Element"] +- !private ["Ps8Sequence", "append"] +- !private ["Ps8Sequence", "count"] +- !private ["Ps8Sequence", "init"] +- !private ["Ps8Sequence", "isEmpty"] +- !private ["Ps8Sequence", "last"] +- !private ["Ps8Sequence", "subscript"] +- !private ["Ps8Sequence", "write"] +- !private ["Ps10SetAlgebra", "Element"] +- !private ["Ps13SignedInteger", "IntegerLiteralType"] +- !private ["Ps13SignedInteger", "Stride"] +- !private ["Ps13SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps12SignedNumber", "IntegerLiteralType"] +- !private ["Ps12SignedNumber", "Stride"] +- !private ["Ps12SignedNumber", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "Iterator"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "Encoding"] +- !private ["Ps10Streamable", "data"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "Encoding"] +- !private ["SS", "data"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "Encoding"] +- !private ["Ps30StringInterpolationConvertible", "data"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "Encoding"] +- !private ["Ps24StringLiteralConvertible", "data"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Su", "init"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["V10Foundation3URL", "init"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "Encoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "data"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps15UnsignedInteger", "init"] +- !private ["VCSo6NSData14WritingOptions", "Element"] +- !private ["CSo6XCTest", "AnyObject"] +- !private ["CSo6XCTest", "AutomaticProperties"] +- !private ["CSo6XCTest", "Data"] +- !private ["CSo6XCTest", "Date"] +- !private ["CSo6XCTest", "Double"] +- !private ["CSo6XCTest", "FileManager"] +- !private ["CSo6XCTest", "Int"] +- !private ["CSo6XCTest", "LSNocilla"] +- !private ["CSo6XCTest", "Mixpanel"] +- !private ["CSo6XCTest", "NSDictionary"] +- !private ["CSo6XCTest", "NSError"] +- !private ["CSo6XCTest", "Persistence"] +- !private ["CSo6XCTest", "Properties"] +- !private ["CSo6XCTest", "Queue"] +- !private ["CSo6XCTest", "String"] +- !private ["CSo6XCTest", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["CSo6XCTest", "UInt"] +- !private ["CSo6XCTest", "URL"] +- !private ["CSo6XCTest", "XCTAssert"] +- !private ["CSo6XCTest", "XCTAssertEqual"] +- !private ["CSo6XCTest", "XCTAssertNil"] +- !private ["CSo6XCTest", "XCTAssertNotNil"] +- !private ["CSo6XCTest", "XCTAssertTrue"] +- !private ["CSo6XCTest", "XCTExpectAssert"] +- !private ["CSo6XCTest", "allPropertyTypes"] +- !private ["CSo6XCTest", "assertDefaultPeopleProperties"] +- !private ["CSo6XCTest", "fabs"] +- !private ["CSo6XCTest", "flushAndWaitForSerialQueue"] +- ["CSo6XCTest", "init"] +- !private ["CSo6XCTest", "kTestToken"] +- !private ["CSo6XCTest", "mixpanel"] +- !private ["CSo6XCTest", "print"] +- !private ["CSo6XCTest", "stubEngage"] +- !private ["CSo6XCTest", "stubTrack"] +- ["CSo6XCTest", "test5XXResponse"] +- ["CSo6XCTest", "testAddingEventsAfterFlush"] +- ["CSo6XCTest", "testArchive"] +- ["CSo6XCTest", "testDropEvents"] +- ["CSo6XCTest", "testEventTiming"] +- ["CSo6XCTest", "testFlushEvents"] +- ["CSo6XCTest", "testFlushNetworkFailure"] +- ["CSo6XCTest", "testFlushPeople"] +- ["CSo6XCTest", "testIdentify"] +- ["CSo6XCTest", "testInvalidPropertiesTrack"] +- ["CSo6XCTest", "testInvalidSuperProperties"] +- ["CSo6XCTest", "testMixpanelDelegate"] +- ["CSo6XCTest", "testNestedUnsupportedTypes"] +- ["CSo6XCTest", "testNetworkingWithStress"] +- ["CSo6XCTest", "testRegisterSuperProperties"] +- ["CSo6XCTest", "testReset"] +- ["CSo6XCTest", "testRetryAfterHTTPHeader"] +- ["CSo6XCTest", "testTelephonyInfoInitialized"] +- ["CSo6XCTest", "testTrackLaunchOptions"] +- ["CSo6XCTest", "testTrackPushNotification"] +- ["CSo6XCTest", "testTrackPushNotificationMalformed"] +- ["CSo6XCTest", "testTrackWithCustomDistinctIdAndToken"] +- ["CSo6XCTest", "testTrackWithCustomProperties"] +- ["CSo6XCTest", "testTrackWithDefaultProperties"] +- ["CSo6XCTest", "testUnexpectedBeahviours"] +- ["CSo6XCTest", "testValidPropertiesTrack"] +- ["CSo6XCTest", "testValidSuperProperties"] +- !private ["CSo6XCTest", "waitForSerialQueue"] +- !private ["CSo10XCTestCase", "AnyObject"] +- !private ["CSo10XCTestCase", "AutomaticProperties"] +- !private ["CSo10XCTestCase", "Data"] +- !private ["CSo10XCTestCase", "Date"] +- !private ["CSo10XCTestCase", "Double"] +- !private ["CSo10XCTestCase", "FileManager"] +- !private ["CSo10XCTestCase", "Int"] +- !private ["CSo10XCTestCase", "LSNocilla"] +- !private ["CSo10XCTestCase", "Mixpanel"] +- !private ["CSo10XCTestCase", "NSDictionary"] +- !private ["CSo10XCTestCase", "NSError"] +- !private ["CSo10XCTestCase", "Persistence"] +- !private ["CSo10XCTestCase", "Properties"] +- !private ["CSo10XCTestCase", "Queue"] +- !private ["CSo10XCTestCase", "String"] +- !private ["CSo10XCTestCase", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["CSo10XCTestCase", "UInt"] +- !private ["CSo10XCTestCase", "URL"] +- !private ["CSo10XCTestCase", "XCTAssert"] +- !private ["CSo10XCTestCase", "XCTAssertEqual"] +- !private ["CSo10XCTestCase", "XCTAssertNil"] +- !private ["CSo10XCTestCase", "XCTAssertNotNil"] +- !private ["CSo10XCTestCase", "XCTAssertTrue"] +- !private ["CSo10XCTestCase", "XCTExpectAssert"] +- !private ["CSo10XCTestCase", "allPropertyTypes"] +- !private ["CSo10XCTestCase", "assertDefaultPeopleProperties"] +- !private ["CSo10XCTestCase", "fabs"] +- !private ["CSo10XCTestCase", "flushAndWaitForSerialQueue"] +- ["CSo10XCTestCase", "init"] +- !private ["CSo10XCTestCase", "kTestToken"] +- !private ["CSo10XCTestCase", "mixpanel"] +- !private ["CSo10XCTestCase", "print"] +- !private ["CSo10XCTestCase", "stubEngage"] +- !private ["CSo10XCTestCase", "stubTrack"] +- ["CSo10XCTestCase", "test5XXResponse"] +- ["CSo10XCTestCase", "testAddingEventsAfterFlush"] +- ["CSo10XCTestCase", "testArchive"] +- ["CSo10XCTestCase", "testDropEvents"] +- ["CSo10XCTestCase", "testEventTiming"] +- ["CSo10XCTestCase", "testFlushEvents"] +- ["CSo10XCTestCase", "testFlushNetworkFailure"] +- ["CSo10XCTestCase", "testFlushPeople"] +- ["CSo10XCTestCase", "testIdentify"] +- ["CSo10XCTestCase", "testInvalidPropertiesTrack"] +- ["CSo10XCTestCase", "testInvalidSuperProperties"] +- ["CSo10XCTestCase", "testMixpanelDelegate"] +- ["CSo10XCTestCase", "testNestedUnsupportedTypes"] +- ["CSo10XCTestCase", "testNetworkingWithStress"] +- ["CSo10XCTestCase", "testRegisterSuperProperties"] +- ["CSo10XCTestCase", "testReset"] +- ["CSo10XCTestCase", "testRetryAfterHTTPHeader"] +- ["CSo10XCTestCase", "testTelephonyInfoInitialized"] +- ["CSo10XCTestCase", "testTrackLaunchOptions"] +- ["CSo10XCTestCase", "testTrackPushNotification"] +- ["CSo10XCTestCase", "testTrackPushNotificationMalformed"] +- ["CSo10XCTestCase", "testTrackWithCustomDistinctIdAndToken"] +- ["CSo10XCTestCase", "testTrackWithCustomProperties"] +- ["CSo10XCTestCase", "testTrackWithDefaultProperties"] +- ["CSo10XCTestCase", "testUnexpectedBeahviours"] +- ["CSo10XCTestCase", "testValidPropertiesTrack"] +- ["CSo10XCTestCase", "testValidSuperProperties"] +- !private ["CSo10XCTestCase", "waitForSerialQueue"] +- !private ["CSo11XCUIElement", "deinit"] +- !private ["Ps14_ArrayProtocol", "Element"] +- !private ["Ps14_ArrayProtocol", "IndexDistance"] +- !private ["Ps14_ArrayProtocol", "Iterator"] +- !private ["Ps14_ArrayProtocol", "_Element"] +- !private ["Ps14_ArrayProtocol", "append"] +- !private ["Ps14_ArrayProtocol", "count"] +- !private ["Ps14_ArrayProtocol", "init"] +- !private ["Ps14_ArrayProtocol", "isEmpty"] +- !private ["Ps14_ArrayProtocol", "last"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "Encoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "data"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "Encoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "data"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "Encoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "data"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "Encoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "data"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps15_CVarArgAligned", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "IndexDistance"] +- !private ["Ps24_DestructorSafeContainer", "Iterator"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps28_DisallowMixedSignArithmetic", "init"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Stride"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps8_Integer", "IntegerLiteralType"] +- !private ["Ps8_Integer", "Stride"] +- !private ["Ps8_Integer", "_DisabledRangeIndex"] +- !private ["Ps8_Integer", "init"] +- !private ["Ps18_IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps18_IntegerArithmetic", "Stride"] +- !private ["Ps18_IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps18_IntegerArithmetic", "init"] +- !private ["P10Foundation18_MutablePairBoxing", "init"] +- !private ["P10Foundation18_MutablePairBoxing", "write"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Encoding"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IndexDistance"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Iterator"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "data"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps21_ObjectiveCBridgeable", "timeIntervalSince1970"] +- !private ["Ps21_ObjectiveCBridgeable", "write"] +- !private ["Ps14_SignedInteger", "IntegerLiteralType"] +- !private ["Ps14_SignedInteger", "Stride"] +- !private ["Ps14_SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps11_Strideable", "IntegerLiteralType"] +- !private ["Ps11_Strideable", "Stride"] +- !private ["Ps11_Strideable", "_DisabledRangeIndex"] +- !private ["Ps11_Strideable", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "P8Mixpanel12AppLifecycle" +- !private "OC8Mixpanel11Persistence11ArchiveType" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "C8Mixpanel19AutomaticProperties" +- !private "Ps23BidirectionalCollection" +- !private "Ps22BidirectionalIndexable" +- !private "Ps19BinaryFloatingPoint" +- !private "Ps17BitwiseOperations" +- !private "Sb" +- !private "V12CoreGraphics7CGFloat" +- "Ps7CVarArg" +- !private "Vs9Character" +- !private "Ps10Collection" +- !private "Ps10Comparable" +- !private "Vs14CountableRange" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- !private "V10Foundation4Data" +- "V10Foundation4Date" +- "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- "Sd" +- !private "VE10FoundationSS8Encoding" +- "Ps9Equatable" +- !private "Ps13ErrorProtocol" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "CSo11FileManager" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps13FloatingPoint" +- !private "C8Mixpanel5Flush" +- !private "P8Mixpanel13FlushDelegate" +- !private "C8Mixpanel12FlushRequest" +- "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Ps13IndexableBase" +- !private "Vs16IndexingIterator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps7Integer" +- !private "Ps17IntegerArithmetic" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps16IteratorProtocol" +- !private "PSo10LSHTTPBody" +- !private "PSo12LSMatcheable" +- !private "CSo9LSNocilla" +- !private "CSo16LSStubRequestDSL" +- !private "CSo17LSStubResponseDSL" +- !private "Ps10MirrorPath" +- !private "C8Mixpanel8Mixpanel" +- "C17MixpanelDemoTests17MixpanelBaseTests" +- "P8Mixpanel16MixpanelDelegate" +- "C17MixpanelDemoTests17MixpanelDemoTests" +- !private "C8Mixpanel16MixpanelInstance" +- !private "Ps17MutableCollection" +- !private "Ps16MutableIndexable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo12NSDictionary" +- !private "CSo7NSError" +- !private "PSo17NSFastEnumeration" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "C8Mixpanel7Network" +- !private "Ps9OptionSet" +- !private "Sq" +- !private "Ps12OutputStream" +- !private "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- !private "Ps22RandomAccessCollection" +- !private "Ps21RandomAccessIndexable" +- !private "Vs5Range" +- !private "Ps26RangeReplaceableCollection" +- !private "Ps25RangeReplaceableIndexable" +- !private "Ps16RawRepresentable" +- !private "P10Foundation20ReferenceConvertible" +- !private "Ps8Sequence" +- !private "Ps10SetAlgebra" +- !private "Ps13SignedInteger" +- !private "Ps12SignedNumber" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "V10Foundation3URL" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps15UnsignedInteger" +- !private "VCSo6NSData14WritingOptions" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "CSo11XCUIElement" +- !private "Ps14_ArrayProtocol" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps15_CVarArgAligned" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps28_DisallowMixedSignArithmetic" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps8_Integer" +- !private "Ps18_IntegerArithmetic" +- !private "P10Foundation18_MutablePairBoxing" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps14_SignedInteger" +- !private "Ps11_Strideable" +depends-dynamic-lookup: +- !private "subscript" +- !private "init" +depends-external: +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule" +interface-hash: "9364c7e150e690ad81343507b3672184" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftdoc new file mode 100644 index 00000000..be255b7b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftmodule new file mode 100644 index 00000000..d6d6c8ef Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelDemoTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.d new file mode 100644 index 00000000..4d98d84a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.o new file mode 100644 index 00000000..6b04cf02 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.swiftdeps new file mode 100644 index 00000000..e6910182 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests.swiftdeps @@ -0,0 +1,1085 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelPeopleTests" +provides-nominal: +- "C17MixpanelDemoTests19MixpanelPeopleTests" +provides-member: +- ["C17MixpanelDemoTests19MixpanelPeopleTests", ""] +provides-dynamic-lookup: +- "testPeopleTrackChargeWithProperties" +- "testPeopleSetOnce" +- "testDropPeopleRecords" +- "testPeopleAssertPropertyTypes" +- "testPeopleSetTo" +- "testPeopleAddPushDeviceToken" +- "testPeopleTrackChargeDecimal" +- "testPeopleSet" +- "testPeopleTrackCharge" +- "testPeopleTrackChargeZero" +- "testPeopleClearCharges" +- "testPeopleTrackChargeWithTime" +- "testPeopleSetReservedProperty" +- "testDropUnidentifiedPeopleRecords" +- "testPeopleIncrement" +- "testPeopleDeleteUser" +- "testPeopleIncrementBy" +depends-top-level: +- !private "Double" +- !private "==" +- !private "UnicodeScalarType" +- !private "XCTAssertTrue" +- !private "Int" +- !private "..<" +- !private "XCTAssertEqual" +- !private "Date" +- !private "Data" +- !private "XCTAssertNotNil" +- !private "Properties" +- "MixpanelBaseTests" +- !private "QueueConstants" +- !private "AnyObject" +- !private "String" +- !private "Array" +- !private "Dictionary" +- "MixpanelPeopleTests" +- !private "StringLiteralType" +depends-member: +- !private ["Ps9AnyObject", "Data"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Encoding"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "String"] +- !private ["Ps9AnyObject", "XCTAssertEqual"] +- !private ["Ps9AnyObject", "XCTAssertNotNil"] +- !private ["Ps9AnyObject", "XCTAssertTrue"] +- !private ["Ps9AnyObject", "XCTExpectAssert"] +- !private ["Ps9AnyObject", "addPushDeviceToken"] +- !private ["Ps9AnyObject", "allPropertyTypes"] +- !private ["Ps9AnyObject", "assertDefaultPeopleProperties"] +- !private ["Ps9AnyObject", "clearCharges"] +- !private ["Ps9AnyObject", "data"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "deleteUser"] +- !private ["Ps9AnyObject", "identify"] +- !private ["Ps9AnyObject", "increment"] +- !private ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "mixpanel"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "setOnce"] +- !private ["Ps9AnyObject", "subscript"] +- ["Ps9AnyObject", "testDropPeopleRecords"] +- ["Ps9AnyObject", "testDropUnidentifiedPeopleRecords"] +- ["Ps9AnyObject", "testPeopleAddPushDeviceToken"] +- ["Ps9AnyObject", "testPeopleAssertPropertyTypes"] +- ["Ps9AnyObject", "testPeopleClearCharges"] +- ["Ps9AnyObject", "testPeopleDeleteUser"] +- ["Ps9AnyObject", "testPeopleIncrement"] +- ["Ps9AnyObject", "testPeopleIncrementBy"] +- ["Ps9AnyObject", "testPeopleSet"] +- ["Ps9AnyObject", "testPeopleSetOnce"] +- ["Ps9AnyObject", "testPeopleSetReservedProperty"] +- ["Ps9AnyObject", "testPeopleSetTo"] +- ["Ps9AnyObject", "testPeopleTrackCharge"] +- ["Ps9AnyObject", "testPeopleTrackChargeDecimal"] +- ["Ps9AnyObject", "testPeopleTrackChargeWithProperties"] +- ["Ps9AnyObject", "testPeopleTrackChargeWithTime"] +- ["Ps9AnyObject", "testPeopleTrackChargeZero"] +- !private ["Ps9AnyObject", "trackCharge"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "waitForSerialQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "IndexDistance"] +- !private ["Sa", "Iterator"] +- !private ["Sa", "_Element"] +- !private ["Sa", "count"] +- ["Sa", "deinit"] +- !private ["Sa", "first"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "IndexDistance"] +- !private ["Ps23ArrayLiteralConvertible", "Iterator"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "first"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Ps23BidirectionalCollection", "Element"] +- !private ["Ps23BidirectionalCollection", "IndexDistance"] +- !private ["Ps23BidirectionalCollection", "Iterator"] +- !private ["Ps23BidirectionalCollection", "_Element"] +- !private ["Ps23BidirectionalCollection", "count"] +- !private ["Ps23BidirectionalCollection", "first"] +- !private ["Ps23BidirectionalCollection", "init"] +- !private ["Ps23BidirectionalCollection", "last"] +- !private ["Ps22BidirectionalIndexable", "Element"] +- !private ["Ps22BidirectionalIndexable", "IndexDistance"] +- !private ["Ps22BidirectionalIndexable", "Iterator"] +- !private ["Ps22BidirectionalIndexable", "_Element"] +- !private ["Ps22BidirectionalIndexable", "count"] +- !private ["Ps22BidirectionalIndexable", "first"] +- !private ["Ps22BidirectionalIndexable", "init"] +- !private ["Ps22BidirectionalIndexable", "last"] +- !private ["Ps17BitwiseOperations", "IntegerLiteralType"] +- !private ["Ps17BitwiseOperations", "Stride"] +- !private ["Ps17BitwiseOperations", "_DisabledRangeIndex"] +- !private ["Sb", "deinit"] +- !private ["Ps7CVarArg", "Data"] +- !private ["Ps7CVarArg", "Element"] +- !private ["Ps7CVarArg", "Encoding"] +- !private ["Ps7CVarArg", "IntegerLiteralType"] +- !private ["Ps7CVarArg", "QueueConstants"] +- !private ["Ps7CVarArg", "Stride"] +- !private ["Ps7CVarArg", "String"] +- !private ["Ps7CVarArg", "XCTAssertEqual"] +- !private ["Ps7CVarArg", "XCTAssertNotNil"] +- !private ["Ps7CVarArg", "XCTAssertTrue"] +- !private ["Ps7CVarArg", "XCTExpectAssert"] +- !private ["Ps7CVarArg", "_DisabledRangeIndex"] +- !private ["Ps7CVarArg", "allPropertyTypes"] +- !private ["Ps7CVarArg", "assertDefaultPeopleProperties"] +- !private ["Ps7CVarArg", "data"] +- !private ["Ps7CVarArg", "init"] +- !private ["Ps7CVarArg", "mixpanel"] +- ["Ps7CVarArg", "testDropPeopleRecords"] +- ["Ps7CVarArg", "testDropUnidentifiedPeopleRecords"] +- ["Ps7CVarArg", "testPeopleAddPushDeviceToken"] +- ["Ps7CVarArg", "testPeopleAssertPropertyTypes"] +- ["Ps7CVarArg", "testPeopleClearCharges"] +- ["Ps7CVarArg", "testPeopleDeleteUser"] +- ["Ps7CVarArg", "testPeopleIncrement"] +- ["Ps7CVarArg", "testPeopleIncrementBy"] +- ["Ps7CVarArg", "testPeopleSet"] +- ["Ps7CVarArg", "testPeopleSetOnce"] +- ["Ps7CVarArg", "testPeopleSetReservedProperty"] +- ["Ps7CVarArg", "testPeopleSetTo"] +- ["Ps7CVarArg", "testPeopleTrackCharge"] +- ["Ps7CVarArg", "testPeopleTrackChargeDecimal"] +- ["Ps7CVarArg", "testPeopleTrackChargeWithProperties"] +- ["Ps7CVarArg", "testPeopleTrackChargeWithTime"] +- ["Ps7CVarArg", "testPeopleTrackChargeZero"] +- !private ["Ps7CVarArg", "waitForSerialQueue"] +- ["Ps7CVarArg", ""] +- !private ["Vs9Character", "deinit"] +- !private ["Vs11ClosedRange", "deinit"] +- !private ["Ps10Collection", "Element"] +- !private ["Ps10Collection", "Index"] +- !private ["Ps10Collection", "IndexDistance"] +- !private ["Ps10Collection", "Iterator"] +- !private ["Ps10Collection", "Key"] +- !private ["Ps10Collection", "SubSequence"] +- !private ["Ps10Collection", "Value"] +- !private ["Ps10Collection", "_Element"] +- !private ["Ps10Collection", "count"] +- !private ["Ps10Collection", "first"] +- !private ["Ps10Collection", "init"] +- !private ["Ps10Collection", "isEmpty"] +- !private ["Ps10Collection", "last"] +- !private ["Ps10Collection", "subscript"] +- !private ["Ps10Comparable", "Encoding"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "data"] +- !private ["Ps10Comparable", "init"] +- !private ["Vs14CountableRange", "Iterator"] +- !private ["Vs14CountableRange", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "Data"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Encoding"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "IndexDistance"] +- !private ["Ps28CustomDebugStringConvertible", "Iterator"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "QueueConstants"] +- !private ["Ps28CustomDebugStringConvertible", "String"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertEqual"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNotNil"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertTrue"] +- !private ["Ps28CustomDebugStringConvertible", "XCTExpectAssert"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allPropertyTypes"] +- !private ["Ps28CustomDebugStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "data"] +- !private ["Ps28CustomDebugStringConvertible", "first"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- !private ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "testDropPeopleRecords"] +- ["Ps28CustomDebugStringConvertible", "testDropUnidentifiedPeopleRecords"] +- ["Ps28CustomDebugStringConvertible", "testPeopleAddPushDeviceToken"] +- ["Ps28CustomDebugStringConvertible", "testPeopleAssertPropertyTypes"] +- ["Ps28CustomDebugStringConvertible", "testPeopleClearCharges"] +- ["Ps28CustomDebugStringConvertible", "testPeopleDeleteUser"] +- ["Ps28CustomDebugStringConvertible", "testPeopleIncrement"] +- ["Ps28CustomDebugStringConvertible", "testPeopleIncrementBy"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSet"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSetOnce"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSetReservedProperty"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSetTo"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackCharge"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeDecimal"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeWithProperties"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeWithTime"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeZero"] +- !private ["Ps28CustomDebugStringConvertible", "waitForSerialQueue"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps29CustomPlaygroundQuickLookable", "Encoding"] +- !private ["Ps29CustomPlaygroundQuickLookable", "IntegerLiteralType"] +- !private ["Ps29CustomPlaygroundQuickLookable", "Stride"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_DisabledRangeIndex"] +- !private ["Ps29CustomPlaygroundQuickLookable", "data"] +- !private ["Ps29CustomPlaygroundQuickLookable", "init"] +- !private ["Ps17CustomReflectable", "Element"] +- !private ["Ps17CustomReflectable", "Encoding"] +- !private ["Ps17CustomReflectable", "Index"] +- !private ["Ps17CustomReflectable", "IndexDistance"] +- !private ["Ps17CustomReflectable", "IntegerLiteralType"] +- !private ["Ps17CustomReflectable", "Iterator"] +- !private ["Ps17CustomReflectable", "Key"] +- !private ["Ps17CustomReflectable", "Stride"] +- !private ["Ps17CustomReflectable", "SubSequence"] +- !private ["Ps17CustomReflectable", "Value"] +- !private ["Ps17CustomReflectable", "_DisabledRangeIndex"] +- !private ["Ps17CustomReflectable", "_Element"] +- !private ["Ps17CustomReflectable", "count"] +- !private ["Ps17CustomReflectable", "data"] +- !private ["Ps17CustomReflectable", "first"] +- !private ["Ps17CustomReflectable", "init"] +- !private ["Ps17CustomReflectable", "isEmpty"] +- !private ["Ps17CustomReflectable", "last"] +- !private ["Ps17CustomReflectable", "subscript"] +- !private ["Ps23CustomStringConvertible", "Data"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Encoding"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IndexDistance"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Iterator"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "QueueConstants"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "String"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "XCTAssertEqual"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNotNil"] +- !private ["Ps23CustomStringConvertible", "XCTAssertTrue"] +- !private ["Ps23CustomStringConvertible", "XCTExpectAssert"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "allPropertyTypes"] +- !private ["Ps23CustomStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "data"] +- !private ["Ps23CustomStringConvertible", "first"] +- !private ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "mixpanel"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "testDropPeopleRecords"] +- ["Ps23CustomStringConvertible", "testDropUnidentifiedPeopleRecords"] +- ["Ps23CustomStringConvertible", "testPeopleAddPushDeviceToken"] +- ["Ps23CustomStringConvertible", "testPeopleAssertPropertyTypes"] +- ["Ps23CustomStringConvertible", "testPeopleClearCharges"] +- ["Ps23CustomStringConvertible", "testPeopleDeleteUser"] +- ["Ps23CustomStringConvertible", "testPeopleIncrement"] +- ["Ps23CustomStringConvertible", "testPeopleIncrementBy"] +- ["Ps23CustomStringConvertible", "testPeopleSet"] +- ["Ps23CustomStringConvertible", "testPeopleSetOnce"] +- ["Ps23CustomStringConvertible", "testPeopleSetReservedProperty"] +- ["Ps23CustomStringConvertible", "testPeopleSetTo"] +- ["Ps23CustomStringConvertible", "testPeopleTrackCharge"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeDecimal"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeWithProperties"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeWithTime"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeZero"] +- !private ["Ps23CustomStringConvertible", "utf8"] +- !private ["Ps23CustomStringConvertible", "waitForSerialQueue"] +- ["Ps23CustomStringConvertible", ""] +- !private ["V10Foundation4Data", "deinit"] +- !private ["V10Foundation4Data", "init"] +- ["V10Foundation4Date", "deinit"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "IndexDistance"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "count"] +- ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "isEmpty"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "IndexDistance"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "count"] +- !private ["Ps28DictionaryLiteralConvertible", "isEmpty"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- ["Sd", "deinit"] +- !private ["VE10FoundationSS8Encoding", "utf8"] +- !private ["Ps9Equatable", "Data"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Encoding"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Iterator"] +- !private ["Ps9Equatable", "QueueConstants"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "String"] +- !private ["Ps9Equatable", "XCTAssertEqual"] +- !private ["Ps9Equatable", "XCTAssertNotNil"] +- !private ["Ps9Equatable", "XCTAssertTrue"] +- !private ["Ps9Equatable", "XCTExpectAssert"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "_Element"] +- !private ["Ps9Equatable", "allPropertyTypes"] +- !private ["Ps9Equatable", "assertDefaultPeopleProperties"] +- !private ["Ps9Equatable", "data"] +- !private ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "mixpanel"] +- ["Ps9Equatable", "testDropPeopleRecords"] +- ["Ps9Equatable", "testDropUnidentifiedPeopleRecords"] +- ["Ps9Equatable", "testPeopleAddPushDeviceToken"] +- ["Ps9Equatable", "testPeopleAssertPropertyTypes"] +- ["Ps9Equatable", "testPeopleClearCharges"] +- ["Ps9Equatable", "testPeopleDeleteUser"] +- ["Ps9Equatable", "testPeopleIncrement"] +- ["Ps9Equatable", "testPeopleIncrementBy"] +- ["Ps9Equatable", "testPeopleSet"] +- ["Ps9Equatable", "testPeopleSetOnce"] +- ["Ps9Equatable", "testPeopleSetReservedProperty"] +- ["Ps9Equatable", "testPeopleSetTo"] +- ["Ps9Equatable", "testPeopleTrackCharge"] +- ["Ps9Equatable", "testPeopleTrackChargeDecimal"] +- ["Ps9Equatable", "testPeopleTrackChargeWithProperties"] +- ["Ps9Equatable", "testPeopleTrackChargeWithTime"] +- ["Ps9Equatable", "testPeopleTrackChargeZero"] +- !private ["Ps9Equatable", "utf8"] +- !private ["Ps9Equatable", "waitForSerialQueue"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "Encoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "data"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["Ps8Hashable", "Data"] +- !private ["Ps8Hashable", "Element"] +- !private ["Ps8Hashable", "Encoding"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "QueueConstants"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "String"] +- !private ["Ps8Hashable", "XCTAssertEqual"] +- !private ["Ps8Hashable", "XCTAssertNotNil"] +- !private ["Ps8Hashable", "XCTAssertTrue"] +- !private ["Ps8Hashable", "XCTExpectAssert"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "allPropertyTypes"] +- !private ["Ps8Hashable", "assertDefaultPeopleProperties"] +- !private ["Ps8Hashable", "data"] +- !private ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "mixpanel"] +- ["Ps8Hashable", "testDropPeopleRecords"] +- ["Ps8Hashable", "testDropUnidentifiedPeopleRecords"] +- ["Ps8Hashable", "testPeopleAddPushDeviceToken"] +- ["Ps8Hashable", "testPeopleAssertPropertyTypes"] +- ["Ps8Hashable", "testPeopleClearCharges"] +- ["Ps8Hashable", "testPeopleDeleteUser"] +- ["Ps8Hashable", "testPeopleIncrement"] +- ["Ps8Hashable", "testPeopleIncrementBy"] +- ["Ps8Hashable", "testPeopleSet"] +- ["Ps8Hashable", "testPeopleSetOnce"] +- ["Ps8Hashable", "testPeopleSetReservedProperty"] +- ["Ps8Hashable", "testPeopleSetTo"] +- ["Ps8Hashable", "testPeopleTrackCharge"] +- ["Ps8Hashable", "testPeopleTrackChargeDecimal"] +- ["Ps8Hashable", "testPeopleTrackChargeWithProperties"] +- ["Ps8Hashable", "testPeopleTrackChargeWithTime"] +- ["Ps8Hashable", "testPeopleTrackChargeZero"] +- !private ["Ps8Hashable", "utf8"] +- !private ["Ps8Hashable", "waitForSerialQueue"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "IndexDistance"] +- !private ["Ps9Indexable", "Iterator"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "first"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Ps13IndexableBase", "Element"] +- !private ["Ps13IndexableBase", "Index"] +- !private ["Ps13IndexableBase", "IndexDistance"] +- !private ["Ps13IndexableBase", "Iterator"] +- !private ["Ps13IndexableBase", "Key"] +- !private ["Ps13IndexableBase", "SubSequence"] +- !private ["Ps13IndexableBase", "Value"] +- !private ["Ps13IndexableBase", "_Element"] +- !private ["Ps13IndexableBase", "count"] +- !private ["Ps13IndexableBase", "first"] +- !private ["Ps13IndexableBase", "init"] +- !private ["Ps13IndexableBase", "isEmpty"] +- !private ["Ps13IndexableBase", "last"] +- !private ["Ps13IndexableBase", "subscript"] +- !private ["Vs16IndexingIterator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "Stride"] +- !private ["Si", "_DisabledRangeIndex"] +- ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps7Integer", "IntegerLiteralType"] +- !private ["Ps7Integer", "Stride"] +- !private ["Ps7Integer", "_DisabledRangeIndex"] +- !private ["Ps17IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps17IntegerArithmetic", "Stride"] +- !private ["Ps17IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Stride"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps16IteratorProtocol", "Element"] +- !private ["PSo10LSHTTPBody", "Encoding"] +- !private ["PSo10LSHTTPBody", "data"] +- !private ["PSo10LSHTTPBody", "init"] +- !private ["PSo12LSMatcheable", "Encoding"] +- !private ["PSo12LSMatcheable", "data"] +- !private ["PSo12LSMatcheable", "init"] +- !private ["Ps10MirrorPath", "Encoding"] +- !private ["Ps10MirrorPath", "IntegerLiteralType"] +- !private ["Ps10MirrorPath", "Stride"] +- !private ["Ps10MirrorPath", "_DisabledRangeIndex"] +- !private ["Ps10MirrorPath", "data"] +- !private ["Ps10MirrorPath", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "AnyObject"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Data"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Date"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Double"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Int"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "QueueConstants"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanel"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testDropPeopleRecords"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testDropUnidentifiedPeopleRecords"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleAddPushDeviceToken"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleAssertPropertyTypes"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleClearCharges"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleDeleteUser"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleIncrement"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleIncrementBy"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSet"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSetOnce"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSetReservedProperty"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSetTo"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackCharge"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeDecimal"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeWithProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeWithTime"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeZero"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "waitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", ""] +- !private ["P8Mixpanel16MixpanelDelegate", "Data"] +- !private ["P8Mixpanel16MixpanelDelegate", "QueueConstants"] +- !private ["P8Mixpanel16MixpanelDelegate", "String"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertEqual"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNotNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertTrue"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTExpectAssert"] +- !private ["P8Mixpanel16MixpanelDelegate", "allPropertyTypes"] +- !private ["P8Mixpanel16MixpanelDelegate", "assertDefaultPeopleProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "init"] +- !private ["P8Mixpanel16MixpanelDelegate", "mixpanel"] +- ["P8Mixpanel16MixpanelDelegate", "testDropPeopleRecords"] +- ["P8Mixpanel16MixpanelDelegate", "testDropUnidentifiedPeopleRecords"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleAddPushDeviceToken"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleAssertPropertyTypes"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleClearCharges"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleDeleteUser"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleIncrement"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleIncrementBy"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSet"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSetOnce"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSetReservedProperty"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSetTo"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackCharge"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeDecimal"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeWithProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeWithTime"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeZero"] +- !private ["P8Mixpanel16MixpanelDelegate", "waitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", ""] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "AnyObject"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Data"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Date"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Double"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Int"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Properties"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "QueueConstants"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "String"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "deinit"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "init"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "mixpanel"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testDropPeopleRecords"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testDropUnidentifiedPeopleRecords"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleAddPushDeviceToken"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleAssertPropertyTypes"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleClearCharges"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleDeleteUser"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleIncrement"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleIncrementBy"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSet"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSetOnce"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSetReservedProperty"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSetTo"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackCharge"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeDecimal"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeWithProperties"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeWithTime"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeZero"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "waitForSerialQueue"] +- !private ["Ps17MutableCollection", "Element"] +- !private ["Ps17MutableCollection", "IndexDistance"] +- !private ["Ps17MutableCollection", "Iterator"] +- !private ["Ps17MutableCollection", "_Element"] +- !private ["Ps17MutableCollection", "count"] +- !private ["Ps17MutableCollection", "first"] +- !private ["Ps17MutableCollection", "init"] +- !private ["Ps17MutableCollection", "last"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "IndexDistance"] +- !private ["Ps16MutableIndexable", "Iterator"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "first"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["CSo7NSArray", "Element"] +- !private ["PSo8NSCoding", "Element"] +- !private ["PSo8NSCoding", "Encoding"] +- !private ["PSo8NSCoding", "data"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "Element"] +- !private ["PSo9NSCopying", "Encoding"] +- !private ["PSo9NSCopying", "data"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo17NSFastEnumeration", "Element"] +- !private ["PSo16NSMutableCopying", "Element"] +- !private ["PSo16NSMutableCopying", "Encoding"] +- !private ["PSo16NSMutableCopying", "data"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "AnyObject"] +- !private ["CSo8NSObject", "Data"] +- !private ["CSo8NSObject", "Date"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Element"] +- !private ["CSo8NSObject", "Encoding"] +- !private ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "QueueConstants"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "XCTAssertEqual"] +- !private ["CSo8NSObject", "XCTAssertNotNil"] +- !private ["CSo8NSObject", "XCTAssertTrue"] +- !private ["CSo8NSObject", "XCTExpectAssert"] +- !private ["CSo8NSObject", "allPropertyTypes"] +- !private ["CSo8NSObject", "assertDefaultPeopleProperties"] +- !private ["CSo8NSObject", "data"] +- !private ["CSo8NSObject", "deinit"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "mixpanel"] +- ["CSo8NSObject", "testDropPeopleRecords"] +- ["CSo8NSObject", "testDropUnidentifiedPeopleRecords"] +- ["CSo8NSObject", "testPeopleAddPushDeviceToken"] +- ["CSo8NSObject", "testPeopleAssertPropertyTypes"] +- ["CSo8NSObject", "testPeopleClearCharges"] +- ["CSo8NSObject", "testPeopleDeleteUser"] +- ["CSo8NSObject", "testPeopleIncrement"] +- ["CSo8NSObject", "testPeopleIncrementBy"] +- ["CSo8NSObject", "testPeopleSet"] +- ["CSo8NSObject", "testPeopleSetOnce"] +- ["CSo8NSObject", "testPeopleSetReservedProperty"] +- ["CSo8NSObject", "testPeopleSetTo"] +- ["CSo8NSObject", "testPeopleTrackCharge"] +- ["CSo8NSObject", "testPeopleTrackChargeDecimal"] +- ["CSo8NSObject", "testPeopleTrackChargeWithProperties"] +- ["CSo8NSObject", "testPeopleTrackChargeWithTime"] +- ["CSo8NSObject", "testPeopleTrackChargeZero"] +- !private ["CSo8NSObject", "waitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "Data"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "Encoding"] +- !private ["PSo16NSObjectProtocol", "QueueConstants"] +- !private ["PSo16NSObjectProtocol", "String"] +- !private ["PSo16NSObjectProtocol", "XCTAssertEqual"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNotNil"] +- !private ["PSo16NSObjectProtocol", "XCTAssertTrue"] +- !private ["PSo16NSObjectProtocol", "XCTExpectAssert"] +- !private ["PSo16NSObjectProtocol", "allPropertyTypes"] +- !private ["PSo16NSObjectProtocol", "assertDefaultPeopleProperties"] +- !private ["PSo16NSObjectProtocol", "data"] +- !private ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "mixpanel"] +- ["PSo16NSObjectProtocol", "testDropPeopleRecords"] +- ["PSo16NSObjectProtocol", "testDropUnidentifiedPeopleRecords"] +- ["PSo16NSObjectProtocol", "testPeopleAddPushDeviceToken"] +- ["PSo16NSObjectProtocol", "testPeopleAssertPropertyTypes"] +- ["PSo16NSObjectProtocol", "testPeopleClearCharges"] +- ["PSo16NSObjectProtocol", "testPeopleDeleteUser"] +- ["PSo16NSObjectProtocol", "testPeopleIncrement"] +- ["PSo16NSObjectProtocol", "testPeopleIncrementBy"] +- ["PSo16NSObjectProtocol", "testPeopleSet"] +- ["PSo16NSObjectProtocol", "testPeopleSetOnce"] +- ["PSo16NSObjectProtocol", "testPeopleSetReservedProperty"] +- ["PSo16NSObjectProtocol", "testPeopleSetTo"] +- ["PSo16NSObjectProtocol", "testPeopleTrackCharge"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeDecimal"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeWithProperties"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeWithTime"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeZero"] +- !private ["PSo16NSObjectProtocol", "waitForSerialQueue"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "Element"] +- !private ["PSo14NSSecureCoding", "Encoding"] +- !private ["PSo14NSSecureCoding", "data"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "Encoding"] +- !private ["CSo8NSString", "data"] +- !private ["CSo8NSString", "init"] +- !private ["Ps21NilLiteralConvertible", "Element"] +- !private ["Sq", "Element"] +- !private ["Sq", "deinit"] +- !private ["Ps12OutputStream", "Encoding"] +- !private ["Ps12OutputStream", "data"] +- !private ["Ps12OutputStream", "init"] +- !private ["C8Mixpanel6People", "addPushDeviceToken"] +- !private ["C8Mixpanel6People", "clearCharges"] +- !private ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "setOnce"] +- !private ["C8Mixpanel6People", "trackCharge"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- !private ["Ps22RandomAccessCollection", "Element"] +- !private ["Ps22RandomAccessCollection", "IndexDistance"] +- !private ["Ps22RandomAccessCollection", "Iterator"] +- !private ["Ps22RandomAccessCollection", "_Element"] +- !private ["Ps22RandomAccessCollection", "count"] +- !private ["Ps22RandomAccessCollection", "first"] +- !private ["Ps22RandomAccessCollection", "init"] +- !private ["Ps22RandomAccessCollection", "last"] +- !private ["Ps21RandomAccessIndexable", "Element"] +- !private ["Ps21RandomAccessIndexable", "IndexDistance"] +- !private ["Ps21RandomAccessIndexable", "Iterator"] +- !private ["Ps21RandomAccessIndexable", "_Element"] +- !private ["Ps21RandomAccessIndexable", "count"] +- !private ["Ps21RandomAccessIndexable", "first"] +- !private ["Ps21RandomAccessIndexable", "init"] +- !private ["Ps21RandomAccessIndexable", "last"] +- !private ["Vs5Range", "deinit"] +- !private ["Ps26RangeReplaceableCollection", "Element"] +- !private ["Ps26RangeReplaceableCollection", "IndexDistance"] +- !private ["Ps26RangeReplaceableCollection", "Iterator"] +- !private ["Ps26RangeReplaceableCollection", "_Element"] +- !private ["Ps26RangeReplaceableCollection", "count"] +- !private ["Ps26RangeReplaceableCollection", "first"] +- !private ["Ps26RangeReplaceableCollection", "last"] +- !private ["Ps25RangeReplaceableIndexable", "Element"] +- !private ["Ps25RangeReplaceableIndexable", "IndexDistance"] +- !private ["Ps25RangeReplaceableIndexable", "Iterator"] +- !private ["Ps25RangeReplaceableIndexable", "_Element"] +- !private ["Ps25RangeReplaceableIndexable", "count"] +- !private ["Ps25RangeReplaceableIndexable", "first"] +- !private ["Ps25RangeReplaceableIndexable", "last"] +- !private ["Ps16RawRepresentable", "utf8"] +- !private ["P10Foundation20ReferenceConvertible", "init"] +- !private ["Ps8Sequence", "Element"] +- !private ["Ps8Sequence", "Index"] +- !private ["Ps8Sequence", "IndexDistance"] +- !private ["Ps8Sequence", "Iterator"] +- !private ["Ps8Sequence", "Key"] +- !private ["Ps8Sequence", "SubSequence"] +- !private ["Ps8Sequence", "Value"] +- !private ["Ps8Sequence", "_Element"] +- !private ["Ps8Sequence", "count"] +- !private ["Ps8Sequence", "first"] +- !private ["Ps8Sequence", "init"] +- !private ["Ps8Sequence", "isEmpty"] +- !private ["Ps8Sequence", "last"] +- !private ["Ps8Sequence", "subscript"] +- !private ["Ps13SignedInteger", "IntegerLiteralType"] +- !private ["Ps13SignedInteger", "Stride"] +- !private ["Ps13SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps12SignedNumber", "IntegerLiteralType"] +- !private ["Ps12SignedNumber", "Stride"] +- !private ["Ps12SignedNumber", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "Iterator"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "Encoding"] +- !private ["Ps10Streamable", "data"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["SS", "Encoding"] +- !private ["SS", "data"] +- ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "Encoding"] +- !private ["Ps30StringInterpolationConvertible", "data"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "Encoding"] +- !private ["Ps24StringLiteralConvertible", "data"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "Encoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "data"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["CSo6XCTest", "AnyObject"] +- !private ["CSo6XCTest", "Data"] +- !private ["CSo6XCTest", "Date"] +- !private ["CSo6XCTest", "Double"] +- !private ["CSo6XCTest", "Int"] +- !private ["CSo6XCTest", "Properties"] +- !private ["CSo6XCTest", "QueueConstants"] +- !private ["CSo6XCTest", "String"] +- !private ["CSo6XCTest", "XCTAssertEqual"] +- !private ["CSo6XCTest", "XCTAssertNotNil"] +- !private ["CSo6XCTest", "XCTAssertTrue"] +- !private ["CSo6XCTest", "XCTExpectAssert"] +- !private ["CSo6XCTest", "allPropertyTypes"] +- !private ["CSo6XCTest", "assertDefaultPeopleProperties"] +- ["CSo6XCTest", "init"] +- !private ["CSo6XCTest", "mixpanel"] +- ["CSo6XCTest", "testDropPeopleRecords"] +- ["CSo6XCTest", "testDropUnidentifiedPeopleRecords"] +- ["CSo6XCTest", "testPeopleAddPushDeviceToken"] +- ["CSo6XCTest", "testPeopleAssertPropertyTypes"] +- ["CSo6XCTest", "testPeopleClearCharges"] +- ["CSo6XCTest", "testPeopleDeleteUser"] +- ["CSo6XCTest", "testPeopleIncrement"] +- ["CSo6XCTest", "testPeopleIncrementBy"] +- ["CSo6XCTest", "testPeopleSet"] +- ["CSo6XCTest", "testPeopleSetOnce"] +- ["CSo6XCTest", "testPeopleSetReservedProperty"] +- ["CSo6XCTest", "testPeopleSetTo"] +- ["CSo6XCTest", "testPeopleTrackCharge"] +- ["CSo6XCTest", "testPeopleTrackChargeDecimal"] +- ["CSo6XCTest", "testPeopleTrackChargeWithProperties"] +- ["CSo6XCTest", "testPeopleTrackChargeWithTime"] +- ["CSo6XCTest", "testPeopleTrackChargeZero"] +- !private ["CSo6XCTest", "waitForSerialQueue"] +- !private ["CSo10XCTestCase", "AnyObject"] +- !private ["CSo10XCTestCase", "Data"] +- !private ["CSo10XCTestCase", "Date"] +- !private ["CSo10XCTestCase", "Double"] +- !private ["CSo10XCTestCase", "Int"] +- !private ["CSo10XCTestCase", "Properties"] +- !private ["CSo10XCTestCase", "QueueConstants"] +- !private ["CSo10XCTestCase", "String"] +- !private ["CSo10XCTestCase", "XCTAssertEqual"] +- !private ["CSo10XCTestCase", "XCTAssertNotNil"] +- !private ["CSo10XCTestCase", "XCTAssertTrue"] +- !private ["CSo10XCTestCase", "XCTExpectAssert"] +- !private ["CSo10XCTestCase", "allPropertyTypes"] +- !private ["CSo10XCTestCase", "assertDefaultPeopleProperties"] +- ["CSo10XCTestCase", "init"] +- !private ["CSo10XCTestCase", "mixpanel"] +- ["CSo10XCTestCase", "testDropPeopleRecords"] +- ["CSo10XCTestCase", "testDropUnidentifiedPeopleRecords"] +- ["CSo10XCTestCase", "testPeopleAddPushDeviceToken"] +- ["CSo10XCTestCase", "testPeopleAssertPropertyTypes"] +- ["CSo10XCTestCase", "testPeopleClearCharges"] +- ["CSo10XCTestCase", "testPeopleDeleteUser"] +- ["CSo10XCTestCase", "testPeopleIncrement"] +- ["CSo10XCTestCase", "testPeopleIncrementBy"] +- ["CSo10XCTestCase", "testPeopleSet"] +- ["CSo10XCTestCase", "testPeopleSetOnce"] +- ["CSo10XCTestCase", "testPeopleSetReservedProperty"] +- ["CSo10XCTestCase", "testPeopleSetTo"] +- ["CSo10XCTestCase", "testPeopleTrackCharge"] +- ["CSo10XCTestCase", "testPeopleTrackChargeDecimal"] +- ["CSo10XCTestCase", "testPeopleTrackChargeWithProperties"] +- ["CSo10XCTestCase", "testPeopleTrackChargeWithTime"] +- ["CSo10XCTestCase", "testPeopleTrackChargeZero"] +- !private ["CSo10XCTestCase", "waitForSerialQueue"] +- !private ["CSo11XCUIElement", "deinit"] +- !private ["Ps14_ArrayProtocol", "Element"] +- !private ["Ps14_ArrayProtocol", "IndexDistance"] +- !private ["Ps14_ArrayProtocol", "Iterator"] +- !private ["Ps14_ArrayProtocol", "_Element"] +- !private ["Ps14_ArrayProtocol", "count"] +- !private ["Ps14_ArrayProtocol", "first"] +- !private ["Ps14_ArrayProtocol", "last"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "Encoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "data"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "Encoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "data"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "Encoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "data"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "Encoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "data"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "IndexDistance"] +- !private ["Ps24_DestructorSafeContainer", "Iterator"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "first"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Stride"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps8_Integer", "IntegerLiteralType"] +- !private ["Ps8_Integer", "Stride"] +- !private ["Ps8_Integer", "_DisabledRangeIndex"] +- !private ["Ps18_IntegerArithmetic", "IntegerLiteralType"] +- !private ["Ps18_IntegerArithmetic", "Stride"] +- !private ["Ps18_IntegerArithmetic", "_DisabledRangeIndex"] +- !private ["P10Foundation18_MutablePairBoxing", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Encoding"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IndexDistance"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Iterator"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "data"] +- !private ["Ps21_ObjectiveCBridgeable", "first"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps14_SignedInteger", "IntegerLiteralType"] +- !private ["Ps14_SignedInteger", "Stride"] +- !private ["Ps14_SignedInteger", "_DisabledRangeIndex"] +- !private ["Ps11_Strideable", "IntegerLiteralType"] +- !private ["Ps11_Strideable", "Stride"] +- !private ["Ps11_Strideable", "_DisabledRangeIndex"] +depends-nominal: +- "Ps9AnyObject" +- "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Ps23BidirectionalCollection" +- !private "Ps22BidirectionalIndexable" +- !private "Ps17BitwiseOperations" +- !private "Sb" +- "Ps7CVarArg" +- !private "Vs9Character" +- !private "Vs11ClosedRange" +- !private "Ps10Collection" +- !private "Ps10Comparable" +- !private "Vs14CountableRange" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- !private "V10Foundation4Data" +- "V10Foundation4Date" +- "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- "Sd" +- !private "VE10FoundationSS8Encoding" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Ps13IndexableBase" +- !private "Vs16IndexingIterator" +- "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps7Integer" +- !private "Ps17IntegerArithmetic" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps16IteratorProtocol" +- !private "PSo10LSHTTPBody" +- !private "PSo12LSMatcheable" +- !private "Ps10MirrorPath" +- "C17MixpanelDemoTests17MixpanelBaseTests" +- "P8Mixpanel16MixpanelDelegate" +- !private "C8Mixpanel16MixpanelInstance" +- "C17MixpanelDemoTests19MixpanelPeopleTests" +- !private "Ps17MutableCollection" +- !private "Ps16MutableIndexable" +- !private "CSo7NSArray" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo17NSFastEnumeration" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "Ps21NilLiteralConvertible" +- !private "Sq" +- !private "Ps12OutputStream" +- !private "C8Mixpanel6People" +- !private "V8Mixpanel14QueueConstants" +- !private "Ps22RandomAccessCollection" +- !private "Ps21RandomAccessIndexable" +- !private "Vs5Range" +- !private "Ps26RangeReplaceableCollection" +- !private "Ps25RangeReplaceableIndexable" +- !private "Ps16RawRepresentable" +- !private "P10Foundation20ReferenceConvertible" +- !private "Ps8Sequence" +- !private "Ps13SignedInteger" +- !private "Ps12SignedNumber" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "CSo11XCUIElement" +- !private "Ps14_ArrayProtocol" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps8_Integer" +- !private "Ps18_IntegerArithmetic" +- !private "P10Foundation18_MutablePairBoxing" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps14_SignedInteger" +- !private "Ps11_Strideable" +depends-dynamic-lookup: +- !private "subscript" +depends-external: +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule" +interface-hash: "7391d90ae6b1649d47456cf2add29d70" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftdoc new file mode 100644 index 00000000..be255b7b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftmodule new file mode 100644 index 00000000..343771cc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/MixpanelPeopleTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.d new file mode 100644 index 00000000..e48f7c63 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.dia new file mode 100644 index 00000000..7c1128cd Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.swiftdeps new file mode 100644 index 00000000..0ab52213 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Objects-normal/arm64/TestConstants.swiftdeps @@ -0,0 +1,190 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "kTestToken" +- "kDefaultServerString" +- "kDefaultServerTrackString" +- "kDefaultServerEngageString" +- "stubEngage" +- "stubTrack" +provides-nominal: +provides-member: +- ["CSo10XCTestCase", ""] +- ["CSo10XCTestCase", "XCTExpectAssert"] +provides-dynamic-lookup: +depends-top-level: +- "StaticString" +- "kTestToken" +- "String" +- "UInt" +- "StringLiteralType" +- !private "Assertions" +- !private "!" +- "kDefaultServerString" +- !private "stubRequest" +- "stubEngage" +- "stubTrack" +- "kDefaultServerTrackString" +- "LSStubRequestDSL" +- "kDefaultServerEngageString" +- "XCTestCase" +depends-member: +- !private ["Ps9AnyObject", "Assertions"] +- ["Ps9AnyObject", "XCTExpectAssert"] +- !private ["Ps9AnyObject", "assertClosure"] +- !private ["Ps9AnyObject", "expectation"] +- !private ["Ps9AnyObject", "swiftAssertClosure"] +- !private ["Ps9AnyObject", "waitForExpectations"] +- !private ["Ps9AnyObject", "withHeader"] +- !private ["C8Mixpanel10Assertions", "assertClosure"] +- !private ["C8Mixpanel10Assertions", "swiftAssertClosure"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps7Boolean", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps7CVarArg", "Assertions"] +- ["Ps7CVarArg", "XCTExpectAssert"] +- !private ["Ps7CVarArg", "expectation"] +- !private ["Ps7CVarArg", "waitForExpectations"] +- !private ["Ps7CVarArg", "withHeader"] +- !private ["Ps28CustomDebugStringConvertible", "Assertions"] +- ["Ps28CustomDebugStringConvertible", "XCTExpectAssert"] +- !private ["Ps28CustomDebugStringConvertible", "expectation"] +- !private ["Ps28CustomDebugStringConvertible", "waitForExpectations"] +- !private ["Ps28CustomDebugStringConvertible", "withHeader"] +- !private ["Ps29CustomPlaygroundQuickLookable", "_getBuiltinLogicValue"] +- !private ["Ps17CustomReflectable", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "Assertions"] +- ["Ps23CustomStringConvertible", "XCTExpectAssert"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "expectation"] +- !private ["Ps23CustomStringConvertible", "waitForExpectations"] +- !private ["Ps23CustomStringConvertible", "withHeader"] +- !private ["Ps9Equatable", "Assertions"] +- ["Ps9Equatable", "XCTExpectAssert"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "expectation"] +- !private ["Ps9Equatable", "waitForExpectations"] +- !private ["Ps9Equatable", "withHeader"] +- !private ["Ps8Hashable", "Assertions"] +- ["Ps8Hashable", "XCTExpectAssert"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "expectation"] +- !private ["Ps8Hashable", "waitForExpectations"] +- !private ["Ps8Hashable", "withHeader"] +- !private ["SQ", "deinit"] +- !private ["CSo16LSStubRequestDSL", "withHeader"] +- !private ["CSo8NSObject", "Assertions"] +- ["CSo8NSObject", "StaticString"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UInt"] +- ["CSo8NSObject", "XCTExpectAssert"] +- !private ["CSo8NSObject", "expectation"] +- !private ["CSo8NSObject", "waitForExpectations"] +- !private ["CSo8NSObject", "withHeader"] +- !private ["PSo16NSObjectProtocol", "Assertions"] +- ["PSo16NSObjectProtocol", "XCTExpectAssert"] +- !private ["PSo16NSObjectProtocol", "expectation"] +- !private ["PSo16NSObjectProtocol", "waitForExpectations"] +- !private ["PSo16NSObjectProtocol", "withHeader"] +- !private ["Sq", "deinit"] +- !private ["Vs12StaticString", "deinit"] +- !private ["SS", "deinit"] +- !private ["CSo6XCTest", "Assertions"] +- ["CSo6XCTest", "StaticString"] +- ["CSo6XCTest", "String"] +- ["CSo6XCTest", "UInt"] +- ["CSo6XCTest", "XCTExpectAssert"] +- !private ["CSo6XCTest", "expectation"] +- !private ["CSo6XCTest", "waitForExpectations"] +- !private ["CSo10XCTestCase", "Assertions"] +- ["CSo10XCTestCase", "StaticString"] +- ["CSo10XCTestCase", "String"] +- ["CSo10XCTestCase", "UInt"] +- ["CSo10XCTestCase", "XCTExpectAssert"] +- !private ["CSo10XCTestCase", "expectation"] +- !private ["CSo10XCTestCase", "waitForExpectations"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +depends-nominal: +- "Ps9AnyObject" +- !private "C8Mixpanel10Assertions" +- !private "Sb" +- !private "Ps7Boolean" +- !private "Ps25BooleanLiteralConvertible" +- "Ps7CVarArg" +- "Ps28CustomDebugStringConvertible" +- !private "Ps29CustomPlaygroundQuickLookable" +- !private "Ps17CustomReflectable" +- "Ps23CustomStringConvertible" +- "Ps9Equatable" +- "Ps8Hashable" +- !private "SQ" +- !private "CSo16LSStubRequestDSL" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Sq" +- !private "Vs12StaticString" +- !private "SS" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Swift.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/SwiftOnoneSupport.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Foundation.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Darwin.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/Dispatch.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/ObjectiveC.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreGraphics.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/XCTest.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestExpectation.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode-beta.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/UIKit.swiftmodule" +- "/Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos/arm64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule" +interface-hash: "c5ce11bb75d33860ecacbd13011f801c" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh new file mode 100755 index 00000000..5fe6f19d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh @@ -0,0 +1,9 @@ +#!/bin/sh +diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null +if [[ $? != 0 ]] ; then + cat << EOM +error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. +EOM + exit 1 +fi + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh new file mode 100755 index 00000000..2816d17a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh @@ -0,0 +1,3 @@ +#!/bin/sh +"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-resources.sh" + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh new file mode 100755 index 00000000..ef692e98 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh @@ -0,0 +1,3 @@ +#!/bin/sh +"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-frameworks.sh" + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..0c2eb460 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..5ea7327e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/swift-overrides.hmap new file mode 100644 index 00000000..0fe9dd4c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphoneos/MixpanelDemoTests.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000..7cb23cda Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000..32288e88 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000..0e7f288e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..e47d3c3c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..93f862a6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 00000000..92bb666d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..f378961d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..35329a10 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..3a214526 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..f486be1c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..66f7244f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..d202945c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..f26b86b9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..6926c162 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h new file mode 100644 index 00000000..79c3be14 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist new file mode 100644 index 00000000..0c67376e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main-SBPartialInfo.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main-SBPartialInfo.plist new file mode 100644 index 00000000..ef6bfe22 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main-SBPartialInfo.plist @@ -0,0 +1,10 @@ + + + + + UIAppFonts + + SFUIText.ttf + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..c82b1dc2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..0e343e16 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Info.plist new file mode 100644 index 00000000..92bb666d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..1442b68f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..7d4d6a19 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..89d1aa95 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..6cc320c0 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..c3883971 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..be53828f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..eaf0dade Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..baa93539 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Mixpanel.framework.xcent b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Mixpanel.framework.xcent new file mode 100644 index 00000000..51118fb5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Mixpanel.framework.xcent @@ -0,0 +1,10 @@ + + + + + application-identifier + E8FVX7QLET.com.mixpanel.swiftdemo + aps-environment + development + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-generated-files.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-project-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-project-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo.app.xcent b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo.app.xcent new file mode 100644 index 00000000..51118fb5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo.app.xcent @@ -0,0 +1,10 @@ + + + + + application-identifier + E8FVX7QLET.com.mixpanel.swiftdemo + aps-environment + development + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/MixpanelDemo.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.d new file mode 100644 index 00000000..a5580275 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o new file mode 100644 index 00000000..2771de64 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.swiftdeps new file mode 100644 index 00000000..ad7c0aea --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.swiftdeps @@ -0,0 +1,602 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ActionCompleteViewController" +provides-nominal: +- "C12MixpanelDemo28ActionCompleteViewController" +provides-member: +- ["C12MixpanelDemo28ActionCompleteViewController", ""] +provides-dynamic-lookup: +- "viewDidLoad" +- "actionLabel" +- "popupView" +- "handleTap" +- "descLabel" +- "actionStr" +- "descStr" +- "viewDidAppear" +depends-top-level: +- !private "dispatch_after" +- !private "BooleanLiteralType" +- "ActionCompleteViewController" +- "UITapGestureRecognizer" +- "Bool" +- "UIViewController" +- !private "Int64" +- !private "DISPATCH_TIME_NOW" +- "UIView" +- !private "dispatch_time" +- !private "dispatch_get_main_queue" +- !private "NSEC_PER_SEC" +- "UILabel" +- !private "Double" +- !private "*" +- "String" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- ["C12MixpanelDemo28ActionCompleteViewController", "Bool"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "DISPATCH_TIME_NOW"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "Double"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "Int64"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "NSEC_PER_SEC"] +- ["C12MixpanelDemo28ActionCompleteViewController", "String"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UILabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UITapGestureRecognizer"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UIView"] +- ["C12MixpanelDemo28ActionCompleteViewController", "actionLabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- ["C12MixpanelDemo28ActionCompleteViewController", "deinit"] +- ["C12MixpanelDemo28ActionCompleteViewController", "descLabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dismissViewControllerAnimated"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_after"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_get_main_queue"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_time"] +- ["C12MixpanelDemo28ActionCompleteViewController", "handleTap"] +- ["C12MixpanelDemo28ActionCompleteViewController", "init"] +- ["C12MixpanelDemo28ActionCompleteViewController", "popupView"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "view"] +- ["C12MixpanelDemo28ActionCompleteViewController", "viewDidAppear"] +- ["C12MixpanelDemo28ActionCompleteViewController", "viewDidLoad"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_NOW"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int64"] +- !private ["Ps9AnyObject", "NSEC_PER_SEC"] +- !private ["Ps9AnyObject", "UITapGestureRecognizer"] +- ["Ps9AnyObject", "actionLabel"] +- ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "addGestureRecognizer"] +- !private ["Ps9AnyObject", "clipsToBounds"] +- !private ["Ps9AnyObject", "cornerRadius"] +- ["Ps9AnyObject", "descLabel"] +- ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "dismissViewControllerAnimated"] +- !private ["Ps9AnyObject", "dispatch_after"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_time"] +- ["Ps9AnyObject", "handleTap"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "layer"] +- ["Ps9AnyObject", "popupView"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "view"] +- ["Ps9AnyObject", "viewDidAppear"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", ""] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["CSo7CALayer", "cornerRadius"] +- !private ["PSo13CAMediaTiming", "cornerRadius"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "DISPATCH_TIME_NOW"] +- !private ["Ps11CVarArgType", "Double"] +- !private ["Ps11CVarArgType", "Int64"] +- !private ["Ps11CVarArgType", "NSEC_PER_SEC"] +- !private ["Ps11CVarArgType", "UITapGestureRecognizer"] +- ["Ps11CVarArgType", "actionLabel"] +- ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "addGestureRecognizer"] +- !private ["Ps11CVarArgType", "clipsToBounds"] +- !private ["Ps11CVarArgType", "cornerRadius"] +- ["Ps11CVarArgType", "descLabel"] +- ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "dismissViewControllerAnimated"] +- !private ["Ps11CVarArgType", "dispatch_after"] +- !private ["Ps11CVarArgType", "dispatch_get_main_queue"] +- !private ["Ps11CVarArgType", "dispatch_time"] +- ["Ps11CVarArgType", "handleTap"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "layer"] +- ["Ps11CVarArgType", "popupView"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "view"] +- ["Ps11CVarArgType", "viewDidAppear"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", ""] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps28CustomDebugStringConvertible", "Double"] +- !private ["Ps28CustomDebugStringConvertible", "Int64"] +- !private ["Ps28CustomDebugStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps28CustomDebugStringConvertible", "UITapGestureRecognizer"] +- ["Ps28CustomDebugStringConvertible", "actionLabel"] +- ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "addGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "clipsToBounds"] +- !private ["Ps28CustomDebugStringConvertible", "cornerRadius"] +- ["Ps28CustomDebugStringConvertible", "descLabel"] +- ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "dismissViewControllerAnimated"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_after"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_time"] +- ["Ps28CustomDebugStringConvertible", "handleTap"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "layer"] +- ["Ps28CustomDebugStringConvertible", "popupView"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "view"] +- ["Ps28CustomDebugStringConvertible", "viewDidAppear"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps23CustomStringConvertible", "Double"] +- !private ["Ps23CustomStringConvertible", "Int64"] +- !private ["Ps23CustomStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps23CustomStringConvertible", "UITapGestureRecognizer"] +- ["Ps23CustomStringConvertible", "actionLabel"] +- ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "addGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "clipsToBounds"] +- !private ["Ps23CustomStringConvertible", "cornerRadius"] +- ["Ps23CustomStringConvertible", "descLabel"] +- ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "dismissViewControllerAnimated"] +- !private ["Ps23CustomStringConvertible", "dispatch_after"] +- !private ["Ps23CustomStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps23CustomStringConvertible", "dispatch_time"] +- ["Ps23CustomStringConvertible", "handleTap"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "layer"] +- ["Ps23CustomStringConvertible", "popupView"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "view"] +- ["Ps23CustomStringConvertible", "viewDidAppear"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "DISPATCH_TIME_NOW"] +- !private ["Ps9Equatable", "Double"] +- !private ["Ps9Equatable", "Int64"] +- !private ["Ps9Equatable", "NSEC_PER_SEC"] +- !private ["Ps9Equatable", "UITapGestureRecognizer"] +- ["Ps9Equatable", "actionLabel"] +- ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "addGestureRecognizer"] +- !private ["Ps9Equatable", "clipsToBounds"] +- !private ["Ps9Equatable", "cornerRadius"] +- ["Ps9Equatable", "descLabel"] +- ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "dismissViewControllerAnimated"] +- !private ["Ps9Equatable", "dispatch_after"] +- !private ["Ps9Equatable", "dispatch_get_main_queue"] +- !private ["Ps9Equatable", "dispatch_time"] +- ["Ps9Equatable", "handleTap"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "layer"] +- ["Ps9Equatable", "popupView"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "view"] +- ["Ps9Equatable", "viewDidAppear"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", ""] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps8Hashable", "DISPATCH_TIME_NOW"] +- !private ["Ps8Hashable", "Double"] +- !private ["Ps8Hashable", "Int64"] +- !private ["Ps8Hashable", "NSEC_PER_SEC"] +- !private ["Ps8Hashable", "UITapGestureRecognizer"] +- ["Ps8Hashable", "actionLabel"] +- ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "addGestureRecognizer"] +- !private ["Ps8Hashable", "clipsToBounds"] +- !private ["Ps8Hashable", "cornerRadius"] +- ["Ps8Hashable", "descLabel"] +- ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "dismissViewControllerAnimated"] +- !private ["Ps8Hashable", "dispatch_after"] +- !private ["Ps8Hashable", "dispatch_get_main_queue"] +- !private ["Ps8Hashable", "dispatch_time"] +- ["Ps8Hashable", "handleTap"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "layer"] +- ["Ps8Hashable", "popupView"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "view"] +- ["Ps8Hashable", "viewDidAppear"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Vs5Int64", "init"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "DISPATCH_TIME_NOW"] +- !private ["PSo8NSCoding", "Double"] +- !private ["PSo8NSCoding", "Int64"] +- !private ["PSo8NSCoding", "NSEC_PER_SEC"] +- !private ["PSo8NSCoding", "UITapGestureRecognizer"] +- ["PSo8NSCoding", "actionLabel"] +- ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "addGestureRecognizer"] +- !private ["PSo8NSCoding", "clipsToBounds"] +- !private ["PSo8NSCoding", "cornerRadius"] +- ["PSo8NSCoding", "descLabel"] +- ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "dismissViewControllerAnimated"] +- !private ["PSo8NSCoding", "dispatch_after"] +- !private ["PSo8NSCoding", "dispatch_get_main_queue"] +- !private ["PSo8NSCoding", "dispatch_time"] +- ["PSo8NSCoding", "handleTap"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "layer"] +- ["PSo8NSCoding", "popupView"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "view"] +- ["PSo8NSCoding", "viewDidAppear"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", ""] +- !private ["PSo26NSExtensionRequestHandling", "DISPATCH_TIME_NOW"] +- !private ["PSo26NSExtensionRequestHandling", "Double"] +- !private ["PSo26NSExtensionRequestHandling", "Int64"] +- !private ["PSo26NSExtensionRequestHandling", "NSEC_PER_SEC"] +- !private ["PSo26NSExtensionRequestHandling", "UITapGestureRecognizer"] +- ["PSo26NSExtensionRequestHandling", "actionLabel"] +- ["PSo26NSExtensionRequestHandling", "actionStr"] +- ["PSo26NSExtensionRequestHandling", "descLabel"] +- ["PSo26NSExtensionRequestHandling", "descStr"] +- !private ["PSo26NSExtensionRequestHandling", "dismissViewControllerAnimated"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_after"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_get_main_queue"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_time"] +- ["PSo26NSExtensionRequestHandling", "handleTap"] +- ["PSo26NSExtensionRequestHandling", "init"] +- ["PSo26NSExtensionRequestHandling", "popupView"] +- !private ["PSo26NSExtensionRequestHandling", "view"] +- ["PSo26NSExtensionRequestHandling", "viewDidAppear"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", ""] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "DISPATCH_TIME_NOW"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Int64"] +- !private ["CSo8NSObject", "NSEC_PER_SEC"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UILabel"] +- ["CSo8NSObject", "UITapGestureRecognizer"] +- ["CSo8NSObject", "UIView"] +- ["CSo8NSObject", "actionLabel"] +- ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "addGestureRecognizer"] +- !private ["CSo8NSObject", "clipsToBounds"] +- !private ["CSo8NSObject", "cornerRadius"] +- ["CSo8NSObject", "descLabel"] +- ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "dismissViewControllerAnimated"] +- !private ["CSo8NSObject", "dispatch_after"] +- !private ["CSo8NSObject", "dispatch_get_main_queue"] +- !private ["CSo8NSObject", "dispatch_time"] +- ["CSo8NSObject", "handleTap"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "layer"] +- ["CSo8NSObject", "popupView"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "view"] +- ["CSo8NSObject", "viewDidAppear"] +- ["CSo8NSObject", "viewDidLoad"] +- !private ["PSo16NSObjectProtocol", "DISPATCH_TIME_NOW"] +- !private ["PSo16NSObjectProtocol", "Double"] +- !private ["PSo16NSObjectProtocol", "Int64"] +- !private ["PSo16NSObjectProtocol", "NSEC_PER_SEC"] +- !private ["PSo16NSObjectProtocol", "UITapGestureRecognizer"] +- ["PSo16NSObjectProtocol", "actionLabel"] +- ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "addGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "clipsToBounds"] +- !private ["PSo16NSObjectProtocol", "cornerRadius"] +- ["PSo16NSObjectProtocol", "descLabel"] +- ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "dismissViewControllerAnimated"] +- !private ["PSo16NSObjectProtocol", "dispatch_after"] +- !private ["PSo16NSObjectProtocol", "dispatch_get_main_queue"] +- !private ["PSo16NSObjectProtocol", "dispatch_time"] +- ["PSo16NSObjectProtocol", "handleTap"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "layer"] +- ["PSo16NSObjectProtocol", "popupView"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "view"] +- ["PSo16NSObjectProtocol", "viewDidAppear"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", ""] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Ps10Strideable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "addGestureRecognizer"] +- !private ["PSo29UIAccessibilityIdentification", "clipsToBounds"] +- !private ["PSo29UIAccessibilityIdentification", "layer"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo12UIAppearance", "addGestureRecognizer"] +- !private ["PSo12UIAppearance", "clipsToBounds"] +- !private ["PSo12UIAppearance", "layer"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo21UIAppearanceContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo21UIAppearanceContainer", "Double"] +- !private ["PSo21UIAppearanceContainer", "Int64"] +- !private ["PSo21UIAppearanceContainer", "NSEC_PER_SEC"] +- !private ["PSo21UIAppearanceContainer", "UITapGestureRecognizer"] +- ["PSo21UIAppearanceContainer", "actionLabel"] +- ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "addGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "clipsToBounds"] +- ["PSo21UIAppearanceContainer", "descLabel"] +- ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "dismissViewControllerAnimated"] +- !private ["PSo21UIAppearanceContainer", "dispatch_after"] +- !private ["PSo21UIAppearanceContainer", "dispatch_get_main_queue"] +- !private ["PSo21UIAppearanceContainer", "dispatch_time"] +- ["PSo21UIAppearanceContainer", "handleTap"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "layer"] +- ["PSo21UIAppearanceContainer", "popupView"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "view"] +- ["PSo21UIAppearanceContainer", "viewDidAppear"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo18UIContentContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIContentContainer", "Double"] +- !private ["PSo18UIContentContainer", "Int64"] +- !private ["PSo18UIContentContainer", "NSEC_PER_SEC"] +- !private ["PSo18UIContentContainer", "UITapGestureRecognizer"] +- ["PSo18UIContentContainer", "actionLabel"] +- ["PSo18UIContentContainer", "actionStr"] +- ["PSo18UIContentContainer", "descLabel"] +- ["PSo18UIContentContainer", "descStr"] +- !private ["PSo18UIContentContainer", "dismissViewControllerAnimated"] +- !private ["PSo18UIContentContainer", "dispatch_after"] +- !private ["PSo18UIContentContainer", "dispatch_get_main_queue"] +- !private ["PSo18UIContentContainer", "dispatch_time"] +- ["PSo18UIContentContainer", "handleTap"] +- ["PSo18UIContentContainer", "init"] +- ["PSo18UIContentContainer", "popupView"] +- !private ["PSo18UIContentContainer", "view"] +- ["PSo18UIContentContainer", "viewDidAppear"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "addGestureRecognizer"] +- !private ["PSo17UICoordinateSpace", "clipsToBounds"] +- !private ["PSo17UICoordinateSpace", "layer"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo13UIDynamicItem", "addGestureRecognizer"] +- !private ["PSo13UIDynamicItem", "clipsToBounds"] +- !private ["PSo13UIDynamicItem", "layer"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo18UIFocusEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIFocusEnvironment", "Double"] +- !private ["PSo18UIFocusEnvironment", "Int64"] +- !private ["PSo18UIFocusEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UIFocusEnvironment", "UITapGestureRecognizer"] +- ["PSo18UIFocusEnvironment", "actionLabel"] +- ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "addGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "clipsToBounds"] +- ["PSo18UIFocusEnvironment", "descLabel"] +- ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "dismissViewControllerAnimated"] +- !private ["PSo18UIFocusEnvironment", "dispatch_after"] +- !private ["PSo18UIFocusEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UIFocusEnvironment", "dispatch_time"] +- ["PSo18UIFocusEnvironment", "handleTap"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "layer"] +- ["PSo18UIFocusEnvironment", "popupView"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "view"] +- ["PSo18UIFocusEnvironment", "viewDidAppear"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["CSo19UIGestureRecognizer", "init"] +- !private ["CSo7UILabel", "text"] +- ["CSo11UIResponder", "Bool"] +- !private ["CSo11UIResponder", "DISPATCH_TIME_NOW"] +- !private ["CSo11UIResponder", "Double"] +- !private ["CSo11UIResponder", "Int64"] +- !private ["CSo11UIResponder", "NSEC_PER_SEC"] +- ["CSo11UIResponder", "String"] +- ["CSo11UIResponder", "UILabel"] +- ["CSo11UIResponder", "UITapGestureRecognizer"] +- ["CSo11UIResponder", "UIView"] +- ["CSo11UIResponder", "actionLabel"] +- ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "addGestureRecognizer"] +- !private ["CSo11UIResponder", "clipsToBounds"] +- ["CSo11UIResponder", "descLabel"] +- ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "dismissViewControllerAnimated"] +- !private ["CSo11UIResponder", "dispatch_after"] +- !private ["CSo11UIResponder", "dispatch_get_main_queue"] +- !private ["CSo11UIResponder", "dispatch_time"] +- ["CSo11UIResponder", "handleTap"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "layer"] +- ["CSo11UIResponder", "popupView"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "view"] +- ["CSo11UIResponder", "viewDidAppear"] +- ["CSo11UIResponder", "viewDidLoad"] +- !private ["PSo16UIStateRestoring", "DISPATCH_TIME_NOW"] +- !private ["PSo16UIStateRestoring", "Double"] +- !private ["PSo16UIStateRestoring", "Int64"] +- !private ["PSo16UIStateRestoring", "NSEC_PER_SEC"] +- !private ["PSo16UIStateRestoring", "UITapGestureRecognizer"] +- ["PSo16UIStateRestoring", "actionLabel"] +- ["PSo16UIStateRestoring", "actionStr"] +- ["PSo16UIStateRestoring", "descLabel"] +- ["PSo16UIStateRestoring", "descStr"] +- !private ["PSo16UIStateRestoring", "dismissViewControllerAnimated"] +- !private ["PSo16UIStateRestoring", "dispatch_after"] +- !private ["PSo16UIStateRestoring", "dispatch_get_main_queue"] +- !private ["PSo16UIStateRestoring", "dispatch_time"] +- ["PSo16UIStateRestoring", "handleTap"] +- ["PSo16UIStateRestoring", "init"] +- ["PSo16UIStateRestoring", "popupView"] +- !private ["PSo16UIStateRestoring", "view"] +- ["PSo16UIStateRestoring", "viewDidAppear"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo22UITapGestureRecognizer", "init"] +- !private ["PSo18UITraitEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UITraitEnvironment", "Double"] +- !private ["PSo18UITraitEnvironment", "Int64"] +- !private ["PSo18UITraitEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UITraitEnvironment", "UITapGestureRecognizer"] +- ["PSo18UITraitEnvironment", "actionLabel"] +- ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "addGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "clipsToBounds"] +- ["PSo18UITraitEnvironment", "descLabel"] +- ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "dismissViewControllerAnimated"] +- !private ["PSo18UITraitEnvironment", "dispatch_after"] +- !private ["PSo18UITraitEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UITraitEnvironment", "dispatch_time"] +- ["PSo18UITraitEnvironment", "handleTap"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "layer"] +- ["PSo18UITraitEnvironment", "popupView"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "view"] +- ["PSo18UITraitEnvironment", "viewDidAppear"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "addGestureRecognizer"] +- !private ["CSo6UIView", "clipsToBounds"] +- !private ["CSo6UIView", "layer"] +- !private ["CSo6UIView", "text"] +- ["CSo16UIViewController", "Bool"] +- !private ["CSo16UIViewController", "DISPATCH_TIME_NOW"] +- !private ["CSo16UIViewController", "Double"] +- !private ["CSo16UIViewController", "Int64"] +- !private ["CSo16UIViewController", "NSEC_PER_SEC"] +- ["CSo16UIViewController", "String"] +- ["CSo16UIViewController", "UILabel"] +- ["CSo16UIViewController", "UITapGestureRecognizer"] +- ["CSo16UIViewController", "UIView"] +- ["CSo16UIViewController", "actionLabel"] +- ["CSo16UIViewController", "actionStr"] +- ["CSo16UIViewController", "descLabel"] +- ["CSo16UIViewController", "descStr"] +- !private ["CSo16UIViewController", "dismissViewControllerAnimated"] +- !private ["CSo16UIViewController", "dispatch_after"] +- !private ["CSo16UIViewController", "dispatch_get_main_queue"] +- !private ["CSo16UIViewController", "dispatch_time"] +- ["CSo16UIViewController", "handleTap"] +- ["CSo16UIViewController", "init"] +- ["CSo16UIViewController", "popupView"] +- !private ["CSo16UIViewController", "view"] +- ["CSo16UIViewController", "viewDidAppear"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", ""] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "addGestureRecognizer"] +- !private ["Ps12_Reflectable", "clipsToBounds"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "layer"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "CSo7CALayer" +- !private "PSo13CAMediaTiming" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "Ps16ForwardIndexType" +- "Ps8Hashable" +- !private "SQ" +- !private "Vs5Int64" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- "PSo8NSCoding" +- "PSo26NSExtensionRequestHandling" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Ps21RandomAccessIndexType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Ps10Strideable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "CSo19UIGestureRecognizer" +- !private "CSo7UILabel" +- "CSo11UIResponder" +- "PSo16UIStateRestoring" +- !private "CSo22UITapGestureRecognizer" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "408a83bd423eed7aa4a0631b909720ca" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftmodule new file mode 100644 index 00000000..2666176e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.d new file mode 100644 index 00000000..72c33319 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.dia new file mode 100644 index 00000000..9c69b68e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o new file mode 100644 index 00000000..3707d478 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.swiftdeps new file mode 100644 index 00000000..cf0acd25 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.swiftdeps @@ -0,0 +1,662 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AppDelegate" +provides-nominal: +- "C12MixpanelDemo11AppDelegate" +provides-member: +- ["C12MixpanelDemo11AppDelegate", ""] +provides-dynamic-lookup: +- "applicationDidBecomeActive" +- "window" +- "application" +- "application" +- "application" +- "application" +- "applicationWillTerminate" +depends-top-level: +- !private "Mixpanel" +- !private "UIAlertController" +- !private "BooleanLiteralType" +- !private "debugPrint" +- "AppDelegate" +- "NSError" +- "UIApplication" +- !private "String" +- "NSObject" +- "NSData" +- !private "StringLiteralType" +- "UIResponder" +- "UIApplicationDelegate" +- !private "Dictionary" +- !private "Array" +- "AnyObject" +- "UIWindow" +- !private "UIUserNotificationSettings" +- "Bool" +- !private "UIAlertAction" +depends-member: +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "UIAlertAction"] +- !private ["Ps9AnyObject", "UIAlertController"] +- !private ["Ps9AnyObject", "UIApplication"] +- !private ["Ps9AnyObject", "UIUserNotificationSettings"] +- !private ["Ps9AnyObject", "addAction"] +- !private ["Ps9AnyObject", "addPushDeviceToken"] +- ["Ps9AnyObject", "application"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationDidEnterBackground"] +- ["Ps9AnyObject", "applicationDidFinishLaunching"] +- ["Ps9AnyObject", "applicationDidReceiveMemoryWarning"] +- ["Ps9AnyObject", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9AnyObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9AnyObject", "applicationShouldRequestHealthAuthorization"] +- ["Ps9AnyObject", "applicationSignificantTimeChange"] +- ["Ps9AnyObject", "applicationWillEnterForeground"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "debugPrint"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "identify"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "loggingEnabled"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "registerForRemoteNotifications"] +- !private ["Ps9AnyObject", "registerUserNotificationSettings"] +- !private ["Ps9AnyObject", "rootViewController"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "sharedApplication"] +- !private ["Ps9AnyObject", "subscript"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- ["Ps9AnyObject", "window"] +- ["Ps9AnyObject", ""] +- ["C12MixpanelDemo11AppDelegate", "AnyObject"] +- ["C12MixpanelDemo11AppDelegate", "Bool"] +- !private ["C12MixpanelDemo11AppDelegate", "Mixpanel"] +- ["C12MixpanelDemo11AppDelegate", "NSData"] +- ["C12MixpanelDemo11AppDelegate", "NSError"] +- ["C12MixpanelDemo11AppDelegate", "NSObject"] +- !private ["C12MixpanelDemo11AppDelegate", "String"] +- !private ["C12MixpanelDemo11AppDelegate", "UIAlertAction"] +- !private ["C12MixpanelDemo11AppDelegate", "UIAlertController"] +- ["C12MixpanelDemo11AppDelegate", "UIApplication"] +- !private ["C12MixpanelDemo11AppDelegate", "UIUserNotificationSettings"] +- ["C12MixpanelDemo11AppDelegate", "UIWindow"] +- ["C12MixpanelDemo11AppDelegate", "application"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidBecomeActive"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidEnterBackground"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidFinishLaunching"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidReceiveMemoryWarning"] +- ["C12MixpanelDemo11AppDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["C12MixpanelDemo11AppDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["C12MixpanelDemo11AppDelegate", "applicationShouldRequestHealthAuthorization"] +- ["C12MixpanelDemo11AppDelegate", "applicationSignificantTimeChange"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillEnterForeground"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillResignActive"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillTerminate"] +- !private ["C12MixpanelDemo11AppDelegate", "debugPrint"] +- ["C12MixpanelDemo11AppDelegate", "deinit"] +- ["C12MixpanelDemo11AppDelegate", "init"] +- ["C12MixpanelDemo11AppDelegate", "window"] +- !private ["Ps23ArrayLiteralConvertible", "Alert"] +- !private ["Ps23ArrayLiteralConvertible", "Badge"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Sound"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "UIAlertAction"] +- !private ["Ps11CVarArgType", "UIAlertController"] +- !private ["Ps11CVarArgType", "UIApplication"] +- !private ["Ps11CVarArgType", "UIUserNotificationSettings"] +- !private ["Ps11CVarArgType", "addAction"] +- ["Ps11CVarArgType", "application"] +- ["Ps11CVarArgType", "applicationDidBecomeActive"] +- ["Ps11CVarArgType", "applicationDidEnterBackground"] +- ["Ps11CVarArgType", "applicationDidFinishLaunching"] +- ["Ps11CVarArgType", "applicationDidReceiveMemoryWarning"] +- ["Ps11CVarArgType", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps11CVarArgType", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps11CVarArgType", "applicationShouldRequestHealthAuthorization"] +- ["Ps11CVarArgType", "applicationSignificantTimeChange"] +- ["Ps11CVarArgType", "applicationWillEnterForeground"] +- ["Ps11CVarArgType", "applicationWillResignActive"] +- ["Ps11CVarArgType", "applicationWillTerminate"] +- !private ["Ps11CVarArgType", "debugPrint"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "presentViewController"] +- !private ["Ps11CVarArgType", "registerForRemoteNotifications"] +- !private ["Ps11CVarArgType", "registerUserNotificationSettings"] +- !private ["Ps11CVarArgType", "rootViewController"] +- !private ["Ps11CVarArgType", "sharedApplication"] +- ["Ps11CVarArgType", "window"] +- ["Ps11CVarArgType", ""] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIAlertAction"] +- !private ["Ps28CustomDebugStringConvertible", "UIAlertController"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplication"] +- !private ["Ps28CustomDebugStringConvertible", "UIUserNotificationSettings"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "addAction"] +- ["Ps28CustomDebugStringConvertible", "application"] +- ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- ["Ps28CustomDebugStringConvertible", "applicationDidFinishLaunching"] +- ["Ps28CustomDebugStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps28CustomDebugStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps28CustomDebugStringConvertible", "applicationSignificantTimeChange"] +- ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "debugPrint"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "flushInterval"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "loggingEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "registerForRemoteNotifications"] +- !private ["Ps28CustomDebugStringConvertible", "registerUserNotificationSettings"] +- !private ["Ps28CustomDebugStringConvertible", "rootViewController"] +- !private ["Ps28CustomDebugStringConvertible", "sharedApplication"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- ["Ps28CustomDebugStringConvertible", "window"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIAlertAction"] +- !private ["Ps23CustomStringConvertible", "UIAlertController"] +- !private ["Ps23CustomStringConvertible", "UIApplication"] +- !private ["Ps23CustomStringConvertible", "UIUserNotificationSettings"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "addAction"] +- ["Ps23CustomStringConvertible", "application"] +- ["Ps23CustomStringConvertible", "applicationDidBecomeActive"] +- ["Ps23CustomStringConvertible", "applicationDidEnterBackground"] +- ["Ps23CustomStringConvertible", "applicationDidFinishLaunching"] +- ["Ps23CustomStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps23CustomStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps23CustomStringConvertible", "applicationSignificantTimeChange"] +- ["Ps23CustomStringConvertible", "applicationWillEnterForeground"] +- ["Ps23CustomStringConvertible", "applicationWillResignActive"] +- ["Ps23CustomStringConvertible", "applicationWillTerminate"] +- !private ["Ps23CustomStringConvertible", "debugPrint"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- !private ["Ps23CustomStringConvertible", "registerForRemoteNotifications"] +- !private ["Ps23CustomStringConvertible", "registerUserNotificationSettings"] +- !private ["Ps23CustomStringConvertible", "rootViewController"] +- !private ["Ps23CustomStringConvertible", "sharedApplication"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "window"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Alert"] +- !private ["Ps9Equatable", "Badge"] +- !private ["Ps9Equatable", "Default"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "Sound"] +- !private ["Ps9Equatable", "UIAlertAction"] +- !private ["Ps9Equatable", "UIAlertController"] +- !private ["Ps9Equatable", "UIApplication"] +- !private ["Ps9Equatable", "UIUserNotificationSettings"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "addAction"] +- ["Ps9Equatable", "application"] +- ["Ps9Equatable", "applicationDidBecomeActive"] +- ["Ps9Equatable", "applicationDidEnterBackground"] +- ["Ps9Equatable", "applicationDidFinishLaunching"] +- ["Ps9Equatable", "applicationDidReceiveMemoryWarning"] +- ["Ps9Equatable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9Equatable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9Equatable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9Equatable", "applicationSignificantTimeChange"] +- ["Ps9Equatable", "applicationWillEnterForeground"] +- ["Ps9Equatable", "applicationWillResignActive"] +- ["Ps9Equatable", "applicationWillTerminate"] +- !private ["Ps9Equatable", "debugPrint"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "presentViewController"] +- !private ["Ps9Equatable", "registerForRemoteNotifications"] +- !private ["Ps9Equatable", "registerUserNotificationSettings"] +- !private ["Ps9Equatable", "rootViewController"] +- !private ["Ps9Equatable", "sharedApplication"] +- ["Ps9Equatable", "window"] +- ["Ps9Equatable", ""] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "flushInterval"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "loggingEnabled"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Alert"] +- !private ["Ps8Hashable", "Default"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "UIAlertAction"] +- !private ["Ps8Hashable", "UIAlertController"] +- !private ["Ps8Hashable", "UIApplication"] +- !private ["Ps8Hashable", "UIUserNotificationSettings"] +- !private ["Ps8Hashable", "addAction"] +- ["Ps8Hashable", "application"] +- ["Ps8Hashable", "applicationDidBecomeActive"] +- ["Ps8Hashable", "applicationDidEnterBackground"] +- ["Ps8Hashable", "applicationDidFinishLaunching"] +- ["Ps8Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps8Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps8Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps8Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps8Hashable", "applicationSignificantTimeChange"] +- ["Ps8Hashable", "applicationWillEnterForeground"] +- ["Ps8Hashable", "applicationWillResignActive"] +- ["Ps8Hashable", "applicationWillTerminate"] +- !private ["Ps8Hashable", "debugPrint"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "presentViewController"] +- !private ["Ps8Hashable", "registerForRemoteNotifications"] +- !private ["Ps8Hashable", "registerUserNotificationSettings"] +- !private ["Ps8Hashable", "rootViewController"] +- !private ["Ps8Hashable", "sharedApplication"] +- ["Ps8Hashable", "window"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "flushInterval"] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "loggingEnabled"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- !private ["PSo8NSCoding", "addAction"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "presentViewController"] +- !private ["PSo8NSCoding", "rootViewController"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo26NSExtensionRequestHandling", "addAction"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["CSo8NSObject", "AnyObject"] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "NSData"] +- ["CSo8NSObject", "NSError"] +- ["CSo8NSObject", "NSObject"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "UIAlertAction"] +- !private ["CSo8NSObject", "UIAlertController"] +- ["CSo8NSObject", "UIApplication"] +- !private ["CSo8NSObject", "UIUserNotificationSettings"] +- ["CSo8NSObject", "UIWindow"] +- !private ["CSo8NSObject", "addAction"] +- ["CSo8NSObject", "application"] +- ["CSo8NSObject", "applicationDidBecomeActive"] +- ["CSo8NSObject", "applicationDidEnterBackground"] +- ["CSo8NSObject", "applicationDidFinishLaunching"] +- ["CSo8NSObject", "applicationDidReceiveMemoryWarning"] +- ["CSo8NSObject", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo8NSObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo8NSObject", "applicationShouldRequestHealthAuthorization"] +- ["CSo8NSObject", "applicationSignificantTimeChange"] +- ["CSo8NSObject", "applicationWillEnterForeground"] +- ["CSo8NSObject", "applicationWillResignActive"] +- ["CSo8NSObject", "applicationWillTerminate"] +- !private ["CSo8NSObject", "debugPrint"] +- !private ["CSo8NSObject", "deinit"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "presentViewController"] +- !private ["CSo8NSObject", "registerForRemoteNotifications"] +- !private ["CSo8NSObject", "registerUserNotificationSettings"] +- !private ["CSo8NSObject", "rootViewController"] +- !private ["CSo8NSObject", "sharedApplication"] +- ["CSo8NSObject", "window"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "UIAlertAction"] +- !private ["PSo16NSObjectProtocol", "UIAlertController"] +- !private ["PSo16NSObjectProtocol", "UIApplication"] +- !private ["PSo16NSObjectProtocol", "UIUserNotificationSettings"] +- !private ["PSo16NSObjectProtocol", "addAction"] +- ["PSo16NSObjectProtocol", "application"] +- ["PSo16NSObjectProtocol", "applicationDidBecomeActive"] +- ["PSo16NSObjectProtocol", "applicationDidEnterBackground"] +- ["PSo16NSObjectProtocol", "applicationDidFinishLaunching"] +- ["PSo16NSObjectProtocol", "applicationDidReceiveMemoryWarning"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo16NSObjectProtocol", "applicationShouldRequestHealthAuthorization"] +- ["PSo16NSObjectProtocol", "applicationSignificantTimeChange"] +- ["PSo16NSObjectProtocol", "applicationWillEnterForeground"] +- ["PSo16NSObjectProtocol", "applicationWillResignActive"] +- ["PSo16NSObjectProtocol", "applicationWillTerminate"] +- !private ["PSo16NSObjectProtocol", "debugPrint"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- !private ["PSo16NSObjectProtocol", "registerForRemoteNotifications"] +- !private ["PSo16NSObjectProtocol", "registerUserNotificationSettings"] +- !private ["PSo16NSObjectProtocol", "rootViewController"] +- !private ["PSo16NSObjectProtocol", "sharedApplication"] +- ["PSo16NSObjectProtocol", "window"] +- ["PSo16NSObjectProtocol", ""] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "Alert"] +- !private ["Ps13OptionSetType", "Badge"] +- !private ["Ps13OptionSetType", "Element"] +- !private ["Ps13OptionSetType", "Sound"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["C8Mixpanel6People", "addPushDeviceToken"] +- !private ["C8Mixpanel6People", "set"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps16RawRepresentable", "Alert"] +- !private ["Ps16RawRepresentable", "Badge"] +- !private ["Ps16RawRepresentable", "Default"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Sound"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "Alert"] +- !private ["Ps14SetAlgebraType", "Badge"] +- !private ["Ps14SetAlgebraType", "Element"] +- !private ["Ps14SetAlgebraType", "Sound"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["PSo29UIAccessibilityIdentification", "rootViewController"] +- !private ["CSo13UIAlertAction", "init"] +- !private ["OSC18UIAlertActionStyle", "Default"] +- !private ["CSo17UIAlertController", "addAction"] +- !private ["CSo17UIAlertController", "init"] +- !private ["OSC22UIAlertControllerStyle", "Alert"] +- !private ["PSo12UIAppearance", "rootViewController"] +- !private ["PSo21UIAppearanceContainer", "addAction"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- !private ["PSo21UIAppearanceContainer", "rootViewController"] +- !private ["CSo13UIApplication", "registerForRemoteNotifications"] +- !private ["CSo13UIApplication", "registerUserNotificationSettings"] +- !private ["CSo13UIApplication", "sharedApplication"] +- !private ["PSo21UIApplicationDelegate", "Mixpanel"] +- !private ["PSo21UIApplicationDelegate", "UIAlertAction"] +- !private ["PSo21UIApplicationDelegate", "UIAlertController"] +- !private ["PSo21UIApplicationDelegate", "UIApplication"] +- !private ["PSo21UIApplicationDelegate", "UIUserNotificationSettings"] +- ["PSo21UIApplicationDelegate", "application"] +- ["PSo21UIApplicationDelegate", "applicationDidBecomeActive"] +- ["PSo21UIApplicationDelegate", "applicationDidEnterBackground"] +- ["PSo21UIApplicationDelegate", "applicationDidFinishLaunching"] +- ["PSo21UIApplicationDelegate", "applicationDidReceiveMemoryWarning"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo21UIApplicationDelegate", "applicationShouldRequestHealthAuthorization"] +- ["PSo21UIApplicationDelegate", "applicationSignificantTimeChange"] +- ["PSo21UIApplicationDelegate", "applicationWillEnterForeground"] +- ["PSo21UIApplicationDelegate", "applicationWillResignActive"] +- ["PSo21UIApplicationDelegate", "applicationWillTerminate"] +- !private ["PSo21UIApplicationDelegate", "debugPrint"] +- ["PSo21UIApplicationDelegate", "window"] +- ["PSo21UIApplicationDelegate", ""] +- !private ["PSo18UIContentContainer", "addAction"] +- !private ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- !private ["PSo17UICoordinateSpace", "rootViewController"] +- !private ["PSo13UIDynamicItem", "rootViewController"] +- !private ["PSo18UIFocusEnvironment", "addAction"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- !private ["PSo18UIFocusEnvironment", "rootViewController"] +- ["CSo11UIResponder", "AnyObject"] +- ["CSo11UIResponder", "Bool"] +- !private ["CSo11UIResponder", "Mixpanel"] +- ["CSo11UIResponder", "NSData"] +- ["CSo11UIResponder", "NSError"] +- ["CSo11UIResponder", "NSObject"] +- !private ["CSo11UIResponder", "String"] +- !private ["CSo11UIResponder", "UIAlertAction"] +- !private ["CSo11UIResponder", "UIAlertController"] +- ["CSo11UIResponder", "UIApplication"] +- !private ["CSo11UIResponder", "UIUserNotificationSettings"] +- ["CSo11UIResponder", "UIWindow"] +- !private ["CSo11UIResponder", "addAction"] +- ["CSo11UIResponder", "application"] +- ["CSo11UIResponder", "applicationDidBecomeActive"] +- ["CSo11UIResponder", "applicationDidEnterBackground"] +- ["CSo11UIResponder", "applicationDidFinishLaunching"] +- ["CSo11UIResponder", "applicationDidReceiveMemoryWarning"] +- ["CSo11UIResponder", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo11UIResponder", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo11UIResponder", "applicationShouldRequestHealthAuthorization"] +- ["CSo11UIResponder", "applicationSignificantTimeChange"] +- ["CSo11UIResponder", "applicationWillEnterForeground"] +- ["CSo11UIResponder", "applicationWillResignActive"] +- ["CSo11UIResponder", "applicationWillTerminate"] +- !private ["CSo11UIResponder", "debugPrint"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "presentViewController"] +- !private ["CSo11UIResponder", "registerForRemoteNotifications"] +- !private ["CSo11UIResponder", "registerUserNotificationSettings"] +- !private ["CSo11UIResponder", "rootViewController"] +- !private ["CSo11UIResponder", "sharedApplication"] +- ["CSo11UIResponder", "window"] +- ["CSo11UIResponder", ""] +- !private ["PSo16UIStateRestoring", "addAction"] +- !private ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- !private ["PSo18UITraitEnvironment", "addAction"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- !private ["PSo18UITraitEnvironment", "rootViewController"] +- !private ["CSo26UIUserNotificationSettings", "init"] +- !private ["VSC22UIUserNotificationType", "Alert"] +- !private ["VSC22UIUserNotificationType", "Badge"] +- !private ["VSC22UIUserNotificationType", "Element"] +- !private ["VSC22UIUserNotificationType", "Sound"] +- !private ["CSo6UIView", "rootViewController"] +- !private ["CSo16UIViewController", "addAction"] +- !private ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "presentViewController"] +- !private ["CSo8UIWindow", "rootViewController"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "rootViewController"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- "C12MixpanelDemo11AppDelegate" +- !private "Ps23ArrayLiteralConvertible" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- "Ps9Equatable" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo26NSExtensionRequestHandling" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "C8Mixpanel6People" +- !private "Ps21RandomAccessIndexType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Strideable" +- !private "SS" +- !private "PSo29UIAccessibilityIdentification" +- !private "CSo13UIAlertAction" +- !private "OSC18UIAlertActionStyle" +- !private "CSo17UIAlertController" +- !private "OSC22UIAlertControllerStyle" +- !private "PSo12UIAppearance" +- !private "PSo21UIAppearanceContainer" +- !private "CSo13UIApplication" +- "PSo21UIApplicationDelegate" +- !private "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- !private "PSo18UIFocusEnvironment" +- "CSo11UIResponder" +- !private "PSo16UIStateRestoring" +- !private "PSo18UITraitEnvironment" +- !private "CSo26UIUserNotificationSettings" +- !private "VSC22UIUserNotificationType" +- !private "CSo6UIView" +- !private "CSo16UIViewController" +- !private "CSo8UIWindow" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "subscript" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "d6f9ae40a13c6b959f30d7d6a41595a5" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftmodule new file mode 100644 index 00000000..edd34819 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-OutputFileMap.json new file mode 100644 index 00000000..accbcf81 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/MixpanelDemo-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/AppDelegate.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/TrackingViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/UtilityViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/ActionCompleteViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/PeopleViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h new file mode 100644 index 00000000..79c3be14 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-master.swiftdeps new file mode 100644 index 00000000..f32cf25d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-master.swiftdeps @@ -0,0 +1,9 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "32969b64f5b3de6b9d1d6b82f2ef35e5" +build_time: [522542442, 463535000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift": [522536377, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift": [522447796, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift": [522447796, 0] diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.LinkFileList new file mode 100644 index 00000000..bef584f2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule new file mode 100644 index 00000000..4344cf26 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo_dependency_info.dat b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo_dependency_info.dat new file mode 100644 index 00000000..9064e537 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.d new file mode 100644 index 00000000..bec9ccca --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o new file mode 100644 index 00000000..ceb16df4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.swiftdeps new file mode 100644 index 00000000..c03c4fd1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.swiftdeps @@ -0,0 +1,1325 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PeopleViewController" +provides-nominal: +- "C12MixpanelDemo20PeopleViewController" +provides-member: +- ["C12MixpanelDemo20PeopleViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "viewDidLoad" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +depends-top-level: +- !private "ActionCompleteViewController" +- "UITableView" +- !private "BooleanLiteralType" +- !private "UnicodeScalarType" +- !private "Dictionary" +- !private "Mixpanel" +- !private "Properties" +- !private "NSNull" +- !private "UIColor" +- "Int" +- !private "NSURL" +- "UITableViewDataSource" +- "StringLiteralType" +- !private "UIModalPresentationStyle" +- !private "NSDate" +- "UIViewController" +- "UITableViewDelegate" +- "UITableViewCell" +- "Array" +- "NSIndexPath" +- !private "~=" +- "PeopleViewController" +- !private "UIModalTransitionStyle" +depends-member: +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "clearCharges"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "deleteUser"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "increment"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "presentViewController"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "setOnce"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- !private ["Ps9AnyObject", "trackCharge"] +- !private ["Ps9AnyObject", "union"] +- !private ["Ps9AnyObject", "unset"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["PSo8CAAction", "init"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "NSDate"] +- !private ["PSo8NSCoding", "NSNull"] +- !private ["PSo8NSCoding", "NSURL"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["CSo6NSDate", "init"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "NSDate"] +- !private ["PSo26NSExtensionRequestHandling", "NSNull"] +- !private ["PSo26NSExtensionRequestHandling", "NSURL"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo6NSNull", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDate"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel6People", "append"] +- !private ["C8Mixpanel6People", "clearCharges"] +- !private ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "setOnce"] +- !private ["C8Mixpanel6People", "trackCharge"] +- !private ["C8Mixpanel6People", "union"] +- !private ["C8Mixpanel6People", "unset"] +- !private ["C12MixpanelDemo20PeopleViewController", "ActionCompleteViewController"] +- ["C12MixpanelDemo20PeopleViewController", "Int"] +- !private ["C12MixpanelDemo20PeopleViewController", "Mixpanel"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSDate"] +- ["C12MixpanelDemo20PeopleViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSNull"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSURL"] +- !private ["C12MixpanelDemo20PeopleViewController", "Properties"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIColor"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo20PeopleViewController", "UITableView"] +- ["C12MixpanelDemo20PeopleViewController", "UITableViewCell"] +- ["C12MixpanelDemo20PeopleViewController", "deinit"] +- ["C12MixpanelDemo20PeopleViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo20PeopleViewController", "init"] +- ["C12MixpanelDemo20PeopleViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo20PeopleViewController", "presentViewController"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo20PeopleViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo20PeopleViewController", "storyboard"] +- ["C12MixpanelDemo20PeopleViewController", "tableView"] +- ["C12MixpanelDemo20PeopleViewController", "tableViewItems"] +- ["C12MixpanelDemo20PeopleViewController", "viewDidLoad"] +- ["C12MixpanelDemo20PeopleViewController", "viewForZoomingInScrollView"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "NSDate"] +- !private ["PSo21UIAppearanceContainer", "NSNull"] +- !private ["PSo21UIAppearanceContainer", "NSURL"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "NSDate"] +- !private ["PSo18UIContentContainer", "NSNull"] +- !private ["PSo18UIContentContainer", "NSURL"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "NSDate"] +- !private ["PSo18UIFocusEnvironment", "NSNull"] +- !private ["PSo18UIFocusEnvironment", "NSURL"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Mixpanel"] +- !private ["CSo11UIResponder", "NSDate"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "NSNull"] +- !private ["CSo11UIResponder", "NSURL"] +- !private ["CSo11UIResponder", "Properties"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "NSDate"] +- !private ["PSo20UIScrollViewDelegate", "NSNull"] +- !private ["PSo20UIScrollViewDelegate", "NSURL"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "NSDate"] +- !private ["PSo16UIStateRestoring", "NSNull"] +- !private ["PSo16UIStateRestoring", "NSURL"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "NSDate"] +- !private ["PSo21UITableViewDataSource", "NSNull"] +- !private ["PSo21UITableViewDataSource", "NSURL"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "NSDate"] +- !private ["PSo19UITableViewDelegate", "NSNull"] +- !private ["PSo19UITableViewDelegate", "NSURL"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "NSDate"] +- !private ["PSo18UITraitEnvironment", "NSNull"] +- !private ["PSo18UITraitEnvironment", "NSURL"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Mixpanel"] +- !private ["CSo16UIViewController", "NSDate"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "NSNull"] +- !private ["CSo16UIViewController", "NSURL"] +- !private ["CSo16UIViewController", "Properties"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "PSo8CAAction" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo6NSNull" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo7NSValue" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- "C12MixpanelDemo20PeopleViewController" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "b080b3342f9c214e6a1473ff4151a857" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftmodule new file mode 100644 index 00000000..844ad439 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.d new file mode 100644 index 00000000..b3d859e4 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o new file mode 100644 index 00000000..e2c6259c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.swiftdeps new file mode 100644 index 00000000..eab68cd7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.swiftdeps @@ -0,0 +1,1529 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "TrackingViewController" +provides-nominal: +- "C12MixpanelDemo22TrackingViewController" +provides-member: +- ["C12MixpanelDemo22TrackingViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "viewDidLoad" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +depends-top-level: +- !private "*" +- !private "Mixpanel" +- "Int" +- !private "Double" +- !private "Int64" +- "UIViewController" +- !private "NSNull" +- !private "NSDate" +- !private "UIModalPresentationStyle" +- !private "dispatch_time" +- "NSIndexPath" +- !private "dispatch_get_main_queue" +- !private "DISPATCH_TIME_NOW" +- "TrackingViewController" +- !private "BooleanLiteralType" +- !private "UnicodeScalarType" +- !private "dispatch_after" +- "UITableViewCell" +- !private "+=" +- !private "UIModalTransitionStyle" +- "Array" +- !private "ActionCompleteViewController" +- !private "~=" +- !private "UIColor" +- "StringLiteralType" +- !private "NSURL" +- !private "NSEC_PER_SEC" +- !private "Dictionary" +- "UITableViewDelegate" +- "UITableView" +- "UITableViewDataSource" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_NOW"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Int64"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSEC_PER_SEC"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "clearTimedEvents"] +- !private ["Ps9AnyObject", "currentSuperProperties"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "dispatch_after"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_time"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["PSo8CAAction", "init"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "DISPATCH_TIME_NOW"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Double"] +- !private ["Ps11CVarArgType", "Element"] +- !private ["Ps11CVarArgType", "Int64"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSEC_PER_SEC"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "Value"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- !private ["Ps11CVarArgType", "dispatch_after"] +- !private ["Ps11CVarArgType", "dispatch_get_main_queue"] +- !private ["Ps11CVarArgType", "dispatch_time"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps28CustomDebugStringConvertible", "Double"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Int64"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "clearSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearTimedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_after"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_time"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperPropertiesOnce"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "unregisterSuperProperty"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Double"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "Int64"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps23CustomStringConvertible", "dispatch_after"] +- !private ["Ps23CustomStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps23CustomStringConvertible", "dispatch_time"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "DISPATCH_TIME_NOW"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Double"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Int64"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSEC_PER_SEC"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "Value"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- !private ["Ps9Equatable", "dispatch_after"] +- !private ["Ps9Equatable", "dispatch_get_main_queue"] +- !private ["Ps9Equatable", "dispatch_time"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["P8Mixpanel13FlushDelegate", "clearSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "clearTimedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "currentSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperPropertiesOnce"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "unregisterSuperProperty"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "DISPATCH_TIME_NOW"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Double"] +- !private ["Ps8Hashable", "Element"] +- !private ["Ps8Hashable", "Int64"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSEC_PER_SEC"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "Value"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- !private ["Ps8Hashable", "dispatch_after"] +- !private ["Ps8Hashable", "dispatch_get_main_queue"] +- !private ["Ps8Hashable", "dispatch_time"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs5Int64", "init"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- !private ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "DISPATCH_TIME_NOW"] +- !private ["PSo8NSCoding", "Double"] +- !private ["PSo8NSCoding", "Int64"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "NSDate"] +- !private ["PSo8NSCoding", "NSEC_PER_SEC"] +- !private ["PSo8NSCoding", "NSNull"] +- !private ["PSo8NSCoding", "NSURL"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- !private ["PSo8NSCoding", "dispatch_after"] +- !private ["PSo8NSCoding", "dispatch_get_main_queue"] +- !private ["PSo8NSCoding", "dispatch_time"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["CSo6NSDate", "deinit"] +- !private ["CSo6NSDate", "init"] +- !private ["PSo26NSExtensionRequestHandling", "DISPATCH_TIME_NOW"] +- !private ["PSo26NSExtensionRequestHandling", "Double"] +- !private ["PSo26NSExtensionRequestHandling", "Int64"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "NSDate"] +- !private ["PSo26NSExtensionRequestHandling", "NSEC_PER_SEC"] +- !private ["PSo26NSExtensionRequestHandling", "NSNull"] +- !private ["PSo26NSExtensionRequestHandling", "NSURL"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_after"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_get_main_queue"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_time"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo6NSNull", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- !private ["CSo8NSObject", "DISPATCH_TIME_NOW"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Element"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Int64"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDate"] +- !private ["CSo8NSObject", "NSEC_PER_SEC"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "Value"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- !private ["CSo8NSObject", "dispatch_after"] +- !private ["CSo8NSObject", "dispatch_get_main_queue"] +- !private ["CSo8NSObject", "dispatch_time"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "DISPATCH_TIME_NOW"] +- !private ["PSo16NSObjectProtocol", "Double"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "Int64"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSEC_PER_SEC"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "Value"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- !private ["PSo16NSObjectProtocol", "dispatch_after"] +- !private ["PSo16NSObjectProtocol", "dispatch_get_main_queue"] +- !private ["PSo16NSObjectProtocol", "dispatch_time"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["C12MixpanelDemo22TrackingViewController", "ActionCompleteViewController"] +- !private ["C12MixpanelDemo22TrackingViewController", "DISPATCH_TIME_NOW"] +- !private ["C12MixpanelDemo22TrackingViewController", "Double"] +- ["C12MixpanelDemo22TrackingViewController", "Int"] +- !private ["C12MixpanelDemo22TrackingViewController", "Int64"] +- !private ["C12MixpanelDemo22TrackingViewController", "Mixpanel"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSDate"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSEC_PER_SEC"] +- ["C12MixpanelDemo22TrackingViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSNull"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSURL"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIColor"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo22TrackingViewController", "UITableView"] +- ["C12MixpanelDemo22TrackingViewController", "UITableViewCell"] +- ["C12MixpanelDemo22TrackingViewController", "deinit"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_after"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_get_main_queue"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_time"] +- ["C12MixpanelDemo22TrackingViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo22TrackingViewController", "init"] +- ["C12MixpanelDemo22TrackingViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo22TrackingViewController", "presentViewController"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo22TrackingViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo22TrackingViewController", "storyboard"] +- ["C12MixpanelDemo22TrackingViewController", "tableView"] +- ["C12MixpanelDemo22TrackingViewController", "tableViewItems"] +- ["C12MixpanelDemo22TrackingViewController", "viewDidLoad"] +- ["C12MixpanelDemo22TrackingViewController", "viewForZoomingInScrollView"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo21UIAppearanceContainer", "Double"] +- !private ["PSo21UIAppearanceContainer", "Int64"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "NSDate"] +- !private ["PSo21UIAppearanceContainer", "NSEC_PER_SEC"] +- !private ["PSo21UIAppearanceContainer", "NSNull"] +- !private ["PSo21UIAppearanceContainer", "NSURL"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- !private ["PSo21UIAppearanceContainer", "dispatch_after"] +- !private ["PSo21UIAppearanceContainer", "dispatch_get_main_queue"] +- !private ["PSo21UIAppearanceContainer", "dispatch_time"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIContentContainer", "Double"] +- !private ["PSo18UIContentContainer", "Int64"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "NSDate"] +- !private ["PSo18UIContentContainer", "NSEC_PER_SEC"] +- !private ["PSo18UIContentContainer", "NSNull"] +- !private ["PSo18UIContentContainer", "NSURL"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- !private ["PSo18UIContentContainer", "dispatch_after"] +- !private ["PSo18UIContentContainer", "dispatch_get_main_queue"] +- !private ["PSo18UIContentContainer", "dispatch_time"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIFocusEnvironment", "Double"] +- !private ["PSo18UIFocusEnvironment", "Int64"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "NSDate"] +- !private ["PSo18UIFocusEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UIFocusEnvironment", "NSNull"] +- !private ["PSo18UIFocusEnvironment", "NSURL"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- !private ["PSo18UIFocusEnvironment", "dispatch_after"] +- !private ["PSo18UIFocusEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UIFocusEnvironment", "dispatch_time"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- !private ["CSo11UIResponder", "DISPATCH_TIME_NOW"] +- !private ["CSo11UIResponder", "Double"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Int64"] +- !private ["CSo11UIResponder", "Mixpanel"] +- !private ["CSo11UIResponder", "NSDate"] +- !private ["CSo11UIResponder", "NSEC_PER_SEC"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "NSNull"] +- !private ["CSo11UIResponder", "NSURL"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- !private ["CSo11UIResponder", "dispatch_after"] +- !private ["CSo11UIResponder", "dispatch_get_main_queue"] +- !private ["CSo11UIResponder", "dispatch_time"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "DISPATCH_TIME_NOW"] +- !private ["PSo20UIScrollViewDelegate", "Double"] +- !private ["PSo20UIScrollViewDelegate", "Int64"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "NSDate"] +- !private ["PSo20UIScrollViewDelegate", "NSEC_PER_SEC"] +- !private ["PSo20UIScrollViewDelegate", "NSNull"] +- !private ["PSo20UIScrollViewDelegate", "NSURL"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_after"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_get_main_queue"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_time"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "DISPATCH_TIME_NOW"] +- !private ["PSo16UIStateRestoring", "Double"] +- !private ["PSo16UIStateRestoring", "Int64"] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "NSDate"] +- !private ["PSo16UIStateRestoring", "NSEC_PER_SEC"] +- !private ["PSo16UIStateRestoring", "NSNull"] +- !private ["PSo16UIStateRestoring", "NSURL"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- !private ["PSo16UIStateRestoring", "dispatch_after"] +- !private ["PSo16UIStateRestoring", "dispatch_get_main_queue"] +- !private ["PSo16UIStateRestoring", "dispatch_time"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "DISPATCH_TIME_NOW"] +- !private ["PSo21UITableViewDataSource", "Double"] +- !private ["PSo21UITableViewDataSource", "Int64"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "NSDate"] +- !private ["PSo21UITableViewDataSource", "NSEC_PER_SEC"] +- !private ["PSo21UITableViewDataSource", "NSNull"] +- !private ["PSo21UITableViewDataSource", "NSURL"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- !private ["PSo21UITableViewDataSource", "dispatch_after"] +- !private ["PSo21UITableViewDataSource", "dispatch_get_main_queue"] +- !private ["PSo21UITableViewDataSource", "dispatch_time"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "DISPATCH_TIME_NOW"] +- !private ["PSo19UITableViewDelegate", "Double"] +- !private ["PSo19UITableViewDelegate", "Int64"] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "NSDate"] +- !private ["PSo19UITableViewDelegate", "NSEC_PER_SEC"] +- !private ["PSo19UITableViewDelegate", "NSNull"] +- !private ["PSo19UITableViewDelegate", "NSURL"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- !private ["PSo19UITableViewDelegate", "dispatch_after"] +- !private ["PSo19UITableViewDelegate", "dispatch_get_main_queue"] +- !private ["PSo19UITableViewDelegate", "dispatch_time"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UITraitEnvironment", "Double"] +- !private ["PSo18UITraitEnvironment", "Int64"] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "NSDate"] +- !private ["PSo18UITraitEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UITraitEnvironment", "NSNull"] +- !private ["PSo18UITraitEnvironment", "NSURL"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- !private ["PSo18UITraitEnvironment", "dispatch_after"] +- !private ["PSo18UITraitEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UITraitEnvironment", "dispatch_time"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- !private ["CSo16UIViewController", "DISPATCH_TIME_NOW"] +- !private ["CSo16UIViewController", "Double"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Int64"] +- !private ["CSo16UIViewController", "Mixpanel"] +- !private ["CSo16UIViewController", "NSDate"] +- !private ["CSo16UIViewController", "NSEC_PER_SEC"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "NSNull"] +- !private ["CSo16UIViewController", "NSURL"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- !private ["CSo16UIViewController", "dispatch_after"] +- !private ["CSo16UIViewController", "dispatch_get_main_queue"] +- !private ["CSo16UIViewController", "dispatch_time"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "PSo8CAAction" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo6NSNull" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo7NSValue" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "C12MixpanelDemo22TrackingViewController" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "167b08616bade02fda98c72c559f8b7b" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftmodule new file mode 100644 index 00000000..4cf4ba79 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.d new file mode 100644 index 00000000..8e20569d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o new file mode 100644 index 00000000..aee82fc3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.swiftdeps new file mode 100644 index 00000000..2aa44749 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.swiftdeps @@ -0,0 +1,1215 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "UtilityViewController" +provides-nominal: +- "C12MixpanelDemo21UtilityViewController" +provides-member: +- ["C12MixpanelDemo21UtilityViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "viewDidLoad" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +depends-top-level: +- !private "~=" +- "UITableView" +- !private "BooleanLiteralType" +- "UtilityViewController" +- "Array" +- "NSIndexPath" +- "UIViewController" +- !private "ActionCompleteViewController" +- !private "Mixpanel" +- !private "UIColor" +- "Int" +- "StringLiteralType" +- !private "UIModalTransitionStyle" +- !private "UIModalPresentationStyle" +- "UITableViewDelegate" +- "UITableViewCell" +- "UITableViewDataSource" +depends-member: +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "createAlias"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "flush"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "reset"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "createAlias"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "createAlias"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "archive"] +- !private ["C8Mixpanel16MixpanelInstance", "createAlias"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Mixpanel"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Mixpanel"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["C12MixpanelDemo21UtilityViewController", "ActionCompleteViewController"] +- ["C12MixpanelDemo21UtilityViewController", "Int"] +- !private ["C12MixpanelDemo21UtilityViewController", "Mixpanel"] +- ["C12MixpanelDemo21UtilityViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIColor"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo21UtilityViewController", "UITableView"] +- ["C12MixpanelDemo21UtilityViewController", "UITableViewCell"] +- ["C12MixpanelDemo21UtilityViewController", "deinit"] +- ["C12MixpanelDemo21UtilityViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo21UtilityViewController", "init"] +- ["C12MixpanelDemo21UtilityViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo21UtilityViewController", "presentViewController"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo21UtilityViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo21UtilityViewController", "storyboard"] +- ["C12MixpanelDemo21UtilityViewController", "tableView"] +- ["C12MixpanelDemo21UtilityViewController", "tableViewItems"] +- ["C12MixpanelDemo21UtilityViewController", "viewDidLoad"] +- ["C12MixpanelDemo21UtilityViewController", "viewForZoomingInScrollView"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo7NSValue" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "C12MixpanelDemo21UtilityViewController" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "ff54430ae71aacd33f64a292fa1c5b6d" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftmodule new file mode 100644 index 00000000..d43cc69e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.d new file mode 100644 index 00000000..82feb57f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o new file mode 100644 index 00000000..51556f23 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.swiftdeps new file mode 100644 index 00000000..8a37e081 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.swiftdeps @@ -0,0 +1,602 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "ActionCompleteViewController" +provides-nominal: +- "C12MixpanelDemo28ActionCompleteViewController" +provides-member: +- ["C12MixpanelDemo28ActionCompleteViewController", ""] +provides-dynamic-lookup: +- "viewDidLoad" +- "viewDidAppear" +- "descLabel" +- "descStr" +- "popupView" +- "handleTap" +- "actionStr" +- "actionLabel" +depends-top-level: +- "Bool" +- "ActionCompleteViewController" +- !private "dispatch_after" +- "UIViewController" +- !private "dispatch_time" +- !private "DISPATCH_TIME_NOW" +- !private "Int64" +- !private "BooleanLiteralType" +- "UILabel" +- "UITapGestureRecognizer" +- !private "*" +- !private "dispatch_get_main_queue" +- !private "Double" +- "String" +- "UIView" +- !private "NSEC_PER_SEC" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- ["C12MixpanelDemo28ActionCompleteViewController", "Bool"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "DISPATCH_TIME_NOW"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "Double"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "Int64"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "NSEC_PER_SEC"] +- ["C12MixpanelDemo28ActionCompleteViewController", "String"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UILabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UITapGestureRecognizer"] +- ["C12MixpanelDemo28ActionCompleteViewController", "UIView"] +- ["C12MixpanelDemo28ActionCompleteViewController", "actionLabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- ["C12MixpanelDemo28ActionCompleteViewController", "deinit"] +- ["C12MixpanelDemo28ActionCompleteViewController", "descLabel"] +- ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dismissViewControllerAnimated"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_after"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_get_main_queue"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "dispatch_time"] +- ["C12MixpanelDemo28ActionCompleteViewController", "handleTap"] +- ["C12MixpanelDemo28ActionCompleteViewController", "init"] +- ["C12MixpanelDemo28ActionCompleteViewController", "popupView"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "view"] +- ["C12MixpanelDemo28ActionCompleteViewController", "viewDidAppear"] +- ["C12MixpanelDemo28ActionCompleteViewController", "viewDidLoad"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_NOW"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Int64"] +- !private ["Ps9AnyObject", "NSEC_PER_SEC"] +- !private ["Ps9AnyObject", "UITapGestureRecognizer"] +- ["Ps9AnyObject", "actionLabel"] +- ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "addGestureRecognizer"] +- !private ["Ps9AnyObject", "clipsToBounds"] +- !private ["Ps9AnyObject", "cornerRadius"] +- ["Ps9AnyObject", "descLabel"] +- ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "dismissViewControllerAnimated"] +- !private ["Ps9AnyObject", "dispatch_after"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_time"] +- ["Ps9AnyObject", "handleTap"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "layer"] +- ["Ps9AnyObject", "popupView"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "view"] +- ["Ps9AnyObject", "viewDidAppear"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", ""] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["CSo7CALayer", "cornerRadius"] +- !private ["PSo13CAMediaTiming", "cornerRadius"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "DISPATCH_TIME_NOW"] +- !private ["Ps11CVarArgType", "Double"] +- !private ["Ps11CVarArgType", "Int64"] +- !private ["Ps11CVarArgType", "NSEC_PER_SEC"] +- !private ["Ps11CVarArgType", "UITapGestureRecognizer"] +- ["Ps11CVarArgType", "actionLabel"] +- ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "addGestureRecognizer"] +- !private ["Ps11CVarArgType", "clipsToBounds"] +- !private ["Ps11CVarArgType", "cornerRadius"] +- ["Ps11CVarArgType", "descLabel"] +- ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "dismissViewControllerAnimated"] +- !private ["Ps11CVarArgType", "dispatch_after"] +- !private ["Ps11CVarArgType", "dispatch_get_main_queue"] +- !private ["Ps11CVarArgType", "dispatch_time"] +- ["Ps11CVarArgType", "handleTap"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "layer"] +- ["Ps11CVarArgType", "popupView"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "view"] +- ["Ps11CVarArgType", "viewDidAppear"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", ""] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps28CustomDebugStringConvertible", "Double"] +- !private ["Ps28CustomDebugStringConvertible", "Int64"] +- !private ["Ps28CustomDebugStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps28CustomDebugStringConvertible", "UITapGestureRecognizer"] +- ["Ps28CustomDebugStringConvertible", "actionLabel"] +- ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "addGestureRecognizer"] +- !private ["Ps28CustomDebugStringConvertible", "clipsToBounds"] +- !private ["Ps28CustomDebugStringConvertible", "cornerRadius"] +- ["Ps28CustomDebugStringConvertible", "descLabel"] +- ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "dismissViewControllerAnimated"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_after"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_time"] +- ["Ps28CustomDebugStringConvertible", "handleTap"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "layer"] +- ["Ps28CustomDebugStringConvertible", "popupView"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "view"] +- ["Ps28CustomDebugStringConvertible", "viewDidAppear"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps23CustomStringConvertible", "Double"] +- !private ["Ps23CustomStringConvertible", "Int64"] +- !private ["Ps23CustomStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps23CustomStringConvertible", "UITapGestureRecognizer"] +- ["Ps23CustomStringConvertible", "actionLabel"] +- ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "addGestureRecognizer"] +- !private ["Ps23CustomStringConvertible", "clipsToBounds"] +- !private ["Ps23CustomStringConvertible", "cornerRadius"] +- ["Ps23CustomStringConvertible", "descLabel"] +- ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "dismissViewControllerAnimated"] +- !private ["Ps23CustomStringConvertible", "dispatch_after"] +- !private ["Ps23CustomStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps23CustomStringConvertible", "dispatch_time"] +- ["Ps23CustomStringConvertible", "handleTap"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "layer"] +- ["Ps23CustomStringConvertible", "popupView"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "view"] +- ["Ps23CustomStringConvertible", "viewDidAppear"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "DISPATCH_TIME_NOW"] +- !private ["Ps9Equatable", "Double"] +- !private ["Ps9Equatable", "Int64"] +- !private ["Ps9Equatable", "NSEC_PER_SEC"] +- !private ["Ps9Equatable", "UITapGestureRecognizer"] +- ["Ps9Equatable", "actionLabel"] +- ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "addGestureRecognizer"] +- !private ["Ps9Equatable", "clipsToBounds"] +- !private ["Ps9Equatable", "cornerRadius"] +- ["Ps9Equatable", "descLabel"] +- ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "dismissViewControllerAnimated"] +- !private ["Ps9Equatable", "dispatch_after"] +- !private ["Ps9Equatable", "dispatch_get_main_queue"] +- !private ["Ps9Equatable", "dispatch_time"] +- ["Ps9Equatable", "handleTap"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "layer"] +- ["Ps9Equatable", "popupView"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "view"] +- ["Ps9Equatable", "viewDidAppear"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", ""] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps8Hashable", "DISPATCH_TIME_NOW"] +- !private ["Ps8Hashable", "Double"] +- !private ["Ps8Hashable", "Int64"] +- !private ["Ps8Hashable", "NSEC_PER_SEC"] +- !private ["Ps8Hashable", "UITapGestureRecognizer"] +- ["Ps8Hashable", "actionLabel"] +- ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "addGestureRecognizer"] +- !private ["Ps8Hashable", "clipsToBounds"] +- !private ["Ps8Hashable", "cornerRadius"] +- ["Ps8Hashable", "descLabel"] +- ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "dismissViewControllerAnimated"] +- !private ["Ps8Hashable", "dispatch_after"] +- !private ["Ps8Hashable", "dispatch_get_main_queue"] +- !private ["Ps8Hashable", "dispatch_time"] +- ["Ps8Hashable", "handleTap"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "layer"] +- ["Ps8Hashable", "popupView"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "view"] +- ["Ps8Hashable", "viewDidAppear"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Vs5Int64", "init"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["PSo8NSCoding", "DISPATCH_TIME_NOW"] +- !private ["PSo8NSCoding", "Double"] +- !private ["PSo8NSCoding", "Int64"] +- !private ["PSo8NSCoding", "NSEC_PER_SEC"] +- !private ["PSo8NSCoding", "UITapGestureRecognizer"] +- ["PSo8NSCoding", "actionLabel"] +- ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "addGestureRecognizer"] +- !private ["PSo8NSCoding", "clipsToBounds"] +- !private ["PSo8NSCoding", "cornerRadius"] +- ["PSo8NSCoding", "descLabel"] +- ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "dismissViewControllerAnimated"] +- !private ["PSo8NSCoding", "dispatch_after"] +- !private ["PSo8NSCoding", "dispatch_get_main_queue"] +- !private ["PSo8NSCoding", "dispatch_time"] +- ["PSo8NSCoding", "handleTap"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "layer"] +- ["PSo8NSCoding", "popupView"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "view"] +- ["PSo8NSCoding", "viewDidAppear"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", ""] +- !private ["PSo26NSExtensionRequestHandling", "DISPATCH_TIME_NOW"] +- !private ["PSo26NSExtensionRequestHandling", "Double"] +- !private ["PSo26NSExtensionRequestHandling", "Int64"] +- !private ["PSo26NSExtensionRequestHandling", "NSEC_PER_SEC"] +- !private ["PSo26NSExtensionRequestHandling", "UITapGestureRecognizer"] +- ["PSo26NSExtensionRequestHandling", "actionLabel"] +- ["PSo26NSExtensionRequestHandling", "actionStr"] +- ["PSo26NSExtensionRequestHandling", "descLabel"] +- ["PSo26NSExtensionRequestHandling", "descStr"] +- !private ["PSo26NSExtensionRequestHandling", "dismissViewControllerAnimated"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_after"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_get_main_queue"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_time"] +- ["PSo26NSExtensionRequestHandling", "handleTap"] +- ["PSo26NSExtensionRequestHandling", "init"] +- ["PSo26NSExtensionRequestHandling", "popupView"] +- !private ["PSo26NSExtensionRequestHandling", "view"] +- ["PSo26NSExtensionRequestHandling", "viewDidAppear"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", ""] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "DISPATCH_TIME_NOW"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Int64"] +- !private ["CSo8NSObject", "NSEC_PER_SEC"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UILabel"] +- ["CSo8NSObject", "UITapGestureRecognizer"] +- ["CSo8NSObject", "UIView"] +- ["CSo8NSObject", "actionLabel"] +- ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "addGestureRecognizer"] +- !private ["CSo8NSObject", "clipsToBounds"] +- !private ["CSo8NSObject", "cornerRadius"] +- ["CSo8NSObject", "descLabel"] +- ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "dismissViewControllerAnimated"] +- !private ["CSo8NSObject", "dispatch_after"] +- !private ["CSo8NSObject", "dispatch_get_main_queue"] +- !private ["CSo8NSObject", "dispatch_time"] +- ["CSo8NSObject", "handleTap"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "layer"] +- ["CSo8NSObject", "popupView"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "view"] +- ["CSo8NSObject", "viewDidAppear"] +- ["CSo8NSObject", "viewDidLoad"] +- !private ["PSo16NSObjectProtocol", "DISPATCH_TIME_NOW"] +- !private ["PSo16NSObjectProtocol", "Double"] +- !private ["PSo16NSObjectProtocol", "Int64"] +- !private ["PSo16NSObjectProtocol", "NSEC_PER_SEC"] +- !private ["PSo16NSObjectProtocol", "UITapGestureRecognizer"] +- ["PSo16NSObjectProtocol", "actionLabel"] +- ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "addGestureRecognizer"] +- !private ["PSo16NSObjectProtocol", "clipsToBounds"] +- !private ["PSo16NSObjectProtocol", "cornerRadius"] +- ["PSo16NSObjectProtocol", "descLabel"] +- ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "dismissViewControllerAnimated"] +- !private ["PSo16NSObjectProtocol", "dispatch_after"] +- !private ["PSo16NSObjectProtocol", "dispatch_get_main_queue"] +- !private ["PSo16NSObjectProtocol", "dispatch_time"] +- ["PSo16NSObjectProtocol", "handleTap"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "layer"] +- ["PSo16NSObjectProtocol", "popupView"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "view"] +- ["PSo16NSObjectProtocol", "viewDidAppear"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", ""] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Ps10Strideable", "init"] +- !private ["PSo29UIAccessibilityIdentification", "addGestureRecognizer"] +- !private ["PSo29UIAccessibilityIdentification", "clipsToBounds"] +- !private ["PSo29UIAccessibilityIdentification", "layer"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo12UIAppearance", "addGestureRecognizer"] +- !private ["PSo12UIAppearance", "clipsToBounds"] +- !private ["PSo12UIAppearance", "layer"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo21UIAppearanceContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo21UIAppearanceContainer", "Double"] +- !private ["PSo21UIAppearanceContainer", "Int64"] +- !private ["PSo21UIAppearanceContainer", "NSEC_PER_SEC"] +- !private ["PSo21UIAppearanceContainer", "UITapGestureRecognizer"] +- ["PSo21UIAppearanceContainer", "actionLabel"] +- ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "addGestureRecognizer"] +- !private ["PSo21UIAppearanceContainer", "clipsToBounds"] +- ["PSo21UIAppearanceContainer", "descLabel"] +- ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "dismissViewControllerAnimated"] +- !private ["PSo21UIAppearanceContainer", "dispatch_after"] +- !private ["PSo21UIAppearanceContainer", "dispatch_get_main_queue"] +- !private ["PSo21UIAppearanceContainer", "dispatch_time"] +- ["PSo21UIAppearanceContainer", "handleTap"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "layer"] +- ["PSo21UIAppearanceContainer", "popupView"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "view"] +- ["PSo21UIAppearanceContainer", "viewDidAppear"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["PSo18UIContentContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIContentContainer", "Double"] +- !private ["PSo18UIContentContainer", "Int64"] +- !private ["PSo18UIContentContainer", "NSEC_PER_SEC"] +- !private ["PSo18UIContentContainer", "UITapGestureRecognizer"] +- ["PSo18UIContentContainer", "actionLabel"] +- ["PSo18UIContentContainer", "actionStr"] +- ["PSo18UIContentContainer", "descLabel"] +- ["PSo18UIContentContainer", "descStr"] +- !private ["PSo18UIContentContainer", "dismissViewControllerAnimated"] +- !private ["PSo18UIContentContainer", "dispatch_after"] +- !private ["PSo18UIContentContainer", "dispatch_get_main_queue"] +- !private ["PSo18UIContentContainer", "dispatch_time"] +- ["PSo18UIContentContainer", "handleTap"] +- ["PSo18UIContentContainer", "init"] +- ["PSo18UIContentContainer", "popupView"] +- !private ["PSo18UIContentContainer", "view"] +- ["PSo18UIContentContainer", "viewDidAppear"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "addGestureRecognizer"] +- !private ["PSo17UICoordinateSpace", "clipsToBounds"] +- !private ["PSo17UICoordinateSpace", "layer"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo13UIDynamicItem", "addGestureRecognizer"] +- !private ["PSo13UIDynamicItem", "clipsToBounds"] +- !private ["PSo13UIDynamicItem", "layer"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo18UIFocusEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIFocusEnvironment", "Double"] +- !private ["PSo18UIFocusEnvironment", "Int64"] +- !private ["PSo18UIFocusEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UIFocusEnvironment", "UITapGestureRecognizer"] +- ["PSo18UIFocusEnvironment", "actionLabel"] +- ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "addGestureRecognizer"] +- !private ["PSo18UIFocusEnvironment", "clipsToBounds"] +- ["PSo18UIFocusEnvironment", "descLabel"] +- ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "dismissViewControllerAnimated"] +- !private ["PSo18UIFocusEnvironment", "dispatch_after"] +- !private ["PSo18UIFocusEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UIFocusEnvironment", "dispatch_time"] +- ["PSo18UIFocusEnvironment", "handleTap"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "layer"] +- ["PSo18UIFocusEnvironment", "popupView"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "view"] +- ["PSo18UIFocusEnvironment", "viewDidAppear"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["CSo19UIGestureRecognizer", "init"] +- !private ["CSo7UILabel", "text"] +- ["CSo11UIResponder", "Bool"] +- !private ["CSo11UIResponder", "DISPATCH_TIME_NOW"] +- !private ["CSo11UIResponder", "Double"] +- !private ["CSo11UIResponder", "Int64"] +- !private ["CSo11UIResponder", "NSEC_PER_SEC"] +- ["CSo11UIResponder", "String"] +- ["CSo11UIResponder", "UILabel"] +- ["CSo11UIResponder", "UITapGestureRecognizer"] +- ["CSo11UIResponder", "UIView"] +- ["CSo11UIResponder", "actionLabel"] +- ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "addGestureRecognizer"] +- !private ["CSo11UIResponder", "clipsToBounds"] +- ["CSo11UIResponder", "descLabel"] +- ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "dismissViewControllerAnimated"] +- !private ["CSo11UIResponder", "dispatch_after"] +- !private ["CSo11UIResponder", "dispatch_get_main_queue"] +- !private ["CSo11UIResponder", "dispatch_time"] +- ["CSo11UIResponder", "handleTap"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "layer"] +- ["CSo11UIResponder", "popupView"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "view"] +- ["CSo11UIResponder", "viewDidAppear"] +- ["CSo11UIResponder", "viewDidLoad"] +- !private ["PSo16UIStateRestoring", "DISPATCH_TIME_NOW"] +- !private ["PSo16UIStateRestoring", "Double"] +- !private ["PSo16UIStateRestoring", "Int64"] +- !private ["PSo16UIStateRestoring", "NSEC_PER_SEC"] +- !private ["PSo16UIStateRestoring", "UITapGestureRecognizer"] +- ["PSo16UIStateRestoring", "actionLabel"] +- ["PSo16UIStateRestoring", "actionStr"] +- ["PSo16UIStateRestoring", "descLabel"] +- ["PSo16UIStateRestoring", "descStr"] +- !private ["PSo16UIStateRestoring", "dismissViewControllerAnimated"] +- !private ["PSo16UIStateRestoring", "dispatch_after"] +- !private ["PSo16UIStateRestoring", "dispatch_get_main_queue"] +- !private ["PSo16UIStateRestoring", "dispatch_time"] +- ["PSo16UIStateRestoring", "handleTap"] +- ["PSo16UIStateRestoring", "init"] +- ["PSo16UIStateRestoring", "popupView"] +- !private ["PSo16UIStateRestoring", "view"] +- ["PSo16UIStateRestoring", "viewDidAppear"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo22UITapGestureRecognizer", "init"] +- !private ["PSo18UITraitEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UITraitEnvironment", "Double"] +- !private ["PSo18UITraitEnvironment", "Int64"] +- !private ["PSo18UITraitEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UITraitEnvironment", "UITapGestureRecognizer"] +- ["PSo18UITraitEnvironment", "actionLabel"] +- ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "addGestureRecognizer"] +- !private ["PSo18UITraitEnvironment", "clipsToBounds"] +- ["PSo18UITraitEnvironment", "descLabel"] +- ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "dismissViewControllerAnimated"] +- !private ["PSo18UITraitEnvironment", "dispatch_after"] +- !private ["PSo18UITraitEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UITraitEnvironment", "dispatch_time"] +- ["PSo18UITraitEnvironment", "handleTap"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "layer"] +- ["PSo18UITraitEnvironment", "popupView"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "view"] +- ["PSo18UITraitEnvironment", "viewDidAppear"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "addGestureRecognizer"] +- !private ["CSo6UIView", "clipsToBounds"] +- !private ["CSo6UIView", "layer"] +- !private ["CSo6UIView", "text"] +- ["CSo16UIViewController", "Bool"] +- !private ["CSo16UIViewController", "DISPATCH_TIME_NOW"] +- !private ["CSo16UIViewController", "Double"] +- !private ["CSo16UIViewController", "Int64"] +- !private ["CSo16UIViewController", "NSEC_PER_SEC"] +- ["CSo16UIViewController", "String"] +- ["CSo16UIViewController", "UILabel"] +- ["CSo16UIViewController", "UITapGestureRecognizer"] +- ["CSo16UIViewController", "UIView"] +- ["CSo16UIViewController", "actionLabel"] +- ["CSo16UIViewController", "actionStr"] +- ["CSo16UIViewController", "descLabel"] +- ["CSo16UIViewController", "descStr"] +- !private ["CSo16UIViewController", "dismissViewControllerAnimated"] +- !private ["CSo16UIViewController", "dispatch_after"] +- !private ["CSo16UIViewController", "dispatch_get_main_queue"] +- !private ["CSo16UIViewController", "dispatch_time"] +- ["CSo16UIViewController", "handleTap"] +- ["CSo16UIViewController", "init"] +- ["CSo16UIViewController", "popupView"] +- !private ["CSo16UIViewController", "view"] +- ["CSo16UIViewController", "viewDidAppear"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", ""] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "addGestureRecognizer"] +- !private ["Ps12_Reflectable", "clipsToBounds"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "layer"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "CSo7CALayer" +- !private "PSo13CAMediaTiming" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "Ps16ForwardIndexType" +- "Ps8Hashable" +- !private "SQ" +- !private "Vs5Int64" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- "PSo8NSCoding" +- "PSo26NSExtensionRequestHandling" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Ps21RandomAccessIndexType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Ps10Strideable" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "CSo19UIGestureRecognizer" +- !private "CSo7UILabel" +- "CSo11UIResponder" +- "PSo16UIStateRestoring" +- !private "CSo22UITapGestureRecognizer" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "408a83bd423eed7aa4a0631b909720ca" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftmodule new file mode 100644 index 00000000..811532c3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.d new file mode 100644 index 00000000..605a8e2f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.dia new file mode 100644 index 00000000..9c69b68e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o new file mode 100644 index 00000000..d409e345 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.swiftdeps new file mode 100644 index 00000000..86861034 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.swiftdeps @@ -0,0 +1,662 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "AppDelegate" +provides-nominal: +- "C12MixpanelDemo11AppDelegate" +provides-member: +- ["C12MixpanelDemo11AppDelegate", ""] +provides-dynamic-lookup: +- "window" +- "applicationDidBecomeActive" +- "application" +- "application" +- "application" +- "application" +- "applicationWillTerminate" +depends-top-level: +- "UIResponder" +- "UIApplicationDelegate" +- !private "BooleanLiteralType" +- !private "UIAlertAction" +- "AppDelegate" +- "UIWindow" +- "AnyObject" +- !private "UIUserNotificationSettings" +- "Bool" +- !private "Mixpanel" +- !private "Array" +- !private "StringLiteralType" +- "UIApplication" +- "NSData" +- "NSObject" +- !private "Dictionary" +- !private "String" +- !private "UIAlertController" +- !private "debugPrint" +- "NSError" +depends-member: +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "UIAlertAction"] +- !private ["Ps9AnyObject", "UIAlertController"] +- !private ["Ps9AnyObject", "UIApplication"] +- !private ["Ps9AnyObject", "UIUserNotificationSettings"] +- !private ["Ps9AnyObject", "addAction"] +- !private ["Ps9AnyObject", "addPushDeviceToken"] +- ["Ps9AnyObject", "application"] +- ["Ps9AnyObject", "applicationDidBecomeActive"] +- ["Ps9AnyObject", "applicationDidEnterBackground"] +- ["Ps9AnyObject", "applicationDidFinishLaunching"] +- ["Ps9AnyObject", "applicationDidReceiveMemoryWarning"] +- ["Ps9AnyObject", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9AnyObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9AnyObject", "applicationShouldRequestHealthAuthorization"] +- ["Ps9AnyObject", "applicationSignificantTimeChange"] +- ["Ps9AnyObject", "applicationWillEnterForeground"] +- ["Ps9AnyObject", "applicationWillResignActive"] +- ["Ps9AnyObject", "applicationWillTerminate"] +- !private ["Ps9AnyObject", "debugPrint"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "flushInterval"] +- !private ["Ps9AnyObject", "identify"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "loggingEnabled"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "registerForRemoteNotifications"] +- !private ["Ps9AnyObject", "registerUserNotificationSettings"] +- !private ["Ps9AnyObject", "rootViewController"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "sharedApplication"] +- !private ["Ps9AnyObject", "subscript"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- ["Ps9AnyObject", "window"] +- ["Ps9AnyObject", ""] +- ["C12MixpanelDemo11AppDelegate", "AnyObject"] +- ["C12MixpanelDemo11AppDelegate", "Bool"] +- !private ["C12MixpanelDemo11AppDelegate", "Mixpanel"] +- ["C12MixpanelDemo11AppDelegate", "NSData"] +- ["C12MixpanelDemo11AppDelegate", "NSError"] +- ["C12MixpanelDemo11AppDelegate", "NSObject"] +- !private ["C12MixpanelDemo11AppDelegate", "String"] +- !private ["C12MixpanelDemo11AppDelegate", "UIAlertAction"] +- !private ["C12MixpanelDemo11AppDelegate", "UIAlertController"] +- ["C12MixpanelDemo11AppDelegate", "UIApplication"] +- !private ["C12MixpanelDemo11AppDelegate", "UIUserNotificationSettings"] +- ["C12MixpanelDemo11AppDelegate", "UIWindow"] +- ["C12MixpanelDemo11AppDelegate", "application"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidBecomeActive"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidEnterBackground"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidFinishLaunching"] +- ["C12MixpanelDemo11AppDelegate", "applicationDidReceiveMemoryWarning"] +- ["C12MixpanelDemo11AppDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["C12MixpanelDemo11AppDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["C12MixpanelDemo11AppDelegate", "applicationShouldRequestHealthAuthorization"] +- ["C12MixpanelDemo11AppDelegate", "applicationSignificantTimeChange"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillEnterForeground"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillResignActive"] +- ["C12MixpanelDemo11AppDelegate", "applicationWillTerminate"] +- !private ["C12MixpanelDemo11AppDelegate", "debugPrint"] +- ["C12MixpanelDemo11AppDelegate", "deinit"] +- ["C12MixpanelDemo11AppDelegate", "init"] +- ["C12MixpanelDemo11AppDelegate", "window"] +- !private ["Ps23ArrayLiteralConvertible", "Alert"] +- !private ["Ps23ArrayLiteralConvertible", "Badge"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Sound"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "UIAlertAction"] +- !private ["Ps11CVarArgType", "UIAlertController"] +- !private ["Ps11CVarArgType", "UIApplication"] +- !private ["Ps11CVarArgType", "UIUserNotificationSettings"] +- !private ["Ps11CVarArgType", "addAction"] +- ["Ps11CVarArgType", "application"] +- ["Ps11CVarArgType", "applicationDidBecomeActive"] +- ["Ps11CVarArgType", "applicationDidEnterBackground"] +- ["Ps11CVarArgType", "applicationDidFinishLaunching"] +- ["Ps11CVarArgType", "applicationDidReceiveMemoryWarning"] +- ["Ps11CVarArgType", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps11CVarArgType", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps11CVarArgType", "applicationShouldRequestHealthAuthorization"] +- ["Ps11CVarArgType", "applicationSignificantTimeChange"] +- ["Ps11CVarArgType", "applicationWillEnterForeground"] +- ["Ps11CVarArgType", "applicationWillResignActive"] +- ["Ps11CVarArgType", "applicationWillTerminate"] +- !private ["Ps11CVarArgType", "debugPrint"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "presentViewController"] +- !private ["Ps11CVarArgType", "registerForRemoteNotifications"] +- !private ["Ps11CVarArgType", "registerUserNotificationSettings"] +- !private ["Ps11CVarArgType", "rootViewController"] +- !private ["Ps11CVarArgType", "sharedApplication"] +- ["Ps11CVarArgType", "window"] +- ["Ps11CVarArgType", ""] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- ["Ps28CustomDebugStringConvertible", "Some"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIAlertAction"] +- !private ["Ps28CustomDebugStringConvertible", "UIAlertController"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplication"] +- !private ["Ps28CustomDebugStringConvertible", "UIUserNotificationSettings"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "addAction"] +- ["Ps28CustomDebugStringConvertible", "application"] +- ["Ps28CustomDebugStringConvertible", "applicationDidBecomeActive"] +- ["Ps28CustomDebugStringConvertible", "applicationDidEnterBackground"] +- ["Ps28CustomDebugStringConvertible", "applicationDidFinishLaunching"] +- ["Ps28CustomDebugStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps28CustomDebugStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps28CustomDebugStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps28CustomDebugStringConvertible", "applicationSignificantTimeChange"] +- ["Ps28CustomDebugStringConvertible", "applicationWillEnterForeground"] +- ["Ps28CustomDebugStringConvertible", "applicationWillResignActive"] +- ["Ps28CustomDebugStringConvertible", "applicationWillTerminate"] +- !private ["Ps28CustomDebugStringConvertible", "debugPrint"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "flushInterval"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "loggingEnabled"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "registerForRemoteNotifications"] +- !private ["Ps28CustomDebugStringConvertible", "registerUserNotificationSettings"] +- !private ["Ps28CustomDebugStringConvertible", "rootViewController"] +- !private ["Ps28CustomDebugStringConvertible", "sharedApplication"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- ["Ps28CustomDebugStringConvertible", "window"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIAlertAction"] +- !private ["Ps23CustomStringConvertible", "UIAlertController"] +- !private ["Ps23CustomStringConvertible", "UIApplication"] +- !private ["Ps23CustomStringConvertible", "UIUserNotificationSettings"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "addAction"] +- ["Ps23CustomStringConvertible", "application"] +- ["Ps23CustomStringConvertible", "applicationDidBecomeActive"] +- ["Ps23CustomStringConvertible", "applicationDidEnterBackground"] +- ["Ps23CustomStringConvertible", "applicationDidFinishLaunching"] +- ["Ps23CustomStringConvertible", "applicationDidReceiveMemoryWarning"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps23CustomStringConvertible", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps23CustomStringConvertible", "applicationShouldRequestHealthAuthorization"] +- ["Ps23CustomStringConvertible", "applicationSignificantTimeChange"] +- ["Ps23CustomStringConvertible", "applicationWillEnterForeground"] +- ["Ps23CustomStringConvertible", "applicationWillResignActive"] +- ["Ps23CustomStringConvertible", "applicationWillTerminate"] +- !private ["Ps23CustomStringConvertible", "debugPrint"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- !private ["Ps23CustomStringConvertible", "registerForRemoteNotifications"] +- !private ["Ps23CustomStringConvertible", "registerUserNotificationSettings"] +- !private ["Ps23CustomStringConvertible", "rootViewController"] +- !private ["Ps23CustomStringConvertible", "sharedApplication"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "window"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Ps9Equatable", "Alert"] +- !private ["Ps9Equatable", "Badge"] +- !private ["Ps9Equatable", "Default"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "Sound"] +- !private ["Ps9Equatable", "UIAlertAction"] +- !private ["Ps9Equatable", "UIAlertController"] +- !private ["Ps9Equatable", "UIApplication"] +- !private ["Ps9Equatable", "UIUserNotificationSettings"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "addAction"] +- ["Ps9Equatable", "application"] +- ["Ps9Equatable", "applicationDidBecomeActive"] +- ["Ps9Equatable", "applicationDidEnterBackground"] +- ["Ps9Equatable", "applicationDidFinishLaunching"] +- ["Ps9Equatable", "applicationDidReceiveMemoryWarning"] +- ["Ps9Equatable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps9Equatable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps9Equatable", "applicationShouldRequestHealthAuthorization"] +- ["Ps9Equatable", "applicationSignificantTimeChange"] +- ["Ps9Equatable", "applicationWillEnterForeground"] +- ["Ps9Equatable", "applicationWillResignActive"] +- ["Ps9Equatable", "applicationWillTerminate"] +- !private ["Ps9Equatable", "debugPrint"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "presentViewController"] +- !private ["Ps9Equatable", "registerForRemoteNotifications"] +- !private ["Ps9Equatable", "registerUserNotificationSettings"] +- !private ["Ps9Equatable", "rootViewController"] +- !private ["Ps9Equatable", "sharedApplication"] +- ["Ps9Equatable", "window"] +- ["Ps9Equatable", ""] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "flushInterval"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "loggingEnabled"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "Alert"] +- !private ["Ps8Hashable", "Default"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "UIAlertAction"] +- !private ["Ps8Hashable", "UIAlertController"] +- !private ["Ps8Hashable", "UIApplication"] +- !private ["Ps8Hashable", "UIUserNotificationSettings"] +- !private ["Ps8Hashable", "addAction"] +- ["Ps8Hashable", "application"] +- ["Ps8Hashable", "applicationDidBecomeActive"] +- ["Ps8Hashable", "applicationDidEnterBackground"] +- ["Ps8Hashable", "applicationDidFinishLaunching"] +- ["Ps8Hashable", "applicationDidReceiveMemoryWarning"] +- ["Ps8Hashable", "applicationProtectedDataDidBecomeAvailable"] +- ["Ps8Hashable", "applicationProtectedDataWillBecomeUnavailable"] +- ["Ps8Hashable", "applicationShouldRequestHealthAuthorization"] +- ["Ps8Hashable", "applicationSignificantTimeChange"] +- ["Ps8Hashable", "applicationWillEnterForeground"] +- ["Ps8Hashable", "applicationWillResignActive"] +- ["Ps8Hashable", "applicationWillTerminate"] +- !private ["Ps8Hashable", "debugPrint"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "presentViewController"] +- !private ["Ps8Hashable", "registerForRemoteNotifications"] +- !private ["Ps8Hashable", "registerUserNotificationSettings"] +- !private ["Ps8Hashable", "rootViewController"] +- !private ["Ps8Hashable", "sharedApplication"] +- ["Ps8Hashable", "window"] +- ["Ps8Hashable", ""] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "flushInterval"] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "loggingEnabled"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- !private ["PSo8NSCoding", "addAction"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "presentViewController"] +- !private ["PSo8NSCoding", "rootViewController"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo26NSExtensionRequestHandling", "addAction"] +- !private ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["CSo8NSObject", "AnyObject"] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "NSData"] +- ["CSo8NSObject", "NSError"] +- ["CSo8NSObject", "NSObject"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "UIAlertAction"] +- !private ["CSo8NSObject", "UIAlertController"] +- ["CSo8NSObject", "UIApplication"] +- !private ["CSo8NSObject", "UIUserNotificationSettings"] +- ["CSo8NSObject", "UIWindow"] +- !private ["CSo8NSObject", "addAction"] +- ["CSo8NSObject", "application"] +- ["CSo8NSObject", "applicationDidBecomeActive"] +- ["CSo8NSObject", "applicationDidEnterBackground"] +- ["CSo8NSObject", "applicationDidFinishLaunching"] +- ["CSo8NSObject", "applicationDidReceiveMemoryWarning"] +- ["CSo8NSObject", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo8NSObject", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo8NSObject", "applicationShouldRequestHealthAuthorization"] +- ["CSo8NSObject", "applicationSignificantTimeChange"] +- ["CSo8NSObject", "applicationWillEnterForeground"] +- ["CSo8NSObject", "applicationWillResignActive"] +- ["CSo8NSObject", "applicationWillTerminate"] +- !private ["CSo8NSObject", "debugPrint"] +- !private ["CSo8NSObject", "deinit"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "presentViewController"] +- !private ["CSo8NSObject", "registerForRemoteNotifications"] +- !private ["CSo8NSObject", "registerUserNotificationSettings"] +- !private ["CSo8NSObject", "rootViewController"] +- !private ["CSo8NSObject", "sharedApplication"] +- ["CSo8NSObject", "window"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "UIAlertAction"] +- !private ["PSo16NSObjectProtocol", "UIAlertController"] +- !private ["PSo16NSObjectProtocol", "UIApplication"] +- !private ["PSo16NSObjectProtocol", "UIUserNotificationSettings"] +- !private ["PSo16NSObjectProtocol", "addAction"] +- ["PSo16NSObjectProtocol", "application"] +- ["PSo16NSObjectProtocol", "applicationDidBecomeActive"] +- ["PSo16NSObjectProtocol", "applicationDidEnterBackground"] +- ["PSo16NSObjectProtocol", "applicationDidFinishLaunching"] +- ["PSo16NSObjectProtocol", "applicationDidReceiveMemoryWarning"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo16NSObjectProtocol", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo16NSObjectProtocol", "applicationShouldRequestHealthAuthorization"] +- ["PSo16NSObjectProtocol", "applicationSignificantTimeChange"] +- ["PSo16NSObjectProtocol", "applicationWillEnterForeground"] +- ["PSo16NSObjectProtocol", "applicationWillResignActive"] +- ["PSo16NSObjectProtocol", "applicationWillTerminate"] +- !private ["PSo16NSObjectProtocol", "debugPrint"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- !private ["PSo16NSObjectProtocol", "registerForRemoteNotifications"] +- !private ["PSo16NSObjectProtocol", "registerUserNotificationSettings"] +- !private ["PSo16NSObjectProtocol", "rootViewController"] +- !private ["PSo16NSObjectProtocol", "sharedApplication"] +- ["PSo16NSObjectProtocol", "window"] +- ["PSo16NSObjectProtocol", ""] +- ["Ps21NilLiteralConvertible", "Some"] +- !private ["Ps13OptionSetType", "Alert"] +- !private ["Ps13OptionSetType", "Badge"] +- !private ["Ps13OptionSetType", "Element"] +- !private ["Ps13OptionSetType", "Sound"] +- ["Sq", "Some"] +- !private ["Sq", "deinit"] +- !private ["C8Mixpanel6People", "addPushDeviceToken"] +- !private ["C8Mixpanel6People", "set"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps16RawRepresentable", "Alert"] +- !private ["Ps16RawRepresentable", "Badge"] +- !private ["Ps16RawRepresentable", "Default"] +- !private ["Ps16RawRepresentable", "Element"] +- !private ["Ps16RawRepresentable", "Sound"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps14SetAlgebraType", "Alert"] +- !private ["Ps14SetAlgebraType", "Badge"] +- !private ["Ps14SetAlgebraType", "Element"] +- !private ["Ps14SetAlgebraType", "Sound"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["PSo29UIAccessibilityIdentification", "rootViewController"] +- !private ["CSo13UIAlertAction", "init"] +- !private ["OSC18UIAlertActionStyle", "Default"] +- !private ["CSo17UIAlertController", "addAction"] +- !private ["CSo17UIAlertController", "init"] +- !private ["OSC22UIAlertControllerStyle", "Alert"] +- !private ["PSo12UIAppearance", "rootViewController"] +- !private ["PSo21UIAppearanceContainer", "addAction"] +- !private ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- !private ["PSo21UIAppearanceContainer", "rootViewController"] +- !private ["CSo13UIApplication", "registerForRemoteNotifications"] +- !private ["CSo13UIApplication", "registerUserNotificationSettings"] +- !private ["CSo13UIApplication", "sharedApplication"] +- !private ["PSo21UIApplicationDelegate", "Mixpanel"] +- !private ["PSo21UIApplicationDelegate", "UIAlertAction"] +- !private ["PSo21UIApplicationDelegate", "UIAlertController"] +- !private ["PSo21UIApplicationDelegate", "UIApplication"] +- !private ["PSo21UIApplicationDelegate", "UIUserNotificationSettings"] +- ["PSo21UIApplicationDelegate", "application"] +- ["PSo21UIApplicationDelegate", "applicationDidBecomeActive"] +- ["PSo21UIApplicationDelegate", "applicationDidEnterBackground"] +- ["PSo21UIApplicationDelegate", "applicationDidFinishLaunching"] +- ["PSo21UIApplicationDelegate", "applicationDidReceiveMemoryWarning"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataDidBecomeAvailable"] +- ["PSo21UIApplicationDelegate", "applicationProtectedDataWillBecomeUnavailable"] +- ["PSo21UIApplicationDelegate", "applicationShouldRequestHealthAuthorization"] +- ["PSo21UIApplicationDelegate", "applicationSignificantTimeChange"] +- ["PSo21UIApplicationDelegate", "applicationWillEnterForeground"] +- ["PSo21UIApplicationDelegate", "applicationWillResignActive"] +- ["PSo21UIApplicationDelegate", "applicationWillTerminate"] +- !private ["PSo21UIApplicationDelegate", "debugPrint"] +- ["PSo21UIApplicationDelegate", "window"] +- ["PSo21UIApplicationDelegate", ""] +- !private ["PSo18UIContentContainer", "addAction"] +- !private ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- !private ["PSo17UICoordinateSpace", "rootViewController"] +- !private ["PSo13UIDynamicItem", "rootViewController"] +- !private ["PSo18UIFocusEnvironment", "addAction"] +- !private ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- !private ["PSo18UIFocusEnvironment", "rootViewController"] +- ["CSo11UIResponder", "AnyObject"] +- ["CSo11UIResponder", "Bool"] +- !private ["CSo11UIResponder", "Mixpanel"] +- ["CSo11UIResponder", "NSData"] +- ["CSo11UIResponder", "NSError"] +- ["CSo11UIResponder", "NSObject"] +- !private ["CSo11UIResponder", "String"] +- !private ["CSo11UIResponder", "UIAlertAction"] +- !private ["CSo11UIResponder", "UIAlertController"] +- ["CSo11UIResponder", "UIApplication"] +- !private ["CSo11UIResponder", "UIUserNotificationSettings"] +- ["CSo11UIResponder", "UIWindow"] +- !private ["CSo11UIResponder", "addAction"] +- ["CSo11UIResponder", "application"] +- ["CSo11UIResponder", "applicationDidBecomeActive"] +- ["CSo11UIResponder", "applicationDidEnterBackground"] +- ["CSo11UIResponder", "applicationDidFinishLaunching"] +- ["CSo11UIResponder", "applicationDidReceiveMemoryWarning"] +- ["CSo11UIResponder", "applicationProtectedDataDidBecomeAvailable"] +- ["CSo11UIResponder", "applicationProtectedDataWillBecomeUnavailable"] +- ["CSo11UIResponder", "applicationShouldRequestHealthAuthorization"] +- ["CSo11UIResponder", "applicationSignificantTimeChange"] +- ["CSo11UIResponder", "applicationWillEnterForeground"] +- ["CSo11UIResponder", "applicationWillResignActive"] +- ["CSo11UIResponder", "applicationWillTerminate"] +- !private ["CSo11UIResponder", "debugPrint"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "presentViewController"] +- !private ["CSo11UIResponder", "registerForRemoteNotifications"] +- !private ["CSo11UIResponder", "registerUserNotificationSettings"] +- !private ["CSo11UIResponder", "rootViewController"] +- !private ["CSo11UIResponder", "sharedApplication"] +- ["CSo11UIResponder", "window"] +- ["CSo11UIResponder", ""] +- !private ["PSo16UIStateRestoring", "addAction"] +- !private ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- !private ["PSo18UITraitEnvironment", "addAction"] +- !private ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- !private ["PSo18UITraitEnvironment", "rootViewController"] +- !private ["CSo26UIUserNotificationSettings", "init"] +- !private ["VSC22UIUserNotificationType", "Alert"] +- !private ["VSC22UIUserNotificationType", "Badge"] +- !private ["VSC22UIUserNotificationType", "Element"] +- !private ["VSC22UIUserNotificationType", "Sound"] +- !private ["CSo6UIView", "rootViewController"] +- !private ["CSo16UIViewController", "addAction"] +- !private ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "presentViewController"] +- !private ["CSo8UIWindow", "rootViewController"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- ["Ps12_Reflectable", "Some"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "rootViewController"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- "Ps9AnyObject" +- "C12MixpanelDemo11AppDelegate" +- !private "Ps23ArrayLiteralConvertible" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- "Ps11CVarArgType" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- "Ps9Equatable" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "PSo26NSExtensionRequestHandling" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- "Ps21NilLiteralConvertible" +- !private "Ps13OptionSetType" +- "Sq" +- !private "C8Mixpanel6People" +- !private "Ps21RandomAccessIndexType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps14SetAlgebraType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Strideable" +- !private "SS" +- !private "PSo29UIAccessibilityIdentification" +- !private "CSo13UIAlertAction" +- !private "OSC18UIAlertActionStyle" +- !private "CSo17UIAlertController" +- !private "OSC22UIAlertControllerStyle" +- !private "PSo12UIAppearance" +- !private "PSo21UIAppearanceContainer" +- !private "CSo13UIApplication" +- "PSo21UIApplicationDelegate" +- !private "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- !private "PSo18UIFocusEnvironment" +- "CSo11UIResponder" +- !private "PSo16UIStateRestoring" +- !private "PSo18UITraitEnvironment" +- !private "CSo26UIUserNotificationSettings" +- !private "VSC22UIUserNotificationType" +- !private "CSo6UIView" +- !private "CSo16UIViewController" +- !private "CSo8UIWindow" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "subscript" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "d6f9ae40a13c6b959f30d7d6a41595a5" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule new file mode 100644 index 00000000..856ba00c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-OutputFileMap.json new file mode 100644 index 00000000..1837a7b1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/MixpanelDemo-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/AppDelegate.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/TrackingViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/UtilityViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/ActionCompleteViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/PeopleViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h new file mode 100644 index 00000000..79c3be14 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-master.swiftdeps new file mode 100644 index 00000000..7f687f44 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-master.swiftdeps @@ -0,0 +1,9 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "4a01fe36efd4547988b015a4755f0287" +build_time: [522881554, 285480000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift": [522872641, 0] diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.LinkFileList new file mode 100644 index 00000000..06f03312 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule new file mode 100644 index 00000000..b639c132 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo_dependency_info.dat b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo_dependency_info.dat new file mode 100644 index 00000000..dd782f36 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.d new file mode 100644 index 00000000..833aa25a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o new file mode 100644 index 00000000..0e4270d4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.swiftdeps new file mode 100644 index 00000000..b89dd5cc --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.swiftdeps @@ -0,0 +1,1325 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "PeopleViewController" +provides-nominal: +- "C12MixpanelDemo20PeopleViewController" +provides-member: +- ["C12MixpanelDemo20PeopleViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +- "viewDidLoad" +depends-top-level: +- !private "UnicodeScalarType" +- !private "BooleanLiteralType" +- !private "Dictionary" +- "Int" +- !private "UIModalPresentationStyle" +- !private "ActionCompleteViewController" +- !private "UIModalTransitionStyle" +- "UIViewController" +- "PeopleViewController" +- "NSIndexPath" +- "UITableView" +- !private "UIColor" +- "UITableViewDelegate" +- !private "NSDate" +- !private "Mixpanel" +- "UITableViewDataSource" +- !private "NSURL" +- "StringLiteralType" +- "Array" +- !private "NSNull" +- !private "Properties" +- "UITableViewCell" +- !private "~=" +depends-member: +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "clearCharges"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "deleteUser"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "increment"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "presentViewController"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "setOnce"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- !private ["Ps9AnyObject", "trackCharge"] +- !private ["Ps9AnyObject", "union"] +- !private ["Ps9AnyObject", "unset"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["PSo8CAAction", "init"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "NSDate"] +- !private ["PSo8NSCoding", "NSNull"] +- !private ["PSo8NSCoding", "NSURL"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["CSo6NSDate", "init"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "NSDate"] +- !private ["PSo26NSExtensionRequestHandling", "NSNull"] +- !private ["PSo26NSExtensionRequestHandling", "NSURL"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo6NSNull", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDate"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel6People", "append"] +- !private ["C8Mixpanel6People", "clearCharges"] +- !private ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "setOnce"] +- !private ["C8Mixpanel6People", "trackCharge"] +- !private ["C8Mixpanel6People", "union"] +- !private ["C8Mixpanel6People", "unset"] +- !private ["C12MixpanelDemo20PeopleViewController", "ActionCompleteViewController"] +- ["C12MixpanelDemo20PeopleViewController", "Int"] +- !private ["C12MixpanelDemo20PeopleViewController", "Mixpanel"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSDate"] +- ["C12MixpanelDemo20PeopleViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSNull"] +- !private ["C12MixpanelDemo20PeopleViewController", "NSURL"] +- !private ["C12MixpanelDemo20PeopleViewController", "Properties"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIColor"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo20PeopleViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo20PeopleViewController", "UITableView"] +- ["C12MixpanelDemo20PeopleViewController", "UITableViewCell"] +- ["C12MixpanelDemo20PeopleViewController", "deinit"] +- ["C12MixpanelDemo20PeopleViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo20PeopleViewController", "init"] +- ["C12MixpanelDemo20PeopleViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo20PeopleViewController", "presentViewController"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo20PeopleViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo20PeopleViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo20PeopleViewController", "storyboard"] +- ["C12MixpanelDemo20PeopleViewController", "tableView"] +- ["C12MixpanelDemo20PeopleViewController", "tableViewItems"] +- ["C12MixpanelDemo20PeopleViewController", "viewDidLoad"] +- ["C12MixpanelDemo20PeopleViewController", "viewForZoomingInScrollView"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "NSDate"] +- !private ["PSo21UIAppearanceContainer", "NSNull"] +- !private ["PSo21UIAppearanceContainer", "NSURL"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "NSDate"] +- !private ["PSo18UIContentContainer", "NSNull"] +- !private ["PSo18UIContentContainer", "NSURL"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "NSDate"] +- !private ["PSo18UIFocusEnvironment", "NSNull"] +- !private ["PSo18UIFocusEnvironment", "NSURL"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Mixpanel"] +- !private ["CSo11UIResponder", "NSDate"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "NSNull"] +- !private ["CSo11UIResponder", "NSURL"] +- !private ["CSo11UIResponder", "Properties"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "NSDate"] +- !private ["PSo20UIScrollViewDelegate", "NSNull"] +- !private ["PSo20UIScrollViewDelegate", "NSURL"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "NSDate"] +- !private ["PSo16UIStateRestoring", "NSNull"] +- !private ["PSo16UIStateRestoring", "NSURL"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "NSDate"] +- !private ["PSo21UITableViewDataSource", "NSNull"] +- !private ["PSo21UITableViewDataSource", "NSURL"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "NSDate"] +- !private ["PSo19UITableViewDelegate", "NSNull"] +- !private ["PSo19UITableViewDelegate", "NSURL"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "NSDate"] +- !private ["PSo18UITraitEnvironment", "NSNull"] +- !private ["PSo18UITraitEnvironment", "NSURL"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Mixpanel"] +- !private ["CSo16UIViewController", "NSDate"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "NSNull"] +- !private ["CSo16UIViewController", "NSURL"] +- !private ["CSo16UIViewController", "Properties"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "PSo8CAAction" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo6NSNull" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo7NSValue" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- "C12MixpanelDemo20PeopleViewController" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "b080b3342f9c214e6a1473ff4151a857" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftmodule new file mode 100644 index 00000000..1fd91bbb Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.d new file mode 100644 index 00000000..542e8973 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o new file mode 100644 index 00000000..941e064a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.swiftdeps new file mode 100644 index 00000000..b111dd22 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.swiftdeps @@ -0,0 +1,1529 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "TrackingViewController" +provides-nominal: +- "C12MixpanelDemo22TrackingViewController" +provides-member: +- ["C12MixpanelDemo22TrackingViewController", ""] +provides-dynamic-lookup: +- "tableView" +- "tableView" +- "tableView" +- "tableView" +- "viewDidLoad" +- "tableViewItems" +depends-top-level: +- !private "*" +- !private "ActionCompleteViewController" +- !private "UIModalTransitionStyle" +- !private "NSEC_PER_SEC" +- "Int" +- !private "Double" +- "Array" +- !private "Mixpanel" +- "TrackingViewController" +- !private "BooleanLiteralType" +- !private "DISPATCH_TIME_NOW" +- "NSIndexPath" +- !private "+=" +- !private "dispatch_time" +- !private "Int64" +- !private "NSDate" +- "UITableViewCell" +- !private "UIModalPresentationStyle" +- !private "dispatch_get_main_queue" +- !private "UnicodeScalarType" +- !private "dispatch_after" +- !private "NSURL" +- !private "Dictionary" +- !private "~=" +- "UITableViewDataSource" +- !private "NSNull" +- "UITableViewDelegate" +- !private "UIColor" +- "UIViewController" +- "StringLiteralType" +- "UITableView" +depends-member: +- !private ["Ps16AbsoluteValuable", "init"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "DISPATCH_TIME_NOW"] +- !private ["Ps9AnyObject", "Double"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "Int64"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSEC_PER_SEC"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "clearTimedEvents"] +- !private ["Ps9AnyObject", "currentSuperProperties"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "dispatch_after"] +- !private ["Ps9AnyObject", "dispatch_get_main_queue"] +- !private ["Ps9AnyObject", "dispatch_time"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["PSo8CAAction", "init"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "DISPATCH_TIME_NOW"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Double"] +- !private ["Ps11CVarArgType", "Element"] +- !private ["Ps11CVarArgType", "Int64"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSEC_PER_SEC"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "Value"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- !private ["Ps11CVarArgType", "dispatch_after"] +- !private ["Ps11CVarArgType", "dispatch_get_main_queue"] +- !private ["Ps11CVarArgType", "dispatch_time"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps28CustomDebugStringConvertible", "Double"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Int64"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "clearSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearTimedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_after"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_time"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperPropertiesOnce"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "unregisterSuperProperty"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "DISPATCH_TIME_NOW"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Double"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "Int64"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSEC_PER_SEC"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps23CustomStringConvertible", "dispatch_after"] +- !private ["Ps23CustomStringConvertible", "dispatch_get_main_queue"] +- !private ["Ps23CustomStringConvertible", "dispatch_time"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Sd", "deinit"] +- !private ["Sd", "init"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "DISPATCH_TIME_NOW"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Double"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Int64"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSEC_PER_SEC"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "Value"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- !private ["Ps9Equatable", "dispatch_after"] +- !private ["Ps9Equatable", "dispatch_get_main_queue"] +- !private ["Ps9Equatable", "dispatch_time"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "init"] +- !private ["Ps17FloatingPointType", "init"] +- !private ["P8Mixpanel13FlushDelegate", "clearSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "clearTimedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "currentSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperPropertiesOnce"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "unregisterSuperProperty"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "DISPATCH_TIME_NOW"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Double"] +- !private ["Ps8Hashable", "Element"] +- !private ["Ps8Hashable", "Int64"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSEC_PER_SEC"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "Value"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- !private ["Ps8Hashable", "dispatch_after"] +- !private ["Ps8Hashable", "dispatch_get_main_queue"] +- !private ["Ps8Hashable", "dispatch_time"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs5Int64", "init"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "init"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "clearTimedEvents"] +- !private ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "DISPATCH_TIME_NOW"] +- !private ["PSo8NSCoding", "Double"] +- !private ["PSo8NSCoding", "Int64"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "NSDate"] +- !private ["PSo8NSCoding", "NSEC_PER_SEC"] +- !private ["PSo8NSCoding", "NSNull"] +- !private ["PSo8NSCoding", "NSURL"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- !private ["PSo8NSCoding", "dispatch_after"] +- !private ["PSo8NSCoding", "dispatch_get_main_queue"] +- !private ["PSo8NSCoding", "dispatch_time"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["CSo6NSDate", "deinit"] +- !private ["CSo6NSDate", "init"] +- !private ["PSo26NSExtensionRequestHandling", "DISPATCH_TIME_NOW"] +- !private ["PSo26NSExtensionRequestHandling", "Double"] +- !private ["PSo26NSExtensionRequestHandling", "Int64"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "NSDate"] +- !private ["PSo26NSExtensionRequestHandling", "NSEC_PER_SEC"] +- !private ["PSo26NSExtensionRequestHandling", "NSNull"] +- !private ["PSo26NSExtensionRequestHandling", "NSURL"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_after"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_get_main_queue"] +- !private ["PSo26NSExtensionRequestHandling", "dispatch_time"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo6NSNull", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- !private ["CSo8NSObject", "DISPATCH_TIME_NOW"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Element"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Int64"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSDate"] +- !private ["CSo8NSObject", "NSEC_PER_SEC"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "Value"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- !private ["CSo8NSObject", "dispatch_after"] +- !private ["CSo8NSObject", "dispatch_get_main_queue"] +- !private ["CSo8NSObject", "dispatch_time"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "DISPATCH_TIME_NOW"] +- !private ["PSo16NSObjectProtocol", "Double"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "Int64"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSEC_PER_SEC"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "Value"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- !private ["PSo16NSObjectProtocol", "dispatch_after"] +- !private ["PSo16NSObjectProtocol", "dispatch_get_main_queue"] +- !private ["PSo16NSObjectProtocol", "dispatch_time"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "init"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "init"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["C12MixpanelDemo22TrackingViewController", "ActionCompleteViewController"] +- !private ["C12MixpanelDemo22TrackingViewController", "DISPATCH_TIME_NOW"] +- !private ["C12MixpanelDemo22TrackingViewController", "Double"] +- ["C12MixpanelDemo22TrackingViewController", "Int"] +- !private ["C12MixpanelDemo22TrackingViewController", "Int64"] +- !private ["C12MixpanelDemo22TrackingViewController", "Mixpanel"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSDate"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSEC_PER_SEC"] +- ["C12MixpanelDemo22TrackingViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSNull"] +- !private ["C12MixpanelDemo22TrackingViewController", "NSURL"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIColor"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo22TrackingViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo22TrackingViewController", "UITableView"] +- ["C12MixpanelDemo22TrackingViewController", "UITableViewCell"] +- ["C12MixpanelDemo22TrackingViewController", "deinit"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_after"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_get_main_queue"] +- !private ["C12MixpanelDemo22TrackingViewController", "dispatch_time"] +- ["C12MixpanelDemo22TrackingViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo22TrackingViewController", "init"] +- ["C12MixpanelDemo22TrackingViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo22TrackingViewController", "presentViewController"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo22TrackingViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo22TrackingViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo22TrackingViewController", "storyboard"] +- ["C12MixpanelDemo22TrackingViewController", "tableView"] +- ["C12MixpanelDemo22TrackingViewController", "tableViewItems"] +- ["C12MixpanelDemo22TrackingViewController", "viewDidLoad"] +- ["C12MixpanelDemo22TrackingViewController", "viewForZoomingInScrollView"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo21UIAppearanceContainer", "Double"] +- !private ["PSo21UIAppearanceContainer", "Int64"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "NSDate"] +- !private ["PSo21UIAppearanceContainer", "NSEC_PER_SEC"] +- !private ["PSo21UIAppearanceContainer", "NSNull"] +- !private ["PSo21UIAppearanceContainer", "NSURL"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- !private ["PSo21UIAppearanceContainer", "dispatch_after"] +- !private ["PSo21UIAppearanceContainer", "dispatch_get_main_queue"] +- !private ["PSo21UIAppearanceContainer", "dispatch_time"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIContentContainer", "Double"] +- !private ["PSo18UIContentContainer", "Int64"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "NSDate"] +- !private ["PSo18UIContentContainer", "NSEC_PER_SEC"] +- !private ["PSo18UIContentContainer", "NSNull"] +- !private ["PSo18UIContentContainer", "NSURL"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- !private ["PSo18UIContentContainer", "dispatch_after"] +- !private ["PSo18UIContentContainer", "dispatch_get_main_queue"] +- !private ["PSo18UIContentContainer", "dispatch_time"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UIFocusEnvironment", "Double"] +- !private ["PSo18UIFocusEnvironment", "Int64"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "NSDate"] +- !private ["PSo18UIFocusEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UIFocusEnvironment", "NSNull"] +- !private ["PSo18UIFocusEnvironment", "NSURL"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- !private ["PSo18UIFocusEnvironment", "dispatch_after"] +- !private ["PSo18UIFocusEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UIFocusEnvironment", "dispatch_time"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- !private ["CSo11UIResponder", "DISPATCH_TIME_NOW"] +- !private ["CSo11UIResponder", "Double"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Int64"] +- !private ["CSo11UIResponder", "Mixpanel"] +- !private ["CSo11UIResponder", "NSDate"] +- !private ["CSo11UIResponder", "NSEC_PER_SEC"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "NSNull"] +- !private ["CSo11UIResponder", "NSURL"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- !private ["CSo11UIResponder", "dispatch_after"] +- !private ["CSo11UIResponder", "dispatch_get_main_queue"] +- !private ["CSo11UIResponder", "dispatch_time"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "DISPATCH_TIME_NOW"] +- !private ["PSo20UIScrollViewDelegate", "Double"] +- !private ["PSo20UIScrollViewDelegate", "Int64"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "NSDate"] +- !private ["PSo20UIScrollViewDelegate", "NSEC_PER_SEC"] +- !private ["PSo20UIScrollViewDelegate", "NSNull"] +- !private ["PSo20UIScrollViewDelegate", "NSURL"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_after"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_get_main_queue"] +- !private ["PSo20UIScrollViewDelegate", "dispatch_time"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "DISPATCH_TIME_NOW"] +- !private ["PSo16UIStateRestoring", "Double"] +- !private ["PSo16UIStateRestoring", "Int64"] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "NSDate"] +- !private ["PSo16UIStateRestoring", "NSEC_PER_SEC"] +- !private ["PSo16UIStateRestoring", "NSNull"] +- !private ["PSo16UIStateRestoring", "NSURL"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- !private ["PSo16UIStateRestoring", "dispatch_after"] +- !private ["PSo16UIStateRestoring", "dispatch_get_main_queue"] +- !private ["PSo16UIStateRestoring", "dispatch_time"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "DISPATCH_TIME_NOW"] +- !private ["PSo21UITableViewDataSource", "Double"] +- !private ["PSo21UITableViewDataSource", "Int64"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "NSDate"] +- !private ["PSo21UITableViewDataSource", "NSEC_PER_SEC"] +- !private ["PSo21UITableViewDataSource", "NSNull"] +- !private ["PSo21UITableViewDataSource", "NSURL"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- !private ["PSo21UITableViewDataSource", "dispatch_after"] +- !private ["PSo21UITableViewDataSource", "dispatch_get_main_queue"] +- !private ["PSo21UITableViewDataSource", "dispatch_time"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "DISPATCH_TIME_NOW"] +- !private ["PSo19UITableViewDelegate", "Double"] +- !private ["PSo19UITableViewDelegate", "Int64"] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "NSDate"] +- !private ["PSo19UITableViewDelegate", "NSEC_PER_SEC"] +- !private ["PSo19UITableViewDelegate", "NSNull"] +- !private ["PSo19UITableViewDelegate", "NSURL"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- !private ["PSo19UITableViewDelegate", "dispatch_after"] +- !private ["PSo19UITableViewDelegate", "dispatch_get_main_queue"] +- !private ["PSo19UITableViewDelegate", "dispatch_time"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "DISPATCH_TIME_NOW"] +- !private ["PSo18UITraitEnvironment", "Double"] +- !private ["PSo18UITraitEnvironment", "Int64"] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "NSDate"] +- !private ["PSo18UITraitEnvironment", "NSEC_PER_SEC"] +- !private ["PSo18UITraitEnvironment", "NSNull"] +- !private ["PSo18UITraitEnvironment", "NSURL"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- !private ["PSo18UITraitEnvironment", "dispatch_after"] +- !private ["PSo18UITraitEnvironment", "dispatch_get_main_queue"] +- !private ["PSo18UITraitEnvironment", "dispatch_time"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- !private ["CSo16UIViewController", "DISPATCH_TIME_NOW"] +- !private ["CSo16UIViewController", "Double"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Int64"] +- !private ["CSo16UIViewController", "Mixpanel"] +- !private ["CSo16UIViewController", "NSDate"] +- !private ["CSo16UIViewController", "NSEC_PER_SEC"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "NSNull"] +- !private ["CSo16UIViewController", "NSURL"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- !private ["CSo16UIViewController", "dispatch_after"] +- !private ["CSo16UIViewController", "dispatch_get_main_queue"] +- !private ["CSo16UIViewController", "dispatch_time"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "init"] +- !private ["Ps22_CVarArgPassedAsDouble", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "init"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "PSo8CAAction" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSDate" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo6NSNull" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo5NSURL" +- !private "CSo7NSValue" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- "C12MixpanelDemo22TrackingViewController" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "167b08616bade02fda98c72c559f8b7b" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftmodule new file mode 100644 index 00000000..f1d43375 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.d new file mode 100644 index 00000000..ba4c0b80 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o new file mode 100644 index 00000000..f31888e2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.swiftdeps new file mode 100644 index 00000000..b3afa8ea --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.swiftdeps @@ -0,0 +1,1215 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "UtilityViewController" +provides-nominal: +- "C12MixpanelDemo21UtilityViewController" +provides-member: +- ["C12MixpanelDemo21UtilityViewController", ""] +provides-dynamic-lookup: +- "tableViewItems" +- "tableView" +- "tableView" +- "tableView" +- "tableView" +- "viewDidLoad" +depends-top-level: +- "Array" +- !private "UIModalTransitionStyle" +- !private "Mixpanel" +- "UITableView" +- "NSIndexPath" +- "UtilityViewController" +- "StringLiteralType" +- !private "~=" +- "Int" +- !private "UIColor" +- !private "UIModalPresentationStyle" +- !private "BooleanLiteralType" +- "UITableViewDataSource" +- "UITableViewDelegate" +- "UIViewController" +- "UITableViewCell" +- !private "ActionCompleteViewController" +depends-member: +- !private ["C12MixpanelDemo28ActionCompleteViewController", "actionStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "descStr"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalPresentationStyle"] +- !private ["C12MixpanelDemo28ActionCompleteViewController", "modalTransitionStyle"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "UIColor"] +- !private ["Ps9AnyObject", "UIModalPresentationStyle"] +- !private ["Ps9AnyObject", "UIModalTransitionStyle"] +- !private ["Ps9AnyObject", "actionStr"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "createAlias"] +- !private ["Ps9AnyObject", "dataSource"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9AnyObject", "descStr"] +- !private ["Ps9AnyObject", "deselectRowAtIndexPath"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "flush"] +- ["Ps9AnyObject", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9AnyObject", "item"] +- !private ["Ps9AnyObject", "mainInstance"] +- !private ["Ps9AnyObject", "modalPresentationStyle"] +- !private ["Ps9AnyObject", "modalTransitionStyle"] +- ["Ps9AnyObject", "numberOfSectionsInTableView"] +- !private ["Ps9AnyObject", "presentViewController"] +- !private ["Ps9AnyObject", "reset"] +- ["Ps9AnyObject", "scrollViewDidEndDecelerating"] +- ["Ps9AnyObject", "scrollViewDidEndDragging"] +- ["Ps9AnyObject", "scrollViewDidEndScrollingAnimation"] +- ["Ps9AnyObject", "scrollViewDidEndZooming"] +- ["Ps9AnyObject", "scrollViewDidScroll"] +- ["Ps9AnyObject", "scrollViewDidScrollToTop"] +- ["Ps9AnyObject", "scrollViewDidZoom"] +- ["Ps9AnyObject", "scrollViewShouldScrollToTop"] +- ["Ps9AnyObject", "scrollViewWillBeginDecelerating"] +- ["Ps9AnyObject", "scrollViewWillBeginDragging"] +- ["Ps9AnyObject", "scrollViewWillBeginZooming"] +- ["Ps9AnyObject", "scrollViewWillEndDragging"] +- ["Ps9AnyObject", "sectionIndexTitlesForTableView"] +- !private ["Ps9AnyObject", "storyboard"] +- ["Ps9AnyObject", "tableView"] +- ["Ps9AnyObject", "tableViewItems"] +- !private ["Ps9AnyObject", "text"] +- !private ["Ps9AnyObject", "textColor"] +- !private ["Ps9AnyObject", "textLabel"] +- ["Ps9AnyObject", "viewDidLoad"] +- ["Ps9AnyObject", "viewForZoomingInScrollView"] +- ["Ps9AnyObject", ""] +- ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "subscript"] +- ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "subscript"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Sb", "deinit"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "UIColor"] +- !private ["Ps11CVarArgType", "UIModalPresentationStyle"] +- !private ["Ps11CVarArgType", "UIModalTransitionStyle"] +- !private ["Ps11CVarArgType", "actionStr"] +- !private ["Ps11CVarArgType", "dataSource"] +- !private ["Ps11CVarArgType", "delegate"] +- !private ["Ps11CVarArgType", "dequeueReusableCellWithIdentifier"] +- !private ["Ps11CVarArgType", "descStr"] +- !private ["Ps11CVarArgType", "deselectRowAtIndexPath"] +- ["Ps11CVarArgType", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "instantiateViewControllerWithIdentifier"] +- !private ["Ps11CVarArgType", "item"] +- !private ["Ps11CVarArgType", "modalPresentationStyle"] +- !private ["Ps11CVarArgType", "modalTransitionStyle"] +- ["Ps11CVarArgType", "numberOfSectionsInTableView"] +- !private ["Ps11CVarArgType", "presentViewController"] +- ["Ps11CVarArgType", "scrollViewDidEndDecelerating"] +- ["Ps11CVarArgType", "scrollViewDidEndDragging"] +- ["Ps11CVarArgType", "scrollViewDidEndScrollingAnimation"] +- ["Ps11CVarArgType", "scrollViewDidEndZooming"] +- ["Ps11CVarArgType", "scrollViewDidScroll"] +- ["Ps11CVarArgType", "scrollViewDidScrollToTop"] +- ["Ps11CVarArgType", "scrollViewDidZoom"] +- ["Ps11CVarArgType", "scrollViewShouldScrollToTop"] +- ["Ps11CVarArgType", "scrollViewWillBeginDecelerating"] +- ["Ps11CVarArgType", "scrollViewWillBeginDragging"] +- ["Ps11CVarArgType", "scrollViewWillBeginZooming"] +- ["Ps11CVarArgType", "scrollViewWillEndDragging"] +- ["Ps11CVarArgType", "sectionIndexTitlesForTableView"] +- !private ["Ps11CVarArgType", "storyboard"] +- ["Ps11CVarArgType", "tableView"] +- ["Ps11CVarArgType", "tableViewItems"] +- !private ["Ps11CVarArgType", "text"] +- !private ["Ps11CVarArgType", "textColor"] +- !private ["Ps11CVarArgType", "textLabel"] +- ["Ps11CVarArgType", "viewDidLoad"] +- ["Ps11CVarArgType", "viewForZoomingInScrollView"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "init"] +- ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIColor"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps28CustomDebugStringConvertible", "actionStr"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "createAlias"] +- !private ["Ps28CustomDebugStringConvertible", "dataSource"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "descStr"] +- !private ["Ps28CustomDebugStringConvertible", "deselectRowAtIndexPath"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- ["Ps28CustomDebugStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps28CustomDebugStringConvertible", "item"] +- !private ["Ps28CustomDebugStringConvertible", "modalPresentationStyle"] +- !private ["Ps28CustomDebugStringConvertible", "modalTransitionStyle"] +- ["Ps28CustomDebugStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps28CustomDebugStringConvertible", "presentViewController"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidEndZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScroll"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewDidZoom"] +- ["Ps28CustomDebugStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps28CustomDebugStringConvertible", "scrollViewWillEndDragging"] +- ["Ps28CustomDebugStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps28CustomDebugStringConvertible", "storyboard"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tableView"] +- ["Ps28CustomDebugStringConvertible", "tableViewItems"] +- !private ["Ps28CustomDebugStringConvertible", "text"] +- !private ["Ps28CustomDebugStringConvertible", "textColor"] +- !private ["Ps28CustomDebugStringConvertible", "textLabel"] +- ["Ps28CustomDebugStringConvertible", "viewDidLoad"] +- ["Ps28CustomDebugStringConvertible", "viewForZoomingInScrollView"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIColor"] +- !private ["Ps23CustomStringConvertible", "UIModalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "UIModalTransitionStyle"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "actionStr"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataSource"] +- !private ["Ps23CustomStringConvertible", "delegate"] +- !private ["Ps23CustomStringConvertible", "dequeueReusableCellWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "descStr"] +- !private ["Ps23CustomStringConvertible", "deselectRowAtIndexPath"] +- ["Ps23CustomStringConvertible", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "instantiateViewControllerWithIdentifier"] +- !private ["Ps23CustomStringConvertible", "item"] +- !private ["Ps23CustomStringConvertible", "modalPresentationStyle"] +- !private ["Ps23CustomStringConvertible", "modalTransitionStyle"] +- ["Ps23CustomStringConvertible", "numberOfSectionsInTableView"] +- !private ["Ps23CustomStringConvertible", "presentViewController"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndDragging"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndScrollingAnimation"] +- ["Ps23CustomStringConvertible", "scrollViewDidEndZooming"] +- ["Ps23CustomStringConvertible", "scrollViewDidScroll"] +- ["Ps23CustomStringConvertible", "scrollViewDidScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewDidZoom"] +- ["Ps23CustomStringConvertible", "scrollViewShouldScrollToTop"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDecelerating"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginDragging"] +- ["Ps23CustomStringConvertible", "scrollViewWillBeginZooming"] +- ["Ps23CustomStringConvertible", "scrollViewWillEndDragging"] +- ["Ps23CustomStringConvertible", "sectionIndexTitlesForTableView"] +- !private ["Ps23CustomStringConvertible", "storyboard"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tableView"] +- ["Ps23CustomStringConvertible", "tableViewItems"] +- !private ["Ps23CustomStringConvertible", "text"] +- !private ["Ps23CustomStringConvertible", "textColor"] +- !private ["Ps23CustomStringConvertible", "textLabel"] +- ["Ps23CustomStringConvertible", "viewDidLoad"] +- ["Ps23CustomStringConvertible", "viewForZoomingInScrollView"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "CrossDissolve"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "OverFullScreen"] +- !private ["Ps9Equatable", "UIColor"] +- !private ["Ps9Equatable", "UIModalPresentationStyle"] +- !private ["Ps9Equatable", "UIModalTransitionStyle"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "actionStr"] +- !private ["Ps9Equatable", "dataSource"] +- !private ["Ps9Equatable", "delegate"] +- !private ["Ps9Equatable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps9Equatable", "descStr"] +- !private ["Ps9Equatable", "deselectRowAtIndexPath"] +- ["Ps9Equatable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps9Equatable", "item"] +- !private ["Ps9Equatable", "modalPresentationStyle"] +- !private ["Ps9Equatable", "modalTransitionStyle"] +- ["Ps9Equatable", "numberOfSectionsInTableView"] +- !private ["Ps9Equatable", "presentViewController"] +- ["Ps9Equatable", "scrollViewDidEndDecelerating"] +- ["Ps9Equatable", "scrollViewDidEndDragging"] +- ["Ps9Equatable", "scrollViewDidEndScrollingAnimation"] +- ["Ps9Equatable", "scrollViewDidEndZooming"] +- ["Ps9Equatable", "scrollViewDidScroll"] +- ["Ps9Equatable", "scrollViewDidScrollToTop"] +- ["Ps9Equatable", "scrollViewDidZoom"] +- ["Ps9Equatable", "scrollViewShouldScrollToTop"] +- ["Ps9Equatable", "scrollViewWillBeginDecelerating"] +- ["Ps9Equatable", "scrollViewWillBeginDragging"] +- ["Ps9Equatable", "scrollViewWillBeginZooming"] +- ["Ps9Equatable", "scrollViewWillEndDragging"] +- ["Ps9Equatable", "sectionIndexTitlesForTableView"] +- !private ["Ps9Equatable", "storyboard"] +- ["Ps9Equatable", "tableView"] +- ["Ps9Equatable", "tableViewItems"] +- !private ["Ps9Equatable", "text"] +- !private ["Ps9Equatable", "textColor"] +- !private ["Ps9Equatable", "textLabel"] +- ["Ps9Equatable", "viewDidLoad"] +- ["Ps9Equatable", "viewForZoomingInScrollView"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "createAlias"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "CrossDissolve"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "OverFullScreen"] +- !private ["Ps8Hashable", "UIColor"] +- !private ["Ps8Hashable", "UIModalPresentationStyle"] +- !private ["Ps8Hashable", "UIModalTransitionStyle"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "actionStr"] +- !private ["Ps8Hashable", "dataSource"] +- !private ["Ps8Hashable", "delegate"] +- !private ["Ps8Hashable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps8Hashable", "descStr"] +- !private ["Ps8Hashable", "deselectRowAtIndexPath"] +- ["Ps8Hashable", "indexPathForPreferredFocusedViewInTableView"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "instantiateViewControllerWithIdentifier"] +- !private ["Ps8Hashable", "item"] +- !private ["Ps8Hashable", "modalPresentationStyle"] +- !private ["Ps8Hashable", "modalTransitionStyle"] +- ["Ps8Hashable", "numberOfSectionsInTableView"] +- !private ["Ps8Hashable", "presentViewController"] +- ["Ps8Hashable", "scrollViewDidEndDecelerating"] +- ["Ps8Hashable", "scrollViewDidEndDragging"] +- ["Ps8Hashable", "scrollViewDidEndScrollingAnimation"] +- ["Ps8Hashable", "scrollViewDidEndZooming"] +- ["Ps8Hashable", "scrollViewDidScroll"] +- ["Ps8Hashable", "scrollViewDidScrollToTop"] +- ["Ps8Hashable", "scrollViewDidZoom"] +- ["Ps8Hashable", "scrollViewShouldScrollToTop"] +- ["Ps8Hashable", "scrollViewWillBeginDecelerating"] +- ["Ps8Hashable", "scrollViewWillBeginDragging"] +- ["Ps8Hashable", "scrollViewWillBeginZooming"] +- ["Ps8Hashable", "scrollViewWillEndDragging"] +- ["Ps8Hashable", "sectionIndexTitlesForTableView"] +- !private ["Ps8Hashable", "storyboard"] +- ["Ps8Hashable", "tableView"] +- ["Ps8Hashable", "tableViewItems"] +- !private ["Ps8Hashable", "text"] +- !private ["Ps8Hashable", "textColor"] +- !private ["Ps8Hashable", "textLabel"] +- ["Ps8Hashable", "viewDidLoad"] +- ["Ps8Hashable", "viewForZoomingInScrollView"] +- ["Ps8Hashable", ""] +- ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "mainInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "archive"] +- !private ["C8Mixpanel16MixpanelInstance", "createAlias"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "subscript"] +- ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "subscript"] +- ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "subscript"] +- !private ["PSo8NSCoding", "Mixpanel"] +- !private ["PSo8NSCoding", "UIColor"] +- !private ["PSo8NSCoding", "UIModalPresentationStyle"] +- !private ["PSo8NSCoding", "UIModalTransitionStyle"] +- !private ["PSo8NSCoding", "actionStr"] +- !private ["PSo8NSCoding", "dataSource"] +- !private ["PSo8NSCoding", "delegate"] +- !private ["PSo8NSCoding", "dequeueReusableCellWithIdentifier"] +- !private ["PSo8NSCoding", "descStr"] +- !private ["PSo8NSCoding", "deselectRowAtIndexPath"] +- ["PSo8NSCoding", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "item"] +- !private ["PSo8NSCoding", "modalPresentationStyle"] +- !private ["PSo8NSCoding", "modalTransitionStyle"] +- ["PSo8NSCoding", "numberOfSectionsInTableView"] +- !private ["PSo8NSCoding", "presentViewController"] +- ["PSo8NSCoding", "scrollViewDidEndDecelerating"] +- ["PSo8NSCoding", "scrollViewDidEndDragging"] +- ["PSo8NSCoding", "scrollViewDidEndScrollingAnimation"] +- ["PSo8NSCoding", "scrollViewDidEndZooming"] +- ["PSo8NSCoding", "scrollViewDidScroll"] +- ["PSo8NSCoding", "scrollViewDidScrollToTop"] +- ["PSo8NSCoding", "scrollViewDidZoom"] +- ["PSo8NSCoding", "scrollViewShouldScrollToTop"] +- ["PSo8NSCoding", "scrollViewWillBeginDecelerating"] +- ["PSo8NSCoding", "scrollViewWillBeginDragging"] +- ["PSo8NSCoding", "scrollViewWillBeginZooming"] +- ["PSo8NSCoding", "scrollViewWillEndDragging"] +- ["PSo8NSCoding", "sectionIndexTitlesForTableView"] +- !private ["PSo8NSCoding", "storyboard"] +- ["PSo8NSCoding", "tableView"] +- ["PSo8NSCoding", "tableViewItems"] +- !private ["PSo8NSCoding", "text"] +- !private ["PSo8NSCoding", "textColor"] +- !private ["PSo8NSCoding", "textLabel"] +- ["PSo8NSCoding", "viewDidLoad"] +- ["PSo8NSCoding", "viewForZoomingInScrollView"] +- ["PSo8NSCoding", ""] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "item"] +- !private ["PSo26NSExtensionRequestHandling", "Mixpanel"] +- !private ["PSo26NSExtensionRequestHandling", "UIColor"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "UIModalTransitionStyle"] +- !private ["PSo26NSExtensionRequestHandling", "actionStr"] +- !private ["PSo26NSExtensionRequestHandling", "descStr"] +- ["PSo26NSExtensionRequestHandling", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo26NSExtensionRequestHandling", "init"] +- !private ["PSo26NSExtensionRequestHandling", "modalPresentationStyle"] +- !private ["PSo26NSExtensionRequestHandling", "modalTransitionStyle"] +- ["PSo26NSExtensionRequestHandling", "numberOfSectionsInTableView"] +- !private ["PSo26NSExtensionRequestHandling", "presentViewController"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndScrollingAnimation"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidEndZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScroll"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewDidZoom"] +- ["PSo26NSExtensionRequestHandling", "scrollViewShouldScrollToTop"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDecelerating"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginDragging"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillBeginZooming"] +- ["PSo26NSExtensionRequestHandling", "scrollViewWillEndDragging"] +- ["PSo26NSExtensionRequestHandling", "sectionIndexTitlesForTableView"] +- !private ["PSo26NSExtensionRequestHandling", "storyboard"] +- ["PSo26NSExtensionRequestHandling", "tableView"] +- ["PSo26NSExtensionRequestHandling", "tableViewItems"] +- ["PSo26NSExtensionRequestHandling", "viewDidLoad"] +- ["PSo26NSExtensionRequestHandling", "viewForZoomingInScrollView"] +- ["PSo26NSExtensionRequestHandling", ""] +- !private ["CSo11NSIndexPath", "item"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSNumber", "deinit"] +- !private ["CSo8NSObject", "ActionCompleteViewController"] +- ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "NSIndexPath"] +- !private ["CSo8NSObject", "UIColor"] +- !private ["CSo8NSObject", "UIModalPresentationStyle"] +- !private ["CSo8NSObject", "UIModalTransitionStyle"] +- ["CSo8NSObject", "UITableView"] +- ["CSo8NSObject", "UITableViewCell"] +- !private ["CSo8NSObject", "actionStr"] +- !private ["CSo8NSObject", "dataSource"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "delegate"] +- !private ["CSo8NSObject", "dequeueReusableCellWithIdentifier"] +- !private ["CSo8NSObject", "descStr"] +- !private ["CSo8NSObject", "deselectRowAtIndexPath"] +- ["CSo8NSObject", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "instantiateViewControllerWithIdentifier"] +- !private ["CSo8NSObject", "item"] +- !private ["CSo8NSObject", "modalPresentationStyle"] +- !private ["CSo8NSObject", "modalTransitionStyle"] +- ["CSo8NSObject", "numberOfSectionsInTableView"] +- !private ["CSo8NSObject", "presentViewController"] +- ["CSo8NSObject", "scrollViewDidEndDecelerating"] +- ["CSo8NSObject", "scrollViewDidEndDragging"] +- ["CSo8NSObject", "scrollViewDidEndScrollingAnimation"] +- ["CSo8NSObject", "scrollViewDidEndZooming"] +- ["CSo8NSObject", "scrollViewDidScroll"] +- ["CSo8NSObject", "scrollViewDidScrollToTop"] +- ["CSo8NSObject", "scrollViewDidZoom"] +- ["CSo8NSObject", "scrollViewShouldScrollToTop"] +- ["CSo8NSObject", "scrollViewWillBeginDecelerating"] +- ["CSo8NSObject", "scrollViewWillBeginDragging"] +- ["CSo8NSObject", "scrollViewWillBeginZooming"] +- ["CSo8NSObject", "scrollViewWillEndDragging"] +- ["CSo8NSObject", "sectionIndexTitlesForTableView"] +- !private ["CSo8NSObject", "storyboard"] +- ["CSo8NSObject", "tableView"] +- ["CSo8NSObject", "tableViewItems"] +- !private ["CSo8NSObject", "text"] +- !private ["CSo8NSObject", "textColor"] +- !private ["CSo8NSObject", "textLabel"] +- ["CSo8NSObject", "viewDidLoad"] +- ["CSo8NSObject", "viewForZoomingInScrollView"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "UIColor"] +- !private ["PSo16NSObjectProtocol", "UIModalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "UIModalTransitionStyle"] +- !private ["PSo16NSObjectProtocol", "actionStr"] +- !private ["PSo16NSObjectProtocol", "dataSource"] +- !private ["PSo16NSObjectProtocol", "delegate"] +- !private ["PSo16NSObjectProtocol", "dequeueReusableCellWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "descStr"] +- !private ["PSo16NSObjectProtocol", "deselectRowAtIndexPath"] +- ["PSo16NSObjectProtocol", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "instantiateViewControllerWithIdentifier"] +- !private ["PSo16NSObjectProtocol", "item"] +- !private ["PSo16NSObjectProtocol", "modalPresentationStyle"] +- !private ["PSo16NSObjectProtocol", "modalTransitionStyle"] +- ["PSo16NSObjectProtocol", "numberOfSectionsInTableView"] +- !private ["PSo16NSObjectProtocol", "presentViewController"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndDragging"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndScrollingAnimation"] +- ["PSo16NSObjectProtocol", "scrollViewDidEndZooming"] +- ["PSo16NSObjectProtocol", "scrollViewDidScroll"] +- ["PSo16NSObjectProtocol", "scrollViewDidScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewDidZoom"] +- ["PSo16NSObjectProtocol", "scrollViewShouldScrollToTop"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDecelerating"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginDragging"] +- ["PSo16NSObjectProtocol", "scrollViewWillBeginZooming"] +- ["PSo16NSObjectProtocol", "scrollViewWillEndDragging"] +- ["PSo16NSObjectProtocol", "sectionIndexTitlesForTableView"] +- !private ["PSo16NSObjectProtocol", "storyboard"] +- ["PSo16NSObjectProtocol", "tableView"] +- ["PSo16NSObjectProtocol", "tableViewItems"] +- !private ["PSo16NSObjectProtocol", "text"] +- !private ["PSo16NSObjectProtocol", "textColor"] +- !private ["PSo16NSObjectProtocol", "textLabel"] +- ["PSo16NSObjectProtocol", "viewDidLoad"] +- ["PSo16NSObjectProtocol", "viewForZoomingInScrollView"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "item"] +- !private ["CSo8NSString", "init"] +- !private ["CSo7NSValue", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Vs5Range", "deinit"] +- ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "subscript"] +- !private ["Ps16RawRepresentable", "CrossDissolve"] +- !private ["Ps16RawRepresentable", "OverFullScreen"] +- ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["PSo29UIAccessibilityIdentification", "dataSource"] +- !private ["PSo29UIAccessibilityIdentification", "delegate"] +- !private ["PSo29UIAccessibilityIdentification", "dequeueReusableCellWithIdentifier"] +- !private ["PSo29UIAccessibilityIdentification", "deselectRowAtIndexPath"] +- !private ["PSo29UIAccessibilityIdentification", "text"] +- !private ["PSo29UIAccessibilityIdentification", "textColor"] +- !private ["PSo29UIAccessibilityIdentification", "textLabel"] +- !private ["PSo12UIAppearance", "dataSource"] +- !private ["PSo12UIAppearance", "delegate"] +- !private ["PSo12UIAppearance", "dequeueReusableCellWithIdentifier"] +- !private ["PSo12UIAppearance", "deselectRowAtIndexPath"] +- !private ["PSo12UIAppearance", "text"] +- !private ["PSo12UIAppearance", "textColor"] +- !private ["PSo12UIAppearance", "textLabel"] +- !private ["PSo21UIAppearanceContainer", "Mixpanel"] +- !private ["PSo21UIAppearanceContainer", "UIColor"] +- !private ["PSo21UIAppearanceContainer", "UIModalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "UIModalTransitionStyle"] +- !private ["PSo21UIAppearanceContainer", "actionStr"] +- !private ["PSo21UIAppearanceContainer", "dataSource"] +- !private ["PSo21UIAppearanceContainer", "delegate"] +- !private ["PSo21UIAppearanceContainer", "dequeueReusableCellWithIdentifier"] +- !private ["PSo21UIAppearanceContainer", "descStr"] +- !private ["PSo21UIAppearanceContainer", "deselectRowAtIndexPath"] +- ["PSo21UIAppearanceContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UIAppearanceContainer", "init"] +- !private ["PSo21UIAppearanceContainer", "modalPresentationStyle"] +- !private ["PSo21UIAppearanceContainer", "modalTransitionStyle"] +- ["PSo21UIAppearanceContainer", "numberOfSectionsInTableView"] +- !private ["PSo21UIAppearanceContainer", "presentViewController"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UIAppearanceContainer", "scrollViewDidEndZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScroll"] +- ["PSo21UIAppearanceContainer", "scrollViewDidScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewDidZoom"] +- ["PSo21UIAppearanceContainer", "scrollViewShouldScrollToTop"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDecelerating"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginDragging"] +- ["PSo21UIAppearanceContainer", "scrollViewWillBeginZooming"] +- ["PSo21UIAppearanceContainer", "scrollViewWillEndDragging"] +- ["PSo21UIAppearanceContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo21UIAppearanceContainer", "storyboard"] +- ["PSo21UIAppearanceContainer", "tableView"] +- ["PSo21UIAppearanceContainer", "tableViewItems"] +- !private ["PSo21UIAppearanceContainer", "text"] +- !private ["PSo21UIAppearanceContainer", "textColor"] +- !private ["PSo21UIAppearanceContainer", "textLabel"] +- ["PSo21UIAppearanceContainer", "viewDidLoad"] +- ["PSo21UIAppearanceContainer", "viewForZoomingInScrollView"] +- ["PSo21UIAppearanceContainer", ""] +- !private ["CSo7UIColor", "init"] +- !private ["PSo18UIContentContainer", "Mixpanel"] +- !private ["PSo18UIContentContainer", "UIColor"] +- !private ["PSo18UIContentContainer", "UIModalPresentationStyle"] +- !private ["PSo18UIContentContainer", "UIModalTransitionStyle"] +- !private ["PSo18UIContentContainer", "actionStr"] +- !private ["PSo18UIContentContainer", "descStr"] +- ["PSo18UIContentContainer", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIContentContainer", "init"] +- !private ["PSo18UIContentContainer", "modalPresentationStyle"] +- !private ["PSo18UIContentContainer", "modalTransitionStyle"] +- ["PSo18UIContentContainer", "numberOfSectionsInTableView"] +- !private ["PSo18UIContentContainer", "presentViewController"] +- ["PSo18UIContentContainer", "scrollViewDidEndDecelerating"] +- ["PSo18UIContentContainer", "scrollViewDidEndDragging"] +- ["PSo18UIContentContainer", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIContentContainer", "scrollViewDidEndZooming"] +- ["PSo18UIContentContainer", "scrollViewDidScroll"] +- ["PSo18UIContentContainer", "scrollViewDidScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewDidZoom"] +- ["PSo18UIContentContainer", "scrollViewShouldScrollToTop"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDecelerating"] +- ["PSo18UIContentContainer", "scrollViewWillBeginDragging"] +- ["PSo18UIContentContainer", "scrollViewWillBeginZooming"] +- ["PSo18UIContentContainer", "scrollViewWillEndDragging"] +- ["PSo18UIContentContainer", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIContentContainer", "storyboard"] +- ["PSo18UIContentContainer", "tableView"] +- ["PSo18UIContentContainer", "tableViewItems"] +- ["PSo18UIContentContainer", "viewDidLoad"] +- ["PSo18UIContentContainer", "viewForZoomingInScrollView"] +- ["PSo18UIContentContainer", ""] +- !private ["PSo17UICoordinateSpace", "dataSource"] +- !private ["PSo17UICoordinateSpace", "delegate"] +- !private ["PSo17UICoordinateSpace", "dequeueReusableCellWithIdentifier"] +- !private ["PSo17UICoordinateSpace", "deselectRowAtIndexPath"] +- !private ["PSo17UICoordinateSpace", "text"] +- !private ["PSo17UICoordinateSpace", "textColor"] +- !private ["PSo17UICoordinateSpace", "textLabel"] +- !private ["PSo13UIDynamicItem", "dataSource"] +- !private ["PSo13UIDynamicItem", "delegate"] +- !private ["PSo13UIDynamicItem", "dequeueReusableCellWithIdentifier"] +- !private ["PSo13UIDynamicItem", "deselectRowAtIndexPath"] +- !private ["PSo13UIDynamicItem", "text"] +- !private ["PSo13UIDynamicItem", "textColor"] +- !private ["PSo13UIDynamicItem", "textLabel"] +- !private ["PSo18UIFocusEnvironment", "Mixpanel"] +- !private ["PSo18UIFocusEnvironment", "UIColor"] +- !private ["PSo18UIFocusEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UIFocusEnvironment", "actionStr"] +- !private ["PSo18UIFocusEnvironment", "dataSource"] +- !private ["PSo18UIFocusEnvironment", "delegate"] +- !private ["PSo18UIFocusEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UIFocusEnvironment", "descStr"] +- !private ["PSo18UIFocusEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UIFocusEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UIFocusEnvironment", "init"] +- !private ["PSo18UIFocusEnvironment", "modalPresentationStyle"] +- !private ["PSo18UIFocusEnvironment", "modalTransitionStyle"] +- ["PSo18UIFocusEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UIFocusEnvironment", "presentViewController"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UIFocusEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScroll"] +- ["PSo18UIFocusEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewDidZoom"] +- ["PSo18UIFocusEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UIFocusEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UIFocusEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UIFocusEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UIFocusEnvironment", "storyboard"] +- ["PSo18UIFocusEnvironment", "tableView"] +- ["PSo18UIFocusEnvironment", "tableViewItems"] +- !private ["PSo18UIFocusEnvironment", "text"] +- !private ["PSo18UIFocusEnvironment", "textColor"] +- !private ["PSo18UIFocusEnvironment", "textLabel"] +- ["PSo18UIFocusEnvironment", "viewDidLoad"] +- ["PSo18UIFocusEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UIFocusEnvironment", ""] +- !private ["PSo27UIGestureRecognizerDelegate", "textLabel"] +- !private ["CSo7UILabel", "text"] +- !private ["CSo7UILabel", "textColor"] +- !private ["OSC24UIModalPresentationStyle", "OverFullScreen"] +- !private ["OSC22UIModalTransitionStyle", "CrossDissolve"] +- !private ["CSo11UIResponder", "ActionCompleteViewController"] +- ["CSo11UIResponder", "Int"] +- !private ["CSo11UIResponder", "Mixpanel"] +- ["CSo11UIResponder", "NSIndexPath"] +- !private ["CSo11UIResponder", "UIColor"] +- !private ["CSo11UIResponder", "UIModalPresentationStyle"] +- !private ["CSo11UIResponder", "UIModalTransitionStyle"] +- ["CSo11UIResponder", "UITableView"] +- ["CSo11UIResponder", "UITableViewCell"] +- !private ["CSo11UIResponder", "actionStr"] +- !private ["CSo11UIResponder", "dataSource"] +- !private ["CSo11UIResponder", "delegate"] +- !private ["CSo11UIResponder", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UIResponder", "descStr"] +- !private ["CSo11UIResponder", "deselectRowAtIndexPath"] +- ["CSo11UIResponder", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo11UIResponder", "init"] +- !private ["CSo11UIResponder", "modalPresentationStyle"] +- !private ["CSo11UIResponder", "modalTransitionStyle"] +- ["CSo11UIResponder", "numberOfSectionsInTableView"] +- !private ["CSo11UIResponder", "presentViewController"] +- ["CSo11UIResponder", "scrollViewDidEndDecelerating"] +- ["CSo11UIResponder", "scrollViewDidEndDragging"] +- ["CSo11UIResponder", "scrollViewDidEndScrollingAnimation"] +- ["CSo11UIResponder", "scrollViewDidEndZooming"] +- ["CSo11UIResponder", "scrollViewDidScroll"] +- ["CSo11UIResponder", "scrollViewDidScrollToTop"] +- ["CSo11UIResponder", "scrollViewDidZoom"] +- ["CSo11UIResponder", "scrollViewShouldScrollToTop"] +- ["CSo11UIResponder", "scrollViewWillBeginDecelerating"] +- ["CSo11UIResponder", "scrollViewWillBeginDragging"] +- ["CSo11UIResponder", "scrollViewWillBeginZooming"] +- ["CSo11UIResponder", "scrollViewWillEndDragging"] +- ["CSo11UIResponder", "sectionIndexTitlesForTableView"] +- !private ["CSo11UIResponder", "storyboard"] +- ["CSo11UIResponder", "tableView"] +- ["CSo11UIResponder", "tableViewItems"] +- !private ["CSo11UIResponder", "text"] +- !private ["CSo11UIResponder", "textColor"] +- !private ["CSo11UIResponder", "textLabel"] +- ["CSo11UIResponder", "viewDidLoad"] +- ["CSo11UIResponder", "viewForZoomingInScrollView"] +- !private ["CSo12UIScrollView", "dataSource"] +- !private ["CSo12UIScrollView", "delegate"] +- !private ["CSo12UIScrollView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo12UIScrollView", "deselectRowAtIndexPath"] +- !private ["PSo20UIScrollViewDelegate", "Mixpanel"] +- !private ["PSo20UIScrollViewDelegate", "UIColor"] +- !private ["PSo20UIScrollViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo20UIScrollViewDelegate", "UIModalTransitionStyle"] +- ["PSo20UIScrollViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo20UIScrollViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo20UIScrollViewDelegate", "presentViewController"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidEndZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScroll"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewDidZoom"] +- ["PSo20UIScrollViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo20UIScrollViewDelegate", "scrollViewWillEndDragging"] +- ["PSo20UIScrollViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo20UIScrollViewDelegate", "storyboard"] +- ["PSo20UIScrollViewDelegate", "tableView"] +- !private ["PSo20UIScrollViewDelegate", "tableViewItems"] +- ["PSo20UIScrollViewDelegate", "viewForZoomingInScrollView"] +- ["PSo20UIScrollViewDelegate", ""] +- !private ["PSo16UIStateRestoring", "Mixpanel"] +- !private ["PSo16UIStateRestoring", "UIColor"] +- !private ["PSo16UIStateRestoring", "UIModalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "UIModalTransitionStyle"] +- !private ["PSo16UIStateRestoring", "actionStr"] +- !private ["PSo16UIStateRestoring", "descStr"] +- ["PSo16UIStateRestoring", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo16UIStateRestoring", "init"] +- !private ["PSo16UIStateRestoring", "modalPresentationStyle"] +- !private ["PSo16UIStateRestoring", "modalTransitionStyle"] +- ["PSo16UIStateRestoring", "numberOfSectionsInTableView"] +- !private ["PSo16UIStateRestoring", "presentViewController"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewDidEndDragging"] +- ["PSo16UIStateRestoring", "scrollViewDidEndScrollingAnimation"] +- ["PSo16UIStateRestoring", "scrollViewDidEndZooming"] +- ["PSo16UIStateRestoring", "scrollViewDidScroll"] +- ["PSo16UIStateRestoring", "scrollViewDidScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewDidZoom"] +- ["PSo16UIStateRestoring", "scrollViewShouldScrollToTop"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDecelerating"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginDragging"] +- ["PSo16UIStateRestoring", "scrollViewWillBeginZooming"] +- ["PSo16UIStateRestoring", "scrollViewWillEndDragging"] +- ["PSo16UIStateRestoring", "sectionIndexTitlesForTableView"] +- !private ["PSo16UIStateRestoring", "storyboard"] +- ["PSo16UIStateRestoring", "tableView"] +- ["PSo16UIStateRestoring", "tableViewItems"] +- ["PSo16UIStateRestoring", "viewDidLoad"] +- ["PSo16UIStateRestoring", "viewForZoomingInScrollView"] +- ["PSo16UIStateRestoring", ""] +- !private ["CSo12UIStoryboard", "instantiateViewControllerWithIdentifier"] +- !private ["CSo11UITableView", "dataSource"] +- !private ["CSo11UITableView", "delegate"] +- !private ["CSo11UITableView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo11UITableView", "deselectRowAtIndexPath"] +- !private ["CSo15UITableViewCell", "textLabel"] +- !private ["PSo21UITableViewDataSource", "Mixpanel"] +- !private ["PSo21UITableViewDataSource", "UIColor"] +- !private ["PSo21UITableViewDataSource", "UIModalPresentationStyle"] +- !private ["PSo21UITableViewDataSource", "UIModalTransitionStyle"] +- ["PSo21UITableViewDataSource", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo21UITableViewDataSource", "numberOfSectionsInTableView"] +- !private ["PSo21UITableViewDataSource", "presentViewController"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndDragging"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndScrollingAnimation"] +- ["PSo21UITableViewDataSource", "scrollViewDidEndZooming"] +- ["PSo21UITableViewDataSource", "scrollViewDidScroll"] +- ["PSo21UITableViewDataSource", "scrollViewDidScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewDidZoom"] +- ["PSo21UITableViewDataSource", "scrollViewShouldScrollToTop"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDecelerating"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginDragging"] +- ["PSo21UITableViewDataSource", "scrollViewWillBeginZooming"] +- ["PSo21UITableViewDataSource", "scrollViewWillEndDragging"] +- ["PSo21UITableViewDataSource", "sectionIndexTitlesForTableView"] +- !private ["PSo21UITableViewDataSource", "storyboard"] +- ["PSo21UITableViewDataSource", "tableView"] +- !private ["PSo21UITableViewDataSource", "tableViewItems"] +- ["PSo21UITableViewDataSource", "viewForZoomingInScrollView"] +- ["PSo21UITableViewDataSource", ""] +- !private ["PSo19UITableViewDelegate", "Mixpanel"] +- !private ["PSo19UITableViewDelegate", "UIColor"] +- !private ["PSo19UITableViewDelegate", "UIModalPresentationStyle"] +- !private ["PSo19UITableViewDelegate", "UIModalTransitionStyle"] +- ["PSo19UITableViewDelegate", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo19UITableViewDelegate", "numberOfSectionsInTableView"] +- !private ["PSo19UITableViewDelegate", "presentViewController"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndDragging"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndScrollingAnimation"] +- ["PSo19UITableViewDelegate", "scrollViewDidEndZooming"] +- ["PSo19UITableViewDelegate", "scrollViewDidScroll"] +- ["PSo19UITableViewDelegate", "scrollViewDidScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewDidZoom"] +- ["PSo19UITableViewDelegate", "scrollViewShouldScrollToTop"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDecelerating"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginDragging"] +- ["PSo19UITableViewDelegate", "scrollViewWillBeginZooming"] +- ["PSo19UITableViewDelegate", "scrollViewWillEndDragging"] +- ["PSo19UITableViewDelegate", "sectionIndexTitlesForTableView"] +- !private ["PSo19UITableViewDelegate", "storyboard"] +- ["PSo19UITableViewDelegate", "tableView"] +- !private ["PSo19UITableViewDelegate", "tableViewItems"] +- ["PSo19UITableViewDelegate", "viewForZoomingInScrollView"] +- ["PSo19UITableViewDelegate", ""] +- !private ["PSo18UITraitEnvironment", "Mixpanel"] +- !private ["PSo18UITraitEnvironment", "UIColor"] +- !private ["PSo18UITraitEnvironment", "UIModalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "UIModalTransitionStyle"] +- !private ["PSo18UITraitEnvironment", "actionStr"] +- !private ["PSo18UITraitEnvironment", "dataSource"] +- !private ["PSo18UITraitEnvironment", "delegate"] +- !private ["PSo18UITraitEnvironment", "dequeueReusableCellWithIdentifier"] +- !private ["PSo18UITraitEnvironment", "descStr"] +- !private ["PSo18UITraitEnvironment", "deselectRowAtIndexPath"] +- ["PSo18UITraitEnvironment", "indexPathForPreferredFocusedViewInTableView"] +- ["PSo18UITraitEnvironment", "init"] +- !private ["PSo18UITraitEnvironment", "modalPresentationStyle"] +- !private ["PSo18UITraitEnvironment", "modalTransitionStyle"] +- ["PSo18UITraitEnvironment", "numberOfSectionsInTableView"] +- !private ["PSo18UITraitEnvironment", "presentViewController"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndDragging"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndScrollingAnimation"] +- ["PSo18UITraitEnvironment", "scrollViewDidEndZooming"] +- ["PSo18UITraitEnvironment", "scrollViewDidScroll"] +- ["PSo18UITraitEnvironment", "scrollViewDidScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewDidZoom"] +- ["PSo18UITraitEnvironment", "scrollViewShouldScrollToTop"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDecelerating"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginDragging"] +- ["PSo18UITraitEnvironment", "scrollViewWillBeginZooming"] +- ["PSo18UITraitEnvironment", "scrollViewWillEndDragging"] +- ["PSo18UITraitEnvironment", "sectionIndexTitlesForTableView"] +- !private ["PSo18UITraitEnvironment", "storyboard"] +- ["PSo18UITraitEnvironment", "tableView"] +- ["PSo18UITraitEnvironment", "tableViewItems"] +- !private ["PSo18UITraitEnvironment", "text"] +- !private ["PSo18UITraitEnvironment", "textColor"] +- !private ["PSo18UITraitEnvironment", "textLabel"] +- ["PSo18UITraitEnvironment", "viewDidLoad"] +- ["PSo18UITraitEnvironment", "viewForZoomingInScrollView"] +- ["PSo18UITraitEnvironment", ""] +- !private ["CSo6UIView", "dataSource"] +- !private ["CSo6UIView", "delegate"] +- !private ["CSo6UIView", "dequeueReusableCellWithIdentifier"] +- !private ["CSo6UIView", "deselectRowAtIndexPath"] +- !private ["CSo6UIView", "text"] +- !private ["CSo6UIView", "textColor"] +- !private ["CSo6UIView", "textLabel"] +- !private ["CSo16UIViewController", "ActionCompleteViewController"] +- ["CSo16UIViewController", "Int"] +- !private ["CSo16UIViewController", "Mixpanel"] +- ["CSo16UIViewController", "NSIndexPath"] +- !private ["CSo16UIViewController", "UIColor"] +- !private ["CSo16UIViewController", "UIModalPresentationStyle"] +- !private ["CSo16UIViewController", "UIModalTransitionStyle"] +- ["CSo16UIViewController", "UITableView"] +- ["CSo16UIViewController", "UITableViewCell"] +- !private ["CSo16UIViewController", "actionStr"] +- !private ["CSo16UIViewController", "deinit"] +- !private ["CSo16UIViewController", "descStr"] +- ["CSo16UIViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["CSo16UIViewController", "init"] +- !private ["CSo16UIViewController", "modalPresentationStyle"] +- !private ["CSo16UIViewController", "modalTransitionStyle"] +- ["CSo16UIViewController", "numberOfSectionsInTableView"] +- !private ["CSo16UIViewController", "presentViewController"] +- ["CSo16UIViewController", "scrollViewDidEndDecelerating"] +- ["CSo16UIViewController", "scrollViewDidEndDragging"] +- ["CSo16UIViewController", "scrollViewDidEndScrollingAnimation"] +- ["CSo16UIViewController", "scrollViewDidEndZooming"] +- ["CSo16UIViewController", "scrollViewDidScroll"] +- ["CSo16UIViewController", "scrollViewDidScrollToTop"] +- ["CSo16UIViewController", "scrollViewDidZoom"] +- ["CSo16UIViewController", "scrollViewShouldScrollToTop"] +- ["CSo16UIViewController", "scrollViewWillBeginDecelerating"] +- ["CSo16UIViewController", "scrollViewWillBeginDragging"] +- ["CSo16UIViewController", "scrollViewWillBeginZooming"] +- ["CSo16UIViewController", "scrollViewWillEndDragging"] +- ["CSo16UIViewController", "sectionIndexTitlesForTableView"] +- !private ["CSo16UIViewController", "storyboard"] +- ["CSo16UIViewController", "tableView"] +- ["CSo16UIViewController", "tableViewItems"] +- ["CSo16UIViewController", "viewDidLoad"] +- ["CSo16UIViewController", "viewForZoomingInScrollView"] +- ["CSo16UIViewController", ""] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["C12MixpanelDemo21UtilityViewController", "ActionCompleteViewController"] +- ["C12MixpanelDemo21UtilityViewController", "Int"] +- !private ["C12MixpanelDemo21UtilityViewController", "Mixpanel"] +- ["C12MixpanelDemo21UtilityViewController", "NSIndexPath"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIColor"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIModalPresentationStyle"] +- !private ["C12MixpanelDemo21UtilityViewController", "UIModalTransitionStyle"] +- ["C12MixpanelDemo21UtilityViewController", "UITableView"] +- ["C12MixpanelDemo21UtilityViewController", "UITableViewCell"] +- ["C12MixpanelDemo21UtilityViewController", "deinit"] +- ["C12MixpanelDemo21UtilityViewController", "indexPathForPreferredFocusedViewInTableView"] +- ["C12MixpanelDemo21UtilityViewController", "init"] +- ["C12MixpanelDemo21UtilityViewController", "numberOfSectionsInTableView"] +- !private ["C12MixpanelDemo21UtilityViewController", "presentViewController"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndDecelerating"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndDragging"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndScrollingAnimation"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidEndZooming"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidScroll"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidScrollToTop"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewDidZoom"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewShouldScrollToTop"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginDecelerating"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginDragging"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillBeginZooming"] +- ["C12MixpanelDemo21UtilityViewController", "scrollViewWillEndDragging"] +- ["C12MixpanelDemo21UtilityViewController", "sectionIndexTitlesForTableView"] +- !private ["C12MixpanelDemo21UtilityViewController", "storyboard"] +- ["C12MixpanelDemo21UtilityViewController", "tableView"] +- ["C12MixpanelDemo21UtilityViewController", "tableViewItems"] +- ["C12MixpanelDemo21UtilityViewController", "viewDidLoad"] +- ["C12MixpanelDemo21UtilityViewController", "viewForZoomingInScrollView"] +- ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "subscript"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_ColorLiteralConvertible", "init"] +- ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "subscript"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Vs26_OptionalNilComparisonType", "deinit"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Distance"] +- ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataSource"] +- !private ["Ps12_Reflectable", "delegate"] +- !private ["Ps12_Reflectable", "dequeueReusableCellWithIdentifier"] +- !private ["Ps12_Reflectable", "deselectRowAtIndexPath"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "text"] +- !private ["Ps12_Reflectable", "textColor"] +- !private ["Ps12_Reflectable", "textLabel"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +depends-nominal: +- !private "C12MixpanelDemo28ActionCompleteViewController" +- "Ps9AnyObject" +- "Sa" +- "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- !private "C8Mixpanel16MixpanelInstance" +- "Ps21MutableCollectionType" +- "Ps16MutableIndexable" +- "Ps16MutableSliceable" +- "PSo8NSCoding" +- !private "PSo9NSCopying" +- "PSo26NSExtensionRequestHandling" +- !private "CSo11NSIndexPath" +- !private "PSo16NSMutableCopying" +- !private "CSo8NSNumber" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "CSo7NSValue" +- !private "Ps16OutputStreamType" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "PSo29UIAccessibilityIdentification" +- !private "PSo12UIAppearance" +- "PSo21UIAppearanceContainer" +- !private "CSo7UIColor" +- "PSo18UIContentContainer" +- !private "PSo17UICoordinateSpace" +- !private "PSo13UIDynamicItem" +- "PSo18UIFocusEnvironment" +- !private "PSo27UIGestureRecognizerDelegate" +- !private "CSo7UILabel" +- !private "OSC24UIModalPresentationStyle" +- !private "OSC22UIModalTransitionStyle" +- "CSo11UIResponder" +- !private "CSo12UIScrollView" +- "PSo20UIScrollViewDelegate" +- "PSo16UIStateRestoring" +- !private "CSo12UIStoryboard" +- !private "CSo11UITableView" +- !private "CSo15UITableViewCell" +- "PSo21UITableViewDataSource" +- "PSo19UITableViewDelegate" +- "PSo18UITraitEnvironment" +- !private "CSo6UIView" +- "CSo16UIViewController" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "C12MixpanelDemo21UtilityViewController" +- "Ps10_ArrayType" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_ColorLiteralConvertible" +- "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- "Ps21_ObjectiveCBridgeable" +- !private "Vs26_OptionalNilComparisonType" +- !private "Ps22_RandomAccessAmbiguity" +- "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +interface-hash: "ff54430ae71aacd33f64a292fa1c5b6d" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftmodule new file mode 100644 index 00000000..7c449562 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/assetcatalog_dependencies b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/assetcatalog_dependencies new file mode 100644 index 00000000..99dca6e3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/assetcatalog_dependencies differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/assetcatalog_generated_info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/assetcatalog_generated_info.plist new file mode 100644 index 00000000..0c67376e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/assetcatalog_generated_info.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/dgph new file mode 100644 index 00000000..ada0bb03 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/dgph~ new file mode 100644 index 00000000..ada0bb03 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/swift-overrides.hmap new file mode 100644 index 00000000..c5ca52c6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/DerivedSources/MixpanelDemoTests-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/DerivedSources/MixpanelDemoTests-Swift.h new file mode 100644 index 00000000..62bddbd1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/DerivedSources/MixpanelDemoTests-Swift.h @@ -0,0 +1,104 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import XCTest; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" + +@interface XCTestCase (SWIFT_EXTENSION(MixpanelDemoTests)) +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests-OutputFileMap.json new file mode 100644 index 00000000..b6ab3095 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelPeopleTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/TestConstants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelBaseTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelDemoTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/LoggerTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..1351f209 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/LoggerTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelPeopleTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/TestConstants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelBaseTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.d new file mode 100644 index 00000000..fac5b721 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o new file mode 100644 index 00000000..d994c55d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.swiftdeps new file mode 100644 index 00000000..a436a619 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.swiftdeps @@ -0,0 +1,280 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "LoggerTests" +- "CounterLogging" +provides-nominal: +- "C17MixpanelDemoTests11LoggerTests" +- "C17MixpanelDemoTests14CounterLogging" +provides-member: +- ["C17MixpanelDemoTests11LoggerTests", ""] +- ["C17MixpanelDemoTests14CounterLogging", ""] +provides-dynamic-lookup: +- "setUp" +- "testEnableWarning" +- "testDisabledLogging" +- "testEnableDebug" +- "testEnableError" +- "testEnableInfo" +depends-top-level: +- "Logging" +- "CounterLogging" +- !private "XCTAssertEqual" +- "XCTestCase" +- !private "StringLiteralType" +- "LoggerTests" +- "LogMessage" +- !private "+" +- !private "Logger" +depends-member: +- !private ["Ps9AnyObject", "CounterLogging"] +- !private ["Ps9AnyObject", "Logger"] +- !private ["Ps9AnyObject", "XCTAssertEqual"] +- !private ["Ps9AnyObject", "addLogging"] +- ["Ps9AnyObject", "addMessage"] +- !private ["Ps9AnyObject", "count"] +- ["Ps9AnyObject", "counter"] +- !private ["Ps9AnyObject", "debug"] +- !private ["Ps9AnyObject", "disableLevel"] +- !private ["Ps9AnyObject", "enableLevel"] +- !private ["Ps9AnyObject", "error"] +- !private ["Ps9AnyObject", "info"] +- ["Ps9AnyObject", "init"] +- ["Ps9AnyObject", "setUp"] +- ["Ps9AnyObject", "testDisabledLogging"] +- ["Ps9AnyObject", "testEnableDebug"] +- ["Ps9AnyObject", "testEnableError"] +- ["Ps9AnyObject", "testEnableInfo"] +- ["Ps9AnyObject", "testEnableWarning"] +- !private ["Ps9AnyObject", "warn"] +- ["Ps9AnyObject", ""] +- !private ["Ps11CVarArgType", "CounterLogging"] +- !private ["Ps11CVarArgType", "Logger"] +- !private ["Ps11CVarArgType", "XCTAssertEqual"] +- ["Ps11CVarArgType", "counter"] +- ["Ps11CVarArgType", "init"] +- ["Ps11CVarArgType", "setUp"] +- ["Ps11CVarArgType", "testDisabledLogging"] +- ["Ps11CVarArgType", "testEnableDebug"] +- ["Ps11CVarArgType", "testEnableError"] +- ["Ps11CVarArgType", "testEnableInfo"] +- ["Ps11CVarArgType", "testEnableWarning"] +- ["Ps11CVarArgType", ""] +- ["C17MixpanelDemoTests14CounterLogging", "LogMessage"] +- ["C17MixpanelDemoTests14CounterLogging", "addMessage"] +- ["C17MixpanelDemoTests14CounterLogging", "count"] +- ["C17MixpanelDemoTests14CounterLogging", "deinit"] +- ["C17MixpanelDemoTests14CounterLogging", "init"] +- !private ["Ps28CustomDebugStringConvertible", "CounterLogging"] +- !private ["Ps28CustomDebugStringConvertible", "Logger"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertEqual"] +- ["Ps28CustomDebugStringConvertible", "counter"] +- ["Ps28CustomDebugStringConvertible", "init"] +- ["Ps28CustomDebugStringConvertible", "setUp"] +- ["Ps28CustomDebugStringConvertible", "testDisabledLogging"] +- ["Ps28CustomDebugStringConvertible", "testEnableDebug"] +- ["Ps28CustomDebugStringConvertible", "testEnableError"] +- ["Ps28CustomDebugStringConvertible", "testEnableInfo"] +- ["Ps28CustomDebugStringConvertible", "testEnableWarning"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "CounterLogging"] +- !private ["Ps23CustomStringConvertible", "Logger"] +- !private ["Ps23CustomStringConvertible", "XCTAssertEqual"] +- ["Ps23CustomStringConvertible", "counter"] +- ["Ps23CustomStringConvertible", "init"] +- ["Ps23CustomStringConvertible", "setUp"] +- ["Ps23CustomStringConvertible", "testDisabledLogging"] +- ["Ps23CustomStringConvertible", "testEnableDebug"] +- ["Ps23CustomStringConvertible", "testEnableError"] +- ["Ps23CustomStringConvertible", "testEnableInfo"] +- ["Ps23CustomStringConvertible", "testEnableWarning"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Ps9Equatable", "CounterLogging"] +- !private ["Ps9Equatable", "Debug"] +- !private ["Ps9Equatable", "Error"] +- !private ["Ps9Equatable", "Info"] +- !private ["Ps9Equatable", "Logger"] +- !private ["Ps9Equatable", "Warning"] +- !private ["Ps9Equatable", "XCTAssertEqual"] +- ["Ps9Equatable", "counter"] +- ["Ps9Equatable", "init"] +- ["Ps9Equatable", "setUp"] +- ["Ps9Equatable", "testDisabledLogging"] +- ["Ps9Equatable", "testEnableDebug"] +- ["Ps9Equatable", "testEnableError"] +- ["Ps9Equatable", "testEnableInfo"] +- ["Ps9Equatable", "testEnableWarning"] +- ["Ps9Equatable", ""] +- !private ["Ps8Hashable", "CounterLogging"] +- !private ["Ps8Hashable", "Debug"] +- !private ["Ps8Hashable", "Error"] +- !private ["Ps8Hashable", "Info"] +- !private ["Ps8Hashable", "Logger"] +- !private ["Ps8Hashable", "Warning"] +- !private ["Ps8Hashable", "XCTAssertEqual"] +- ["Ps8Hashable", "counter"] +- ["Ps8Hashable", "init"] +- ["Ps8Hashable", "setUp"] +- ["Ps8Hashable", "testDisabledLogging"] +- ["Ps8Hashable", "testEnableDebug"] +- ["Ps8Hashable", "testEnableError"] +- ["Ps8Hashable", "testEnableInfo"] +- ["Ps8Hashable", "testEnableWarning"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["O8Mixpanel8LogLevel", "Debug"] +- !private ["O8Mixpanel8LogLevel", "Error"] +- !private ["O8Mixpanel8LogLevel", "Info"] +- !private ["O8Mixpanel8LogLevel", "Warning"] +- !private ["C8Mixpanel6Logger", "addLogging"] +- !private ["C8Mixpanel6Logger", "debug"] +- !private ["C8Mixpanel6Logger", "disableLevel"] +- !private ["C8Mixpanel6Logger", "enableLevel"] +- !private ["C8Mixpanel6Logger", "error"] +- !private ["C8Mixpanel6Logger", "info"] +- !private ["C8Mixpanel6Logger", "warn"] +- ["C17MixpanelDemoTests11LoggerTests", "CounterLogging"] +- !private ["C17MixpanelDemoTests11LoggerTests", "Logger"] +- !private ["C17MixpanelDemoTests11LoggerTests", "XCTAssertEqual"] +- ["C17MixpanelDemoTests11LoggerTests", "counter"] +- ["C17MixpanelDemoTests11LoggerTests", "deinit"] +- ["C17MixpanelDemoTests11LoggerTests", "init"] +- ["C17MixpanelDemoTests11LoggerTests", "setUp"] +- ["C17MixpanelDemoTests11LoggerTests", "testDisabledLogging"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableDebug"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableError"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableInfo"] +- ["C17MixpanelDemoTests11LoggerTests", "testEnableWarning"] +- ["P8Mixpanel7Logging", "addMessage"] +- !private ["P8Mixpanel7Logging", "count"] +- !private ["P8Mixpanel7Logging", "init"] +- ["P8Mixpanel7Logging", ""] +- ["CSo8NSObject", "CounterLogging"] +- !private ["CSo8NSObject", "Logger"] +- !private ["CSo8NSObject", "XCTAssertEqual"] +- ["CSo8NSObject", "counter"] +- ["CSo8NSObject", "init"] +- ["CSo8NSObject", "setUp"] +- ["CSo8NSObject", "testDisabledLogging"] +- ["CSo8NSObject", "testEnableDebug"] +- ["CSo8NSObject", "testEnableError"] +- ["CSo8NSObject", "testEnableInfo"] +- ["CSo8NSObject", "testEnableWarning"] +- !private ["PSo16NSObjectProtocol", "CounterLogging"] +- !private ["PSo16NSObjectProtocol", "Logger"] +- !private ["PSo16NSObjectProtocol", "XCTAssertEqual"] +- ["PSo16NSObjectProtocol", "counter"] +- ["PSo16NSObjectProtocol", "init"] +- ["PSo16NSObjectProtocol", "setUp"] +- ["PSo16NSObjectProtocol", "testDisabledLogging"] +- ["PSo16NSObjectProtocol", "testEnableDebug"] +- ["PSo16NSObjectProtocol", "testEnableError"] +- ["PSo16NSObjectProtocol", "testEnableInfo"] +- ["PSo16NSObjectProtocol", "testEnableWarning"] +- ["PSo16NSObjectProtocol", ""] +- !private ["Sq", "deinit"] +- !private ["Ps16RawRepresentable", "Debug"] +- !private ["Ps16RawRepresentable", "Error"] +- !private ["Ps16RawRepresentable", "Info"] +- !private ["Ps16RawRepresentable", "Warning"] +- !private ["Vs12StaticString", "deinit"] +- ["CSo6XCTest", "CounterLogging"] +- !private ["CSo6XCTest", "Logger"] +- !private ["CSo6XCTest", "XCTAssertEqual"] +- ["CSo6XCTest", "counter"] +- ["CSo6XCTest", "init"] +- ["CSo6XCTest", "setUp"] +- ["CSo6XCTest", "testDisabledLogging"] +- ["CSo6XCTest", "testEnableDebug"] +- ["CSo6XCTest", "testEnableError"] +- ["CSo6XCTest", "testEnableInfo"] +- ["CSo6XCTest", "testEnableWarning"] +- ["CSo10XCTestCase", "CounterLogging"] +- !private ["CSo10XCTestCase", "Logger"] +- !private ["CSo10XCTestCase", "XCTAssertEqual"] +- ["CSo10XCTestCase", "counter"] +- ["CSo10XCTestCase", "init"] +- ["CSo10XCTestCase", "setUp"] +- ["CSo10XCTestCase", "testDisabledLogging"] +- ["CSo10XCTestCase", "testEnableDebug"] +- ["CSo10XCTestCase", "testEnableError"] +- ["CSo10XCTestCase", "testEnableInfo"] +- ["CSo10XCTestCase", "testEnableWarning"] +- ["CSo10XCTestCase", ""] +depends-nominal: +- "Ps9AnyObject" +- "Ps11CVarArgType" +- "C17MixpanelDemoTests14CounterLogging" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Ps9Equatable" +- "Ps8Hashable" +- !private "SQ" +- !private "O8Mixpanel8LogLevel" +- !private "C8Mixpanel6Logger" +- "C17MixpanelDemoTests11LoggerTests" +- "P8Mixpanel7Logging" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Sq" +- !private "Ps16RawRepresentable" +- !private "Vs12StaticString" +- "CSo6XCTest" +- "CSo10XCTestCase" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule" +interface-hash: "bf89d691408427b6f517fd5f4d251c1a" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftdoc new file mode 100644 index 00000000..bea97cbf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftmodule new file mode 100644 index 00000000..b7e0d713 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.d new file mode 100644 index 00000000..bad10d60 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o new file mode 100644 index 00000000..4ca79a6e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.swiftdeps new file mode 100644 index 00000000..7a896917 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.swiftdeps @@ -0,0 +1,560 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelBaseTests" +provides-nominal: +- "C17MixpanelDemoTests17MixpanelBaseTests" +provides-member: +- ["C17MixpanelDemoTests17MixpanelBaseTests", ""] +provides-dynamic-lookup: +- "requestCount" +- "setUp" +- "flushAndWaitForSerialQueue" +- "assertDefaultPeopleProperties" +- "allPropertyTypes" +- "tearDown" +- "waitForSerialQueue" +depends-top-level: +- !private "BooleanLiteralType" +- !private "LSNocilla" +- !private "NSNull" +- !private "NSDateFormatter" +- !private "dispatch_sync" +- !private "UnicodeScalarType" +- "MixpanelDelegate" +- !private "XCTAssertNotNil" +- "XCTestCase" +- !private "Dictionary" +- !private "NSURL" +- "Properties" +- "MixpanelInstance" +- !private "StringLiteralType" +- "MixpanelBaseTests" +- !private "Mixpanel" +- !private "NSLog" +- "Bool" +- !private "Array" +- !private "stubTrack" +- !private "kTestToken" +depends-member: +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "LSNocilla"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSDateFormatter"] +- !private ["Ps9AnyObject", "NSLog"] +- !private ["Ps9AnyObject", "NSNull"] +- !private ["Ps9AnyObject", "NSURL"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "XCTAssertNotNil"] +- ["Ps9AnyObject", "allPropertyTypes"] +- ["Ps9AnyObject", "assertDefaultPeopleProperties"] +- !private ["Ps9AnyObject", "clearStubs"] +- !private ["Ps9AnyObject", "dateFormat"] +- !private ["Ps9AnyObject", "dateFromString"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "dispatch_sync"] +- !private ["Ps9AnyObject", "flush"] +- ["Ps9AnyObject", "flushAndWaitForSerialQueue"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "kTestToken"] +- ["Ps9AnyObject", "mixpanel"] +- ["Ps9AnyObject", "mixpanelWillFlush"] +- ["Ps9AnyObject", "requestCount"] +- !private ["Ps9AnyObject", "reset"] +- !private ["Ps9AnyObject", "serialQueue"] +- ["Ps9AnyObject", "setUp"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "start"] +- !private ["Ps9AnyObject", "stop"] +- !private ["Ps9AnyObject", "stubTrack"] +- ["Ps9AnyObject", "tearDown"] +- ["Ps9AnyObject", "waitForSerialQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "deinit"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["PSo8CAAction", "init"] +- !private ["Ps11CVarArgType", "LSNocilla"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSDateFormatter"] +- !private ["Ps11CVarArgType", "NSLog"] +- !private ["Ps11CVarArgType", "NSNull"] +- !private ["Ps11CVarArgType", "NSURL"] +- !private ["Ps11CVarArgType", "XCTAssertNotNil"] +- ["Ps11CVarArgType", "allPropertyTypes"] +- ["Ps11CVarArgType", "assertDefaultPeopleProperties"] +- !private ["Ps11CVarArgType", "clearStubs"] +- !private ["Ps11CVarArgType", "dateFormat"] +- !private ["Ps11CVarArgType", "dateFromString"] +- !private ["Ps11CVarArgType", "dispatch_sync"] +- ["Ps11CVarArgType", "flushAndWaitForSerialQueue"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "kTestToken"] +- ["Ps11CVarArgType", "mixpanel"] +- ["Ps11CVarArgType", "mixpanelWillFlush"] +- ["Ps11CVarArgType", "requestCount"] +- ["Ps11CVarArgType", "setUp"] +- !private ["Ps11CVarArgType", "sharedInstance"] +- !private ["Ps11CVarArgType", "start"] +- !private ["Ps11CVarArgType", "stop"] +- !private ["Ps11CVarArgType", "stubTrack"] +- ["Ps11CVarArgType", "tearDown"] +- ["Ps11CVarArgType", "waitForSerialQueue"] +- ["Ps11CVarArgType", ""] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "LSNocilla"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSDateFormatter"] +- !private ["Ps28CustomDebugStringConvertible", "NSLog"] +- !private ["Ps28CustomDebugStringConvertible", "NSNull"] +- !private ["Ps28CustomDebugStringConvertible", "NSURL"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNotNil"] +- ["Ps28CustomDebugStringConvertible", "allPropertyTypes"] +- ["Ps28CustomDebugStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearStubs"] +- !private ["Ps28CustomDebugStringConvertible", "dateFormat"] +- !private ["Ps28CustomDebugStringConvertible", "dateFromString"] +- !private ["Ps28CustomDebugStringConvertible", "dispatch_sync"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- ["Ps28CustomDebugStringConvertible", "flushAndWaitForSerialQueue"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "kTestToken"] +- ["Ps28CustomDebugStringConvertible", "mixpanel"] +- ["Ps28CustomDebugStringConvertible", "mixpanelWillFlush"] +- ["Ps28CustomDebugStringConvertible", "requestCount"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- !private ["Ps28CustomDebugStringConvertible", "serialQueue"] +- ["Ps28CustomDebugStringConvertible", "setUp"] +- !private ["Ps28CustomDebugStringConvertible", "sharedInstance"] +- !private ["Ps28CustomDebugStringConvertible", "start"] +- !private ["Ps28CustomDebugStringConvertible", "stop"] +- !private ["Ps28CustomDebugStringConvertible", "stubTrack"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "tearDown"] +- ["Ps28CustomDebugStringConvertible", "waitForSerialQueue"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "LSNocilla"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSDateFormatter"] +- !private ["Ps23CustomStringConvertible", "NSLog"] +- !private ["Ps23CustomStringConvertible", "NSNull"] +- !private ["Ps23CustomStringConvertible", "NSURL"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNotNil"] +- ["Ps23CustomStringConvertible", "allPropertyTypes"] +- ["Ps23CustomStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps23CustomStringConvertible", "clearStubs"] +- !private ["Ps23CustomStringConvertible", "dateFormat"] +- !private ["Ps23CustomStringConvertible", "dateFromString"] +- !private ["Ps23CustomStringConvertible", "dispatch_sync"] +- ["Ps23CustomStringConvertible", "flushAndWaitForSerialQueue"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "kTestToken"] +- ["Ps23CustomStringConvertible", "mixpanel"] +- ["Ps23CustomStringConvertible", "mixpanelWillFlush"] +- ["Ps23CustomStringConvertible", "requestCount"] +- ["Ps23CustomStringConvertible", "setUp"] +- !private ["Ps23CustomStringConvertible", "sharedInstance"] +- !private ["Ps23CustomStringConvertible", "start"] +- !private ["Ps23CustomStringConvertible", "stop"] +- !private ["Ps23CustomStringConvertible", "stubTrack"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "tearDown"] +- ["Ps23CustomStringConvertible", "waitForSerialQueue"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "LSNocilla"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSDateFormatter"] +- !private ["Ps9Equatable", "NSLog"] +- !private ["Ps9Equatable", "NSNull"] +- !private ["Ps9Equatable", "NSURL"] +- !private ["Ps9Equatable", "XCTAssertNotNil"] +- ["Ps9Equatable", "allPropertyTypes"] +- ["Ps9Equatable", "assertDefaultPeopleProperties"] +- !private ["Ps9Equatable", "clearStubs"] +- !private ["Ps9Equatable", "dateFormat"] +- !private ["Ps9Equatable", "dateFromString"] +- !private ["Ps9Equatable", "dispatch_sync"] +- ["Ps9Equatable", "flushAndWaitForSerialQueue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "kTestToken"] +- ["Ps9Equatable", "mixpanel"] +- ["Ps9Equatable", "mixpanelWillFlush"] +- ["Ps9Equatable", "requestCount"] +- ["Ps9Equatable", "setUp"] +- !private ["Ps9Equatable", "sharedInstance"] +- !private ["Ps9Equatable", "start"] +- !private ["Ps9Equatable", "stop"] +- !private ["Ps9Equatable", "stubTrack"] +- ["Ps9Equatable", "tearDown"] +- ["Ps9Equatable", "waitForSerialQueue"] +- ["Ps9Equatable", ""] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["P8Mixpanel13FlushDelegate", "serialQueue"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Ps8Hashable", "LSNocilla"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSDateFormatter"] +- !private ["Ps8Hashable", "NSLog"] +- !private ["Ps8Hashable", "NSNull"] +- !private ["Ps8Hashable", "NSURL"] +- !private ["Ps8Hashable", "XCTAssertNotNil"] +- ["Ps8Hashable", "allPropertyTypes"] +- ["Ps8Hashable", "assertDefaultPeopleProperties"] +- !private ["Ps8Hashable", "clearStubs"] +- !private ["Ps8Hashable", "dateFormat"] +- !private ["Ps8Hashable", "dateFromString"] +- !private ["Ps8Hashable", "dispatch_sync"] +- ["Ps8Hashable", "flushAndWaitForSerialQueue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "kTestToken"] +- ["Ps8Hashable", "mixpanel"] +- ["Ps8Hashable", "mixpanelWillFlush"] +- ["Ps8Hashable", "requestCount"] +- ["Ps8Hashable", "setUp"] +- !private ["Ps8Hashable", "sharedInstance"] +- !private ["Ps8Hashable", "start"] +- !private ["Ps8Hashable", "stop"] +- !private ["Ps8Hashable", "stubTrack"] +- ["Ps8Hashable", "tearDown"] +- ["Ps8Hashable", "waitForSerialQueue"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "deinit"] +- !private ["CSo9LSNocilla", "clearStubs"] +- !private ["CSo9LSNocilla", "sharedInstance"] +- !private ["CSo9LSNocilla", "start"] +- !private ["CSo9LSNocilla", "stop"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "Bool"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "LSNocilla"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Mixpanel"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "MixpanelInstance"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSDateFormatter"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSLog"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSNull"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSURL"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNotNil"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "allPropertyTypes"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "deinit"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "dispatch_sync"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "flushAndWaitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "kTestToken"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanel"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanelWillFlush"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "requestCount"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "setUp"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "stubTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "tearDown"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "waitForSerialQueue"] +- !private ["P8Mixpanel16MixpanelDelegate", "LSNocilla"] +- !private ["P8Mixpanel16MixpanelDelegate", "Mixpanel"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSDateFormatter"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSLog"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSNull"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSURL"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNotNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "dispatch_sync"] +- !private ["P8Mixpanel16MixpanelDelegate", "kTestToken"] +- !private ["P8Mixpanel16MixpanelDelegate", "mixpanel"] +- ["P8Mixpanel16MixpanelDelegate", "mixpanelWillFlush"] +- !private ["P8Mixpanel16MixpanelDelegate", "stubTrack"] +- !private ["P8Mixpanel16MixpanelDelegate", "waitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", ""] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- !private ["C8Mixpanel16MixpanelInstance", "serialQueue"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["PSo8NSCoding", "dateFormat"] +- !private ["PSo8NSCoding", "dateFromString"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "dateFormat"] +- !private ["PSo9NSCopying", "dateFromString"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo15NSDateFormatter", "dateFormat"] +- !private ["CSo15NSDateFormatter", "dateFromString"] +- !private ["CSo15NSDateFormatter", "init"] +- !private ["CSo11NSFormatter", "dateFormat"] +- !private ["CSo11NSFormatter", "dateFromString"] +- !private ["CSo11NSFormatter", "init"] +- !private ["CSo6NSNull", "init"] +- ["CSo8NSObject", "Bool"] +- !private ["CSo8NSObject", "LSNocilla"] +- !private ["CSo8NSObject", "Mixpanel"] +- ["CSo8NSObject", "MixpanelInstance"] +- !private ["CSo8NSObject", "NSDateFormatter"] +- !private ["CSo8NSObject", "NSLog"] +- !private ["CSo8NSObject", "NSNull"] +- !private ["CSo8NSObject", "NSURL"] +- ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "XCTAssertNotNil"] +- ["CSo8NSObject", "allPropertyTypes"] +- ["CSo8NSObject", "assertDefaultPeopleProperties"] +- !private ["CSo8NSObject", "clearStubs"] +- !private ["CSo8NSObject", "dateFormat"] +- !private ["CSo8NSObject", "dateFromString"] +- !private ["CSo8NSObject", "dispatch_sync"] +- ["CSo8NSObject", "flushAndWaitForSerialQueue"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "kTestToken"] +- ["CSo8NSObject", "mixpanel"] +- ["CSo8NSObject", "mixpanelWillFlush"] +- ["CSo8NSObject", "requestCount"] +- ["CSo8NSObject", "setUp"] +- !private ["CSo8NSObject", "sharedInstance"] +- !private ["CSo8NSObject", "start"] +- !private ["CSo8NSObject", "stop"] +- !private ["CSo8NSObject", "stubTrack"] +- ["CSo8NSObject", "tearDown"] +- ["CSo8NSObject", "waitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "LSNocilla"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSDateFormatter"] +- !private ["PSo16NSObjectProtocol", "NSLog"] +- !private ["PSo16NSObjectProtocol", "NSNull"] +- !private ["PSo16NSObjectProtocol", "NSURL"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNotNil"] +- ["PSo16NSObjectProtocol", "allPropertyTypes"] +- ["PSo16NSObjectProtocol", "assertDefaultPeopleProperties"] +- !private ["PSo16NSObjectProtocol", "clearStubs"] +- !private ["PSo16NSObjectProtocol", "dateFormat"] +- !private ["PSo16NSObjectProtocol", "dateFromString"] +- !private ["PSo16NSObjectProtocol", "dispatch_sync"] +- ["PSo16NSObjectProtocol", "flushAndWaitForSerialQueue"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "kTestToken"] +- ["PSo16NSObjectProtocol", "mixpanel"] +- ["PSo16NSObjectProtocol", "mixpanelWillFlush"] +- ["PSo16NSObjectProtocol", "requestCount"] +- ["PSo16NSObjectProtocol", "setUp"] +- !private ["PSo16NSObjectProtocol", "sharedInstance"] +- !private ["PSo16NSObjectProtocol", "start"] +- !private ["PSo16NSObjectProtocol", "stop"] +- !private ["PSo16NSObjectProtocol", "stubTrack"] +- ["PSo16NSObjectProtocol", "tearDown"] +- ["PSo16NSObjectProtocol", "waitForSerialQueue"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo5NSURL", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["SS", "deinit"] +- ["CSo6XCTest", "Bool"] +- !private ["CSo6XCTest", "LSNocilla"] +- !private ["CSo6XCTest", "Mixpanel"] +- ["CSo6XCTest", "MixpanelInstance"] +- !private ["CSo6XCTest", "NSDateFormatter"] +- !private ["CSo6XCTest", "NSLog"] +- !private ["CSo6XCTest", "NSNull"] +- !private ["CSo6XCTest", "NSURL"] +- ["CSo6XCTest", "Properties"] +- !private ["CSo6XCTest", "XCTAssertNotNil"] +- ["CSo6XCTest", "allPropertyTypes"] +- ["CSo6XCTest", "assertDefaultPeopleProperties"] +- !private ["CSo6XCTest", "dispatch_sync"] +- ["CSo6XCTest", "flushAndWaitForSerialQueue"] +- ["CSo6XCTest", "init"] +- !private ["CSo6XCTest", "kTestToken"] +- ["CSo6XCTest", "mixpanel"] +- ["CSo6XCTest", "mixpanelWillFlush"] +- ["CSo6XCTest", "requestCount"] +- ["CSo6XCTest", "setUp"] +- !private ["CSo6XCTest", "stubTrack"] +- ["CSo6XCTest", "tearDown"] +- ["CSo6XCTest", "waitForSerialQueue"] +- ["CSo10XCTestCase", "Bool"] +- !private ["CSo10XCTestCase", "LSNocilla"] +- !private ["CSo10XCTestCase", "Mixpanel"] +- ["CSo10XCTestCase", "MixpanelInstance"] +- !private ["CSo10XCTestCase", "NSDateFormatter"] +- !private ["CSo10XCTestCase", "NSLog"] +- !private ["CSo10XCTestCase", "NSNull"] +- !private ["CSo10XCTestCase", "NSURL"] +- ["CSo10XCTestCase", "Properties"] +- !private ["CSo10XCTestCase", "XCTAssertNotNil"] +- ["CSo10XCTestCase", "allPropertyTypes"] +- ["CSo10XCTestCase", "assertDefaultPeopleProperties"] +- !private ["CSo10XCTestCase", "dispatch_sync"] +- ["CSo10XCTestCase", "flushAndWaitForSerialQueue"] +- ["CSo10XCTestCase", "init"] +- !private ["CSo10XCTestCase", "kTestToken"] +- ["CSo10XCTestCase", "mixpanel"] +- ["CSo10XCTestCase", "mixpanelWillFlush"] +- ["CSo10XCTestCase", "requestCount"] +- ["CSo10XCTestCase", "setUp"] +- !private ["CSo10XCTestCase", "stubTrack"] +- ["CSo10XCTestCase", "tearDown"] +- ["CSo10XCTestCase", "waitForSerialQueue"] +- ["CSo10XCTestCase", ""] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps32_FileReferenceLiteralConvertible", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "subscript"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "PSo8CAAction" +- "Ps11CVarArgType" +- !private "Ps14CollectionType" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps13GeneratorType" +- "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "CSo9LSNocilla" +- !private "C8Mixpanel8Mixpanel" +- "C17MixpanelDemoTests17MixpanelBaseTests" +- "P8Mixpanel16MixpanelDelegate" +- !private "C8Mixpanel16MixpanelInstance" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo15NSDateFormatter" +- !private "CSo11NSFormatter" +- !private "CSo6NSNull" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo5NSURL" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps12SequenceType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "SS" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "Ps10_ArrayType" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps32_FileReferenceLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule" +interface-hash: "6b7f903a1c2157be2c884044cfb903bb" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftdoc new file mode 100644 index 00000000..472c7594 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftmodule new file mode 100644 index 00000000..98700352 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-OutputFileMap.json new file mode 100644 index 00000000..b20de38e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelPeopleTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/TestConstants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelBaseTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelDemoTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/LoggerTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Debug-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-Swift.h new file mode 100644 index 00000000..62bddbd1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-Swift.h @@ -0,0 +1,104 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import XCTest; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" + +@interface XCTestCase (SWIFT_EXTENSION(MixpanelDemoTests)) +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-master.swiftdeps new file mode 100644 index 00000000..301c46c8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-master.swiftdeps @@ -0,0 +1,9 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "5ba2353be9ab1bf6aac47631e48a7ece" +build_time: [522881563, 784101000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift": [522872641, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift": [522872641, 0] diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..9ca0a0d9 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.d new file mode 100644 index 00000000..9d570135 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o new file mode 100644 index 00000000..e3ceffd5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdeps new file mode 100644 index 00000000..da92ef00 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdeps @@ -0,0 +1,1590 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelDemoTests" +provides-nominal: +- "C17MixpanelDemoTests17MixpanelDemoTests" +provides-member: +- ["C17MixpanelDemoTests17MixpanelDemoTests", ""] +provides-dynamic-lookup: +- "testFlushPeople" +- "testTrackPushNotificationMalformed" +- "testRetryAfterHTTPHeader" +- "testFlushEvents" +- "testTrackLaunchOptions" +- "testUnexpectedBeahviours" +- "testNetworkingWithStress" +- "testMixpanelDelegate" +- "testTrackWithDefaultProperties" +- "testRegisterSuperProperties" +- "test5XXResponse" +- "testDropEvents" +- "testTrackPushNotification" +- "testValidSuperProperties" +- "testAddingEventsAfterFlush" +- "testIdentify" +- "testInvalidPropertiesTrack" +- "testReset" +- "testNestedUnsupportedTypes" +- "testTrackWithCustomDistinctIdAndToken" +- "testFlushNetworkFailure" +- "testEventTiming" +- "testTrackWithCustomProperties" +- "testValidPropertiesTrack" +- "testArchive" +- "testTelephonyInfoInitialized" +- "testInvalidSuperProperties" +depends-top-level: +- !private "fabs" +- !private ">=" +- !private "-" +- !private "XCTAssertNotNil" +- !private "Queue" +- !private "..<" +- !private "XCTAssertEqual" +- !private "AutomaticProperties" +- !private "StringLiteralType" +- !private "UInt" +- !private "==" +- !private "+" +- !private "kTestToken" +- !private "UnicodeScalarType" +- !private "Mixpanel" +- !private "NSFileManager" +- !private "UIApplicationLaunchOptionsRemoteNotificationKey" +- !private "XCTAssert" +- !private "NSError" +- !private "Dictionary" +- !private "print" +- !private "Persistence" +- !private "String" +- !private "NSDate" +- !private "Int" +- !private "stubEngage" +- "MixpanelDemoTests" +- !private "<" +- !private "NSData" +- "MixpanelBaseTests" +- !private "XCTAssertNil" +- !private "NSDictionary" +- !private "stubTrack" +- !private "Properties" +- !private "LSNocilla" +- !private "Double" +- !private "XCTAssertTrue" +- !private "Array" +depends-member: +- !private ["Ps16AbsoluteValuable", "IntegerLiteralType"] +- !private ["Ps16AbsoluteValuable", "Stride"] +- !private ["Ps9AnyObject", "AutomaticProperties"] +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "LSNocilla"] +- !private ["Ps9AnyObject", "Mixpanel"] +- !private ["Ps9AnyObject", "NSData"] +- !private ["Ps9AnyObject", "NSDate"] +- !private ["Ps9AnyObject", "NSDictionary"] +- !private ["Ps9AnyObject", "NSError"] +- !private ["Ps9AnyObject", "NSFileManager"] +- !private ["Ps9AnyObject", "Persistence"] +- !private ["Ps9AnyObject", "Queue"] +- !private ["Ps9AnyObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9AnyObject", "UInt"] +- !private ["Ps9AnyObject", "Value"] +- !private ["Ps9AnyObject", "XCTAssert"] +- !private ["Ps9AnyObject", "XCTAssertEqual"] +- !private ["Ps9AnyObject", "XCTAssertNil"] +- !private ["Ps9AnyObject", "XCTAssertNotNil"] +- !private ["Ps9AnyObject", "XCTAssertTrue"] +- !private ["Ps9AnyObject", "XCTExpectAssert"] +- !private ["Ps9AnyObject", "allPropertyTypes"] +- !private ["Ps9AnyObject", "andFailWithError"] +- !private ["Ps9AnyObject", "andReturn"] +- !private ["Ps9AnyObject", "append"] +- !private ["Ps9AnyObject", "archive"] +- !private ["Ps9AnyObject", "archiveToFile"] +- !private ["Ps9AnyObject", "assertDefaultPeopleProperties"] +- !private ["Ps9AnyObject", "clearStubs"] +- !private ["Ps9AnyObject", "clearSuperProperties"] +- !private ["Ps9AnyObject", "currentSuperProperties"] +- !private ["Ps9AnyObject", "defaultDistinctId"] +- !private ["Ps9AnyObject", "defaultManager"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "delegate"] +- !private ["Ps9AnyObject", "distinctId"] +- !private ["Ps9AnyObject", "eventsQueue"] +- !private ["Ps9AnyObject", "fabs"] +- !private ["Ps9AnyObject", "fileExistsAtPath"] +- !private ["Ps9AnyObject", "filePathWithType"] +- !private ["Ps9AnyObject", "flush"] +- !private ["Ps9AnyObject", "flushAndWaitForSerialQueue"] +- !private ["Ps9AnyObject", "flushInstance"] +- !private ["Ps9AnyObject", "flushRequest"] +- !private ["Ps9AnyObject", "identify"] +- !private ["Ps9AnyObject", "increment"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "initialize"] +- !private ["Ps9AnyObject", "kTestToken"] +- !private ["Ps9AnyObject", "mixpanel"] +- !private ["Ps9AnyObject", "networkConsecutiveFailures"] +- !private ["Ps9AnyObject", "networkRequestsAllowedAfterTime"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "print"] +- !private ["Ps9AnyObject", "registerSuperProperties"] +- !private ["Ps9AnyObject", "registerSuperPropertiesOnce"] +- !private ["Ps9AnyObject", "reset"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "sharedInstance"] +- !private ["Ps9AnyObject", "stubEngage"] +- !private ["Ps9AnyObject", "stubTrack"] +- !private ["Ps9AnyObject", "subscript"] +- !private ["Ps9AnyObject", "telephonyInfo"] +- ["Ps9AnyObject", "test5XXResponse"] +- ["Ps9AnyObject", "testAddingEventsAfterFlush"] +- ["Ps9AnyObject", "testArchive"] +- ["Ps9AnyObject", "testDropEvents"] +- ["Ps9AnyObject", "testEventTiming"] +- ["Ps9AnyObject", "testFlushEvents"] +- ["Ps9AnyObject", "testFlushNetworkFailure"] +- ["Ps9AnyObject", "testFlushPeople"] +- ["Ps9AnyObject", "testIdentify"] +- ["Ps9AnyObject", "testInvalidPropertiesTrack"] +- ["Ps9AnyObject", "testInvalidSuperProperties"] +- ["Ps9AnyObject", "testMixpanelDelegate"] +- ["Ps9AnyObject", "testNestedUnsupportedTypes"] +- ["Ps9AnyObject", "testNetworkingWithStress"] +- ["Ps9AnyObject", "testRegisterSuperProperties"] +- ["Ps9AnyObject", "testReset"] +- ["Ps9AnyObject", "testRetryAfterHTTPHeader"] +- ["Ps9AnyObject", "testTelephonyInfoInitialized"] +- ["Ps9AnyObject", "testTrackLaunchOptions"] +- ["Ps9AnyObject", "testTrackPushNotification"] +- ["Ps9AnyObject", "testTrackPushNotificationMalformed"] +- ["Ps9AnyObject", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps9AnyObject", "testTrackWithCustomProperties"] +- ["Ps9AnyObject", "testTrackWithDefaultProperties"] +- ["Ps9AnyObject", "testUnexpectedBeahviours"] +- ["Ps9AnyObject", "testValidPropertiesTrack"] +- ["Ps9AnyObject", "testValidSuperProperties"] +- !private ["Ps9AnyObject", "time"] +- !private ["Ps9AnyObject", "timeIntervalSince1970"] +- !private ["Ps9AnyObject", "timedEvents"] +- !private ["Ps9AnyObject", "track"] +- !private ["Ps9AnyObject", "trackPushNotification"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "union"] +- !private ["Ps9AnyObject", "unregisterSuperProperty"] +- !private ["Ps9AnyObject", "waitForSerialQueue"] +- !private ["Ps9AnyObject", "withHeader"] +- ["Ps9AnyObject", ""] +- !private ["P8Mixpanel12AppLifecycle", "flushRequest"] +- !private ["OC8Mixpanel11Persistence11ArchiveType", "Events"] +- !private ["OC8Mixpanel11Persistence11ArchiveType", "People"] +- !private ["OC8Mixpanel11Persistence11ArchiveType", "Properties"] +- !private ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "append"] +- !private ["Sa", "count"] +- !private ["Sa", "deinit"] +- !private ["Sa", "init"] +- !private ["Sa", "isEmpty"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "append"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "init"] +- !private ["Ps23ArrayLiteralConvertible", "isEmpty"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["C8Mixpanel19AutomaticProperties", "telephonyInfo"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps22BidirectionalIndexType", "init"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "init"] +- !private ["Sb", "deinit"] +- !private ["V12CoreGraphics7CGFloat", "IntegerLiteralType"] +- !private ["V12CoreGraphics7CGFloat", "Stride"] +- !private ["V12CoreGraphics7CGFloat", "deinit"] +- !private ["Ps11CVarArgType", "AutomaticProperties"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "LSNocilla"] +- !private ["Ps11CVarArgType", "Mixpanel"] +- !private ["Ps11CVarArgType", "NSData"] +- !private ["Ps11CVarArgType", "NSDate"] +- !private ["Ps11CVarArgType", "NSDictionary"] +- !private ["Ps11CVarArgType", "NSError"] +- !private ["Ps11CVarArgType", "NSFileManager"] +- !private ["Ps11CVarArgType", "Persistence"] +- !private ["Ps11CVarArgType", "Queue"] +- !private ["Ps11CVarArgType", "Stride"] +- !private ["Ps11CVarArgType", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps11CVarArgType", "UInt"] +- !private ["Ps11CVarArgType", "XCTAssert"] +- !private ["Ps11CVarArgType", "XCTAssertEqual"] +- !private ["Ps11CVarArgType", "XCTAssertNil"] +- !private ["Ps11CVarArgType", "XCTAssertNotNil"] +- !private ["Ps11CVarArgType", "XCTAssertTrue"] +- !private ["Ps11CVarArgType", "XCTExpectAssert"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "allPropertyTypes"] +- !private ["Ps11CVarArgType", "andFailWithError"] +- !private ["Ps11CVarArgType", "andReturn"] +- !private ["Ps11CVarArgType", "assertDefaultPeopleProperties"] +- !private ["Ps11CVarArgType", "clearStubs"] +- !private ["Ps11CVarArgType", "defaultManager"] +- !private ["Ps11CVarArgType", "fabs"] +- !private ["Ps11CVarArgType", "fileExistsAtPath"] +- !private ["Ps11CVarArgType", "flushAndWaitForSerialQueue"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "kTestToken"] +- !private ["Ps11CVarArgType", "mixpanel"] +- !private ["Ps11CVarArgType", "print"] +- !private ["Ps11CVarArgType", "sharedInstance"] +- !private ["Ps11CVarArgType", "stubEngage"] +- !private ["Ps11CVarArgType", "stubTrack"] +- ["Ps11CVarArgType", "test5XXResponse"] +- ["Ps11CVarArgType", "testAddingEventsAfterFlush"] +- ["Ps11CVarArgType", "testArchive"] +- ["Ps11CVarArgType", "testDropEvents"] +- ["Ps11CVarArgType", "testEventTiming"] +- ["Ps11CVarArgType", "testFlushEvents"] +- ["Ps11CVarArgType", "testFlushNetworkFailure"] +- ["Ps11CVarArgType", "testFlushPeople"] +- ["Ps11CVarArgType", "testIdentify"] +- ["Ps11CVarArgType", "testInvalidPropertiesTrack"] +- ["Ps11CVarArgType", "testInvalidSuperProperties"] +- ["Ps11CVarArgType", "testMixpanelDelegate"] +- ["Ps11CVarArgType", "testNestedUnsupportedTypes"] +- ["Ps11CVarArgType", "testNetworkingWithStress"] +- ["Ps11CVarArgType", "testRegisterSuperProperties"] +- ["Ps11CVarArgType", "testReset"] +- ["Ps11CVarArgType", "testRetryAfterHTTPHeader"] +- ["Ps11CVarArgType", "testTelephonyInfoInitialized"] +- ["Ps11CVarArgType", "testTrackLaunchOptions"] +- ["Ps11CVarArgType", "testTrackPushNotification"] +- ["Ps11CVarArgType", "testTrackPushNotificationMalformed"] +- ["Ps11CVarArgType", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps11CVarArgType", "testTrackWithCustomProperties"] +- ["Ps11CVarArgType", "testTrackWithDefaultProperties"] +- ["Ps11CVarArgType", "testUnexpectedBeahviours"] +- ["Ps11CVarArgType", "testValidPropertiesTrack"] +- ["Ps11CVarArgType", "testValidSuperProperties"] +- !private ["Ps11CVarArgType", "timeIntervalSince1970"] +- !private ["Ps11CVarArgType", "waitForSerialQueue"] +- !private ["Ps11CVarArgType", "withHeader"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "append"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "init"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "Stride"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "AutomaticProperties"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "IntegerLiteralType"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "LSNocilla"] +- !private ["Ps28CustomDebugStringConvertible", "Mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "NSData"] +- !private ["Ps28CustomDebugStringConvertible", "NSDate"] +- !private ["Ps28CustomDebugStringConvertible", "NSDictionary"] +- !private ["Ps28CustomDebugStringConvertible", "NSError"] +- !private ["Ps28CustomDebugStringConvertible", "NSFileManager"] +- !private ["Ps28CustomDebugStringConvertible", "Persistence"] +- !private ["Ps28CustomDebugStringConvertible", "Queue"] +- !private ["Ps28CustomDebugStringConvertible", "Stride"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps28CustomDebugStringConvertible", "UInt"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssert"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertEqual"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNil"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNotNil"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertTrue"] +- !private ["Ps28CustomDebugStringConvertible", "XCTExpectAssert"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allPropertyTypes"] +- !private ["Ps28CustomDebugStringConvertible", "andFailWithError"] +- !private ["Ps28CustomDebugStringConvertible", "andReturn"] +- !private ["Ps28CustomDebugStringConvertible", "append"] +- !private ["Ps28CustomDebugStringConvertible", "archive"] +- !private ["Ps28CustomDebugStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps28CustomDebugStringConvertible", "clearStubs"] +- !private ["Ps28CustomDebugStringConvertible", "clearSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "currentSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "defaultDistinctId"] +- !private ["Ps28CustomDebugStringConvertible", "defaultManager"] +- !private ["Ps28CustomDebugStringConvertible", "delegate"] +- !private ["Ps28CustomDebugStringConvertible", "distinctId"] +- !private ["Ps28CustomDebugStringConvertible", "eventsQueue"] +- !private ["Ps28CustomDebugStringConvertible", "fabs"] +- !private ["Ps28CustomDebugStringConvertible", "fileExistsAtPath"] +- !private ["Ps28CustomDebugStringConvertible", "flush"] +- !private ["Ps28CustomDebugStringConvertible", "flushAndWaitForSerialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "flushInstance"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "kTestToken"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "print"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "registerSuperPropertiesOnce"] +- !private ["Ps28CustomDebugStringConvertible", "reset"] +- !private ["Ps28CustomDebugStringConvertible", "sharedInstance"] +- !private ["Ps28CustomDebugStringConvertible", "stubEngage"] +- !private ["Ps28CustomDebugStringConvertible", "stubTrack"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "test5XXResponse"] +- ["Ps28CustomDebugStringConvertible", "testAddingEventsAfterFlush"] +- ["Ps28CustomDebugStringConvertible", "testArchive"] +- ["Ps28CustomDebugStringConvertible", "testDropEvents"] +- ["Ps28CustomDebugStringConvertible", "testEventTiming"] +- ["Ps28CustomDebugStringConvertible", "testFlushEvents"] +- ["Ps28CustomDebugStringConvertible", "testFlushNetworkFailure"] +- ["Ps28CustomDebugStringConvertible", "testFlushPeople"] +- ["Ps28CustomDebugStringConvertible", "testIdentify"] +- ["Ps28CustomDebugStringConvertible", "testInvalidPropertiesTrack"] +- ["Ps28CustomDebugStringConvertible", "testInvalidSuperProperties"] +- ["Ps28CustomDebugStringConvertible", "testMixpanelDelegate"] +- ["Ps28CustomDebugStringConvertible", "testNestedUnsupportedTypes"] +- ["Ps28CustomDebugStringConvertible", "testNetworkingWithStress"] +- ["Ps28CustomDebugStringConvertible", "testRegisterSuperProperties"] +- ["Ps28CustomDebugStringConvertible", "testReset"] +- ["Ps28CustomDebugStringConvertible", "testRetryAfterHTTPHeader"] +- ["Ps28CustomDebugStringConvertible", "testTelephonyInfoInitialized"] +- ["Ps28CustomDebugStringConvertible", "testTrackLaunchOptions"] +- ["Ps28CustomDebugStringConvertible", "testTrackPushNotification"] +- ["Ps28CustomDebugStringConvertible", "testTrackPushNotificationMalformed"] +- ["Ps28CustomDebugStringConvertible", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps28CustomDebugStringConvertible", "testTrackWithCustomProperties"] +- ["Ps28CustomDebugStringConvertible", "testTrackWithDefaultProperties"] +- ["Ps28CustomDebugStringConvertible", "testUnexpectedBeahviours"] +- ["Ps28CustomDebugStringConvertible", "testValidPropertiesTrack"] +- ["Ps28CustomDebugStringConvertible", "testValidSuperProperties"] +- !private ["Ps28CustomDebugStringConvertible", "time"] +- !private ["Ps28CustomDebugStringConvertible", "timeIntervalSince1970"] +- !private ["Ps28CustomDebugStringConvertible", "timedEvents"] +- !private ["Ps28CustomDebugStringConvertible", "track"] +- !private ["Ps28CustomDebugStringConvertible", "trackPushNotification"] +- !private ["Ps28CustomDebugStringConvertible", "unregisterSuperProperty"] +- !private ["Ps28CustomDebugStringConvertible", "waitForSerialQueue"] +- !private ["Ps28CustomDebugStringConvertible", "withHeader"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "AutomaticProperties"] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "LSNocilla"] +- !private ["Ps23CustomStringConvertible", "Mixpanel"] +- !private ["Ps23CustomStringConvertible", "NSData"] +- !private ["Ps23CustomStringConvertible", "NSDate"] +- !private ["Ps23CustomStringConvertible", "NSDictionary"] +- !private ["Ps23CustomStringConvertible", "NSError"] +- !private ["Ps23CustomStringConvertible", "NSFileManager"] +- !private ["Ps23CustomStringConvertible", "Persistence"] +- !private ["Ps23CustomStringConvertible", "Queue"] +- !private ["Ps23CustomStringConvertible", "Stride"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps23CustomStringConvertible", "UInt"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "XCTAssert"] +- !private ["Ps23CustomStringConvertible", "XCTAssertEqual"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNil"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNotNil"] +- !private ["Ps23CustomStringConvertible", "XCTAssertTrue"] +- !private ["Ps23CustomStringConvertible", "XCTExpectAssert"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "allPropertyTypes"] +- !private ["Ps23CustomStringConvertible", "andFailWithError"] +- !private ["Ps23CustomStringConvertible", "andReturn"] +- !private ["Ps23CustomStringConvertible", "append"] +- !private ["Ps23CustomStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps23CustomStringConvertible", "clearStubs"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "defaultManager"] +- !private ["Ps23CustomStringConvertible", "fabs"] +- !private ["Ps23CustomStringConvertible", "fileExistsAtPath"] +- !private ["Ps23CustomStringConvertible", "flushAndWaitForSerialQueue"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "kTestToken"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "mixpanel"] +- !private ["Ps23CustomStringConvertible", "print"] +- !private ["Ps23CustomStringConvertible", "sharedInstance"] +- !private ["Ps23CustomStringConvertible", "stubEngage"] +- !private ["Ps23CustomStringConvertible", "stubTrack"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "test5XXResponse"] +- ["Ps23CustomStringConvertible", "testAddingEventsAfterFlush"] +- ["Ps23CustomStringConvertible", "testArchive"] +- ["Ps23CustomStringConvertible", "testDropEvents"] +- ["Ps23CustomStringConvertible", "testEventTiming"] +- ["Ps23CustomStringConvertible", "testFlushEvents"] +- ["Ps23CustomStringConvertible", "testFlushNetworkFailure"] +- ["Ps23CustomStringConvertible", "testFlushPeople"] +- ["Ps23CustomStringConvertible", "testIdentify"] +- ["Ps23CustomStringConvertible", "testInvalidPropertiesTrack"] +- ["Ps23CustomStringConvertible", "testInvalidSuperProperties"] +- ["Ps23CustomStringConvertible", "testMixpanelDelegate"] +- ["Ps23CustomStringConvertible", "testNestedUnsupportedTypes"] +- ["Ps23CustomStringConvertible", "testNetworkingWithStress"] +- ["Ps23CustomStringConvertible", "testRegisterSuperProperties"] +- ["Ps23CustomStringConvertible", "testReset"] +- ["Ps23CustomStringConvertible", "testRetryAfterHTTPHeader"] +- ["Ps23CustomStringConvertible", "testTelephonyInfoInitialized"] +- ["Ps23CustomStringConvertible", "testTrackLaunchOptions"] +- ["Ps23CustomStringConvertible", "testTrackPushNotification"] +- ["Ps23CustomStringConvertible", "testTrackPushNotificationMalformed"] +- ["Ps23CustomStringConvertible", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps23CustomStringConvertible", "testTrackWithCustomProperties"] +- ["Ps23CustomStringConvertible", "testTrackWithDefaultProperties"] +- ["Ps23CustomStringConvertible", "testUnexpectedBeahviours"] +- ["Ps23CustomStringConvertible", "testValidPropertiesTrack"] +- ["Ps23CustomStringConvertible", "testValidSuperProperties"] +- !private ["Ps23CustomStringConvertible", "timeIntervalSince1970"] +- !private ["Ps23CustomStringConvertible", "waitForSerialQueue"] +- !private ["Ps23CustomStringConvertible", "withHeader"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "count"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "isEmpty"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "count"] +- !private ["Ps28DictionaryLiteralConvertible", "init"] +- !private ["Ps28DictionaryLiteralConvertible", "isEmpty"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "Stride"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "AutomaticProperties"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Events"] +- !private ["Ps9Equatable", "Generator"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "LSNocilla"] +- !private ["Ps9Equatable", "Mixpanel"] +- !private ["Ps9Equatable", "NSData"] +- !private ["Ps9Equatable", "NSDate"] +- !private ["Ps9Equatable", "NSDictionary"] +- !private ["Ps9Equatable", "NSError"] +- !private ["Ps9Equatable", "NSFileManager"] +- !private ["Ps9Equatable", "People"] +- !private ["Ps9Equatable", "Persistence"] +- !private ["Ps9Equatable", "Properties"] +- !private ["Ps9Equatable", "Queue"] +- !private ["Ps9Equatable", "Stride"] +- !private ["Ps9Equatable", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps9Equatable", "UInt"] +- !private ["Ps9Equatable", "XCTAssert"] +- !private ["Ps9Equatable", "XCTAssertEqual"] +- !private ["Ps9Equatable", "XCTAssertNil"] +- !private ["Ps9Equatable", "XCTAssertNotNil"] +- !private ["Ps9Equatable", "XCTAssertTrue"] +- !private ["Ps9Equatable", "XCTExpectAssert"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "allPropertyTypes"] +- !private ["Ps9Equatable", "andFailWithError"] +- !private ["Ps9Equatable", "andReturn"] +- !private ["Ps9Equatable", "assertDefaultPeopleProperties"] +- !private ["Ps9Equatable", "clearStubs"] +- !private ["Ps9Equatable", "defaultManager"] +- !private ["Ps9Equatable", "fabs"] +- !private ["Ps9Equatable", "fileExistsAtPath"] +- !private ["Ps9Equatable", "flushAndWaitForSerialQueue"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "kTestToken"] +- !private ["Ps9Equatable", "mixpanel"] +- !private ["Ps9Equatable", "print"] +- !private ["Ps9Equatable", "sharedInstance"] +- !private ["Ps9Equatable", "stubEngage"] +- !private ["Ps9Equatable", "stubTrack"] +- ["Ps9Equatable", "test5XXResponse"] +- ["Ps9Equatable", "testAddingEventsAfterFlush"] +- ["Ps9Equatable", "testArchive"] +- ["Ps9Equatable", "testDropEvents"] +- ["Ps9Equatable", "testEventTiming"] +- ["Ps9Equatable", "testFlushEvents"] +- ["Ps9Equatable", "testFlushNetworkFailure"] +- ["Ps9Equatable", "testFlushPeople"] +- ["Ps9Equatable", "testIdentify"] +- ["Ps9Equatable", "testInvalidPropertiesTrack"] +- ["Ps9Equatable", "testInvalidSuperProperties"] +- ["Ps9Equatable", "testMixpanelDelegate"] +- ["Ps9Equatable", "testNestedUnsupportedTypes"] +- ["Ps9Equatable", "testNetworkingWithStress"] +- ["Ps9Equatable", "testRegisterSuperProperties"] +- ["Ps9Equatable", "testReset"] +- ["Ps9Equatable", "testRetryAfterHTTPHeader"] +- ["Ps9Equatable", "testTelephonyInfoInitialized"] +- ["Ps9Equatable", "testTrackLaunchOptions"] +- ["Ps9Equatable", "testTrackPushNotification"] +- ["Ps9Equatable", "testTrackPushNotificationMalformed"] +- ["Ps9Equatable", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps9Equatable", "testTrackWithCustomProperties"] +- ["Ps9Equatable", "testTrackWithDefaultProperties"] +- ["Ps9Equatable", "testUnexpectedBeahviours"] +- ["Ps9Equatable", "testValidPropertiesTrack"] +- ["Ps9Equatable", "testValidSuperProperties"] +- !private ["Ps9Equatable", "timeIntervalSince1970"] +- !private ["Ps9Equatable", "waitForSerialQueue"] +- !private ["Ps9Equatable", "withHeader"] +- ["Ps9Equatable", ""] +- !private ["Ps9ErrorType", "init"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "IntegerLiteralType"] +- !private ["Sf", "Stride"] +- !private ["Sf", "deinit"] +- !private ["Ps23FloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps23FloatLiteralConvertible", "Stride"] +- !private ["Ps17FloatingPointType", "IntegerLiteralType"] +- !private ["Ps17FloatingPointType", "Stride"] +- !private ["C8Mixpanel5Flush", "flushRequest"] +- !private ["P8Mixpanel13FlushDelegate", "archive"] +- !private ["P8Mixpanel13FlushDelegate", "clearSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "currentSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "defaultDistinctId"] +- !private ["P8Mixpanel13FlushDelegate", "delegate"] +- !private ["P8Mixpanel13FlushDelegate", "distinctId"] +- !private ["P8Mixpanel13FlushDelegate", "eventsQueue"] +- !private ["P8Mixpanel13FlushDelegate", "flush"] +- !private ["P8Mixpanel13FlushDelegate", "flushInstance"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperProperties"] +- !private ["P8Mixpanel13FlushDelegate", "registerSuperPropertiesOnce"] +- !private ["P8Mixpanel13FlushDelegate", "reset"] +- !private ["P8Mixpanel13FlushDelegate", "time"] +- !private ["P8Mixpanel13FlushDelegate", "timedEvents"] +- !private ["P8Mixpanel13FlushDelegate", "track"] +- !private ["P8Mixpanel13FlushDelegate", "trackPushNotification"] +- !private ["P8Mixpanel13FlushDelegate", "unregisterSuperProperty"] +- !private ["C8Mixpanel12FlushRequest", "networkConsecutiveFailures"] +- !private ["C8Mixpanel12FlushRequest", "networkRequestsAllowedAfterTime"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps16ForwardIndexType", "init"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Vs16HalfOpenInterval", "deinit"] +- !private ["Ps8Hashable", "AutomaticProperties"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Events"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "LSNocilla"] +- !private ["Ps8Hashable", "Mixpanel"] +- !private ["Ps8Hashable", "NSData"] +- !private ["Ps8Hashable", "NSDate"] +- !private ["Ps8Hashable", "NSDictionary"] +- !private ["Ps8Hashable", "NSError"] +- !private ["Ps8Hashable", "NSFileManager"] +- !private ["Ps8Hashable", "People"] +- !private ["Ps8Hashable", "Persistence"] +- !private ["Ps8Hashable", "Properties"] +- !private ["Ps8Hashable", "Queue"] +- !private ["Ps8Hashable", "Stride"] +- !private ["Ps8Hashable", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["Ps8Hashable", "UInt"] +- !private ["Ps8Hashable", "XCTAssert"] +- !private ["Ps8Hashable", "XCTAssertEqual"] +- !private ["Ps8Hashable", "XCTAssertNil"] +- !private ["Ps8Hashable", "XCTAssertNotNil"] +- !private ["Ps8Hashable", "XCTAssertTrue"] +- !private ["Ps8Hashable", "XCTExpectAssert"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "allPropertyTypes"] +- !private ["Ps8Hashable", "andFailWithError"] +- !private ["Ps8Hashable", "andReturn"] +- !private ["Ps8Hashable", "assertDefaultPeopleProperties"] +- !private ["Ps8Hashable", "clearStubs"] +- !private ["Ps8Hashable", "defaultManager"] +- !private ["Ps8Hashable", "fabs"] +- !private ["Ps8Hashable", "fileExistsAtPath"] +- !private ["Ps8Hashable", "flushAndWaitForSerialQueue"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "kTestToken"] +- !private ["Ps8Hashable", "mixpanel"] +- !private ["Ps8Hashable", "print"] +- !private ["Ps8Hashable", "sharedInstance"] +- !private ["Ps8Hashable", "stubEngage"] +- !private ["Ps8Hashable", "stubTrack"] +- ["Ps8Hashable", "test5XXResponse"] +- ["Ps8Hashable", "testAddingEventsAfterFlush"] +- ["Ps8Hashable", "testArchive"] +- ["Ps8Hashable", "testDropEvents"] +- ["Ps8Hashable", "testEventTiming"] +- ["Ps8Hashable", "testFlushEvents"] +- ["Ps8Hashable", "testFlushNetworkFailure"] +- ["Ps8Hashable", "testFlushPeople"] +- ["Ps8Hashable", "testIdentify"] +- ["Ps8Hashable", "testInvalidPropertiesTrack"] +- ["Ps8Hashable", "testInvalidSuperProperties"] +- ["Ps8Hashable", "testMixpanelDelegate"] +- ["Ps8Hashable", "testNestedUnsupportedTypes"] +- ["Ps8Hashable", "testNetworkingWithStress"] +- ["Ps8Hashable", "testRegisterSuperProperties"] +- ["Ps8Hashable", "testReset"] +- ["Ps8Hashable", "testRetryAfterHTTPHeader"] +- ["Ps8Hashable", "testTelephonyInfoInitialized"] +- ["Ps8Hashable", "testTrackLaunchOptions"] +- ["Ps8Hashable", "testTrackPushNotification"] +- ["Ps8Hashable", "testTrackPushNotificationMalformed"] +- ["Ps8Hashable", "testTrackWithCustomDistinctIdAndToken"] +- ["Ps8Hashable", "testTrackWithCustomProperties"] +- ["Ps8Hashable", "testTrackWithDefaultProperties"] +- ["Ps8Hashable", "testUnexpectedBeahviours"] +- ["Ps8Hashable", "testValidPropertiesTrack"] +- ["Ps8Hashable", "testValidSuperProperties"] +- !private ["Ps8Hashable", "timeIntervalSince1970"] +- !private ["Ps8Hashable", "waitForSerialQueue"] +- !private ["Ps8Hashable", "withHeader"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "append"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "init"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps21IntegerArithmeticType", "init"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "Stride"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "init"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "init"] +- !private ["PSo10LSHTTPBody", "init"] +- !private ["PSo12LSMatcheable", "init"] +- !private ["CSo9LSNocilla", "clearStubs"] +- !private ["CSo9LSNocilla", "sharedInstance"] +- !private ["CSo16LSStubRequestDSL", "andFailWithError"] +- !private ["CSo16LSStubRequestDSL", "andReturn"] +- !private ["CSo17LSStubResponseDSL", "withHeader"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C8Mixpanel8Mixpanel", "initialize"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "AutomaticProperties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Double"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Int"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "LSNocilla"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSData"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSDate"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSDictionary"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSError"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSFileManager"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Persistence"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Queue"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "UInt"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssert"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNil"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "assertDefaultPeopleProperties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "fabs"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "flushAndWaitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "kTestToken"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "print"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "stubEngage"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "stubTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "test5XXResponse"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testAddingEventsAfterFlush"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testArchive"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testDropEvents"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testEventTiming"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testFlushEvents"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testFlushNetworkFailure"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testFlushPeople"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testIdentify"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testInvalidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testInvalidSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testMixpanelDelegate"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testNestedUnsupportedTypes"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testNetworkingWithStress"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testRegisterSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testReset"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testRetryAfterHTTPHeader"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTelephonyInfoInitialized"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackLaunchOptions"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackPushNotification"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackPushNotificationMalformed"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackWithCustomDistinctIdAndToken"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackWithCustomProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testTrackWithDefaultProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testUnexpectedBeahviours"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testValidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testValidSuperProperties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "waitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", ""] +- !private ["P8Mixpanel16MixpanelDelegate", "AutomaticProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "LSNocilla"] +- !private ["P8Mixpanel16MixpanelDelegate", "Mixpanel"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSData"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSDate"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSDictionary"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSError"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSFileManager"] +- !private ["P8Mixpanel16MixpanelDelegate", "Persistence"] +- !private ["P8Mixpanel16MixpanelDelegate", "Queue"] +- !private ["P8Mixpanel16MixpanelDelegate", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["P8Mixpanel16MixpanelDelegate", "UInt"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssert"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertEqual"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNotNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertTrue"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTExpectAssert"] +- !private ["P8Mixpanel16MixpanelDelegate", "allPropertyTypes"] +- !private ["P8Mixpanel16MixpanelDelegate", "assertDefaultPeopleProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "fabs"] +- !private ["P8Mixpanel16MixpanelDelegate", "flushAndWaitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", "init"] +- !private ["P8Mixpanel16MixpanelDelegate", "kTestToken"] +- !private ["P8Mixpanel16MixpanelDelegate", "mixpanel"] +- !private ["P8Mixpanel16MixpanelDelegate", "print"] +- !private ["P8Mixpanel16MixpanelDelegate", "stubEngage"] +- !private ["P8Mixpanel16MixpanelDelegate", "stubTrack"] +- ["P8Mixpanel16MixpanelDelegate", "test5XXResponse"] +- ["P8Mixpanel16MixpanelDelegate", "testAddingEventsAfterFlush"] +- ["P8Mixpanel16MixpanelDelegate", "testArchive"] +- ["P8Mixpanel16MixpanelDelegate", "testDropEvents"] +- ["P8Mixpanel16MixpanelDelegate", "testEventTiming"] +- ["P8Mixpanel16MixpanelDelegate", "testFlushEvents"] +- ["P8Mixpanel16MixpanelDelegate", "testFlushNetworkFailure"] +- ["P8Mixpanel16MixpanelDelegate", "testFlushPeople"] +- ["P8Mixpanel16MixpanelDelegate", "testIdentify"] +- ["P8Mixpanel16MixpanelDelegate", "testInvalidPropertiesTrack"] +- ["P8Mixpanel16MixpanelDelegate", "testInvalidSuperProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testMixpanelDelegate"] +- ["P8Mixpanel16MixpanelDelegate", "testNestedUnsupportedTypes"] +- ["P8Mixpanel16MixpanelDelegate", "testNetworkingWithStress"] +- ["P8Mixpanel16MixpanelDelegate", "testRegisterSuperProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testReset"] +- ["P8Mixpanel16MixpanelDelegate", "testRetryAfterHTTPHeader"] +- ["P8Mixpanel16MixpanelDelegate", "testTelephonyInfoInitialized"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackLaunchOptions"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackPushNotification"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackPushNotificationMalformed"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackWithCustomDistinctIdAndToken"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackWithCustomProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testTrackWithDefaultProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testUnexpectedBeahviours"] +- ["P8Mixpanel16MixpanelDelegate", "testValidPropertiesTrack"] +- ["P8Mixpanel16MixpanelDelegate", "testValidSuperProperties"] +- !private ["P8Mixpanel16MixpanelDelegate", "waitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", ""] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "AutomaticProperties"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Double"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Int"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "LSNocilla"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSData"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSDate"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSDictionary"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSError"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "NSFileManager"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Persistence"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "Queue"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "UInt"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssert"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertNil"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "deinit"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "fabs"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "flushAndWaitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "kTestToken"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "mixpanel"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "print"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "stubEngage"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "stubTrack"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "test5XXResponse"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testAddingEventsAfterFlush"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testArchive"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testDropEvents"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testEventTiming"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testFlushEvents"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testFlushNetworkFailure"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testFlushPeople"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testIdentify"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testInvalidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testInvalidSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testMixpanelDelegate"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testNestedUnsupportedTypes"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testNetworkingWithStress"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testRegisterSuperProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testReset"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testRetryAfterHTTPHeader"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTelephonyInfoInitialized"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackLaunchOptions"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackPushNotification"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackPushNotificationMalformed"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackWithCustomDistinctIdAndToken"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackWithCustomProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testTrackWithDefaultProperties"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testUnexpectedBeahviours"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testValidPropertiesTrack"] +- ["C17MixpanelDemoTests17MixpanelDemoTests", "testValidSuperProperties"] +- !private ["C17MixpanelDemoTests17MixpanelDemoTests", "waitForSerialQueue"] +- !private ["C8Mixpanel16MixpanelInstance", "archive"] +- !private ["C8Mixpanel16MixpanelInstance", "clearSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "currentSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "defaultDistinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "delegate"] +- !private ["C8Mixpanel16MixpanelInstance", "distinctId"] +- !private ["C8Mixpanel16MixpanelInstance", "eventsQueue"] +- !private ["C8Mixpanel16MixpanelInstance", "flush"] +- !private ["C8Mixpanel16MixpanelInstance", "flushInstance"] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperProperties"] +- !private ["C8Mixpanel16MixpanelInstance", "registerSuperPropertiesOnce"] +- !private ["C8Mixpanel16MixpanelInstance", "reset"] +- !private ["C8Mixpanel16MixpanelInstance", "time"] +- !private ["C8Mixpanel16MixpanelInstance", "timedEvents"] +- !private ["C8Mixpanel16MixpanelInstance", "track"] +- !private ["C8Mixpanel16MixpanelInstance", "trackPushNotification"] +- !private ["C8Mixpanel16MixpanelInstance", "unregisterSuperProperty"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "append"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "init"] +- !private ["Ps21MutableCollectionType", "isEmpty"] +- !private ["Ps21MutableCollectionType", "last"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "append"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "init"] +- !private ["Ps16MutableIndexable", "isEmpty"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "append"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "init"] +- !private ["Ps16MutableSliceable", "isEmpty"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo8NSCoding", "timeIntervalSince1970"] +- !private ["PSo9NSCopying", "deinit"] +- !private ["PSo9NSCopying", "init"] +- !private ["PSo9NSCopying", "timeIntervalSince1970"] +- !private ["CSo6NSData", "init"] +- !private ["CSo6NSDate", "init"] +- !private ["CSo6NSDate", "timeIntervalSince1970"] +- !private ["CSo12NSDictionary", "init"] +- !private ["CSo7NSError", "init"] +- !private ["PSo17NSFastEnumeration", "init"] +- !private ["CSo13NSFileManager", "defaultManager"] +- !private ["CSo13NSFileManager", "fileExistsAtPath"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "AutomaticProperties"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "LSNocilla"] +- !private ["CSo8NSObject", "Mixpanel"] +- !private ["CSo8NSObject", "NSData"] +- !private ["CSo8NSObject", "NSDate"] +- !private ["CSo8NSObject", "NSDictionary"] +- !private ["CSo8NSObject", "NSError"] +- !private ["CSo8NSObject", "NSFileManager"] +- !private ["CSo8NSObject", "Persistence"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "Queue"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["CSo8NSObject", "UInt"] +- !private ["CSo8NSObject", "XCTAssert"] +- !private ["CSo8NSObject", "XCTAssertEqual"] +- !private ["CSo8NSObject", "XCTAssertNil"] +- !private ["CSo8NSObject", "XCTAssertNotNil"] +- !private ["CSo8NSObject", "XCTAssertTrue"] +- !private ["CSo8NSObject", "XCTExpectAssert"] +- !private ["CSo8NSObject", "allPropertyTypes"] +- !private ["CSo8NSObject", "andFailWithError"] +- !private ["CSo8NSObject", "andReturn"] +- !private ["CSo8NSObject", "assertDefaultPeopleProperties"] +- !private ["CSo8NSObject", "clearStubs"] +- !private ["CSo8NSObject", "defaultManager"] +- !private ["CSo8NSObject", "deinit"] +- !private ["CSo8NSObject", "fabs"] +- !private ["CSo8NSObject", "fileExistsAtPath"] +- !private ["CSo8NSObject", "flushAndWaitForSerialQueue"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "kTestToken"] +- !private ["CSo8NSObject", "mixpanel"] +- !private ["CSo8NSObject", "print"] +- !private ["CSo8NSObject", "sharedInstance"] +- !private ["CSo8NSObject", "stubEngage"] +- !private ["CSo8NSObject", "stubTrack"] +- ["CSo8NSObject", "test5XXResponse"] +- ["CSo8NSObject", "testAddingEventsAfterFlush"] +- ["CSo8NSObject", "testArchive"] +- ["CSo8NSObject", "testDropEvents"] +- ["CSo8NSObject", "testEventTiming"] +- ["CSo8NSObject", "testFlushEvents"] +- ["CSo8NSObject", "testFlushNetworkFailure"] +- ["CSo8NSObject", "testFlushPeople"] +- ["CSo8NSObject", "testIdentify"] +- ["CSo8NSObject", "testInvalidPropertiesTrack"] +- ["CSo8NSObject", "testInvalidSuperProperties"] +- ["CSo8NSObject", "testMixpanelDelegate"] +- ["CSo8NSObject", "testNestedUnsupportedTypes"] +- ["CSo8NSObject", "testNetworkingWithStress"] +- ["CSo8NSObject", "testRegisterSuperProperties"] +- ["CSo8NSObject", "testReset"] +- ["CSo8NSObject", "testRetryAfterHTTPHeader"] +- ["CSo8NSObject", "testTelephonyInfoInitialized"] +- ["CSo8NSObject", "testTrackLaunchOptions"] +- ["CSo8NSObject", "testTrackPushNotification"] +- ["CSo8NSObject", "testTrackPushNotificationMalformed"] +- ["CSo8NSObject", "testTrackWithCustomDistinctIdAndToken"] +- ["CSo8NSObject", "testTrackWithCustomProperties"] +- ["CSo8NSObject", "testTrackWithDefaultProperties"] +- ["CSo8NSObject", "testUnexpectedBeahviours"] +- ["CSo8NSObject", "testValidPropertiesTrack"] +- ["CSo8NSObject", "testValidSuperProperties"] +- !private ["CSo8NSObject", "timeIntervalSince1970"] +- !private ["CSo8NSObject", "waitForSerialQueue"] +- !private ["CSo8NSObject", "withHeader"] +- !private ["PSo16NSObjectProtocol", "AutomaticProperties"] +- !private ["PSo16NSObjectProtocol", "LSNocilla"] +- !private ["PSo16NSObjectProtocol", "Mixpanel"] +- !private ["PSo16NSObjectProtocol", "NSData"] +- !private ["PSo16NSObjectProtocol", "NSDate"] +- !private ["PSo16NSObjectProtocol", "NSDictionary"] +- !private ["PSo16NSObjectProtocol", "NSError"] +- !private ["PSo16NSObjectProtocol", "NSFileManager"] +- !private ["PSo16NSObjectProtocol", "Persistence"] +- !private ["PSo16NSObjectProtocol", "Queue"] +- !private ["PSo16NSObjectProtocol", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["PSo16NSObjectProtocol", "UInt"] +- !private ["PSo16NSObjectProtocol", "XCTAssert"] +- !private ["PSo16NSObjectProtocol", "XCTAssertEqual"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNil"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNotNil"] +- !private ["PSo16NSObjectProtocol", "XCTAssertTrue"] +- !private ["PSo16NSObjectProtocol", "XCTExpectAssert"] +- !private ["PSo16NSObjectProtocol", "allPropertyTypes"] +- !private ["PSo16NSObjectProtocol", "andFailWithError"] +- !private ["PSo16NSObjectProtocol", "andReturn"] +- !private ["PSo16NSObjectProtocol", "assertDefaultPeopleProperties"] +- !private ["PSo16NSObjectProtocol", "clearStubs"] +- !private ["PSo16NSObjectProtocol", "defaultManager"] +- !private ["PSo16NSObjectProtocol", "fabs"] +- !private ["PSo16NSObjectProtocol", "fileExistsAtPath"] +- !private ["PSo16NSObjectProtocol", "flushAndWaitForSerialQueue"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "kTestToken"] +- !private ["PSo16NSObjectProtocol", "mixpanel"] +- !private ["PSo16NSObjectProtocol", "print"] +- !private ["PSo16NSObjectProtocol", "sharedInstance"] +- !private ["PSo16NSObjectProtocol", "stubEngage"] +- !private ["PSo16NSObjectProtocol", "stubTrack"] +- ["PSo16NSObjectProtocol", "test5XXResponse"] +- ["PSo16NSObjectProtocol", "testAddingEventsAfterFlush"] +- ["PSo16NSObjectProtocol", "testArchive"] +- ["PSo16NSObjectProtocol", "testDropEvents"] +- ["PSo16NSObjectProtocol", "testEventTiming"] +- ["PSo16NSObjectProtocol", "testFlushEvents"] +- ["PSo16NSObjectProtocol", "testFlushNetworkFailure"] +- ["PSo16NSObjectProtocol", "testFlushPeople"] +- ["PSo16NSObjectProtocol", "testIdentify"] +- ["PSo16NSObjectProtocol", "testInvalidPropertiesTrack"] +- ["PSo16NSObjectProtocol", "testInvalidSuperProperties"] +- ["PSo16NSObjectProtocol", "testMixpanelDelegate"] +- ["PSo16NSObjectProtocol", "testNestedUnsupportedTypes"] +- ["PSo16NSObjectProtocol", "testNetworkingWithStress"] +- ["PSo16NSObjectProtocol", "testRegisterSuperProperties"] +- ["PSo16NSObjectProtocol", "testReset"] +- ["PSo16NSObjectProtocol", "testRetryAfterHTTPHeader"] +- ["PSo16NSObjectProtocol", "testTelephonyInfoInitialized"] +- ["PSo16NSObjectProtocol", "testTrackLaunchOptions"] +- ["PSo16NSObjectProtocol", "testTrackPushNotification"] +- ["PSo16NSObjectProtocol", "testTrackPushNotificationMalformed"] +- ["PSo16NSObjectProtocol", "testTrackWithCustomDistinctIdAndToken"] +- ["PSo16NSObjectProtocol", "testTrackWithCustomProperties"] +- ["PSo16NSObjectProtocol", "testTrackWithDefaultProperties"] +- ["PSo16NSObjectProtocol", "testUnexpectedBeahviours"] +- ["PSo16NSObjectProtocol", "testValidPropertiesTrack"] +- ["PSo16NSObjectProtocol", "testValidSuperProperties"] +- !private ["PSo16NSObjectProtocol", "timeIntervalSince1970"] +- !private ["PSo16NSObjectProtocol", "waitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "withHeader"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["PSo14NSSecureCoding", "timeIntervalSince1970"] +- !private ["CSo8NSString", "deinit"] +- !private ["CSo8NSString", "init"] +- !private ["C8Mixpanel7Network", "networkConsecutiveFailures"] +- !private ["C8Mixpanel7Network", "networkRequestsAllowedAfterTime"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel6People", "append"] +- !private ["C8Mixpanel6People", "distinctId"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["C8Mixpanel6People", "union"] +- !private ["C8Mixpanel11Persistence", "archiveToFile"] +- !private ["C8Mixpanel11Persistence", "filePathWithType"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Ps21RandomAccessIndexType", "init"] +- !private ["Vs5Range", "Generator"] +- !private ["Vs14RangeGenerator", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "append"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "init"] +- !private ["Ps30RangeReplaceableCollectionType", "isEmpty"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps16RawRepresentable", "Events"] +- !private ["Ps16RawRepresentable", "People"] +- !private ["Ps16RawRepresentable", "Properties"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "append"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "init"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "Stride"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "Stride"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["Ps10Strideable", "init"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Su", "init"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19UnsignedIntegerType", "init"] +- !private ["CSo6XCTest", "AutomaticProperties"] +- !private ["CSo6XCTest", "Double"] +- !private ["CSo6XCTest", "Int"] +- !private ["CSo6XCTest", "LSNocilla"] +- !private ["CSo6XCTest", "Mixpanel"] +- !private ["CSo6XCTest", "NSData"] +- !private ["CSo6XCTest", "NSDate"] +- !private ["CSo6XCTest", "NSDictionary"] +- !private ["CSo6XCTest", "NSError"] +- !private ["CSo6XCTest", "NSFileManager"] +- !private ["CSo6XCTest", "Persistence"] +- !private ["CSo6XCTest", "Properties"] +- !private ["CSo6XCTest", "Queue"] +- !private ["CSo6XCTest", "String"] +- !private ["CSo6XCTest", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["CSo6XCTest", "UInt"] +- !private ["CSo6XCTest", "XCTAssert"] +- !private ["CSo6XCTest", "XCTAssertEqual"] +- !private ["CSo6XCTest", "XCTAssertNil"] +- !private ["CSo6XCTest", "XCTAssertNotNil"] +- !private ["CSo6XCTest", "XCTAssertTrue"] +- !private ["CSo6XCTest", "XCTExpectAssert"] +- !private ["CSo6XCTest", "allPropertyTypes"] +- !private ["CSo6XCTest", "assertDefaultPeopleProperties"] +- !private ["CSo6XCTest", "fabs"] +- !private ["CSo6XCTest", "flushAndWaitForSerialQueue"] +- ["CSo6XCTest", "init"] +- !private ["CSo6XCTest", "kTestToken"] +- !private ["CSo6XCTest", "mixpanel"] +- !private ["CSo6XCTest", "print"] +- !private ["CSo6XCTest", "stubEngage"] +- !private ["CSo6XCTest", "stubTrack"] +- ["CSo6XCTest", "test5XXResponse"] +- ["CSo6XCTest", "testAddingEventsAfterFlush"] +- ["CSo6XCTest", "testArchive"] +- ["CSo6XCTest", "testDropEvents"] +- ["CSo6XCTest", "testEventTiming"] +- ["CSo6XCTest", "testFlushEvents"] +- ["CSo6XCTest", "testFlushNetworkFailure"] +- ["CSo6XCTest", "testFlushPeople"] +- ["CSo6XCTest", "testIdentify"] +- ["CSo6XCTest", "testInvalidPropertiesTrack"] +- ["CSo6XCTest", "testInvalidSuperProperties"] +- ["CSo6XCTest", "testMixpanelDelegate"] +- ["CSo6XCTest", "testNestedUnsupportedTypes"] +- ["CSo6XCTest", "testNetworkingWithStress"] +- ["CSo6XCTest", "testRegisterSuperProperties"] +- ["CSo6XCTest", "testReset"] +- ["CSo6XCTest", "testRetryAfterHTTPHeader"] +- ["CSo6XCTest", "testTelephonyInfoInitialized"] +- ["CSo6XCTest", "testTrackLaunchOptions"] +- ["CSo6XCTest", "testTrackPushNotification"] +- ["CSo6XCTest", "testTrackPushNotificationMalformed"] +- ["CSo6XCTest", "testTrackWithCustomDistinctIdAndToken"] +- ["CSo6XCTest", "testTrackWithCustomProperties"] +- ["CSo6XCTest", "testTrackWithDefaultProperties"] +- ["CSo6XCTest", "testUnexpectedBeahviours"] +- ["CSo6XCTest", "testValidPropertiesTrack"] +- ["CSo6XCTest", "testValidSuperProperties"] +- !private ["CSo6XCTest", "waitForSerialQueue"] +- !private ["CSo10XCTestCase", "AutomaticProperties"] +- !private ["CSo10XCTestCase", "Double"] +- !private ["CSo10XCTestCase", "Int"] +- !private ["CSo10XCTestCase", "LSNocilla"] +- !private ["CSo10XCTestCase", "Mixpanel"] +- !private ["CSo10XCTestCase", "NSData"] +- !private ["CSo10XCTestCase", "NSDate"] +- !private ["CSo10XCTestCase", "NSDictionary"] +- !private ["CSo10XCTestCase", "NSError"] +- !private ["CSo10XCTestCase", "NSFileManager"] +- !private ["CSo10XCTestCase", "Persistence"] +- !private ["CSo10XCTestCase", "Properties"] +- !private ["CSo10XCTestCase", "Queue"] +- !private ["CSo10XCTestCase", "String"] +- !private ["CSo10XCTestCase", "UIApplicationLaunchOptionsRemoteNotificationKey"] +- !private ["CSo10XCTestCase", "UInt"] +- !private ["CSo10XCTestCase", "XCTAssert"] +- !private ["CSo10XCTestCase", "XCTAssertEqual"] +- !private ["CSo10XCTestCase", "XCTAssertNil"] +- !private ["CSo10XCTestCase", "XCTAssertNotNil"] +- !private ["CSo10XCTestCase", "XCTAssertTrue"] +- !private ["CSo10XCTestCase", "XCTExpectAssert"] +- !private ["CSo10XCTestCase", "allPropertyTypes"] +- !private ["CSo10XCTestCase", "assertDefaultPeopleProperties"] +- !private ["CSo10XCTestCase", "fabs"] +- !private ["CSo10XCTestCase", "flushAndWaitForSerialQueue"] +- ["CSo10XCTestCase", "init"] +- !private ["CSo10XCTestCase", "kTestToken"] +- !private ["CSo10XCTestCase", "mixpanel"] +- !private ["CSo10XCTestCase", "print"] +- !private ["CSo10XCTestCase", "stubEngage"] +- !private ["CSo10XCTestCase", "stubTrack"] +- ["CSo10XCTestCase", "test5XXResponse"] +- ["CSo10XCTestCase", "testAddingEventsAfterFlush"] +- ["CSo10XCTestCase", "testArchive"] +- ["CSo10XCTestCase", "testDropEvents"] +- ["CSo10XCTestCase", "testEventTiming"] +- ["CSo10XCTestCase", "testFlushEvents"] +- ["CSo10XCTestCase", "testFlushNetworkFailure"] +- ["CSo10XCTestCase", "testFlushPeople"] +- ["CSo10XCTestCase", "testIdentify"] +- ["CSo10XCTestCase", "testInvalidPropertiesTrack"] +- ["CSo10XCTestCase", "testInvalidSuperProperties"] +- ["CSo10XCTestCase", "testMixpanelDelegate"] +- ["CSo10XCTestCase", "testNestedUnsupportedTypes"] +- ["CSo10XCTestCase", "testNetworkingWithStress"] +- ["CSo10XCTestCase", "testRegisterSuperProperties"] +- ["CSo10XCTestCase", "testReset"] +- ["CSo10XCTestCase", "testRetryAfterHTTPHeader"] +- ["CSo10XCTestCase", "testTelephonyInfoInitialized"] +- ["CSo10XCTestCase", "testTrackLaunchOptions"] +- ["CSo10XCTestCase", "testTrackPushNotification"] +- ["CSo10XCTestCase", "testTrackPushNotificationMalformed"] +- ["CSo10XCTestCase", "testTrackWithCustomDistinctIdAndToken"] +- ["CSo10XCTestCase", "testTrackWithCustomProperties"] +- ["CSo10XCTestCase", "testTrackWithDefaultProperties"] +- ["CSo10XCTestCase", "testUnexpectedBeahviours"] +- ["CSo10XCTestCase", "testValidPropertiesTrack"] +- ["CSo10XCTestCase", "testValidSuperProperties"] +- !private ["CSo10XCTestCase", "waitForSerialQueue"] +- !private ["CSo11XCUIElement", "deinit"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "append"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "init"] +- !private ["Ps10_ArrayType", "isEmpty"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps31_BuiltinFloatLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Stride"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "init"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps19_CVarArgAlignedType", "IntegerLiteralType"] +- !private ["Ps19_CVarArgAlignedType", "Stride"] +- !private ["Ps22_CVarArgPassedAsDouble", "IntegerLiteralType"] +- !private ["Ps22_CVarArgPassedAsDouble", "Stride"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "append"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "init"] +- !private ["Ps24_DestructorSafeContainer", "isEmpty"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps28_DisallowMixedSignArithmetic", "init"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps14_Incrementable", "init"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "init"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "Stride"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "append"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps22_RandomAccessAmbiguity", "init"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "Stride"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "append"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps12_Reflectable", "timeIntervalSince1970"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +depends-nominal: +- !private "Ps16AbsoluteValuable" +- "Ps9AnyObject" +- !private "P8Mixpanel12AppLifecycle" +- !private "OC8Mixpanel11Persistence11ArchiveType" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "C8Mixpanel19AutomaticProperties" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- !private "V12CoreGraphics7CGFloat" +- "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps9ErrorType" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "Ps23FloatLiteralConvertible" +- !private "Ps17FloatingPointType" +- !private "C8Mixpanel5Flush" +- !private "P8Mixpanel13FlushDelegate" +- !private "C8Mixpanel12FlushRequest" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Vs16HalfOpenInterval" +- "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "PSo10LSHTTPBody" +- !private "PSo12LSMatcheable" +- !private "CSo9LSNocilla" +- !private "CSo16LSStubRequestDSL" +- !private "CSo17LSStubResponseDSL" +- !private "Ps14MirrorPathType" +- !private "C8Mixpanel8Mixpanel" +- "C17MixpanelDemoTests17MixpanelBaseTests" +- "P8Mixpanel16MixpanelDelegate" +- "C17MixpanelDemoTests17MixpanelDemoTests" +- !private "C8Mixpanel16MixpanelInstance" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "CSo6NSDate" +- !private "CSo12NSDictionary" +- !private "CSo7NSError" +- !private "PSo17NSFastEnumeration" +- !private "CSo13NSFileManager" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "C8Mixpanel7Network" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- !private "C8Mixpanel11Persistence" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Vs14RangeGenerator" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps16RawRepresentable" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- !private "Ps19UnsignedIntegerType" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "CSo11XCUIElement" +- !private "Ps10_ArrayType" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps31_BuiltinFloatLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps19_CVarArgAlignedType" +- !private "Ps22_CVarArgPassedAsDouble" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps28_DisallowMixedSignArithmetic" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "subscript" +- !private "init" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule" +interface-hash: "9364c7e150e690ad81343507b3672184" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdoc new file mode 100644 index 00000000..bea97cbf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftmodule new file mode 100644 index 00000000..17f15d05 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests_dependency_info.dat b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests_dependency_info.dat new file mode 100644 index 00000000..b3b72f76 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftdoc new file mode 100644 index 00000000..472c7594 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftmodule new file mode 100644 index 00000000..3e26cf26 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.d new file mode 100644 index 00000000..5dcfe61d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o new file mode 100644 index 00000000..bccae8ae Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.swiftdeps new file mode 100644 index 00000000..cd9cacb5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.swiftdeps @@ -0,0 +1,998 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "MixpanelPeopleTests" +provides-nominal: +- "C17MixpanelDemoTests19MixpanelPeopleTests" +provides-member: +- ["C17MixpanelDemoTests19MixpanelPeopleTests", ""] +provides-dynamic-lookup: +- "testPeopleTrackCharge" +- "testPeopleTrackChargeWithTime" +- "testPeopleSet" +- "testPeopleSetTo" +- "testPeopleTrackChargeDecimal" +- "testPeopleIncrementBy" +- "testDropUnidentifiedPeopleRecords" +- "testPeopleTrackChargeWithProperties" +- "testPeopleSetReservedProperty" +- "testPeopleDeleteUser" +- "testPeopleClearCharges" +- "testPeopleAddPushDeviceToken" +- "testPeopleAssertPropertyTypes" +- "testPeopleTrackChargeZero" +- "testPeopleSetOnce" +- "testPeopleIncrement" +- "testDropPeopleRecords" +depends-top-level: +- "MixpanelBaseTests" +- !private "..<" +- !private "Double" +- !private "UnicodeScalarType" +- !private "QueueConstants" +- "MixpanelPeopleTests" +- !private "==" +- !private "XCTAssertEqual" +- !private "NSDate" +- !private "Dictionary" +- !private "NSData" +- !private "Array" +- !private "Int" +- !private "Properties" +- !private "NSUTF8StringEncoding" +- !private "XCTAssertNotNil" +- !private "StringLiteralType" +- !private "String" +- !private "AnyObject" +- !private "XCTAssertTrue" +depends-member: +- !private ["Ps9AnyObject", "Element"] +- !private ["Ps9AnyObject", "NSData"] +- !private ["Ps9AnyObject", "NSUTF8StringEncoding"] +- !private ["Ps9AnyObject", "QueueConstants"] +- !private ["Ps9AnyObject", "XCTAssertEqual"] +- !private ["Ps9AnyObject", "XCTAssertNotNil"] +- !private ["Ps9AnyObject", "XCTAssertTrue"] +- !private ["Ps9AnyObject", "XCTExpectAssert"] +- !private ["Ps9AnyObject", "addPushDeviceToken"] +- !private ["Ps9AnyObject", "allPropertyTypes"] +- !private ["Ps9AnyObject", "assertDefaultPeopleProperties"] +- !private ["Ps9AnyObject", "clearCharges"] +- !private ["Ps9AnyObject", "dataUsingEncoding"] +- !private ["Ps9AnyObject", "deinit"] +- !private ["Ps9AnyObject", "deleteUser"] +- !private ["Ps9AnyObject", "identify"] +- !private ["Ps9AnyObject", "increment"] +- ["Ps9AnyObject", "init"] +- !private ["Ps9AnyObject", "mixpanel"] +- !private ["Ps9AnyObject", "people"] +- !private ["Ps9AnyObject", "peopleQueue"] +- !private ["Ps9AnyObject", "set"] +- !private ["Ps9AnyObject", "setOnce"] +- !private ["Ps9AnyObject", "subscript"] +- ["Ps9AnyObject", "testDropPeopleRecords"] +- ["Ps9AnyObject", "testDropUnidentifiedPeopleRecords"] +- ["Ps9AnyObject", "testPeopleAddPushDeviceToken"] +- ["Ps9AnyObject", "testPeopleAssertPropertyTypes"] +- ["Ps9AnyObject", "testPeopleClearCharges"] +- ["Ps9AnyObject", "testPeopleDeleteUser"] +- ["Ps9AnyObject", "testPeopleIncrement"] +- ["Ps9AnyObject", "testPeopleIncrementBy"] +- ["Ps9AnyObject", "testPeopleSet"] +- ["Ps9AnyObject", "testPeopleSetOnce"] +- ["Ps9AnyObject", "testPeopleSetReservedProperty"] +- ["Ps9AnyObject", "testPeopleSetTo"] +- ["Ps9AnyObject", "testPeopleTrackCharge"] +- ["Ps9AnyObject", "testPeopleTrackChargeDecimal"] +- ["Ps9AnyObject", "testPeopleTrackChargeWithProperties"] +- ["Ps9AnyObject", "testPeopleTrackChargeWithTime"] +- ["Ps9AnyObject", "testPeopleTrackChargeZero"] +- !private ["Ps9AnyObject", "trackCharge"] +- !private ["Ps9AnyObject", "unidentifiedQueue"] +- !private ["Ps9AnyObject", "waitForSerialQueue"] +- ["Ps9AnyObject", ""] +- !private ["Sa", "Element"] +- !private ["Sa", "Generator"] +- !private ["Sa", "Index"] +- !private ["Sa", "SubSequence"] +- !private ["Sa", "_Element"] +- !private ["Sa", "count"] +- !private ["Sa", "first"] +- !private ["Sa", "last"] +- !private ["Ps23ArrayLiteralConvertible", "Element"] +- !private ["Ps23ArrayLiteralConvertible", "Generator"] +- !private ["Ps23ArrayLiteralConvertible", "Index"] +- !private ["Ps23ArrayLiteralConvertible", "SubSequence"] +- !private ["Ps23ArrayLiteralConvertible", "_Element"] +- !private ["Ps23ArrayLiteralConvertible", "count"] +- !private ["Ps23ArrayLiteralConvertible", "first"] +- !private ["Ps23ArrayLiteralConvertible", "last"] +- !private ["Vs10ArraySlice", "Generator"] +- !private ["Vs10ArraySlice", "Index"] +- !private ["Ps22BidirectionalIndexType", "Distance"] +- !private ["Ps22BidirectionalIndexType", "IntegerLiteralType"] +- !private ["Ps22BidirectionalIndexType", "_DisabledRangeIndex"] +- !private ["Ps21BitwiseOperationsType", "Distance"] +- !private ["Ps21BitwiseOperationsType", "IntegerLiteralType"] +- !private ["Ps21BitwiseOperationsType", "_DisabledRangeIndex"] +- !private ["Sb", "deinit"] +- !private ["Ps11CVarArgType", "Distance"] +- !private ["Ps11CVarArgType", "Element"] +- !private ["Ps11CVarArgType", "IntegerLiteralType"] +- !private ["Ps11CVarArgType", "NSData"] +- !private ["Ps11CVarArgType", "NSUTF8StringEncoding"] +- !private ["Ps11CVarArgType", "QueueConstants"] +- !private ["Ps11CVarArgType", "XCTAssertEqual"] +- !private ["Ps11CVarArgType", "XCTAssertNotNil"] +- !private ["Ps11CVarArgType", "XCTAssertTrue"] +- !private ["Ps11CVarArgType", "XCTExpectAssert"] +- !private ["Ps11CVarArgType", "_DisabledRangeIndex"] +- !private ["Ps11CVarArgType", "allPropertyTypes"] +- !private ["Ps11CVarArgType", "assertDefaultPeopleProperties"] +- !private ["Ps11CVarArgType", "dataUsingEncoding"] +- ["Ps11CVarArgType", "init"] +- !private ["Ps11CVarArgType", "mixpanel"] +- ["Ps11CVarArgType", "testDropPeopleRecords"] +- ["Ps11CVarArgType", "testDropUnidentifiedPeopleRecords"] +- ["Ps11CVarArgType", "testPeopleAddPushDeviceToken"] +- ["Ps11CVarArgType", "testPeopleAssertPropertyTypes"] +- ["Ps11CVarArgType", "testPeopleClearCharges"] +- ["Ps11CVarArgType", "testPeopleDeleteUser"] +- ["Ps11CVarArgType", "testPeopleIncrement"] +- ["Ps11CVarArgType", "testPeopleIncrementBy"] +- ["Ps11CVarArgType", "testPeopleSet"] +- ["Ps11CVarArgType", "testPeopleSetOnce"] +- ["Ps11CVarArgType", "testPeopleSetReservedProperty"] +- ["Ps11CVarArgType", "testPeopleSetTo"] +- ["Ps11CVarArgType", "testPeopleTrackCharge"] +- ["Ps11CVarArgType", "testPeopleTrackChargeDecimal"] +- ["Ps11CVarArgType", "testPeopleTrackChargeWithProperties"] +- ["Ps11CVarArgType", "testPeopleTrackChargeWithTime"] +- ["Ps11CVarArgType", "testPeopleTrackChargeZero"] +- !private ["Ps11CVarArgType", "waitForSerialQueue"] +- ["Ps11CVarArgType", ""] +- !private ["Vs9Character", "deinit"] +- !private ["Ps14CollectionType", "Element"] +- !private ["Ps14CollectionType", "Generator"] +- !private ["Ps14CollectionType", "Index"] +- !private ["Ps14CollectionType", "Key"] +- !private ["Ps14CollectionType", "SubSequence"] +- !private ["Ps14CollectionType", "Value"] +- !private ["Ps14CollectionType", "_Element"] +- !private ["Ps14CollectionType", "count"] +- !private ["Ps14CollectionType", "first"] +- !private ["Ps14CollectionType", "isEmpty"] +- !private ["Ps14CollectionType", "last"] +- !private ["Ps14CollectionType", "subscript"] +- !private ["Ps10Comparable", "Distance"] +- !private ["Ps10Comparable", "IntegerLiteralType"] +- !private ["Ps10Comparable", "_DisabledRangeIndex"] +- !private ["Ps10Comparable", "dataUsingEncoding"] +- !private ["Ps10Comparable", "init"] +- !private ["Ps28CustomDebugStringConvertible", "Element"] +- !private ["Ps28CustomDebugStringConvertible", "Generator"] +- !private ["Ps28CustomDebugStringConvertible", "Index"] +- !private ["Ps28CustomDebugStringConvertible", "Key"] +- !private ["Ps28CustomDebugStringConvertible", "NSData"] +- !private ["Ps28CustomDebugStringConvertible", "NSUTF8StringEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "QueueConstants"] +- !private ["Ps28CustomDebugStringConvertible", "SubSequence"] +- !private ["Ps28CustomDebugStringConvertible", "Value"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertEqual"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertNotNil"] +- !private ["Ps28CustomDebugStringConvertible", "XCTAssertTrue"] +- !private ["Ps28CustomDebugStringConvertible", "XCTExpectAssert"] +- !private ["Ps28CustomDebugStringConvertible", "_Element"] +- !private ["Ps28CustomDebugStringConvertible", "allPropertyTypes"] +- !private ["Ps28CustomDebugStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps28CustomDebugStringConvertible", "count"] +- !private ["Ps28CustomDebugStringConvertible", "dataUsingEncoding"] +- !private ["Ps28CustomDebugStringConvertible", "first"] +- !private ["Ps28CustomDebugStringConvertible", "identify"] +- ["Ps28CustomDebugStringConvertible", "init"] +- !private ["Ps28CustomDebugStringConvertible", "isEmpty"] +- !private ["Ps28CustomDebugStringConvertible", "last"] +- !private ["Ps28CustomDebugStringConvertible", "mixpanel"] +- !private ["Ps28CustomDebugStringConvertible", "people"] +- !private ["Ps28CustomDebugStringConvertible", "subscript"] +- ["Ps28CustomDebugStringConvertible", "testDropPeopleRecords"] +- ["Ps28CustomDebugStringConvertible", "testDropUnidentifiedPeopleRecords"] +- ["Ps28CustomDebugStringConvertible", "testPeopleAddPushDeviceToken"] +- ["Ps28CustomDebugStringConvertible", "testPeopleAssertPropertyTypes"] +- ["Ps28CustomDebugStringConvertible", "testPeopleClearCharges"] +- ["Ps28CustomDebugStringConvertible", "testPeopleDeleteUser"] +- ["Ps28CustomDebugStringConvertible", "testPeopleIncrement"] +- ["Ps28CustomDebugStringConvertible", "testPeopleIncrementBy"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSet"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSetOnce"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSetReservedProperty"] +- ["Ps28CustomDebugStringConvertible", "testPeopleSetTo"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackCharge"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeDecimal"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeWithProperties"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeWithTime"] +- ["Ps28CustomDebugStringConvertible", "testPeopleTrackChargeZero"] +- !private ["Ps28CustomDebugStringConvertible", "waitForSerialQueue"] +- ["Ps28CustomDebugStringConvertible", ""] +- !private ["Ps23CustomStringConvertible", "Distance"] +- !private ["Ps23CustomStringConvertible", "Element"] +- !private ["Ps23CustomStringConvertible", "Generator"] +- !private ["Ps23CustomStringConvertible", "Index"] +- !private ["Ps23CustomStringConvertible", "IntegerLiteralType"] +- !private ["Ps23CustomStringConvertible", "Key"] +- !private ["Ps23CustomStringConvertible", "NSData"] +- !private ["Ps23CustomStringConvertible", "NSUTF8StringEncoding"] +- !private ["Ps23CustomStringConvertible", "QueueConstants"] +- !private ["Ps23CustomStringConvertible", "SubSequence"] +- !private ["Ps23CustomStringConvertible", "Value"] +- !private ["Ps23CustomStringConvertible", "XCTAssertEqual"] +- !private ["Ps23CustomStringConvertible", "XCTAssertNotNil"] +- !private ["Ps23CustomStringConvertible", "XCTAssertTrue"] +- !private ["Ps23CustomStringConvertible", "XCTExpectAssert"] +- !private ["Ps23CustomStringConvertible", "_DisabledRangeIndex"] +- !private ["Ps23CustomStringConvertible", "_Element"] +- !private ["Ps23CustomStringConvertible", "allPropertyTypes"] +- !private ["Ps23CustomStringConvertible", "assertDefaultPeopleProperties"] +- !private ["Ps23CustomStringConvertible", "count"] +- !private ["Ps23CustomStringConvertible", "dataUsingEncoding"] +- !private ["Ps23CustomStringConvertible", "first"] +- ["Ps23CustomStringConvertible", "init"] +- !private ["Ps23CustomStringConvertible", "isEmpty"] +- !private ["Ps23CustomStringConvertible", "last"] +- !private ["Ps23CustomStringConvertible", "mixpanel"] +- !private ["Ps23CustomStringConvertible", "subscript"] +- ["Ps23CustomStringConvertible", "testDropPeopleRecords"] +- ["Ps23CustomStringConvertible", "testDropUnidentifiedPeopleRecords"] +- ["Ps23CustomStringConvertible", "testPeopleAddPushDeviceToken"] +- ["Ps23CustomStringConvertible", "testPeopleAssertPropertyTypes"] +- ["Ps23CustomStringConvertible", "testPeopleClearCharges"] +- ["Ps23CustomStringConvertible", "testPeopleDeleteUser"] +- ["Ps23CustomStringConvertible", "testPeopleIncrement"] +- ["Ps23CustomStringConvertible", "testPeopleIncrementBy"] +- ["Ps23CustomStringConvertible", "testPeopleSet"] +- ["Ps23CustomStringConvertible", "testPeopleSetOnce"] +- ["Ps23CustomStringConvertible", "testPeopleSetReservedProperty"] +- ["Ps23CustomStringConvertible", "testPeopleSetTo"] +- ["Ps23CustomStringConvertible", "testPeopleTrackCharge"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeDecimal"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeWithProperties"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeWithTime"] +- ["Ps23CustomStringConvertible", "testPeopleTrackChargeZero"] +- !private ["Ps23CustomStringConvertible", "waitForSerialQueue"] +- ["Ps23CustomStringConvertible", ""] +- !private ["Vs10Dictionary", "Generator"] +- !private ["Vs10Dictionary", "Index"] +- !private ["Vs10Dictionary", "Key"] +- !private ["Vs10Dictionary", "SubSequence"] +- !private ["Vs10Dictionary", "Value"] +- !private ["Vs10Dictionary", "_Element"] +- !private ["Vs10Dictionary", "count"] +- !private ["Vs10Dictionary", "deinit"] +- !private ["Vs10Dictionary", "isEmpty"] +- !private ["Vs10Dictionary", "subscript"] +- !private ["Vs15DictionaryIndex", "Distance"] +- !private ["Vs15DictionaryIndex", "_DisabledRangeIndex"] +- !private ["Vs15DictionaryIndex", "deinit"] +- !private ["Ps28DictionaryLiteralConvertible", "Generator"] +- !private ["Ps28DictionaryLiteralConvertible", "Index"] +- !private ["Ps28DictionaryLiteralConvertible", "Key"] +- !private ["Ps28DictionaryLiteralConvertible", "SubSequence"] +- !private ["Ps28DictionaryLiteralConvertible", "Value"] +- !private ["Ps28DictionaryLiteralConvertible", "_Element"] +- !private ["Ps28DictionaryLiteralConvertible", "count"] +- !private ["Ps28DictionaryLiteralConvertible", "isEmpty"] +- !private ["Ps28DictionaryLiteralConvertible", "subscript"] +- !private ["Sd", "deinit"] +- !private ["Ps9Equatable", "Distance"] +- !private ["Ps9Equatable", "Element"] +- !private ["Ps9Equatable", "Generator"] +- !private ["Ps9Equatable", "IntegerLiteralType"] +- !private ["Ps9Equatable", "NSData"] +- !private ["Ps9Equatable", "NSUTF8StringEncoding"] +- !private ["Ps9Equatable", "QueueConstants"] +- !private ["Ps9Equatable", "XCTAssertEqual"] +- !private ["Ps9Equatable", "XCTAssertNotNil"] +- !private ["Ps9Equatable", "XCTAssertTrue"] +- !private ["Ps9Equatable", "XCTExpectAssert"] +- !private ["Ps9Equatable", "_DisabledRangeIndex"] +- !private ["Ps9Equatable", "allPropertyTypes"] +- !private ["Ps9Equatable", "assertDefaultPeopleProperties"] +- !private ["Ps9Equatable", "dataUsingEncoding"] +- ["Ps9Equatable", "init"] +- !private ["Ps9Equatable", "mixpanel"] +- ["Ps9Equatable", "testDropPeopleRecords"] +- ["Ps9Equatable", "testDropUnidentifiedPeopleRecords"] +- ["Ps9Equatable", "testPeopleAddPushDeviceToken"] +- ["Ps9Equatable", "testPeopleAssertPropertyTypes"] +- ["Ps9Equatable", "testPeopleClearCharges"] +- ["Ps9Equatable", "testPeopleDeleteUser"] +- ["Ps9Equatable", "testPeopleIncrement"] +- ["Ps9Equatable", "testPeopleIncrementBy"] +- ["Ps9Equatable", "testPeopleSet"] +- ["Ps9Equatable", "testPeopleSetOnce"] +- ["Ps9Equatable", "testPeopleSetReservedProperty"] +- ["Ps9Equatable", "testPeopleSetTo"] +- ["Ps9Equatable", "testPeopleTrackCharge"] +- ["Ps9Equatable", "testPeopleTrackChargeDecimal"] +- ["Ps9Equatable", "testPeopleTrackChargeWithProperties"] +- ["Ps9Equatable", "testPeopleTrackChargeWithTime"] +- ["Ps9Equatable", "testPeopleTrackChargeZero"] +- !private ["Ps9Equatable", "waitForSerialQueue"] +- ["Ps9Equatable", ""] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps41ExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Sf", "deinit"] +- !private ["P8Mixpanel13FlushDelegate", "identify"] +- !private ["P8Mixpanel13FlushDelegate", "people"] +- !private ["Ps16ForwardIndexType", "Distance"] +- !private ["Ps16ForwardIndexType", "IntegerLiteralType"] +- !private ["Ps16ForwardIndexType", "_DisabledRangeIndex"] +- !private ["Ps13GeneratorType", "Element"] +- !private ["Vs16HalfOpenInterval", "deinit"] +- !private ["Ps8Hashable", "Distance"] +- !private ["Ps8Hashable", "Element"] +- !private ["Ps8Hashable", "IntegerLiteralType"] +- !private ["Ps8Hashable", "NSData"] +- !private ["Ps8Hashable", "NSUTF8StringEncoding"] +- !private ["Ps8Hashable", "QueueConstants"] +- !private ["Ps8Hashable", "XCTAssertEqual"] +- !private ["Ps8Hashable", "XCTAssertNotNil"] +- !private ["Ps8Hashable", "XCTAssertTrue"] +- !private ["Ps8Hashable", "XCTExpectAssert"] +- !private ["Ps8Hashable", "_DisabledRangeIndex"] +- !private ["Ps8Hashable", "allPropertyTypes"] +- !private ["Ps8Hashable", "assertDefaultPeopleProperties"] +- !private ["Ps8Hashable", "dataUsingEncoding"] +- ["Ps8Hashable", "init"] +- !private ["Ps8Hashable", "mixpanel"] +- ["Ps8Hashable", "testDropPeopleRecords"] +- ["Ps8Hashable", "testDropUnidentifiedPeopleRecords"] +- ["Ps8Hashable", "testPeopleAddPushDeviceToken"] +- ["Ps8Hashable", "testPeopleAssertPropertyTypes"] +- ["Ps8Hashable", "testPeopleClearCharges"] +- ["Ps8Hashable", "testPeopleDeleteUser"] +- ["Ps8Hashable", "testPeopleIncrement"] +- ["Ps8Hashable", "testPeopleIncrementBy"] +- ["Ps8Hashable", "testPeopleSet"] +- ["Ps8Hashable", "testPeopleSetOnce"] +- ["Ps8Hashable", "testPeopleSetReservedProperty"] +- ["Ps8Hashable", "testPeopleSetTo"] +- ["Ps8Hashable", "testPeopleTrackCharge"] +- ["Ps8Hashable", "testPeopleTrackChargeDecimal"] +- ["Ps8Hashable", "testPeopleTrackChargeWithProperties"] +- ["Ps8Hashable", "testPeopleTrackChargeWithTime"] +- ["Ps8Hashable", "testPeopleTrackChargeZero"] +- !private ["Ps8Hashable", "waitForSerialQueue"] +- ["Ps8Hashable", ""] +- !private ["SQ", "deinit"] +- !private ["Ps9Indexable", "Element"] +- !private ["Ps9Indexable", "Generator"] +- !private ["Ps9Indexable", "Index"] +- !private ["Ps9Indexable", "Key"] +- !private ["Ps9Indexable", "SubSequence"] +- !private ["Ps9Indexable", "Value"] +- !private ["Ps9Indexable", "_Element"] +- !private ["Ps9Indexable", "count"] +- !private ["Ps9Indexable", "first"] +- !private ["Ps9Indexable", "isEmpty"] +- !private ["Ps9Indexable", "last"] +- !private ["Ps9Indexable", "subscript"] +- !private ["Vs17IndexingGenerator", "Element"] +- !private ["Si", "Distance"] +- !private ["Si", "IntegerLiteralType"] +- !private ["Si", "_DisabledRangeIndex"] +- !private ["Si", "deinit"] +- !private ["Vs5Int16", "deinit"] +- !private ["Vs5Int32", "deinit"] +- !private ["Vs5Int64", "deinit"] +- !private ["Vs4Int8", "deinit"] +- !private ["Ps21IntegerArithmeticType", "Distance"] +- !private ["Ps21IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps21IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps25IntegerLiteralConvertible", "Distance"] +- !private ["Ps25IntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps25IntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps11IntegerType", "Distance"] +- !private ["Ps11IntegerType", "IntegerLiteralType"] +- !private ["Ps11IntegerType", "_DisabledRangeIndex"] +- !private ["PSo10LSHTTPBody", "dataUsingEncoding"] +- !private ["PSo10LSHTTPBody", "init"] +- !private ["PSo12LSMatcheable", "dataUsingEncoding"] +- !private ["PSo12LSMatcheable", "init"] +- !private ["Ps14MirrorPathType", "Distance"] +- !private ["Ps14MirrorPathType", "IntegerLiteralType"] +- !private ["Ps14MirrorPathType", "_DisabledRangeIndex"] +- !private ["Ps14MirrorPathType", "dataUsingEncoding"] +- !private ["Ps14MirrorPathType", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "AnyObject"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Double"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Int"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSData"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSDate"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "NSUTF8StringEncoding"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "Properties"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "QueueConstants"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "String"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "init"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "mixpanel"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testDropPeopleRecords"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testDropUnidentifiedPeopleRecords"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleAddPushDeviceToken"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleAssertPropertyTypes"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleClearCharges"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleDeleteUser"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleIncrement"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleIncrementBy"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSet"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSetOnce"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSetReservedProperty"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleSetTo"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackCharge"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeDecimal"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeWithProperties"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeWithTime"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", "testPeopleTrackChargeZero"] +- !private ["C17MixpanelDemoTests17MixpanelBaseTests", "waitForSerialQueue"] +- ["C17MixpanelDemoTests17MixpanelBaseTests", ""] +- !private ["P8Mixpanel16MixpanelDelegate", "NSData"] +- !private ["P8Mixpanel16MixpanelDelegate", "NSUTF8StringEncoding"] +- !private ["P8Mixpanel16MixpanelDelegate", "QueueConstants"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertEqual"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertNotNil"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTAssertTrue"] +- !private ["P8Mixpanel16MixpanelDelegate", "XCTExpectAssert"] +- !private ["P8Mixpanel16MixpanelDelegate", "allPropertyTypes"] +- !private ["P8Mixpanel16MixpanelDelegate", "assertDefaultPeopleProperties"] +- ["P8Mixpanel16MixpanelDelegate", "init"] +- !private ["P8Mixpanel16MixpanelDelegate", "mixpanel"] +- ["P8Mixpanel16MixpanelDelegate", "testDropPeopleRecords"] +- ["P8Mixpanel16MixpanelDelegate", "testDropUnidentifiedPeopleRecords"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleAddPushDeviceToken"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleAssertPropertyTypes"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleClearCharges"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleDeleteUser"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleIncrement"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleIncrementBy"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSet"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSetOnce"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSetReservedProperty"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleSetTo"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackCharge"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeDecimal"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeWithProperties"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeWithTime"] +- ["P8Mixpanel16MixpanelDelegate", "testPeopleTrackChargeZero"] +- !private ["P8Mixpanel16MixpanelDelegate", "waitForSerialQueue"] +- ["P8Mixpanel16MixpanelDelegate", ""] +- !private ["C8Mixpanel16MixpanelInstance", "identify"] +- !private ["C8Mixpanel16MixpanelInstance", "people"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "AnyObject"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Double"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Int"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "NSData"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "NSDate"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "NSUTF8StringEncoding"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "Properties"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "QueueConstants"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "String"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTAssertEqual"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTAssertNotNil"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTAssertTrue"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "XCTExpectAssert"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "allPropertyTypes"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "assertDefaultPeopleProperties"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "deinit"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "init"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "mixpanel"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testDropPeopleRecords"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testDropUnidentifiedPeopleRecords"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleAddPushDeviceToken"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleAssertPropertyTypes"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleClearCharges"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleDeleteUser"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleIncrement"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleIncrementBy"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSet"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSetOnce"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSetReservedProperty"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleSetTo"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackCharge"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeDecimal"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeWithProperties"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeWithTime"] +- ["C17MixpanelDemoTests19MixpanelPeopleTests", "testPeopleTrackChargeZero"] +- !private ["C17MixpanelDemoTests19MixpanelPeopleTests", "waitForSerialQueue"] +- !private ["Ps21MutableCollectionType", "Element"] +- !private ["Ps21MutableCollectionType", "Generator"] +- !private ["Ps21MutableCollectionType", "Index"] +- !private ["Ps21MutableCollectionType", "SubSequence"] +- !private ["Ps21MutableCollectionType", "_Element"] +- !private ["Ps21MutableCollectionType", "count"] +- !private ["Ps21MutableCollectionType", "first"] +- !private ["Ps21MutableCollectionType", "last"] +- !private ["Ps16MutableIndexable", "Element"] +- !private ["Ps16MutableIndexable", "Generator"] +- !private ["Ps16MutableIndexable", "Index"] +- !private ["Ps16MutableIndexable", "SubSequence"] +- !private ["Ps16MutableIndexable", "_Element"] +- !private ["Ps16MutableIndexable", "count"] +- !private ["Ps16MutableIndexable", "first"] +- !private ["Ps16MutableIndexable", "last"] +- !private ["Ps16MutableSliceable", "Element"] +- !private ["Ps16MutableSliceable", "Generator"] +- !private ["Ps16MutableSliceable", "Index"] +- !private ["Ps16MutableSliceable", "SubSequence"] +- !private ["Ps16MutableSliceable", "_Element"] +- !private ["Ps16MutableSliceable", "count"] +- !private ["Ps16MutableSliceable", "first"] +- !private ["Ps16MutableSliceable", "last"] +- !private ["CSo7NSArray", "Element"] +- !private ["PSo8NSCoding", "Element"] +- !private ["PSo8NSCoding", "dataUsingEncoding"] +- !private ["PSo8NSCoding", "init"] +- !private ["PSo9NSCopying", "Element"] +- !private ["PSo9NSCopying", "dataUsingEncoding"] +- !private ["PSo9NSCopying", "init"] +- !private ["CSo6NSData", "init"] +- !private ["PSo17NSFastEnumeration", "Element"] +- !private ["PSo16NSMutableCopying", "Element"] +- !private ["PSo16NSMutableCopying", "dataUsingEncoding"] +- !private ["PSo16NSMutableCopying", "init"] +- !private ["CSo8NSObject", "AnyObject"] +- !private ["CSo8NSObject", "Double"] +- !private ["CSo8NSObject", "Element"] +- !private ["CSo8NSObject", "Int"] +- !private ["CSo8NSObject", "NSData"] +- !private ["CSo8NSObject", "NSDate"] +- !private ["CSo8NSObject", "NSUTF8StringEncoding"] +- !private ["CSo8NSObject", "Properties"] +- !private ["CSo8NSObject", "QueueConstants"] +- !private ["CSo8NSObject", "String"] +- !private ["CSo8NSObject", "XCTAssertEqual"] +- !private ["CSo8NSObject", "XCTAssertNotNil"] +- !private ["CSo8NSObject", "XCTAssertTrue"] +- !private ["CSo8NSObject", "XCTExpectAssert"] +- !private ["CSo8NSObject", "allPropertyTypes"] +- !private ["CSo8NSObject", "assertDefaultPeopleProperties"] +- !private ["CSo8NSObject", "dataUsingEncoding"] +- !private ["CSo8NSObject", "deinit"] +- ["CSo8NSObject", "init"] +- !private ["CSo8NSObject", "mixpanel"] +- ["CSo8NSObject", "testDropPeopleRecords"] +- ["CSo8NSObject", "testDropUnidentifiedPeopleRecords"] +- ["CSo8NSObject", "testPeopleAddPushDeviceToken"] +- ["CSo8NSObject", "testPeopleAssertPropertyTypes"] +- ["CSo8NSObject", "testPeopleClearCharges"] +- ["CSo8NSObject", "testPeopleDeleteUser"] +- ["CSo8NSObject", "testPeopleIncrement"] +- ["CSo8NSObject", "testPeopleIncrementBy"] +- ["CSo8NSObject", "testPeopleSet"] +- ["CSo8NSObject", "testPeopleSetOnce"] +- ["CSo8NSObject", "testPeopleSetReservedProperty"] +- ["CSo8NSObject", "testPeopleSetTo"] +- ["CSo8NSObject", "testPeopleTrackCharge"] +- ["CSo8NSObject", "testPeopleTrackChargeDecimal"] +- ["CSo8NSObject", "testPeopleTrackChargeWithProperties"] +- ["CSo8NSObject", "testPeopleTrackChargeWithTime"] +- ["CSo8NSObject", "testPeopleTrackChargeZero"] +- !private ["CSo8NSObject", "waitForSerialQueue"] +- !private ["PSo16NSObjectProtocol", "Element"] +- !private ["PSo16NSObjectProtocol", "NSData"] +- !private ["PSo16NSObjectProtocol", "NSUTF8StringEncoding"] +- !private ["PSo16NSObjectProtocol", "QueueConstants"] +- !private ["PSo16NSObjectProtocol", "XCTAssertEqual"] +- !private ["PSo16NSObjectProtocol", "XCTAssertNotNil"] +- !private ["PSo16NSObjectProtocol", "XCTAssertTrue"] +- !private ["PSo16NSObjectProtocol", "XCTExpectAssert"] +- !private ["PSo16NSObjectProtocol", "allPropertyTypes"] +- !private ["PSo16NSObjectProtocol", "assertDefaultPeopleProperties"] +- !private ["PSo16NSObjectProtocol", "dataUsingEncoding"] +- ["PSo16NSObjectProtocol", "init"] +- !private ["PSo16NSObjectProtocol", "mixpanel"] +- ["PSo16NSObjectProtocol", "testDropPeopleRecords"] +- ["PSo16NSObjectProtocol", "testDropUnidentifiedPeopleRecords"] +- ["PSo16NSObjectProtocol", "testPeopleAddPushDeviceToken"] +- ["PSo16NSObjectProtocol", "testPeopleAssertPropertyTypes"] +- ["PSo16NSObjectProtocol", "testPeopleClearCharges"] +- ["PSo16NSObjectProtocol", "testPeopleDeleteUser"] +- ["PSo16NSObjectProtocol", "testPeopleIncrement"] +- ["PSo16NSObjectProtocol", "testPeopleIncrementBy"] +- ["PSo16NSObjectProtocol", "testPeopleSet"] +- ["PSo16NSObjectProtocol", "testPeopleSetOnce"] +- ["PSo16NSObjectProtocol", "testPeopleSetReservedProperty"] +- ["PSo16NSObjectProtocol", "testPeopleSetTo"] +- ["PSo16NSObjectProtocol", "testPeopleTrackCharge"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeDecimal"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeWithProperties"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeWithTime"] +- ["PSo16NSObjectProtocol", "testPeopleTrackChargeZero"] +- !private ["PSo16NSObjectProtocol", "waitForSerialQueue"] +- ["PSo16NSObjectProtocol", ""] +- !private ["PSo14NSSecureCoding", "Element"] +- !private ["PSo14NSSecureCoding", "dataUsingEncoding"] +- !private ["PSo14NSSecureCoding", "init"] +- !private ["CSo8NSString", "dataUsingEncoding"] +- !private ["CSo8NSString", "init"] +- !private ["Ps21NilLiteralConvertible", "Element"] +- !private ["Sq", "Element"] +- !private ["Sq", "deinit"] +- !private ["Ps16OutputStreamType", "dataUsingEncoding"] +- !private ["Ps16OutputStreamType", "init"] +- !private ["C8Mixpanel6People", "addPushDeviceToken"] +- !private ["C8Mixpanel6People", "clearCharges"] +- !private ["C8Mixpanel6People", "deleteUser"] +- !private ["C8Mixpanel6People", "increment"] +- !private ["C8Mixpanel6People", "peopleQueue"] +- !private ["C8Mixpanel6People", "set"] +- !private ["C8Mixpanel6People", "setOnce"] +- !private ["C8Mixpanel6People", "trackCharge"] +- !private ["C8Mixpanel6People", "unidentifiedQueue"] +- !private ["V8Mixpanel14QueueConstants", "queueSize"] +- !private ["Ps21RandomAccessIndexType", "Distance"] +- !private ["Ps21RandomAccessIndexType", "IntegerLiteralType"] +- !private ["Ps21RandomAccessIndexType", "_DisabledRangeIndex"] +- !private ["Vs5Range", "Generator"] +- !private ["Vs5Range", "deinit"] +- !private ["Vs14RangeGenerator", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Element"] +- !private ["Ps30RangeReplaceableCollectionType", "Generator"] +- !private ["Ps30RangeReplaceableCollectionType", "Index"] +- !private ["Ps30RangeReplaceableCollectionType", "SubSequence"] +- !private ["Ps30RangeReplaceableCollectionType", "_Element"] +- !private ["Ps30RangeReplaceableCollectionType", "count"] +- !private ["Ps30RangeReplaceableCollectionType", "first"] +- !private ["Ps30RangeReplaceableCollectionType", "last"] +- !private ["Ps12SequenceType", "Element"] +- !private ["Ps12SequenceType", "Generator"] +- !private ["Ps12SequenceType", "Index"] +- !private ["Ps12SequenceType", "Key"] +- !private ["Ps12SequenceType", "SubSequence"] +- !private ["Ps12SequenceType", "Value"] +- !private ["Ps12SequenceType", "_Element"] +- !private ["Ps12SequenceType", "count"] +- !private ["Ps12SequenceType", "first"] +- !private ["Ps12SequenceType", "isEmpty"] +- !private ["Ps12SequenceType", "last"] +- !private ["Ps12SequenceType", "subscript"] +- !private ["Ps17SignedIntegerType", "Distance"] +- !private ["Ps17SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps17SignedIntegerType", "_DisabledRangeIndex"] +- !private ["Ps16SignedNumberType", "Distance"] +- !private ["Ps16SignedNumberType", "IntegerLiteralType"] +- !private ["Ps16SignedNumberType", "_DisabledRangeIndex"] +- !private ["Vs5Slice", "Generator"] +- !private ["Vs5Slice", "Index"] +- !private ["Vs5Slice", "SubSequence"] +- !private ["Vs5Slice", "_Element"] +- !private ["Vs12StaticString", "deinit"] +- !private ["Ps10Streamable", "dataUsingEncoding"] +- !private ["Ps10Streamable", "init"] +- !private ["Ps10Strideable", "Distance"] +- !private ["Ps10Strideable", "IntegerLiteralType"] +- !private ["Ps10Strideable", "_DisabledRangeIndex"] +- !private ["SS", "dataUsingEncoding"] +- !private ["SS", "deinit"] +- !private ["SS", "init"] +- !private ["Ps30StringInterpolationConvertible", "dataUsingEncoding"] +- !private ["Ps30StringInterpolationConvertible", "init"] +- !private ["Ps24StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps24StringLiteralConvertible", "init"] +- !private ["Su", "deinit"] +- !private ["Vs6UInt16", "deinit"] +- !private ["Vs6UInt32", "deinit"] +- !private ["Vs6UInt64", "deinit"] +- !private ["Vs5UInt8", "deinit"] +- !private ["Sc", "deinit"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps31UnicodeScalarLiteralConvertible", "init"] +- !private ["CSo6XCTest", "AnyObject"] +- !private ["CSo6XCTest", "Double"] +- !private ["CSo6XCTest", "Int"] +- !private ["CSo6XCTest", "NSData"] +- !private ["CSo6XCTest", "NSDate"] +- !private ["CSo6XCTest", "NSUTF8StringEncoding"] +- !private ["CSo6XCTest", "Properties"] +- !private ["CSo6XCTest", "QueueConstants"] +- !private ["CSo6XCTest", "String"] +- !private ["CSo6XCTest", "XCTAssertEqual"] +- !private ["CSo6XCTest", "XCTAssertNotNil"] +- !private ["CSo6XCTest", "XCTAssertTrue"] +- !private ["CSo6XCTest", "XCTExpectAssert"] +- !private ["CSo6XCTest", "allPropertyTypes"] +- !private ["CSo6XCTest", "assertDefaultPeopleProperties"] +- ["CSo6XCTest", "init"] +- !private ["CSo6XCTest", "mixpanel"] +- ["CSo6XCTest", "testDropPeopleRecords"] +- ["CSo6XCTest", "testDropUnidentifiedPeopleRecords"] +- ["CSo6XCTest", "testPeopleAddPushDeviceToken"] +- ["CSo6XCTest", "testPeopleAssertPropertyTypes"] +- ["CSo6XCTest", "testPeopleClearCharges"] +- ["CSo6XCTest", "testPeopleDeleteUser"] +- ["CSo6XCTest", "testPeopleIncrement"] +- ["CSo6XCTest", "testPeopleIncrementBy"] +- ["CSo6XCTest", "testPeopleSet"] +- ["CSo6XCTest", "testPeopleSetOnce"] +- ["CSo6XCTest", "testPeopleSetReservedProperty"] +- ["CSo6XCTest", "testPeopleSetTo"] +- ["CSo6XCTest", "testPeopleTrackCharge"] +- ["CSo6XCTest", "testPeopleTrackChargeDecimal"] +- ["CSo6XCTest", "testPeopleTrackChargeWithProperties"] +- ["CSo6XCTest", "testPeopleTrackChargeWithTime"] +- ["CSo6XCTest", "testPeopleTrackChargeZero"] +- !private ["CSo6XCTest", "waitForSerialQueue"] +- !private ["CSo10XCTestCase", "AnyObject"] +- !private ["CSo10XCTestCase", "Double"] +- !private ["CSo10XCTestCase", "Int"] +- !private ["CSo10XCTestCase", "NSData"] +- !private ["CSo10XCTestCase", "NSDate"] +- !private ["CSo10XCTestCase", "NSUTF8StringEncoding"] +- !private ["CSo10XCTestCase", "Properties"] +- !private ["CSo10XCTestCase", "QueueConstants"] +- !private ["CSo10XCTestCase", "String"] +- !private ["CSo10XCTestCase", "XCTAssertEqual"] +- !private ["CSo10XCTestCase", "XCTAssertNotNil"] +- !private ["CSo10XCTestCase", "XCTAssertTrue"] +- !private ["CSo10XCTestCase", "XCTExpectAssert"] +- !private ["CSo10XCTestCase", "allPropertyTypes"] +- !private ["CSo10XCTestCase", "assertDefaultPeopleProperties"] +- ["CSo10XCTestCase", "init"] +- !private ["CSo10XCTestCase", "mixpanel"] +- ["CSo10XCTestCase", "testDropPeopleRecords"] +- ["CSo10XCTestCase", "testDropUnidentifiedPeopleRecords"] +- ["CSo10XCTestCase", "testPeopleAddPushDeviceToken"] +- ["CSo10XCTestCase", "testPeopleAssertPropertyTypes"] +- ["CSo10XCTestCase", "testPeopleClearCharges"] +- ["CSo10XCTestCase", "testPeopleDeleteUser"] +- ["CSo10XCTestCase", "testPeopleIncrement"] +- ["CSo10XCTestCase", "testPeopleIncrementBy"] +- ["CSo10XCTestCase", "testPeopleSet"] +- ["CSo10XCTestCase", "testPeopleSetOnce"] +- ["CSo10XCTestCase", "testPeopleSetReservedProperty"] +- ["CSo10XCTestCase", "testPeopleSetTo"] +- ["CSo10XCTestCase", "testPeopleTrackCharge"] +- ["CSo10XCTestCase", "testPeopleTrackChargeDecimal"] +- ["CSo10XCTestCase", "testPeopleTrackChargeWithProperties"] +- ["CSo10XCTestCase", "testPeopleTrackChargeWithTime"] +- ["CSo10XCTestCase", "testPeopleTrackChargeZero"] +- !private ["CSo10XCTestCase", "waitForSerialQueue"] +- !private ["CSo11XCUIElement", "deinit"] +- !private ["Ps10_ArrayType", "Element"] +- !private ["Ps10_ArrayType", "Generator"] +- !private ["Ps10_ArrayType", "Index"] +- !private ["Ps10_ArrayType", "SubSequence"] +- !private ["Ps10_ArrayType", "_Element"] +- !private ["Ps10_ArrayType", "count"] +- !private ["Ps10_ArrayType", "first"] +- !private ["Ps10_ArrayType", "last"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible", "init"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "Distance"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "IntegerLiteralType"] +- !private ["Ps33_BuiltinIntegerLiteralConvertible", "_DisabledRangeIndex"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps32_BuiltinStringLiteralConvertible", "init"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps37_BuiltinUTF16StringLiteralConvertible", "init"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "dataUsingEncoding"] +- !private ["Ps39_BuiltinUnicodeScalarLiteralConvertible", "init"] +- !private ["Ps24_DestructorSafeContainer", "Element"] +- !private ["Ps24_DestructorSafeContainer", "Generator"] +- !private ["Ps24_DestructorSafeContainer", "Index"] +- !private ["Ps24_DestructorSafeContainer", "SubSequence"] +- !private ["Ps24_DestructorSafeContainer", "_Element"] +- !private ["Ps24_DestructorSafeContainer", "count"] +- !private ["Ps24_DestructorSafeContainer", "first"] +- !private ["Ps24_DestructorSafeContainer", "last"] +- !private ["Ps14_Incrementable", "Distance"] +- !private ["Ps14_Incrementable", "IntegerLiteralType"] +- !private ["Ps14_Incrementable", "_DisabledRangeIndex"] +- !private ["Ps22_IntegerArithmeticType", "Distance"] +- !private ["Ps22_IntegerArithmeticType", "IntegerLiteralType"] +- !private ["Ps22_IntegerArithmeticType", "_DisabledRangeIndex"] +- !private ["Ps12_IntegerType", "Distance"] +- !private ["Ps12_IntegerType", "IntegerLiteralType"] +- !private ["Ps12_IntegerType", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "Distance"] +- !private ["Ps21_ObjectiveCBridgeable", "Element"] +- !private ["Ps21_ObjectiveCBridgeable", "Generator"] +- !private ["Ps21_ObjectiveCBridgeable", "Index"] +- !private ["Ps21_ObjectiveCBridgeable", "IntegerLiteralType"] +- !private ["Ps21_ObjectiveCBridgeable", "Key"] +- !private ["Ps21_ObjectiveCBridgeable", "SubSequence"] +- !private ["Ps21_ObjectiveCBridgeable", "Value"] +- !private ["Ps21_ObjectiveCBridgeable", "_DisabledRangeIndex"] +- !private ["Ps21_ObjectiveCBridgeable", "_Element"] +- !private ["Ps21_ObjectiveCBridgeable", "count"] +- !private ["Ps21_ObjectiveCBridgeable", "dataUsingEncoding"] +- !private ["Ps21_ObjectiveCBridgeable", "first"] +- !private ["Ps21_ObjectiveCBridgeable", "init"] +- !private ["Ps21_ObjectiveCBridgeable", "isEmpty"] +- !private ["Ps21_ObjectiveCBridgeable", "last"] +- !private ["Ps21_ObjectiveCBridgeable", "subscript"] +- !private ["Ps22_RandomAccessAmbiguity", "Distance"] +- !private ["Ps22_RandomAccessAmbiguity", "IntegerLiteralType"] +- !private ["Ps22_RandomAccessAmbiguity", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "Distance"] +- !private ["Ps12_Reflectable", "Element"] +- !private ["Ps12_Reflectable", "Generator"] +- !private ["Ps12_Reflectable", "Index"] +- !private ["Ps12_Reflectable", "IntegerLiteralType"] +- !private ["Ps12_Reflectable", "Key"] +- !private ["Ps12_Reflectable", "SubSequence"] +- !private ["Ps12_Reflectable", "Value"] +- !private ["Ps12_Reflectable", "_DisabledRangeIndex"] +- !private ["Ps12_Reflectable", "_Element"] +- !private ["Ps12_Reflectable", "count"] +- !private ["Ps12_Reflectable", "dataUsingEncoding"] +- !private ["Ps12_Reflectable", "first"] +- !private ["Ps12_Reflectable", "init"] +- !private ["Ps12_Reflectable", "isEmpty"] +- !private ["Ps12_Reflectable", "last"] +- !private ["Ps12_Reflectable", "subscript"] +- !private ["Ps18_SignedIntegerType", "Distance"] +- !private ["Ps18_SignedIntegerType", "IntegerLiteralType"] +- !private ["Ps18_SignedIntegerType", "_DisabledRangeIndex"] +depends-nominal: +- "Ps9AnyObject" +- !private "Sa" +- !private "Ps23ArrayLiteralConvertible" +- !private "Vs10ArraySlice" +- !private "Ps22BidirectionalIndexType" +- !private "Ps21BitwiseOperationsType" +- !private "Sb" +- "Ps11CVarArgType" +- !private "Vs9Character" +- !private "Ps14CollectionType" +- !private "Ps10Comparable" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- !private "Vs10Dictionary" +- !private "Vs15DictionaryIndex" +- !private "Ps28DictionaryLiteralConvertible" +- !private "Sd" +- "Ps9Equatable" +- !private "Ps41ExtendedGraphemeClusterLiteralConvertible" +- !private "Sf" +- !private "P8Mixpanel13FlushDelegate" +- !private "Ps16ForwardIndexType" +- !private "Ps13GeneratorType" +- !private "Vs16HalfOpenInterval" +- "Ps8Hashable" +- !private "SQ" +- !private "Ps9Indexable" +- !private "Vs17IndexingGenerator" +- !private "Si" +- !private "Vs5Int16" +- !private "Vs5Int32" +- !private "Vs5Int64" +- !private "Vs4Int8" +- !private "Ps21IntegerArithmeticType" +- !private "Ps25IntegerLiteralConvertible" +- !private "Ps11IntegerType" +- !private "PSo10LSHTTPBody" +- !private "PSo12LSMatcheable" +- !private "Ps14MirrorPathType" +- "C17MixpanelDemoTests17MixpanelBaseTests" +- "P8Mixpanel16MixpanelDelegate" +- !private "C8Mixpanel16MixpanelInstance" +- "C17MixpanelDemoTests19MixpanelPeopleTests" +- !private "Ps21MutableCollectionType" +- !private "Ps16MutableIndexable" +- !private "Ps16MutableSliceable" +- !private "CSo7NSArray" +- !private "PSo8NSCoding" +- !private "PSo9NSCopying" +- !private "CSo6NSData" +- !private "PSo17NSFastEnumeration" +- !private "PSo16NSMutableCopying" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "PSo14NSSecureCoding" +- !private "CSo8NSString" +- !private "Ps21NilLiteralConvertible" +- !private "Sq" +- !private "Ps16OutputStreamType" +- !private "C8Mixpanel6People" +- !private "V8Mixpanel14QueueConstants" +- !private "Ps21RandomAccessIndexType" +- !private "Vs5Range" +- !private "Vs14RangeGenerator" +- !private "Ps30RangeReplaceableCollectionType" +- !private "Ps12SequenceType" +- !private "Ps17SignedIntegerType" +- !private "Ps16SignedNumberType" +- !private "Vs5Slice" +- !private "Vs12StaticString" +- !private "Ps10Streamable" +- !private "Ps10Strideable" +- !private "SS" +- !private "Ps30StringInterpolationConvertible" +- !private "Ps24StringLiteralConvertible" +- !private "Su" +- !private "Vs6UInt16" +- !private "Vs6UInt32" +- !private "Vs6UInt64" +- !private "Vs5UInt8" +- !private "Sc" +- !private "Ps31UnicodeScalarLiteralConvertible" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "CSo11XCUIElement" +- !private "Ps10_ArrayType" +- !private "Ps49_BuiltinExtendedGraphemeClusterLiteralConvertible" +- !private "Ps33_BuiltinIntegerLiteralConvertible" +- !private "Ps32_BuiltinStringLiteralConvertible" +- !private "Ps37_BuiltinUTF16StringLiteralConvertible" +- !private "Ps39_BuiltinUnicodeScalarLiteralConvertible" +- !private "Ps24_DestructorSafeContainer" +- !private "Ps14_Incrementable" +- !private "Ps22_IntegerArithmeticType" +- !private "Ps12_IntegerType" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps22_RandomAccessAmbiguity" +- !private "Ps12_Reflectable" +- !private "Ps18_SignedIntegerType" +depends-dynamic-lookup: +- !private "subscript" +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule" +interface-hash: "7391d90ae6b1649d47456cf2add29d70" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftdoc new file mode 100644 index 00000000..472c7594 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftmodule new file mode 100644 index 00000000..0c182123 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.d new file mode 100644 index 00000000..4854bafa --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.d @@ -0,0 +1,3 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.dia new file mode 100644 index 00000000..bb0ec51b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o new file mode 100644 index 00000000..a4302ffa Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.swiftdeps new file mode 100644 index 00000000..bc653362 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.swiftdeps @@ -0,0 +1,194 @@ +### Swift dependencies file v0 ### +provides-top-level: +- "kTestToken" +- "kDefaultServerString" +- "kDefaultServerTrackString" +- "kDefaultServerEngageString" +- "stubEngage" +- "stubTrack" +provides-nominal: +provides-member: +- ["CSo10XCTestCase", ""] +- ["CSo10XCTestCase", "XCTExpectAssert"] +provides-dynamic-lookup: +depends-top-level: +- "kTestToken" +- "stubTrack" +- !private "!" +- !private "Assertions" +- !private "stubRequest" +- "kDefaultServerString" +- "LSStubRequestDSL" +- "StringLiteralType" +- "kDefaultServerTrackString" +- "StaticString" +- "stubEngage" +- "kDefaultServerEngageString" +- "UInt" +- "String" +- "XCTestCase" +depends-member: +- !private ["Ps9AnyObject", "Assertions"] +- ["Ps9AnyObject", "XCTExpectAssert"] +- !private ["Ps9AnyObject", "assertClosure"] +- !private ["Ps9AnyObject", "expectationWithDescription"] +- !private ["Ps9AnyObject", "fulfill"] +- !private ["Ps9AnyObject", "swiftAssertClosure"] +- !private ["Ps9AnyObject", "waitForExpectationsWithTimeout"] +- !private ["Ps9AnyObject", "withHeader"] +- !private ["C8Mixpanel10Assertions", "assertClosure"] +- !private ["C8Mixpanel10Assertions", "swiftAssertClosure"] +- !private ["Sb", "_getBuiltinLogicValue"] +- !private ["Ps25BooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps11BooleanType", "_getBuiltinLogicValue"] +- !private ["Ps11CVarArgType", "Assertions"] +- ["Ps11CVarArgType", "XCTExpectAssert"] +- !private ["Ps11CVarArgType", "expectationWithDescription"] +- !private ["Ps11CVarArgType", "fulfill"] +- !private ["Ps11CVarArgType", "waitForExpectationsWithTimeout"] +- !private ["Ps11CVarArgType", "withHeader"] +- !private ["Ps28CustomDebugStringConvertible", "Assertions"] +- ["Ps28CustomDebugStringConvertible", "XCTExpectAssert"] +- !private ["Ps28CustomDebugStringConvertible", "expectationWithDescription"] +- !private ["Ps28CustomDebugStringConvertible", "fulfill"] +- !private ["Ps28CustomDebugStringConvertible", "waitForExpectationsWithTimeout"] +- !private ["Ps28CustomDebugStringConvertible", "withHeader"] +- !private ["Ps23CustomStringConvertible", "Assertions"] +- ["Ps23CustomStringConvertible", "XCTExpectAssert"] +- !private ["Ps23CustomStringConvertible", "_getBuiltinLogicValue"] +- !private ["Ps23CustomStringConvertible", "expectationWithDescription"] +- !private ["Ps23CustomStringConvertible", "fulfill"] +- !private ["Ps23CustomStringConvertible", "waitForExpectationsWithTimeout"] +- !private ["Ps23CustomStringConvertible", "withHeader"] +- !private ["Ps9Equatable", "Assertions"] +- ["Ps9Equatable", "XCTExpectAssert"] +- !private ["Ps9Equatable", "_getBuiltinLogicValue"] +- !private ["Ps9Equatable", "expectationWithDescription"] +- !private ["Ps9Equatable", "fulfill"] +- !private ["Ps9Equatable", "waitForExpectationsWithTimeout"] +- !private ["Ps9Equatable", "withHeader"] +- !private ["Ps8Hashable", "Assertions"] +- ["Ps8Hashable", "XCTExpectAssert"] +- !private ["Ps8Hashable", "_getBuiltinLogicValue"] +- !private ["Ps8Hashable", "expectationWithDescription"] +- !private ["Ps8Hashable", "fulfill"] +- !private ["Ps8Hashable", "waitForExpectationsWithTimeout"] +- !private ["Ps8Hashable", "withHeader"] +- !private ["SQ", "deinit"] +- !private ["CSo16LSStubRequestDSL", "withHeader"] +- !private ["CSo8NSObject", "Assertions"] +- ["CSo8NSObject", "StaticString"] +- ["CSo8NSObject", "String"] +- ["CSo8NSObject", "UInt"] +- ["CSo8NSObject", "XCTExpectAssert"] +- !private ["CSo8NSObject", "expectationWithDescription"] +- !private ["CSo8NSObject", "fulfill"] +- !private ["CSo8NSObject", "waitForExpectationsWithTimeout"] +- !private ["CSo8NSObject", "withHeader"] +- !private ["PSo16NSObjectProtocol", "Assertions"] +- ["PSo16NSObjectProtocol", "XCTExpectAssert"] +- !private ["PSo16NSObjectProtocol", "expectationWithDescription"] +- !private ["PSo16NSObjectProtocol", "fulfill"] +- !private ["PSo16NSObjectProtocol", "waitForExpectationsWithTimeout"] +- !private ["PSo16NSObjectProtocol", "withHeader"] +- !private ["Vs12StaticString", "deinit"] +- !private ["SS", "deinit"] +- !private ["CSo6XCTest", "Assertions"] +- ["CSo6XCTest", "StaticString"] +- ["CSo6XCTest", "String"] +- ["CSo6XCTest", "UInt"] +- ["CSo6XCTest", "XCTExpectAssert"] +- !private ["CSo6XCTest", "expectationWithDescription"] +- !private ["CSo6XCTest", "waitForExpectationsWithTimeout"] +- !private ["CSo10XCTestCase", "Assertions"] +- ["CSo10XCTestCase", "StaticString"] +- ["CSo10XCTestCase", "String"] +- ["CSo10XCTestCase", "UInt"] +- ["CSo10XCTestCase", "XCTExpectAssert"] +- !private ["CSo10XCTestCase", "expectationWithDescription"] +- !private ["CSo10XCTestCase", "waitForExpectationsWithTimeout"] +- !private ["CSo17XCTestExpectation", "fulfill"] +- !private ["Ps33_BuiltinBooleanLiteralConvertible", "_getBuiltinLogicValue"] +- !private ["Ps21_ObjectiveCBridgeable", "_getBuiltinLogicValue"] +- !private ["Ps12_Reflectable", "_getBuiltinLogicValue"] +depends-nominal: +- "Ps9AnyObject" +- !private "C8Mixpanel10Assertions" +- !private "Sb" +- !private "Ps25BooleanLiteralConvertible" +- !private "Ps11BooleanType" +- "Ps11CVarArgType" +- "Ps28CustomDebugStringConvertible" +- "Ps23CustomStringConvertible" +- "Ps9Equatable" +- "Ps8Hashable" +- !private "SQ" +- !private "CSo16LSStubRequestDSL" +- "CSo8NSObject" +- "PSo16NSObjectProtocol" +- !private "Vs12StaticString" +- !private "SS" +- "CSo6XCTest" +- "CSo10XCTestCase" +- !private "CSo17XCTestExpectation" +- !private "Ps33_BuiltinBooleanLiteralConvertible" +- !private "Ps21_ObjectiveCBridgeable" +- !private "Ps12_Reflectable" +depends-dynamic-lookup: +depends-external: +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h" +- "/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule" +- "/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap" +- "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule" +interface-hash: "67071d11de8e0738882aca88523fbcdb" diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftdoc new file mode 100644 index 00000000..472c7594 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftmodule new file mode 100644 index 00000000..4dea0e8f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants~partial.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh new file mode 100755 index 00000000..5fe6f19d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh @@ -0,0 +1,9 @@ +#!/bin/sh +diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null +if [[ $? != 0 ]] ; then + cat << EOM +error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. +EOM + exit 1 +fi + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh new file mode 100755 index 00000000..2816d17a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh @@ -0,0 +1,3 @@ +#!/bin/sh +"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-resources.sh" + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh new file mode 100755 index 00000000..ef692e98 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh @@ -0,0 +1,3 @@ +#!/bin/sh +"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-frameworks.sh" + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..1519d19a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..280b2013 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/swift-overrides.hmap new file mode 100644 index 00000000..0fe9dd4c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemo.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemo.build/dgph new file mode 100644 index 00000000..e4b3d20b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemo.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemo.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemo.build/dgph~ new file mode 100644 index 00000000..5ea7327e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemo.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..bcd72fba Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..5ea7327e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphoneos/MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000..e239d300 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000..32288e88 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000..3654cded Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h new file mode 100644 index 00000000..2b021857 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/DerivedSources/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist new file mode 100644 index 00000000..0c67376e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/LaunchScreen-SBPartialInfo.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main-SBPartialInfo.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main-SBPartialInfo.plist new file mode 100644 index 00000000..ef6bfe22 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main-SBPartialInfo.plist @@ -0,0 +1,10 @@ + + + + + UIAppFonts + + SFUIText.ttf + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..25e56422 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..cd226513 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Info.plist new file mode 100644 index 00000000..ccc75e07 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..216857d3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..85f999fc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..884a3da6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..b6e4496c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..dd404333 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..2d75e930 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..f1b7c700 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..1f8630c3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-generated-files.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-project-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-project-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/MixpanelDemo.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o new file mode 100644 index 00000000..839e326d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.d new file mode 100644 index 00000000..ccf9717a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.d @@ -0,0 +1,8 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/i386/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.dia new file mode 100644 index 00000000..9c69b68e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o new file mode 100644 index 00000000..7a164d84 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo new file mode 100755 index 00000000..8fd3307a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-OutputFileMap.json new file mode 100644 index 00000000..4773d161 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/MixpanelDemo-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/AppDelegate.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/AppDelegate.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/TrackingViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/TrackingViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/UtilityViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/UtilityViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/ActionCompleteViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/ActionCompleteViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/PeopleViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/i386\/PeopleViewController.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h new file mode 100644 index 00000000..2b021857 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-master.swiftdeps new file mode 100644 index 00000000..659eaf44 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo-master.swiftdeps @@ -0,0 +1,9 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "7f7f8441f1999efc863f2a4202b09416" +build_time: [522805453, 474664000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift": [9223372036854775807, 0] diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.LinkFileList new file mode 100644 index 00000000..82e4cfd8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/AppDelegate.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/ActionCompleteViewController.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule new file mode 100644 index 00000000..20b26023 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo_dependency_info.dat b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo_dependency_info.dat new file mode 100644 index 00000000..ecaf6d00 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/MixpanelDemo_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o new file mode 100644 index 00000000..d7dc299d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/PeopleViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o new file mode 100644 index 00000000..0517bbf7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/TrackingViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o new file mode 100644 index 00000000..778a14d6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/i386/UtilityViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o new file mode 100644 index 00000000..002c9955 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.d new file mode 100644 index 00000000..adc36c9f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.d @@ -0,0 +1,8 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.dia new file mode 100644 index 00000000..9c69b68e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o new file mode 100644 index 00000000..8dfe7094 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo new file mode 100755 index 00000000..795b5c08 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-OutputFileMap.json new file mode 100644 index 00000000..712b3e61 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/MixpanelDemo-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/AppDelegate.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/AppDelegate.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/TrackingViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/TrackingViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/UtilityViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/UtilityViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/ActionCompleteViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/ActionCompleteViewController.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemo\/PeopleViewController.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemo.build\/Objects-normal\/x86_64\/PeopleViewController.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h new file mode 100644 index 00000000..2b021857 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-Swift.h @@ -0,0 +1,180 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +@import UIKit; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +@class UITapGestureRecognizer; +@class UIView; +@class UILabel; +@class NSBundle; +@class NSCoder; + +SWIFT_CLASS("_TtC12MixpanelDemo28ActionCompleteViewController") +@interface ActionCompleteViewController : UIViewController +@property (nonatomic, weak) IBOutlet UIView * _Null_unspecified popupView; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified actionLabel; +@property (nonatomic, weak) IBOutlet UILabel * _Null_unspecified descLabel; +@property (nonatomic, copy) NSString * _Nullable actionStr; +@property (nonatomic, copy) NSString * _Nullable descStr; +- (void)viewDidLoad; +- (void)viewDidAppear:(BOOL)animated; +- (void)handleTap:(UITapGestureRecognizer * _Nonnull)gesture; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +@class UIWindow; +@class UIApplication; +@class NSObject; +@class NSData; +@class NSError; + +SWIFT_CLASS("_TtC12MixpanelDemo11AppDelegate") +@interface AppDelegate : UIResponder +@property (nonatomic, strong) UIWindow * _Nullable window; +- (BOOL)application:(UIApplication * _Nonnull)application didFinishLaunchingWithOptions:(NSDictionary * _Nullable)launchOptions; +- (void)applicationDidBecomeActive:(UIApplication * _Nonnull)application; +- (void)applicationWillTerminate:(UIApplication * _Nonnull)application; +- (void)application:(UIApplication * _Nonnull)application didRegisterForRemoteNotificationsWithDeviceToken:(NSData * _Nonnull)deviceToken; +- (void)application:(UIApplication * _Nonnull)application didFailToRegisterForRemoteNotificationsWithError:(NSError * _Nonnull)error; +- (void)application:(UIApplication * _Nonnull)application didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + +@class UITableView; +@class NSIndexPath; +@class UITableViewCell; + +SWIFT_CLASS("_TtC12MixpanelDemo20PeopleViewController") +@interface PeopleViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo22TrackingViewController") +@interface TrackingViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC12MixpanelDemo21UtilityViewController") +@interface UtilityViewController : UIViewController +@property (nonatomic, weak) IBOutlet UITableView * _Null_unspecified tableView; +@property (nonatomic, copy) NSArray * _Nonnull tableViewItems; +- (void)viewDidLoad; +- (UITableViewCell * _Nonnull)tableView:(UITableView * _Nonnull)tableView cellForRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (void)tableView:(UITableView * _Nonnull)tableView didSelectRowAtIndexPath:(NSIndexPath * _Nonnull)indexPath; +- (NSInteger)tableView:(UITableView * _Nonnull)tableView numberOfRowsInSection:(NSInteger)section; +- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER; +- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER; +@end + +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-master.swiftdeps new file mode 100644 index 00000000..cab619b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo-master.swiftdeps @@ -0,0 +1,9 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "4c66e7609fa80b8ac74888664891a55f" +build_time: [522805451, 263522000] +inputs: + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/AppDelegate.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/UtilityViewController.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/TrackingViewController.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/PeopleViewController.swift": [9223372036854775807, 0] + "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift": [9223372036854775807, 0] diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.LinkFileList new file mode 100644 index 00000000..49bd99bb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/AppDelegate.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/ActionCompleteViewController.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftdoc differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule new file mode 100644 index 00000000..e4c95dc4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo.swiftmodule differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo_dependency_info.dat b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo_dependency_info.dat new file mode 100644 index 00000000..acf6fb62 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/MixpanelDemo_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o new file mode 100644 index 00000000..b20c1c1b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/PeopleViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o new file mode 100644 index 00000000..2a0753a5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/TrackingViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o new file mode 100644 index 00000000..9eba4da6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/Objects-normal/x86_64/UtilityViewController.o differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/assetcatalog_dependencies b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/assetcatalog_dependencies new file mode 100644 index 00000000..74705ba2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/assetcatalog_dependencies differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/assetcatalog_generated_info.plist b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/assetcatalog_generated_info.plist new file mode 100644 index 00000000..0c67376e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/assetcatalog_generated_info.plist @@ -0,0 +1,5 @@ + + + + + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/dgph new file mode 100644 index 00000000..e8f85744 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/dgph~ new file mode 100644 index 00000000..e8f85744 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/swift-overrides.hmap new file mode 100644 index 00000000..c5ca52c6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemo.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap new file mode 100644 index 00000000..dd8b535d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/MixpanelDemoTests.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests-OutputFileMap.json new file mode 100644 index 00000000..95c2c8d7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelPeopleTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelPeopleTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/TestConstants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/TestConstants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelBaseTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelBaseTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelDemoTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/MixpanelDemoTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/LoggerTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/i386\/LoggerTests.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..6d721716 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/LoggerTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelPeopleTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/TestConstants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelBaseTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/i386/MixpanelDemoTests.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.d b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.d new file mode 100644 index 00000000..73d022cb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.d @@ -0,0 +1,8 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftmodule : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.swiftdoc : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-Swift.h : /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/TestConstants.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Swift.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Foundation.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Darwin.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/Dispatch.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/ObjectiveC.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreGraphics.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/XCTest.swiftmodule /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIRemote.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUICoordinate.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIDevice.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIElement.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCUIApplication.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestSuite.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestProbe.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservation.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestObserver.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestLog.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestCase.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestAssertions.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCAbstractTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestErrors.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTestDefines.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Headers/XCTest.h /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks/XCTest.framework/Modules/module.modulemap /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/UIKit.swiftmodule /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator/x86_64/CoreImage.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.dia b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.dia new file mode 100644 index 00000000..612a0a64 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.dia differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-OutputFileMap.json b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-OutputFileMap.json new file mode 100644 index 00000000..94fec9c1 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-OutputFileMap.json @@ -0,0 +1 @@ +{"":{"swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests-master.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelPeopleTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelPeopleTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/TestConstants.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/TestConstants.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelBaseTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelBaseTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/MixpanelDemoTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/MixpanelDemoTests.swiftdeps"},"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/MixpanelDemoTests\/LoggerTests.swift":{"swiftmodule":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests~partial.swiftmodule","object":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.o","llvm-bc":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.bc","diagnostics":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.dia","dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.d","swift-dependencies":"\/Users\/yardeneitan\/Development\/mixpanel-swift\/MixpanelDemo\/Build\/Intermediates\/MixpanelDemo.build\/Release-iphonesimulator\/MixpanelDemoTests.build\/Objects-normal\/x86_64\/LoggerTests.swiftdeps"}} \ No newline at end of file diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-master.swiftdeps b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-master.swiftdeps new file mode 100644 index 00000000..9a8fcabe --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests-master.swiftdeps @@ -0,0 +1,4 @@ +version: "Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31)" +options: "967019645ed337cb7f916d7769685795" +build_time: [522805458, 657375000] +inputs: diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..e51a2970 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.LinkFileList @@ -0,0 +1,5 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/LoggerTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelPeopleTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/TestConstants.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelBaseTests.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Objects-normal/x86_64/MixpanelDemoTests.o diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh new file mode 100755 index 00000000..5fe6f19d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-122455B428AF758CAE10EE5F.sh @@ -0,0 +1,9 @@ +#!/bin/sh +diff "${PODS_ROOT}/../Podfile.lock" "${PODS_ROOT}/Manifest.lock" > /dev/null +if [[ $? != 0 ]] ; then + cat << EOM +error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation. +EOM + exit 1 +fi + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh new file mode 100755 index 00000000..2816d17a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-14A6BFB53FD8FB99E2B3D2F6.sh @@ -0,0 +1,3 @@ +#!/bin/sh +"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-resources.sh" + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh new file mode 100755 index 00000000..ef692e98 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/Script-23A073632FB9DC26C9B98ABF.sh @@ -0,0 +1,3 @@ +#!/bin/sh +"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-frameworks.sh" + diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..15812dac Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..15812dac Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/swift-overrides.hmap b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/swift-overrides.hmap new file mode 100644 index 00000000..0fe9dd4c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Release-iphonesimulator/MixpanelDemoTests.build/swift-overrides.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/all-product-headers.yaml b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/all-product-headers.yaml new file mode 100644 index 00000000..6d69b79c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/all-product-headers.yaml @@ -0,0 +1,50 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [ + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Headers", + 'contents': [ + { + 'type': 'file', + 'name': "MixpanelDemo-Swift.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Headers/MixpanelDemo-Swift.h" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Modules", + 'contents': [ + { + 'type': 'file', + 'name': "module.modulemap", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemo.build/module.modulemap" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.xctest/Headers", + 'contents': [ + { + 'type': 'file', + 'name': "MixpanelDemoTests-Swift.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.xctest/Headers/MixpanelDemoTests-Swift.h" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.xctest/Modules", + 'contents': [ + { + 'type': 'file', + 'name': "module.modulemap", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/MixpanelDemo.build/Debug-iphonesimulator/MixpanelDemoTests.build/module.modulemap" + } + ] + } + ] +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c new file mode 100644 index 00000000..38ca7d7d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c @@ -0,0 +1 @@ + const unsigned char NocillaVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Nocilla PROJECT:Pods-1" "\n"; const double NocillaVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-generated-files.hmap new file mode 100644 index 00000000..88cbf92d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-own-target-headers.hmap new file mode 100644 index 00000000..141b11e5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla.hmap new file mode 100644 index 00000000..1aa513d2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Nocilla.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.d new file mode 100644 index 00000000..4b953eed --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.d @@ -0,0 +1,20 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.o new file mode 100644 index 00000000..e4765c4a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.d new file mode 100644 index 00000000..6551f582 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.o new file mode 100644 index 00000000..094e967a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.d new file mode 100644 index 00000000..caea1eab --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.o new file mode 100644 index 00000000..833e8b98 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.d new file mode 100644 index 00000000..ab70f9c6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.o new file mode 100644 index 00000000..a80a98ff Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.d new file mode 100644 index 00000000..00cdc846 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.o new file mode 100644 index 00000000..7023e044 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.d new file mode 100644 index 00000000..8bc2e87c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.o new file mode 100644 index 00000000..ad236c38 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.d new file mode 100644 index 00000000..9ce1e73f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.o new file mode 100644 index 00000000..6416db09 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.d new file mode 100644 index 00000000..5c781201 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.d @@ -0,0 +1,22 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.o new file mode 100644 index 00000000..668d0dca Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.d new file mode 100644 index 00000000..9b11df09 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.o new file mode 100644 index 00000000..0dd0bea3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.d new file mode 100644 index 00000000..a3ca0891 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.o new file mode 100644 index 00000000..43652bd7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.d new file mode 100644 index 00000000..016e9164 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.d @@ -0,0 +1,18 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.o new file mode 100644 index 00000000..af9496f1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.d new file mode 100644 index 00000000..f0a9e1b0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.d @@ -0,0 +1,24 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.o new file mode 100644 index 00000000..bf720320 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.d new file mode 100644 index 00000000..ced72877 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.o new file mode 100644 index 00000000..7a079647 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.d new file mode 100644 index 00000000..9bfc66b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.o new file mode 100644 index 00000000..f77603f8 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.d new file mode 100644 index 00000000..2e9db3ad --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.d @@ -0,0 +1,11 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.o new file mode 100644 index 00000000..ada57802 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.d new file mode 100644 index 00000000..e4d08e34 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.d @@ -0,0 +1,19 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.o new file mode 100644 index 00000000..fead8687 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.d new file mode 100644 index 00000000..b7dadfb0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.o new file mode 100644 index 00000000..a148b3d9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.d new file mode 100644 index 00000000..a161decb --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.d @@ -0,0 +1,8 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.o new file mode 100644 index 00000000..a2201079 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.d new file mode 100644 index 00000000..61d8bb16 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.o new file mode 100644 index 00000000..0f247c71 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.d new file mode 100644 index 00000000..09a32178 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.o new file mode 100644 index 00000000..8d957a53 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.d new file mode 100644 index 00000000..692d0437 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.o new file mode 100644 index 00000000..a8116091 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.d new file mode 100644 index 00000000..a23d4b81 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.o new file mode 100644 index 00000000..df80f47f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.d new file mode 100644 index 00000000..1067240a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.o new file mode 100644 index 00000000..25e79b92 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.d new file mode 100644 index 00000000..38148102 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.o new file mode 100644 index 00000000..4667d9cb Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.d new file mode 100644 index 00000000..f00f7412 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.o new file mode 100644 index 00000000..2434e404 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.d new file mode 100644 index 00000000..c38c1d45 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.d @@ -0,0 +1,3 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-dummy.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.o new file mode 100644 index 00000000..92eeb0b5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla.LinkFileList new file mode 100644 index 00000000..d34135af --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla.LinkFileList @@ -0,0 +1,27 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_dependency_info.dat new file mode 100644 index 00000000..ea5a2d97 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.d new file mode 100644 index 00000000..c4a64a59 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.o new file mode 100644 index 00000000..84021c4d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/dgph new file mode 100644 index 00000000..2eb4e264 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/dgph~ new file mode 100644 index 00000000..74a3a0ff Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Nocilla.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c new file mode 100644 index 00000000..c822401e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c @@ -0,0 +1 @@ + const unsigned char Pods_MixpanelDemoTestsVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Pods_MixpanelDemoTests PROJECT:Pods-1" "\n"; const double Pods_MixpanelDemoTestsVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.d new file mode 100644 index 00000000..20a0d133 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-dummy.m diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.o new file mode 100644 index 00000000..e0172e5b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..40c6beb6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests.LinkFileList @@ -0,0 +1,2 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods-MixpanelDemoTests-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.d new file mode 100644 index 00000000..4f0f032b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.o new file mode 100644 index 00000000..a1a9d76e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Objects-normal/arm64/Pods_MixpanelDemoTests_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap new file mode 100644 index 00000000..ad3c3819 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap new file mode 100644 index 00000000..ec07610b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap new file mode 100644 index 00000000..30802cba Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..0807fc5d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..74a3a0ff Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/module.modulemap new file mode 100644 index 00000000..e291a44a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphoneos/Pods-MixpanelDemoTests.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MixpanelDemoTests { + umbrella header "Pods-MixpanelDemoTests-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c new file mode 100644 index 00000000..38ca7d7d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c @@ -0,0 +1 @@ + const unsigned char NocillaVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Nocilla PROJECT:Pods-1" "\n"; const double NocillaVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-generated-files.hmap new file mode 100644 index 00000000..4c99f25e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-own-target-headers.hmap new file mode 100644 index 00000000..141b11e5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla.hmap new file mode 100644 index 00000000..302cf076 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Nocilla.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.d new file mode 100644 index 00000000..311fc58b --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.d @@ -0,0 +1,20 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o new file mode 100644 index 00000000..6836ced3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.d new file mode 100644 index 00000000..6551f582 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o new file mode 100644 index 00000000..7ea3022e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.d new file mode 100644 index 00000000..caea1eab --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o new file mode 100644 index 00000000..e69c8385 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.d new file mode 100644 index 00000000..ab70f9c6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o new file mode 100644 index 00000000..66db6689 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.d new file mode 100644 index 00000000..00cdc846 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o new file mode 100644 index 00000000..388e5dd6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.d new file mode 100644 index 00000000..8bc2e87c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o new file mode 100644 index 00000000..2bdbcbfe Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.d new file mode 100644 index 00000000..9ce1e73f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o new file mode 100644 index 00000000..4ac7fc80 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.d new file mode 100644 index 00000000..479d029f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.d @@ -0,0 +1,22 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o new file mode 100644 index 00000000..ddf7bf8c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.d new file mode 100644 index 00000000..9b11df09 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o new file mode 100644 index 00000000..8e435321 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.d new file mode 100644 index 00000000..a3ca0891 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o new file mode 100644 index 00000000..99216916 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.d new file mode 100644 index 00000000..8034e9c6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.d @@ -0,0 +1,18 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o new file mode 100644 index 00000000..2f473788 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.d new file mode 100644 index 00000000..4edb8c07 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.d @@ -0,0 +1,24 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o new file mode 100644 index 00000000..856e30dc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.d new file mode 100644 index 00000000..ced72877 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o new file mode 100644 index 00000000..588f75e9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.d new file mode 100644 index 00000000..9bfc66b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o new file mode 100644 index 00000000..d030ca30 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.d new file mode 100644 index 00000000..fd96e82e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.d @@ -0,0 +1,11 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o new file mode 100644 index 00000000..47ba31d7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.d new file mode 100644 index 00000000..77079c94 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.d @@ -0,0 +1,19 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o new file mode 100644 index 00000000..0227766d Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.d new file mode 100644 index 00000000..b7dadfb0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o new file mode 100644 index 00000000..8168b28e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.d new file mode 100644 index 00000000..5a16aef4 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.d @@ -0,0 +1,8 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o new file mode 100644 index 00000000..1fe991b2 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.d new file mode 100644 index 00000000..61d8bb16 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o new file mode 100644 index 00000000..d7dab6a9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.d new file mode 100644 index 00000000..a0b1e0b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o new file mode 100644 index 00000000..7ecf7399 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.d new file mode 100644 index 00000000..692d0437 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o new file mode 100644 index 00000000..e1b60289 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.d new file mode 100644 index 00000000..a23d4b81 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o new file mode 100644 index 00000000..1c9fa95c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.d new file mode 100644 index 00000000..7cb52bb0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o new file mode 100644 index 00000000..188c7252 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.d new file mode 100644 index 00000000..38148102 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o new file mode 100644 index 00000000..b8377017 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.d new file mode 100644 index 00000000..f00f7412 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o new file mode 100644 index 00000000..650bbbe9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.d new file mode 100644 index 00000000..c38c1d45 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.d @@ -0,0 +1,3 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-dummy.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o new file mode 100644 index 00000000..93054b41 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla.LinkFileList new file mode 100644 index 00000000..92f854f6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla.LinkFileList @@ -0,0 +1,27 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_dependency_info.dat new file mode 100644 index 00000000..11166491 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.d new file mode 100644 index 00000000..266f8511 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o new file mode 100644 index 00000000..79b5a8c1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/dgph new file mode 100644 index 00000000..d73957bf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/dgph~ new file mode 100644 index 00000000..d73957bf Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c new file mode 100644 index 00000000..c822401e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c @@ -0,0 +1 @@ + const unsigned char Pods_MixpanelDemoTestsVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Pods_MixpanelDemoTests PROJECT:Pods-1" "\n"; const double Pods_MixpanelDemoTestsVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.d new file mode 100644 index 00000000..20a0d133 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-dummy.m diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o new file mode 100644 index 00000000..7492c0aa Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..07bd0636 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests.LinkFileList @@ -0,0 +1,2 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.d new file mode 100644 index 00000000..834836de --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o new file mode 100644 index 00000000..f79348d4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap new file mode 100644 index 00000000..1427a500 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap new file mode 100644 index 00000000..ec07610b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap new file mode 100644 index 00000000..e9e53417 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..6f9baa76 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..6f9baa76 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap new file mode 100644 index 00000000..e291a44a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MixpanelDemoTests { + umbrella header "Pods-MixpanelDemoTests-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c new file mode 100644 index 00000000..38ca7d7d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/DerivedSources/Nocilla_vers.c @@ -0,0 +1 @@ + const unsigned char NocillaVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Nocilla PROJECT:Pods-1" "\n"; const double NocillaVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-generated-files.hmap new file mode 100644 index 00000000..86b7f560 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-own-target-headers.hmap new file mode 100644 index 00000000..141b11e5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla.hmap new file mode 100644 index 00000000..33d2ab4c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Nocilla.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla.LinkFileList new file mode 100644 index 00000000..c2834bf2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla.LinkFileList @@ -0,0 +1,27 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/ASIHTTPRequestStub.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestAdapter.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSASIHTTPRequestHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSDataMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPClientHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDiff.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPRequestDSLRepresentation.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSHTTPStubURLProtocol.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSNocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSNSURLSessionHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSRegexMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSStringMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubRequestDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponse.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/LSStubResponseDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSData+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSRegularExpression+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSString+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+DSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/NSURLRequest+LSHTTPRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/arm64/Nocilla_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/Nocilla.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/Nocilla.LinkFileList new file mode 100644 index 00000000..fa6ca1b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/Nocilla.LinkFileList @@ -0,0 +1,27 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/ASIHTTPRequestStub.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSASIHTTPRequestAdapter.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSASIHTTPRequestHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSDataMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSHTTPClientHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSHTTPRequestDiff.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSHTTPRequestDSLRepresentation.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSHTTPStubURLProtocol.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSNocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSNSURLHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSNSURLSessionHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSRegexMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSStringMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSStubRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSStubRequestDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSStubResponse.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/LSStubResponseDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/Nocilla-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSData+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSData+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSRegularExpression+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSString+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSString+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSURLRequest+DSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/NSURLRequest+LSHTTPRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/Objects-normal/armv7/Nocilla_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/dgph new file mode 100644 index 00000000..d4339b5a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/dgph~ new file mode 100644 index 00000000..d4339b5a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Nocilla.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..df7e5da1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..74a3a0ff Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c new file mode 100644 index 00000000..38ca7d7d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c @@ -0,0 +1 @@ + const unsigned char NocillaVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Nocilla PROJECT:Pods-1" "\n"; const double NocillaVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-generated-files.hmap new file mode 100644 index 00000000..bbfa105e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-own-target-headers.hmap new file mode 100644 index 00000000..141b11e5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla.hmap new file mode 100644 index 00000000..bd1c1600 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Nocilla.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.d new file mode 100644 index 00000000..460328d5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.d @@ -0,0 +1,20 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.o new file mode 100644 index 00000000..f2fbdf63 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.d new file mode 100644 index 00000000..6551f582 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.o new file mode 100644 index 00000000..4e6df7b1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.d new file mode 100644 index 00000000..caea1eab --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.o new file mode 100644 index 00000000..16149774 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.d new file mode 100644 index 00000000..ab70f9c6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.o new file mode 100644 index 00000000..ba059ff4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.d new file mode 100644 index 00000000..00cdc846 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.o new file mode 100644 index 00000000..2ba10405 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.d new file mode 100644 index 00000000..8bc2e87c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.o new file mode 100644 index 00000000..f2793251 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.d new file mode 100644 index 00000000..9ce1e73f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.o new file mode 100644 index 00000000..34c261db Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.d new file mode 100644 index 00000000..aa3392a2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.d @@ -0,0 +1,22 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.o new file mode 100644 index 00000000..01e9c831 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.d new file mode 100644 index 00000000..9b11df09 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.o new file mode 100644 index 00000000..c71dd145 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.d new file mode 100644 index 00000000..a3ca0891 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.o new file mode 100644 index 00000000..472fa652 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.d new file mode 100644 index 00000000..4a4214e2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.d @@ -0,0 +1,18 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.o new file mode 100644 index 00000000..3f3aa154 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.d new file mode 100644 index 00000000..5b916ad7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.d @@ -0,0 +1,24 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.o new file mode 100644 index 00000000..0f1584ad Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.d new file mode 100644 index 00000000..ced72877 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.o new file mode 100644 index 00000000..124a7c3e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.d new file mode 100644 index 00000000..9bfc66b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.o new file mode 100644 index 00000000..c8615891 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.d new file mode 100644 index 00000000..272fb793 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.d @@ -0,0 +1,11 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.o new file mode 100644 index 00000000..7dc66f1b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.d new file mode 100644 index 00000000..527fc5d8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.d @@ -0,0 +1,19 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.o new file mode 100644 index 00000000..1c002677 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.d new file mode 100644 index 00000000..b7dadfb0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.o new file mode 100644 index 00000000..cb2ea8e6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.d new file mode 100644 index 00000000..85867b6a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.d @@ -0,0 +1,8 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.o new file mode 100644 index 00000000..03e3bf7e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.d new file mode 100644 index 00000000..61d8bb16 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.o new file mode 100644 index 00000000..39eb1061 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.d new file mode 100644 index 00000000..ff327ec5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.o new file mode 100644 index 00000000..0680b081 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.d new file mode 100644 index 00000000..692d0437 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.o new file mode 100644 index 00000000..9a46a2ca Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.d new file mode 100644 index 00000000..a23d4b81 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.o new file mode 100644 index 00000000..fbacbbd3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.d new file mode 100644 index 00000000..e312b7af --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.o new file mode 100644 index 00000000..ae7abef9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.d new file mode 100644 index 00000000..38148102 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.o new file mode 100644 index 00000000..a2987510 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.d new file mode 100644 index 00000000..f00f7412 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.o new file mode 100644 index 00000000..5a6f4855 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla new file mode 100755 index 00000000..9f54b060 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.d new file mode 100644 index 00000000..c38c1d45 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.d @@ -0,0 +1,3 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-dummy.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.o new file mode 100644 index 00000000..232d550a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla.LinkFileList new file mode 100644 index 00000000..f0fb8cd8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla.LinkFileList @@ -0,0 +1,27 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/ASIHTTPRequestStub.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestAdapter.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSASIHTTPRequestHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSDataMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPClientHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDiff.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPRequestDSLRepresentation.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSHTTPStubURLProtocol.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSNSURLSessionHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSRegexMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStringMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubRequestDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponse.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/LSStubResponseDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSData+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSRegularExpression+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSString+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+DSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/NSURLRequest+LSHTTPRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_dependency_info.dat new file mode 100644 index 00000000..6de35305 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.d new file mode 100644 index 00000000..746c6d3d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.o new file mode 100644 index 00000000..6d4d3a17 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/i386/Nocilla_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.d new file mode 100644 index 00000000..460328d5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.d @@ -0,0 +1,20 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o new file mode 100644 index 00000000..05b0f6b6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.d new file mode 100644 index 00000000..6551f582 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestAdapter.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o new file mode 100644 index 00000000..581ff0af Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.d new file mode 100644 index 00000000..caea1eab --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/ASIHTTPRequestStub.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o new file mode 100644 index 00000000..f1b36ed8 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.d new file mode 100644 index 00000000..ab70f9c6 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o new file mode 100644 index 00000000..7a1bc326 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.d new file mode 100644 index 00000000..00cdc846 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o new file mode 100644 index 00000000..002ffd1b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.d new file mode 100644 index 00000000..8bc2e87c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o new file mode 100644 index 00000000..157d0fb1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.d new file mode 100644 index 00000000..9ce1e73f --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Diff/LSHTTPRequestDiff.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o new file mode 100644 index 00000000..2e457c93 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.d new file mode 100644 index 00000000..aa3392a2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.d @@ -0,0 +1,22 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o new file mode 100644 index 00000000..106f45a6 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.d new file mode 100644 index 00000000..9b11df09 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.d @@ -0,0 +1,4 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o new file mode 100644 index 00000000..49c08f89 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.d new file mode 100644 index 00000000..a3ca0891 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o new file mode 100644 index 00000000..f86ac12c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.d new file mode 100644 index 00000000..4a4214e2 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.d @@ -0,0 +1,18 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSHTTPStubURLProtocol.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o new file mode 100644 index 00000000..0e242de4 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.d new file mode 100644 index 00000000..5b916ad7 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.d @@ -0,0 +1,24 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/LSNSURLHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/LSHTTPClientHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/ASIHTTPRequest/LSASIHTTPRequestHook.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLSession/LSNSURLSessionHook.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o new file mode 100644 index 00000000..2c35d72b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.d new file mode 100644 index 00000000..ced72877 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o new file mode 100644 index 00000000..ffdb184f Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.d new file mode 100644 index 00000000..9bfc66b8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o new file mode 100644 index 00000000..fd368c9b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.d new file mode 100644 index 00000000..272fb793 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.d @@ -0,0 +1,11 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o new file mode 100644 index 00000000..2c004285 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.d new file mode 100644 index 00000000..527fc5d8 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.d @@ -0,0 +1,19 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o new file mode 100644 index 00000000..b0a9d623 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.d new file mode 100644 index 00000000..b7dadfb0 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o new file mode 100644 index 00000000..10017f89 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.d new file mode 100644 index 00000000..85867b6a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.d @@ -0,0 +1,8 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Stubs/LSStubResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPResponse.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o new file mode 100644 index 00000000..2f6115d7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.d new file mode 100644 index 00000000..61d8bb16 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSDataMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o new file mode 100644 index 00000000..ee51203c Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.d new file mode 100644 index 00000000..ff327ec5 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o new file mode 100644 index 00000000..38e36bcc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.d new file mode 100644 index 00000000..692d0437 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSRegexMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o new file mode 100644 index 00000000..98b93f6e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.d new file mode 100644 index 00000000..a23d4b81 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSStringMatcher.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcher.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o new file mode 100644 index 00000000..c04dec72 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.d new file mode 100644 index 00000000..e312b7af --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.d @@ -0,0 +1,6 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o new file mode 100644 index 00000000..3c7797fe Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.d new file mode 100644 index 00000000..38148102 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.d @@ -0,0 +1,7 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+DSL.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSHTTPRequestDSLRepresentation.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o new file mode 100644 index 00000000..5dc508e1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.d new file mode 100644 index 00000000..f00f7412 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.d @@ -0,0 +1,5 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Hooks/NSURLRequest/NSURLRequest+LSHTTPRequest.h \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPRequest.h diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o new file mode 100644 index 00000000..2a904e76 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla new file mode 100755 index 00000000..06e570cc Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.d new file mode 100644 index 00000000..c38c1d45 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.d @@ -0,0 +1,3 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-dummy.m \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Nocilla/Nocilla-prefix.pch diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o new file mode 100644 index 00000000..940dfff9 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla.LinkFileList new file mode 100644 index 00000000..dce252ef --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla.LinkFileList @@ -0,0 +1,27 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/ASIHTTPRequestStub.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestAdapter.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSASIHTTPRequestHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSDataMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPClientHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDiff.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPRequestDSLRepresentation.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSHTTPStubURLProtocol.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSNSURLSessionHook.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSRegexMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStringMatcher.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubRequestDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponse.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/LSStubResponseDSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSData+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSRegularExpression+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Matcheable.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSString+Nocilla.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+DSL.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/NSURLRequest+LSHTTPRequest.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_dependency_info.dat b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_dependency_info.dat new file mode 100644 index 00000000..31892fb8 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_dependency_info.dat differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.d new file mode 100644 index 00000000..746c6d3d --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/DerivedSources/Nocilla_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o new file mode 100644 index 00000000..4b0dcd73 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/Objects-normal/x86_64/Nocilla_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/dgph new file mode 100644 index 00000000..7771a3d3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/dgph~ new file mode 100644 index 00000000..7771a3d3 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Nocilla.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c new file mode 100644 index 00000000..c822401e --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c @@ -0,0 +1 @@ + const unsigned char Pods_MixpanelDemoTestsVersionString[] __attribute__ ((used)) = "@(#)PROGRAM:Pods_MixpanelDemoTests PROJECT:Pods-1" "\n"; const double Pods_MixpanelDemoTestsVersionNumber __attribute__ ((used)) = (double)1.; diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.d new file mode 100644 index 00000000..20a0d133 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-dummy.m diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.o new file mode 100644 index 00000000..4a61c5e1 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests new file mode 100644 index 00000000..92a57a46 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..d43aad46 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests.LinkFileList @@ -0,0 +1,2 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods-MixpanelDemoTests-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.d new file mode 100644 index 00000000..905e30bc --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.o new file mode 100644 index 00000000..95153968 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/i386/Pods_MixpanelDemoTests_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.d new file mode 100644 index 00000000..20a0d133 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target\ Support\ Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-dummy.m diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o new file mode 100644 index 00000000..5aaff15a Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests new file mode 100644 index 00000000..617d7bef Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests.LinkFileList b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests.LinkFileList new file mode 100644 index 00000000..d2dfc899 --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests.LinkFileList @@ -0,0 +1,2 @@ +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods-MixpanelDemoTests-dummy.o +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.d b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.d new file mode 100644 index 00000000..905e30bc --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.d @@ -0,0 +1,2 @@ +dependencies: \ + /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/DerivedSources/Pods_MixpanelDemoTests_vers.c diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.dia b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.dia new file mode 100644 index 00000000..29ccd981 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.dia differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o new file mode 100644 index 00000000..c68237e7 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Objects-normal/x86_64/Pods_MixpanelDemoTests_vers.o differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap new file mode 100644 index 00000000..dc511c47 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-non-framework-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap new file mode 100644 index 00000000..2309d430 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-all-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap new file mode 100644 index 00000000..6f5026c5 Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-generated-files.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap new file mode 100644 index 00000000..ec07610b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-own-target-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap new file mode 100644 index 00000000..57e6403b Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests-project-headers.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap new file mode 100644 index 00000000..b740e00e Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/Pods_MixpanelDemoTests.hmap differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..126633ae Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/dgph~ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/dgph~ new file mode 100644 index 00000000..126633ae Binary files /dev/null and b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/dgph~ differ diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap new file mode 100644 index 00000000..e291a44a --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/Release-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MixpanelDemoTests { + umbrella header "Pods-MixpanelDemoTests-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Intermediates/Pods.build/all-product-headers.yaml b/MixpanelDemo/Build/Intermediates/Pods.build/all-product-headers.yaml new file mode 100644 index 00000000..1cfe845c --- /dev/null +++ b/MixpanelDemo/Build/Intermediates/Pods.build/all-product-headers.yaml @@ -0,0 +1,115 @@ +{ + 'version': 0, + 'case-sensitive': 'false', + 'roots': [ + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers", + 'contents': [ + { + 'type': 'file', + 'name': "LSHTTPBody.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Model/LSHTTPBody.h" + }, + { + 'type': 'file', + 'name': "LSMatcheable.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/LSMatcheable.h" + }, + { + 'type': 'file', + 'name': "LSNocilla.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/LSNocilla.h" + }, + { + 'type': 'file', + 'name': "LSStubRequestDSL.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubRequestDSL.h" + }, + { + 'type': 'file', + 'name': "LSStubResponseDSL.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/DSL/LSStubResponseDSL.h" + }, + { + 'type': 'file', + 'name': "NSData+Matcheable.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSData+Matcheable.h" + }, + { + 'type': 'file', + 'name': "NSData+Nocilla.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSData+Nocilla.h" + }, + { + 'type': 'file', + 'name': "NSRegularExpression+Matcheable.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSRegularExpression+Matcheable.h" + }, + { + 'type': 'file', + 'name': "NSString+Matcheable.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Matchers/NSString+Matcheable.h" + }, + { + 'type': 'file', + 'name': "NSString+Nocilla.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Categories/NSString+Nocilla.h" + }, + { + 'type': 'file', + 'name': "Nocilla-Swift.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-Swift.h" + }, + { + 'type': 'file', + 'name': "Nocilla-umbrella.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target Support Files/Nocilla/Nocilla-umbrella.h" + }, + { + 'type': 'file', + 'name': "Nocilla.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Nocilla/Nocilla/Nocilla.h" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules", + 'contents': [ + { + 'type': 'file', + 'name': "module.modulemap", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Nocilla.build/module.modulemap" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers", + 'contents': [ + { + 'type': 'file', + 'name': "Pods-MixpanelDemoTests-umbrella.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-umbrella.h" + }, + { + 'type': 'file', + 'name': "Pods_MixpanelDemoTests-Swift.h", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods_MixpanelDemoTests-Swift.h" + } + ] + }, + { + 'type': 'directory', + 'name': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules", + 'contents': [ + { + 'type': 'file', + 'name': "module.modulemap", + 'external-contents': "/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Pods.build/Debug-iphonesimulator/Pods-MixpanelDemoTests.build/module.modulemap" + } + ] + } + ] +} diff --git a/MixpanelDemo/Build/Pods.build/Release-iphoneos/Nocilla.build/dgph b/MixpanelDemo/Build/Pods.build/Release-iphoneos/Nocilla.build/dgph new file mode 100644 index 00000000..74a3a0ff Binary files /dev/null and b/MixpanelDemo/Build/Pods.build/Release-iphoneos/Nocilla.build/dgph differ diff --git a/MixpanelDemo/Build/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph b/MixpanelDemo/Build/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph new file mode 100644 index 00000000..74a3a0ff Binary files /dev/null and b/MixpanelDemo/Build/Pods.build/Release-iphoneos/Pods-MixpanelDemoTests.build/dgph differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h new file mode 100644 index 00000000..e9eefef8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Headers/Mixpanel.h @@ -0,0 +1,19 @@ +// +// Mixpanel.h +// Mixpanel +// +// Created by Yarden Eitan on 6/1/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +#import + +//! Project version number for Mixpanel. +FOUNDATION_EXPORT double MixpanelVersionNumber; + +//! Project version string for Mixpanel. +FOUNDATION_EXPORT const unsigned char MixpanelVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..d520b7fb Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Mixpanel b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Mixpanel new file mode 100755 index 00000000..78a2aa5a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftdoc new file mode 100644 index 00000000..c42ca070 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule new file mode 100644 index 00000000..d91271f3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/Mixpanel.swiftmodule/arm64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/Modules/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..22ce6d0c --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Mixpanel.framework/_CodeSignature/CodeResources @@ -0,0 +1,186 @@ + + + + + files + + Headers/Mixpanel-Swift.h + + DNZPny81CxwOqERQU5vYDPsZe8w= + + Headers/Mixpanel.h + + pFeEs0M9LSC0WQ9H7qTOKsy4wzA= + + Info.plist + + kgMhrnzgBtWrUD09DaxzXAqZW4Q= + + Modules/Mixpanel.swiftmodule/arm64.swiftdoc + + cjG2ERGXoLo2lbETjdpv2AbbJ/w= + + Modules/Mixpanel.swiftmodule/arm64.swiftmodule + + hiP4jW32a44p7tL5dU27Ectdqm4= + + Modules/module.modulemap + + fYvZy8Iky1Y4eMYNb5aHN1WqHz8= + + + files2 + + Headers/Mixpanel-Swift.h + + hash + + DNZPny81CxwOqERQU5vYDPsZe8w= + + hash2 + + ROnObJgoSTrEA186gQluVfsBWqTjUhPqEtUNxJK5OVE= + + + Headers/Mixpanel.h + + hash + + pFeEs0M9LSC0WQ9H7qTOKsy4wzA= + + hash2 + + nprYfXwJvUUGpCXlXu8abDE6b4MUpD+baVe/5gz6UJU= + + + Modules/Mixpanel.swiftmodule/arm64.swiftdoc + + hash + + cjG2ERGXoLo2lbETjdpv2AbbJ/w= + + hash2 + + 43jeDI8d3FHYT3quKHBplsD2++aJ3RujOCch83/yVyg= + + + Modules/Mixpanel.swiftmodule/arm64.swiftmodule + + hash + + hiP4jW32a44p7tL5dU27Ectdqm4= + + hash2 + + g+/GtQliwy5/EGzFJOWZEaL9zLee8KBw8rf6ryMhfmo= + + + Modules/module.modulemap + + hash + + fYvZy8Iky1Y4eMYNb5aHN1WqHz8= + + hash2 + + PrsPMe/qS9+i+YznYmp9h4bwbY4IWlsgFeWtel0MNsA= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000..5ba713fa Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000..32288e88 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000..cb26edb3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..9ebc8717 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..9ee06752 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 00000000..ccc75e07 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..0f610ed0 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..1b27c299 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..6f695cd1 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..23ef69f2 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..cc8188c7 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..cb399173 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..8cf590ac Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..fd90279a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection new file mode 100755 index 00000000..1ed832d3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist new file mode 100644 index 00000000..af7d0590 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..5c92b467 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources @@ -0,0 +1,126 @@ + + + + + files + + Info.plist + + m2OgM+P3KNb3cYnBtPZo6S+McHU= + + version.plist + + L25BrKkYQqLORXgmTI5XjLMQmmo= + + + files2 + + version.plist + + hash + + L25BrKkYQqLORXgmTI5XjLMQmmo= + + hash2 + + +rLp91H+s95DvX8CzftyND6QPnY4md5XDfFX7Af+7ss= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist new file mode 100644 index 00000000..9b4d9008 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + IDEBundleInjection + BuildVersion + 45 + CFBundleShortVersionString + 5.0 + CFBundleVersion + 11004 + ProjectName + IDEBundleInjection_iOS + SourceVersion + 11004000000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..d520b7fb Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel new file mode 100755 index 00000000..d054eea1 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..5bf7291d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/Mixpanel.framework/_CodeSignature/CodeResources @@ -0,0 +1,110 @@ + + + + + files + + Info.plist + + kgMhrnzgBtWrUD09DaxzXAqZW4Q= + + + files2 + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h new file mode 100644 index 00000000..6f84e6d3 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h @@ -0,0 +1,103 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestRun; + +/*! + * @class XCTest + * + * An abstract base class for testing. XCTestCase and XCTestSuite extend XCTest to provide + * for creating, managing, and executing tests. Most developers will not need to subclass + * XCTest directly. + */ +@interface XCTest : NSObject { +#ifndef __OBJC2__ +@private + id _internal; +#endif +} + +/*! + * @property testCaseCount + * Number of test cases. Must be overridden by subclasses. + */ +@property (readonly) NSUInteger testCaseCount; + +/*! + * @property name + * Test's name. Must be overridden by subclasses. + */ +@property (readonly, copy, nullable) NSString *name; + +/*! + * @property testRunClass + * The XCTestRun subclass that will be instantiated when the test is run to hold + * the test's results. Must be overridden by subclasses. + */ +@property (readonly, nullable) Class testRunClass; + +/*! + * @property testRun + * The test run object that executed the test, an instance of testRunClass. If the test has not yet been run, this will be nil. + */ +@property (readonly, nullable) XCTestRun *testRun; + +/*! + * @method -performTest: + * The method through which tests are executed. Must be overridden by subclasses. + */ +- (void)performTest:(XCTestRun *)run; + +/*! + * @method -runTest + * Creates an instance of the testRunClass and passes it as a parameter to -performTest:. + */ +- (void)runTest; + +/*! + * @method -setUp + * Setup method called before the invocation of each test method in the class. + */ +- (void)setUp; + +/*! + * @method -tearDown + * Teardown method called after the invocation of each test method in the class. + */ +- (void)tearDown; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h new file mode 100644 index 00000000..944f4ef4 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h @@ -0,0 +1,60 @@ +// +// Copyright (c) 2013-2016 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h new file mode 100644 index 00000000..1660e6ef --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h @@ -0,0 +1,247 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +/*! + * @function XCTFail(...) + * Generates a failure unconditionally. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTFail(...) \ + _XCTPrimitiveFail(self, __VA_ARGS__) + +/*! + * @define XCTAssertNil(expression, ...) + * Generates a failure when ((\a expression) != nil). + * @param expression An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNil(expression, ...) \ + _XCTPrimitiveAssertNil(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertNotNil(expression, ...) + * Generates a failure when ((\a expression) == nil). + * @param expression An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotNil(expression, ...) \ + _XCTPrimitiveAssertNotNil(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssert(expression, ...) + * Generates a failure when ((\a expression) == false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssert(expression, ...) \ + _XCTPrimitiveAssertTrue(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertTrue(expression, ...) + * Generates a failure when ((\a expression) == false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertTrue(expression, ...) \ + _XCTPrimitiveAssertTrue(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertFalse(expression, ...) + * Generates a failure when ((\a expression) != false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertFalse(expression, ...) \ + _XCTPrimitiveAssertFalse(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertEqualObjects(expression1, expression2, ...) + * Generates a failure when ((\a expression1) not equal to (\a expression2)). + * @param expression1 An expression of id type. + * @param expression2 An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqualObjects(expression1, expression2, ...) \ + _XCTPrimitiveAssertEqualObjects(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqualObjects(expression1, expression2, ...) + * Generates a failure when ((\a expression1) equal to (\a expression2)). + * @param expression1 An expression of id type. + * @param expression2 An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqualObjects(expression1, expression2, ...) \ + _XCTPrimitiveAssertNotEqualObjects(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) != (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) == (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertNotEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertEqualWithAccuracy(expression1, expression2, accuracy, ...) + * Generates a failure when (difference between (\a expression1) and (\a expression2) is > (\a accuracy))). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param accuracy An expression of C scalar type describing the maximum difference between \a expression1 and \a expression2 for these values to be considered equal. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqualWithAccuracy(expression1, expression2, accuracy, ...) \ + _XCTPrimitiveAssertEqualWithAccuracy(self, expression1, @#expression1, expression2, @#expression2, accuracy, @#accuracy, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...) + * Generates a failure when (difference between (\a expression1) and (\a expression2) is <= (\a accuracy)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param accuracy An expression of C scalar type describing the maximum difference between \a expression1 and \a expression2 for these values to be considered equal. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...) \ + _XCTPrimitiveAssertNotEqualWithAccuracy(self, expression1, @#expression1, expression2, @#expression2, accuracy, @#accuracy, __VA_ARGS__) + +/*! + * @define XCTAssertGreaterThan(expression1, expression2, ...) + * Generates a failure when ((\a expression1) <= (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertGreaterThan(expression1, expression2, ...) \ + _XCTPrimitiveAssertGreaterThan(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertGreaterThanOrEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) < (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertGreaterThanOrEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertGreaterThanOrEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertLessThan(expression1, expression2, ...) + * Generates a failure when ((\a expression1) >= (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertLessThan(expression1, expression2, ...) \ + _XCTPrimitiveAssertLessThan(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertLessThanOrEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) > (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertLessThanOrEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertLessThanOrEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertThrows(expression, ...) + * Generates a failure when ((\a expression) does not throw). + * @param expression An expression. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrows(expression, ...) \ + _XCTPrimitiveAssertThrows(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertThrowsSpecific(expression, exception_class, ...) + * Generates a failure when ((\a expression) does not throw \a exception_class). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrowsSpecific(expression, exception_class, ...) \ + _XCTPrimitiveAssertThrowsSpecific(self, expression, @#expression, exception_class, __VA_ARGS__) + +/*! + * @define XCTAssertThrowsSpecificNamed(expression, exception_class, exception_name, ...) + * Generates a failure when ((\a expression) does not throw \a exception_class with \a exception_name). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param exception_name The name of the exception. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrowsSpecificNamed(expression, exception_class, exception_name, ...) \ + _XCTPrimitiveAssertThrowsSpecificNamed(self, expression, @#expression, exception_class, exception_name, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrow(expression, ...) + * Generates a failure when ((\a expression) throws). + * @param expression An expression. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrow(expression, ...) \ + _XCTPrimitiveAssertNoThrow(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrowSpecific(expression, exception_class, ...) + * Generates a failure when ((\a expression) throws \a exception_class). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrowSpecific(expression, exception_class, ...) \ + _XCTPrimitiveAssertNoThrowSpecific(self, expression, @#expression, exception_class, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrowSpecificNamed(expression, exception_class, exception_name, ...) + * Generates a failure when ((\a expression) throws \a exception_class with \a exception_name). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param exception_name The name of the exception. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrowSpecificNamed(expression, exception_class, exception_name, ...) \ + _XCTPrimitiveAssertNoThrowSpecificNamed(self, expression, @#expression, exception_class, exception_name, __VA_ARGS__) diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h new file mode 100644 index 00000000..9fa9c3b3 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h @@ -0,0 +1,471 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface _XCTestCaseInterruptionException : NSException +@end + +XCT_EXPORT void _XCTFailureHandler(XCTestCase *test, BOOL expected, const char *filePath, NSUInteger lineNumber, NSString *condition, NSString * __nullable format, ...) NS_FORMAT_FUNCTION(6,7); + +XCT_EXPORT void _XCTPreformattedFailureHandler(XCTestCase *test, BOOL expected, NSString *filePath, NSUInteger lineNumber, NSString *condition, NSString *message); + +#define _XCTRegisterFailure(test, condition, ...) \ +({ \ + _XCTFailureHandler(test, YES, __FILE__, __LINE__, condition, @"" __VA_ARGS__); \ +}) + +#define _XCTRegisterUnexpectedFailure(test, condition, ...) \ +({ \ +_XCTFailureHandler(test, NO, __FILE__, __LINE__, condition, @"" __VA_ARGS__); \ +}) + +#pragma mark - + +typedef NS_ENUM(NSUInteger, _XCTAssertionType) { + _XCTAssertion_Fail, + _XCTAssertion_Nil, + _XCTAssertion_NotNil, + _XCTAssertion_EqualObjects, + _XCTAssertion_NotEqualObjects, + _XCTAssertion_Equal, + _XCTAssertion_NotEqual, + _XCTAssertion_EqualWithAccuracy, + _XCTAssertion_NotEqualWithAccuracy, + _XCTAssertion_GreaterThan, + _XCTAssertion_GreaterThanOrEqual, + _XCTAssertion_LessThan, + _XCTAssertion_LessThanOrEqual, + _XCTAssertion_True, + _XCTAssertion_False, + _XCTAssertion_Throws, + _XCTAssertion_ThrowsSpecific, + _XCTAssertion_ThrowsSpecificNamed, + _XCTAssertion_NoThrow, + _XCTAssertion_NoThrowSpecific, + _XCTAssertion_NoThrowSpecificNamed, +}; + +XCT_EXPORT NSString * _XCTFailureFormat (_XCTAssertionType assertionType, NSUInteger formatIndex); + +#define _XCTFailureDescription(assertion_type, format_index, ...) \ +({ \ + _Pragma("clang diagnostic push") \ + _Pragma("clang diagnostic ignored \"-Wformat-nonliteral\"") \ + [NSString stringWithFormat:_XCTFailureFormat(assertion_type, format_index), @"" __VA_ARGS__]; \ + _Pragma("clang diagnostic pop") \ +}) + +#pragma mark - + +XCT_EXPORT NSString * _XCTDescriptionForValue (NSValue *value); + +NS_ASSUME_NONNULL_END + +#pragma mark - + +#define _XCTPrimitiveFail(test, ...) \ +({ \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Fail, 0), __VA_ARGS__); \ +}) + +#define _XCTPrimitiveAssertNil(test, expression, expressionStr, ...) \ +({ \ + @try { \ + id expressionValue = (expression); \ + if (expressionValue != nil) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 0, expressionStr, expressionValue), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotNil(test, expression, expressionStr, ...) \ +({ \ + @try { \ + id expressionValue = (expression); \ + if (expressionValue == nil) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertTrue(test, expression, expressionStr, ...) \ +({ \ + @try { \ + BOOL expressionValue = !!(expression); \ + if (!expressionValue) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_True, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_True, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_True, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertFalse(test, expression, expressionStr, ...) \ +({ \ + @try { \ + BOOL expressionValue = !!(expression); \ + if (expressionValue) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_False, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_False, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_False, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqualObjects(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + id expressionValue1 = (expression1); \ + id expressionValue2 = (expression2); \ + if ((expressionValue1 != expressionValue2) && ![expressionValue1 isEqual:expressionValue2]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 0, expressionStr1, expressionStr2, expressionValue1, expressionValue2), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqualObjects(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + id expressionValue1 = (expression1); \ + id expressionValue2 = (expression2); \ + if ((expressionValue1 == expressionValue2) || [expressionValue1 isEqual:expressionValue2]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 0, expressionStr1, expressionStr2, expressionValue1, expressionValue2), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 != expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 == expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqualWithAccuracy(test, expression1, expressionStr1, expression2, expressionStr2, accuracy, accuracyStr, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + __typeof__(accuracy) accuracyValue = (accuracy); \ + if (isnan(expressionValue1) || isnan(expressionValue2) || ((MAX(expressionValue1, expressionValue2) - MIN(expressionValue1, expressionValue2)) > accuracyValue)) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + NSValue *accuracyBox = [NSValue value:&accuracyValue withObjCType:@encode(__typeof__(accuracy))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 0, expressionStr1, expressionStr2, accuracyStr, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2), _XCTDescriptionForValue(accuracyBox)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 1, expressionStr1, expressionStr2, accuracyStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 2, expressionStr1, expressionStr2, accuracyStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqualWithAccuracy(test, expression1, expressionStr1, expression2, expressionStr2, accuracy, accuracyStr, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + __typeof__(accuracy) accuracyValue = (accuracy); \ + if (!isnan(expressionValue1) && !isnan(expressionValue2) && ((MAX(expressionValue1, expressionValue2) - MIN(expressionValue1, expressionValue2)) <= accuracyValue)) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + NSValue *accuracyBox = [NSValue value:&accuracyValue withObjCType:@encode(__typeof__(accuracy))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 0, expressionStr1, expressionStr2, accuracyStr, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2), _XCTDescriptionForValue(accuracyBox)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 1, expressionStr1, expressionStr2, accuracyStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 2, expressionStr1, expressionStr2, accuracyStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertGreaterThan(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 <= expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertGreaterThanOrEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 < expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertLessThan(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 >= expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertLessThanOrEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 > expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrows(test, expression, expressionStr, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Throws, 0, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrowsSpecific(test, expression, expressionStr, exception_class, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + __didThrow = YES; \ + } \ + @catch (NSException *exception) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 0, expressionStr, @#exception_class, [exception class], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 1, expressionStr, @#exception_class), __VA_ARGS__); \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 2, expressionStr, @#exception_class), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrowsSpecificNamed(test, expression, expressionStr, exception_class, exception_name, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + __didThrow = YES; \ + if (![exception_name isEqualToString:[exception name]]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 0, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + } \ + @catch (NSException *exception) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 1, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 2, expressionStr, @#exception_class, exception_name), __VA_ARGS__); \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 3, expressionStr, @#exception_class, exception_name), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrow(test, expression, expressionStr, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (NSException *exception) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrow, 0, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrow, 1, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrowSpecific(test, expression, expressionStr, exception_class, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrowSpecific, 0, expressionStr, @#exception_class, [exception class], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + ; \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrowSpecificNamed(test, expression, expressionStr, exception_class, exception_name, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + if ([exception_name isEqualToString:[exception name]]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrowSpecificNamed, 0, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + } \ + @catch (...) { \ + ; \ + } \ +}) diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h new file mode 100644 index 00000000..cac7cddc --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h @@ -0,0 +1,185 @@ +// +// Copyright (c) 2014-2016 Apple Inc. All rights reserved. +// + +#import + +@class XCTestExpectation; + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @category AsynchronousTesting + * + * @discussion + * This category introduces support for asynchronous testing in XCTestCase. The mechanism + * allows you to specify one or more "expectations" that will occur asynchronously + * as a result of actions in the test. Once all expectations have been set, a "wait" + * API is called that will block execution of subsequent test code until all expected + * conditions have been fulfilled or a timeout occurs. + */ +@interface XCTestCase (AsynchronousTesting) + +/*! + * @method -expectationWithDescription: + * + * @param description + * This string will be displayed in the test log to help diagnose failures. + * + * @discussion + * Creates and returns an expectation associated with the test case. + */ +- (XCTestExpectation *)expectationWithDescription:(NSString *)description; + +/*! + * @typedef XCWaitCompletionHandler + * A block to be invoked when a call to -waitForExpectationsWithTimeout:handler: times out or has + * had all associated expectations fulfilled. + * + * @param error + * If the wait timed out or a failure was raised while waiting, the error's code + * will specify the type of failure. Otherwise error will be nil. + */ +typedef void (^XCWaitCompletionHandler)(NSError * __nullable error); + +/*! + * @method -waitForExpectationsWithTimeout:handler: + * + * @param timeout + * The amount of time within which all expectations must be fulfilled. + * + * @param handler + * If provided, the handler will be invoked both on timeout or fulfillment of all + * expectations. Timeout is always treated as a test failure. + * + * @discussion + * -waitForExpectationsWithTimeout:handler: creates a point of synchronization in the flow of a + * test. Only one -waitForExpectationsWithTimeout:handler: can be active at any given time, but + * multiple discrete sequences of { expectations -> wait } can be chained together. + * + * -waitForExpectationsWithTimeout:handler: runs the run loop while handling events until all expectations + * are fulfilled or the timeout is reached. Clients should not manipulate the run + * loop while using this API. + */ +- (void)waitForExpectationsWithTimeout:(NSTimeInterval)timeout handler:(nullable XCWaitCompletionHandler)handler; + +#pragma mark Convenience APIs + +/*! + * @method -keyValueObservingExpectationForObject:keyPath:expectedValue: + * + * @discussion + * A convenience method for asynchronous tests that use Key Value Observing to detect changes + * to values on an object. This variant takes an expected value and observes changes on the object + * until the keyPath's value matches the expected value using -[NSObject isEqual:]. If + * other comparisions are needed, use the variant below that takes a handler block. + * + * @param objectToObserve + * The object to observe. + * + * @param keyPath + * The key path to observe. + * + * @param expectedValue + * Expected value of the keyPath for the object. The expectation will fulfill itself when the + * keyPath is equal, as tested using -[NSObject isEqual:]. If nil, the expectation will be + * fulfilled by the first change to the key path of the observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath expectedValue:(nullable id)expectedValue; + +/*! + * @typedef + * A block to be invoked when a change is observed for the keyPath of the observed object. + * + * @param observedObject + * The observed object, provided to avoid block capture issues. + * + * @param change + * The KVO change dictionary. + * + * @return + * Return YES if the expectation is fulfilled, NO if it is not. + */ +typedef BOOL (^XCKeyValueObservingExpectationHandler)(id observedObject, NSDictionary *change); + +/*! + * @method -keyValueObservingExpectationForObject:keyPath:handler: + * + * @discussion + * Variant of the convenience for tests that use Key Value Observing. Takes a handler + * block instead of an expected value. Every KVO change will run the handler block until + * it returns YES (or the wait times out). Returning YES from the block will fulfill the + * expectation. XCTAssert and related APIs can be used in the block to report a failure. + * + * @param objectToObserve + * The object to observe. + * + * @param keyPath + * The key path to observe. + * + * @param handler + * Optional handler, /see XCKeyValueObservingExpectationHandler. If not provided, the expectation will + * be fulfilled by the first change to the key path of the observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath handler:(nullable XCKeyValueObservingExpectationHandler)handler; + +/*! + * @typedef + * A block to be invoked when a notification matching the specified name is observed + * from the object. + * + * @param notification + * The notification object. + * + * @return + * Return YES if the expectation is fulfilled, NO if it is not. + */ +typedef BOOL (^XCNotificationExpectationHandler)(NSNotification *notification); + +/*! + * @method -expectationForNotification:object:handler: + * + * @discussion + * A convenience method for asynchronous tests that observe NSNotifications. + * + * @param notificationName + * The notification to register for. + * + * @param objectToObserve + * The object to observe. + * + * @param handler + * Optional handler, /see XCNotificationExpectationHandler. If not provided, the expectation + * will be fulfilled by the first notification matching the specified name from the + * observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +- (XCTestExpectation *)expectationForNotification:(NSString *)notificationName object:(nullable id)objectToObserve handler:(nullable XCNotificationExpectationHandler)handler; + +/*! + * @typedef + * Handler called when evaluating the predicate against the object returns true. If the handler is not + * provided the first successful evaluation will fulfill the expectation. If provided, the handler can + * override that behavior which leaves the caller responsible for fulfilling the expectation. + */ +typedef BOOL (^XCPredicateExpectationHandler)(); + +/*! + * @method -expectationForPredicate:evaluatedWithObject:handler: + * Creates an expectation that is fulfilled if the predicate returns true when evaluated with the given + * object. The expectation periodically evaluates the predicate and also may use notifications or other + * events to optimistically re-evaluate. + */ +- (XCTestExpectation *)expectationForPredicate:(NSPredicate *)predicate evaluatedWithObject:(id)object handler:(nullable XCPredicateExpectationHandler)handler; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h new file mode 100644 index 00000000..d2dd4f9b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h @@ -0,0 +1,293 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestSuite; +@class XCTestCaseRun; + +#if XCT_UI_TESTING_AVAILABLE +@class XCUIElement; +#endif + +/*! + * @class XCTestCase + * XCTestCase is a concrete subclass of XCTest that should be the override point for + * most developers creating tests for their projects. A test case subclass can have + * multiple test methods and supports setup and tear down that executes for every test + * method as well as class level setup and tear down. + * + * To define a test case: + * + * • Create a subclass of XCTestCase. + * • Implement -test methods. + * • Optionally define instance variables or properties that store the state of the test. + * • Optionally initialize state by overriding -setUp + * • Optionally clean-up after a test by overriding -tearDown. + * + * Test methods are instance methods meeting these requirements: + * • accepting no parameters + * • returning no value + * • prefixed with 'test' + * + * For example: + + - (void)testSomething; + + * Test methods are automatically recognized as test cases by the XCTest framework. + * Each XCTestCase subclass's defaultTestSuite is a XCTestSuite which includes these + * tests. Test method implementations usually contain assertions that must be verified + * for the test to pass, for example: + + @interface MathTest : XCTestCase { + @private + float f1; + float f2; + } + + - (void)testAddition; + + @end + + @implementation MathTest + + - (void)setUp + { + f1 = 2.0; + f2 = 3.0; + } + + - (void)testAddition + { + XCTAssertTrue (f1 + f2 == 5.0); + } + @end + */ +@interface XCTestCase : XCTest { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + +/*! + * @method +testCaseWithInvocation: + */ ++ (instancetype)testCaseWithInvocation:(nullable NSInvocation *)invocation; + +/*! + * @method -initWithInvocation: + */ +- (instancetype)initWithInvocation:(nullable NSInvocation *)invocation; + +/*! + * @method +testCaseWithSelector: + */ ++ (nullable instancetype)testCaseWithSelector:(SEL)selector; + +/*! + * @method -initWithSelector: + */ +- (instancetype)initWithSelector:(SEL)selector; + +/*! + * @property invocation + * The invocation used when this test is run. + */ +@property (strong, nullable) NSInvocation *invocation; + +/*! + * @method -invokeTest + * Invoking a test performs its setUp, invocation, and tearDown. In general this + * should not be called directly. + */ +- (void)invokeTest; + +/*! + * @property continueAfterFailure + * The test case behavior after a failure. Defaults to YES. + */ +@property BOOL continueAfterFailure; + +/*! + * @method -recordFailureWithDescription:inFile:atLine:expected: + * Records a failure in the execution of the test and is used by all test assertions. + * + * @param description The description of the failure being reported. + * + * @param filePath The file path to the source file where the failure being reported + * was encountered. + * + * @param lineNumber The line number in the source file at filePath where the + * failure being reported was encountered. + * + * @param expected YES if the failure being reported was the result of a failed assertion, + * NO if it was the result of an uncaught exception. + * + */ +- (void)recordFailureWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; + +/*! + * @method +testInvocations + * Invocations for each test method in the test case. + */ ++ (NSArray *)testInvocations; + +#pragma mark - Measuring Performance Metrics + +/*! + * @const XCTPerformanceMetric_WallClockTime + * Records wall clock time in seconds between startMeasuring/stopMeasuring. + */ +XCT_EXPORT NSString * const XCTPerformanceMetric_WallClockTime; + +/*! + * @method +defaultPerformanceMetrics + * The names of the performance metrics to measure when invoking -measureBlock:. Returns XCTPerformanceMetric_WallClockTime by default. Subclasses can override this to change the behavior of -measureBlock: + */ ++ (NSArray *)defaultPerformanceMetrics; + +/*! + * @method -measureBlock: + * + * Call from a test method to measure resources (+defaultPerformanceMetrics) used by the + * block in the current process. + + - (void)testPerformanceOfMyFunction { + + [self measureBlock:^{ + // Do that thing you want to measure. + MyFunction(); + }]; + } + + * @param block A block whose performance to measure. + */ +- (void)measureBlock:(void (^)(void))block; + +/*! + * @method -measureMetrics:automaticallyStartMeasuring:forBlock: + * + * Call from a test method to measure resources (XCTPerformanceMetrics) used by the + * block in the current process. Each metric will be measured across calls to the block. + * The number of times the block will be called is undefined and may change in the + * future. For one example of why, as long as the requested performance metrics do + * not interfere with each other the API will measure all metrics across the same + * calls to the block. If the performance metrics may interfere the API will measure + * them separately. + + - (void)testMyFunction2_WallClockTime { + [self measureMetrics:[[self class] defaultPerformanceMetrics] automaticallyStartMeasuring:NO forBlock:^{ + + // Do setup work that needs to be done for every iteration but you don't want to measure before the call to -startMeasuring + SetupSomething(); + [self startMeasuring]; + + // Do that thing you want to measure. + MyFunction(); + [self stopMeasuring]; + + // Do teardown work that needs to be done for every iteration but you don't want to measure after the call to -stopMeasuring + TeardownSomething(); + }]; + } + + * Caveats: + * • If YES was passed for automaticallyStartMeasuring and -startMeasuring is called + * anyway, the test will fail. + * • If NO was passed for automaticallyStartMeasuring then -startMeasuring must be + * called once and only once before the end of the block or the test will fail. + * • If -stopMeasuring is called multiple times during the block the test will fail. + * + * @param metrics An array of NSStrings (XCTPerformanceMetrics) to measure. Providing an unrecognized string is a test failure. + * + * @param automaticallyStartMeasuring If NO, XCTestCase will not take any measurements until -startMeasuring is called. + * + * @param block A block whose performance to measure. + */ +- (void)measureMetrics:(NSArray *)metrics automaticallyStartMeasuring:(BOOL)automaticallyStartMeasuring forBlock:(void (^)(void))block; + +/*! + * @method -startMeasuring + * Call this from within a measure block to set the beginning of the critical section. + * Measurement of metrics will start at this point. + */ +- (void)startMeasuring; + +/*! + * @method -stopMeasuring + * Call this from within a measure block to set the ending of the critical section. + * Measurement of metrics will stop at this point. + */ +- (void)stopMeasuring; + +#pragma mark - UI Testing Support +#if XCT_UI_TESTING_AVAILABLE + +/*! Adds a handler to the current context. Returns a token that can be used to unregister the handler. Handlers are invoked in the reverse order in which they are added until one of the handlers returns true, indicating that it has handled the alert. + @param handlerDescription Explanation of the behavior and purpose of this handler, mainly used for debugging and analysis. + @param handler Handler block for asynchronous UI such as alerts and other dialogs. Handlers should return true if they handled the UI, false if they did not. The handler is passed an XCUIElement representing the top level UI element for the alert. + */ +- (id )addUIInterruptionMonitorWithDescription:(NSString *)handlerDescription handler:(BOOL (^)(XCUIElement *interruptingElement))handler; + +/*! Removes a handler using the token provided when it was added. */ +- (void)removeUIInterruptionMonitor:(id )monitor; + +#endif + +@end + +@interface XCTestCase (XCTestSuiteExtensions) + +/*! + * @method +defaultTestSuite + * Returns a test suite containing test cases for all of the tests in the class. + */ ++ (XCTestSuite *)defaultTestSuite; + +/*! + * @method +setUp + * Setup method called before the invocation of any test method in the class. + */ ++ (void)setUp; + +/*! + * @method +testDown + * Teardown method called after the invocation of every test method in the class. + */ ++ (void)tearDown; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h new file mode 100644 index 00000000..b530349f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h @@ -0,0 +1,44 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestCase; + +@interface XCTestCaseRun : XCTestRun + +- (void)recordFailureInTest:(XCTestCase *)testCase withDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected DEPRECATED_ATTRIBUTE; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h new file mode 100644 index 00000000..abbe0060 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h @@ -0,0 +1,54 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +#if defined(__cplusplus) + #define XCT_EXPORT extern "C" +#else + #define XCT_EXPORT extern +#endif + +#if (!defined(__OBJC_GC__) || (defined(__OBJC_GC__) && ! __OBJC_GC__)) && (defined(__OBJC2__) && __OBJC2__) +#ifndef XCT_UI_TESTING_AVAILABLE +#define XCT_UI_TESTING_AVAILABLE 1 +#endif +#endif + +#ifndef XCT_UI_TESTING_AVAILABLE +#define XCT_UI_TESTING_AVAILABLE 0 +#endif + +#if TARGET_OS_SIMULATOR +#define XCTEST_SIMULATOR_UNAVAILABLE(_msg) __attribute__((availability(ios,unavailable,message=_msg))) +#else +#define XCTEST_SIMULATOR_UNAVAILABLE(_msg) +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h new file mode 100644 index 00000000..f1dc3981 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h @@ -0,0 +1,24 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +/*! + * @const XCTestErrorDomain + * Domain for errors provided by the XCTest framework. + */ +XCT_EXPORT NSString *const XCTestErrorDomain; + +/*! + * @typedef XCTestErrorCode + * Error codes used with errors in the XCTestErrorDomain. + * + * @constant XCTestErrorCodeTimeoutWhileWaiting Indicates that a call to -waitForExpectationsWithTimeout:handler: timed out. + * @constant XCTestErrorCodeFailureWhileWaiting Indicates that a failure assertion was raised while waiting in -waitForExpectationsWithTimeout:handler:. + */ +typedef NS_ENUM(NSInteger, XCTestErrorCode) { + XCTestErrorCodeTimeoutWhileWaiting, + XCTestErrorCodeFailureWhileWaiting, +}; + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestExpectation.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestExpectation.h new file mode 100644 index 00000000..73cd5ad5 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestExpectation.h @@ -0,0 +1,33 @@ +// +// Copyright (c) 2016 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestExpectation + * + * @discussion + * Expectations represent specific conditions in asynchronous testing. + */ +@interface XCTestExpectation : NSObject { +#ifndef __OBJC2__ + id _internalImplementation; +#endif +} + +/*! + * @method -fulfill + * + * @discussion + * Call -fulfill to mark an expectation as having been met. It's an error to call + * -fulfill on an expectation that has already been fulfilled or when the test case + * that vended the expectation has already completed. + */ +- (void)fulfill; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h new file mode 100644 index 00000000..226a96f1 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h @@ -0,0 +1,49 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +/*! + * XCTestLog is deprecated. + */ + +DEPRECATED_ATTRIBUTE +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" +@interface XCTestLog : XCTestObserver +#pragma clang diagnostic pop + +@property (readonly, strong) NSFileHandle *logFileHandle; +- (void)testLogWithFormat:(NSString *)format, ... NS_FORMAT_FUNCTION(1,2); +- (void)testLogWithFormat:(NSString *)format arguments:(va_list)arguments NS_FORMAT_FUNCTION(1,0); + +@end + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h new file mode 100644 index 00000000..53cbbd07 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h @@ -0,0 +1,114 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestSuite, XCTestCase; + +/*! + * @protocol XCTestObservation + * + * Objects conforming to XCTestObservation can register to be notified of the progress of test runs. See XCTestObservationCenter + * for details on registration. + * + * Progress events are delivered in the following sequence: + * + * -testBundleWillStart: // exactly once per test bundle + * -testSuiteWillStart: // exactly once per test suite + * -testCaseWillStart: // exactly once per test case + * -testCase:didFailWithDescription:... // zero or more times per test case, any time between test case start and finish + * -testCaseDidFinish: // exactly once per test case + * -testSuite:didFailWithDescription:... // zero or more times per test suite, any time between test suite start and finish + * -testSuiteDidFinish: // exactly once per test suite + * -testBundleDidFinish: // exactly once per test bundle + */ +@protocol XCTestObservation +@optional + +/*! + * @method -testBundleWillStart: + * + * Sent immediately before tests begin as a hook for any pre-testing setup. + * + * @param testBundle The bundle containing the tests that were executed. + */ +- (void)testBundleWillStart:(NSBundle *)testBundle; + +/*! + * @method -testBundleDidFinish: + * + * Sent immediately after all tests have finished as a hook for any post-testing activity. The test process will generally + * exit after this method returns, so if there is long running and/or asynchronous work to be done after testing, be sure + * to implement this method in a way that it blocks until all such activity is complete. + * + * @param testBundle The bundle containing the tests that were executed. + */ +- (void)testBundleDidFinish:(NSBundle *)testBundle; + +/*! + * @method -testSuiteWillStart: + * + * Sent when a test suite starts executing. + * + * @param testSuite The test suite that started. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testSuiteWillStart:(XCTestSuite *)testSuite; + +/*! + * @method -testSuiteDidFail:withDescription:inFile:atLine: + * + * Sent when a test suite reports a failure. Suite failures are most commonly reported during suite-level setup and teardown + * whereas failures during tests are reported for the test case alone and are not reported as suite failures. + * + * @param testSuite The test suite that failed. Additional information can be retrieved from the associated XCTestRun. + * @param description A textual description of the failure. + * @param filePath The path of file where the failure occurred, nil if unknown. + * @param lineNumber The line where the failure was reported. + */ +- (void)testSuite:(XCTestSuite *)testSuite didFailWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber; + +/*! + * @method -testSuiteDidFinish: + * + * Sent when a test suite finishes executing. + * + * @param testSuite The test suite that finished. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testSuiteDidFinish:(XCTestSuite *)testSuite; + +/*! + * @method -testCaseWillStart: + * + * Sent when a test case starts executing. + * + * @param testCase The test case that started. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testCaseWillStart:(XCTestCase *)testCase; + +/*! + * @method -testCaseDidFail:withDescription:inFile:atLine: + * + * Sent when a test case reports a failure. + * + * @param testCase The test case that failed. Additional information can be retrieved from the associated XCTestRun. + * @param description A textual description of the failure. + * @param filePath The path of file where the failure occurred, nil if unknown. + * @param lineNumber The line where the failure was reported. + */ +- (void)testCase:(XCTestCase *)testCase didFailWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber; + +/*! + * @method -testCaseDidFinish: + * + * Sent when a test case finishes executing. + * + * @param testCase The test case that finished. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testCaseDidFinish:(XCTestCase *)testCase; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h new file mode 100644 index 00000000..961bf06d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h @@ -0,0 +1,59 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestObservationCenter + * + * The XCTestObservationCenter distributes information about the progress of test runs to registered + * observers. Observers can be any object conforming to the XCTestObservation protocol. + * + * If an NSPrincipalClass is declared in the test bundle's Info.plist, XCTest automatically creates a + * single instance of that class when the test bundle is loaded. This instance provides a means to register + * observers or do other pretesting global set up. + * + * Observers must be registered manually. The NSPrincipalClass instance is not automatically + * registered as an observer even if the class conforms to . + */ +@interface XCTestObservationCenter : NSObject { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + +/*! + * @method +sharedTestObservationCenter + * + * @return The shared XCTestObservationCenter singleton instance. + */ ++ (XCTestObservationCenter *)sharedTestObservationCenter; + +/*! + * @method -addTestObserver: + * + * Register an object conforming to XCTestObservation as an observer for the current test session. Observers may be added + * at any time, but will not receive events that occurred before they were registered. The observation center maintains a strong + * reference to observers. + * + * Events may be delivered to observers in any order - given observers A and B, A may be notified of a test failure before + * or after B. Any ordering dependencies or serialization requirements must be managed by clients. + */ +- (void)addTestObserver:(id )testObserver; + +/*! + * @method -removeTestObserver: + * + * Unregister an object conforming to XCTestObservation as an observer for the current test session. + */ +- (void)removeTestObserver:(id )testObserver; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h new file mode 100644 index 00000000..335f1459 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h @@ -0,0 +1,55 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +@class XCTestRun; + +/*! + * XCTestObserver is deprecated. + */ +DEPRECATED_ATTRIBUTE +@interface XCTestObserver : NSObject + +- (void)startObserving; +- (void)stopObserving; +- (void)testSuiteDidStart:(XCTestRun *)testRun; +- (void)testSuiteDidStop:(XCTestRun *)testRun; +- (void)testCaseDidStart:(XCTestRun *)testRun; +- (void)testCaseDidStop:(XCTestRun *)testRun; +- (void)testCaseDidFail:(XCTestRun *)testRun withDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; + +@end + +/*! + * XCTestObserverClassKey is deprecated and ignored. + */ +XCT_EXPORT NSString * const XCTestObserverClassKey DEPRECATED_ATTRIBUTE; diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h new file mode 100644 index 00000000..1f5455ed --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h @@ -0,0 +1,50 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +#import + +XCT_EXPORT int XCTSelfTestMain(void) DEPRECATED_ATTRIBUTE; + +DEPRECATED_ATTRIBUTE +@interface XCTestProbe : NSObject + ++ (BOOL)isTesting; + +@end + +XCT_EXPORT NSString * const XCTestedUnitPath DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeKey DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeAll DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeNone DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeSelf DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestToolKey DEPRECATED_ATTRIBUTE; diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h new file mode 100644 index 00000000..a2475350 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h @@ -0,0 +1,168 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestRun + * A test run collects information about the execution of a test. Failures in explicit + * test assertions are classified as "expected", while failures from unrelated or + * uncaught exceptions are classified as "unexpected". + */ +@interface XCTestRun : NSObject { +#ifndef __OBJC2__ +@private + id _internalTestRun; +#endif +} + +/*! + * @method +testRunWithTest: + * Class factory method for the XCTestRun class. + * + * @param test An XCTest instance. + * + * @return A test run for the provided test. + */ ++ (instancetype)testRunWithTest:(XCTest *)test; + +/*! + * @method -initWithTest: + * Designated initializer for the XCTestRun class. + * + * @param test An XCTest instance. + * + * @return A test run for the provided test. + */ +- (instancetype)initWithTest:(XCTest *)test NS_DESIGNATED_INITIALIZER; + +/*! + * @property test + * The test instance provided when the test run was initialized. + */ +@property (readonly, strong) XCTest *test; + +/*! + * @method -start + * Start a test run. Must not be called more than once. + */ +- (void)start; + +/*! + * @method -stop + * Stop a test run. Must not be called unless the run has been started. Must not be called more than once. + */ +- (void)stop; + +/*! + * @property startDate + * The time at which the test run was started, or nil. + */ +@property (readonly, copy, nullable) NSDate *startDate; + +/*! + * @property stopDate + * The time at which the test run was stopped, or nil. + */ +@property (readonly, copy, nullable) NSDate *stopDate; + +/*! + * @property totalDuration + * The number of seconds that elapsed between when the run was started and when it was stopped. + */ +@property (readonly) NSTimeInterval totalDuration; + +/*! + * @property testDuration + * The number of seconds that elapsed between when the run was started and when it was stopped. + */ +@property (readonly) NSTimeInterval testDuration; + +/*! + * @property testCaseCount + * The number of tests in the run. + */ +@property (readonly) NSUInteger testCaseCount; + +/*! + * @property executionCount + * The number of test executions recorded during the run. + */ +@property (readonly) NSUInteger executionCount; + +/*! + * @property failureCount + * The number of test failures recorded during the run. + */ +@property (readonly) NSUInteger failureCount; + +/*! + * @property unexpectedExceptionCount + * The number of uncaught exceptions recorded during the run. + */ +@property (readonly) NSUInteger unexpectedExceptionCount; + +/*! + * @property totalFailureCount + * The total number of test failures and uncaught exceptions recorded during the run. + */ +@property (readonly) NSUInteger totalFailureCount; + +/*! + * @property hasSucceeded + * YES if all tests in the run completed their execution without recording any failures, otherwise NO. + */ +@property (readonly) BOOL hasSucceeded; + +/*! + * @method -recordFailureWithDescription:inFile:atLine:expected: + * Records a failure in the execution of the test for this test run. Must not be called + * unless the run has been started. Must not be called if the test run has been stopped. + * + * @param description The description of the failure being reported. + * + * @param filePath The file path to the source file where the failure being reported + * was encountered or nil if unknown. + * + * @param lineNumber The line number in the source file at filePath where the + * failure being reported was encountered. + * + * @param expected YES if the failure being reported was the result of a failed assertion, + * NO if it was the result of an uncaught exception. + * + */ +- (void)recordFailureWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h new file mode 100644 index 00000000..60d00bf2 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h @@ -0,0 +1,81 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestSuite + * A concrete subclass of XCTest, XCTestSuite is a collection of test cases. Suites + * are usually managed by the IDE, but XCTestSuite also provides API for dynamic test + * and suite management: + + XCTestSuite *suite = [XCTestSuite testSuiteWithName:@"My tests"]; + [suite addTest:[MathTest testCaseWithSelector:@selector(testAdd)]]; + [suite addTest:[MathTest testCaseWithSelector:@selector(testDivideByZero)]]; + + * Alternatively, a test suite can extract the tests to be run automatically. To do so, + * pass the class of your test case class to the suite's constructor: + + XCTestSuite *suite = [XCTestSuite testSuiteForTestCaseClass:[MathTest class]]; + + * This creates a suite with all the methods starting with "test" that take no arguments. + * Also, a test suite of all the test cases found in the runtime can be created automatically: + + XCTestSuite *suite = [XCTestSuite defaultTestSuite]; + + * This creates a suite of suites with all the XCTestCase subclasses methods that start + * with "test" and take no arguments. + */ +@interface XCTestSuite : XCTest { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + ++ (instancetype)defaultTestSuite; ++ (instancetype)testSuiteForBundlePath:(NSString *)bundlePath; ++ (instancetype)testSuiteForTestCaseWithName:(NSString *)name; ++ (instancetype)testSuiteForTestCaseClass:(Class)testCaseClass; + ++ (instancetype)testSuiteWithName:(NSString *)name; +- (instancetype)initWithName:(NSString *)name NS_DESIGNATED_INITIALIZER; + +- (void)addTest:(XCTest *)test; + +@property (readonly, copy) NSArray <__kindof XCTest *> *tests; + +@end + +NS_ASSUME_NONNULL_END + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h new file mode 100644 index 00000000..35f27ab0 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h @@ -0,0 +1,49 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface XCTestSuiteRun : XCTestRun { +#ifndef __OBJC2__ +@private + NSMutableArray *_testRuns; +#endif +} + +@property (readonly, copy) NSArray *testRuns; + +- (void)addTestRun:(XCTestRun *)testRun; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h new file mode 100644 index 00000000..0b3b67cc --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h @@ -0,0 +1,54 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +NS_CLASS_AVAILABLE(10_11, 9_0) + +/*! Proxy for an application. The information identifying the application is specified in the Xcode target settings as the "Target Application". */ +@interface XCUIApplication : XCUIElement + +/*! + * Launches the application. This call is synchronous and when it returns the application is launched + * and ready to handle user events. Any failure in the launch sequence is reported as a test failure + * and halts the test at this point. If the application is already running, this call will first + * terminate the existing instance to ensure clean state of the launched instance. + */ +- (void)launch; + +/*! + * Terminates any running instance of the application. If the application has an existing debug session + * via Xcode, the termination is implemented as a halt via that debug connection. Otherwise, a SIGKILL + * is sent to the process. + */ +- (void)terminate; + +/*! + * The arguments that will be passed to the application on launch. If not modified, these are the + * arguments that Xcode will pass on launch. Those arguments can be changed, added to, or removed. + * Unlike NSTask, it is legal to modify these arguments after the application has been launched. These + * changes will not affect the current launch session, but will take effect the next time the application + * is launched. + */ +@property (nonatomic, copy) NSArray *launchArguments; + +/*! + * The environment that will be passed to the application on launch. If not modified, this is the + * environment that Xcode will pass on launch. Those variables can be changed, added to, or removed. + * Unlike NSTask, it is legal to modify the environment after the application has been launched. These + * changes will not affect the current launch session, but will take effect the next time the application + * is launched. + */ +@property (nonatomic, copy) NSDictionary *launchEnvironment; + +@end + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h new file mode 100644 index 00000000..c7f7584b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h @@ -0,0 +1,55 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if TARGET_OS_IPHONE +#import +#else +#import +#endif + + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE && !TARGET_OS_TV + +@class XCUIElement; + +NS_CLASS_AVAILABLE(10_11, 9_0) + +/*! A coordinate represents a location on screen, relative to some element. Coordinates are dynamic, just like the elements to which they refer, and may compute different screen locations at different times, or be invalid if the referenced element does not exist. */ +@interface XCUICoordinate : NSObject + +/*! Coordinates are never instantiated directly. Instead, they are created by elements or by other coordinates. */ +- (instancetype)init NS_UNAVAILABLE; + +/*! The element that the coordinate is based on, either directly or via the coordinate from which it was derived. */ +@property (readonly) XCUIElement *referencedElement; + +/*! The dynamically computed value of the coordinate's location on screen. Note that this value is dependent on the current frame of the referenced element; if the element's frame changes, so will the value returned by this property. If the referenced element does exist when this is called, it will fail the test; check the referenced element's exists property if the element may not be present. */ +@property (readonly) CGPoint screenPoint; + +/*! Creates a new coordinate with an absolute offset in points from the original coordinate. */ +- (XCUICoordinate *)coordinateWithOffset:(CGVector)offsetVector; + +#if TARGET_OS_IPHONE +- (void)tap; +- (void)doubleTap; +- (void)pressForDuration:(NSTimeInterval)duration; +- (void)pressForDuration:(NSTimeInterval)duration thenDragToCoordinate:(XCUICoordinate *)otherCoordinate; +#else +- (void)hover; +- (void)click; +- (void)doubleClick; +- (void)rightClick; +- (void)clickForDuration:(NSTimeInterval)duration thenDragToCoordinate:(XCUICoordinate *)otherCoordinate; +- (void)scrollByDeltaX:(CGFloat)deltaX deltaY:(CGFloat)deltaY; +#endif + +@end + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h new file mode 100644 index 00000000..00585f25 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h @@ -0,0 +1,57 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +#if TARGET_OS_IPHONE + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @enum XCUIDeviceButton + * + * Represents a physical button on a device. + * + * @note Some buttons are not available in the Simulator, and should not be used in your tests. + * You can use a block like this: + * + * #if !TARGET_OS_SIMULATOR + * // test code that depends on buttons not available in the Simulator + * #endif + * + * in your test code to ensure it does not call unavailable APIs. + */ +typedef NS_ENUM(NSInteger, XCUIDeviceButton) { + XCUIDeviceButtonHome = 1, + XCUIDeviceButtonVolumeUp XCTEST_SIMULATOR_UNAVAILABLE("This API is not available in the Simulator, see the XCUIDeviceButton documentation for details.") = 2, + XCUIDeviceButtonVolumeDown XCTEST_SIMULATOR_UNAVAILABLE("This API is not available in the Simulator, see the XCUIDeviceButton documentation for details.") = 3 +}; + +/*! Represents a device, providing an interface for simulating events involving physical buttons and device state. */ +NS_CLASS_AVAILABLE(NA, 9_0) +@interface XCUIDevice : NSObject + +/*! The current device. */ ++ (XCUIDevice *)sharedDevice; + +#if TARGET_OS_IOS +/*! The orientation of the device. */ +@property (nonatomic) UIDeviceOrientation orientation; +#endif + +/*! Simulates the user pressing a physical button. */ +- (void)pressButton:(XCUIDeviceButton)button; + +@end + +NS_ASSUME_NONNULL_END + +#endif + +#endif + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h new file mode 100644 index 00000000..ddd48af4 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h @@ -0,0 +1,261 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if TARGET_OS_IPHONE +#import +#else +#import +#endif + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +NS_ENUM_AVAILABLE(10_11, 9_0) +typedef NS_OPTIONS(NSUInteger, XCUIKeyModifierFlags) { + XCUIKeyModifierNone = 0, + XCUIKeyModifierAlphaShift = (1UL << 0), + XCUIKeyModifierShift = (1UL << 1), + XCUIKeyModifierControl = (1UL << 2), + XCUIKeyModifierAlternate = (1UL << 3), + XCUIKeyModifierOption = XCUIKeyModifierAlternate, + XCUIKeyModifierCommand = (1UL << 4), +}; + +@class XCUIElementQuery; +@class XCUICoordinate; + +/*! + * @class XCUIElement (/seealso XCUIElementAttributes) + * Elements are objects encapsulating the information needed to dynamically locate a user interface + * element in an application. Elements are described in terms of queries /seealso XCUIElementQuery. + */ +NS_CLASS_AVAILABLE(10_11, 9_0) +@interface XCUIElement : NSObject + +/*! Test to determine if the element exists. */ +@property (readonly) BOOL exists; + +/*! Whether or not a hit point can be computed for the element for the purpose of synthesizing events. */ +@property (readonly, getter = isHittable) BOOL hittable; + +/*! Returns a query for all descendants of the element matching the specified type. */ +- (XCUIElementQuery *)descendantsMatchingType:(XCUIElementType)type; + +/*! Returns a query for direct children of the element matching the specified type. */ +- (XCUIElementQuery *)childrenMatchingType:(XCUIElementType)type; + +#if !TARGET_OS_TV +/*! Creates and returns a new coordinate that will compute its screen point by adding the offset multiplied by the size of the element’s frame to the origin of the element’s frame. */ +- (XCUICoordinate *)coordinateWithNormalizedOffset:(CGVector)normalizedOffset; +#endif + +/*! + @discussion + Provides debugging information about the element. The data in the string will vary based on the + time at which it is captured, but it may include any of the following as well as additional data: + • Values for the elements attributes. + • The entire tree of descendants rooted at the element. + • The element's query. + This data should be used for debugging only - depending on any of the data as part of a test is unsupported. + */ +@property (readonly, copy) NSString *debugDescription; + +@end + +#pragma mark - Event Synthesis + +/*! + * @category Events + * Events that can be synthesized relative to an XCUIElement object. When an event API is called, the element + * will be resolved. If zero or multiple matches are found, an error will be raised. + */ +@interface XCUIElement (XCUIElementEventSynthesis) + +/*! + * Types a string into the element. The element or a descendant must have keyboard focus; otherwise an + * error is raised. + * + * This API discards any modifiers set in the current context by +performWithKeyModifiers:block: so that + * it strictly interprets the provided text. To input keys with modifier flags, use -typeKey:modifierFlags:. + */ +- (void)typeText:(NSString *)text; + +#if TARGET_OS_TV +#elif TARGET_OS_IOS + +/*! + * Sends a tap event to a hittable point computed for the element. + */ +- (void)tap; + +/*! + * Sends a double tap event to a hittable point computed for the element. + */ +- (void)doubleTap; + +/*! + * Sends a two finger tap event to a hittable point computed for the element. + */ +- (void)twoFingerTap; + +/*! + * Sends one or more taps with one of more touch points. + * + * @param numberOfTaps + * The number of taps. + * + * @param numberOfTouches + * The number of touch points. + */ +- (void)tapWithNumberOfTaps:(NSUInteger)numberOfTaps numberOfTouches:(NSUInteger)numberOfTouches; + +/*! + * Sends a long press gesture to a hittable point computed for the element, holding for the specified duration. + * + * @param duration + * Duration in seconds. + */ +- (void)pressForDuration:(NSTimeInterval)duration; + +/*! + * Initiates a press-and-hold gesture that then drags to another element, suitable for table cell reordering and similar operations. + * @param duration + * Duration of the initial press-and-hold. + * @param otherElement + * The element to finish the drag gesture over. In the example of table cell reordering, this would be the reorder element of the destination row. + */ +- (void)pressForDuration:(NSTimeInterval)duration thenDragToElement:(XCUIElement *)otherElement; + +/*! + * Sends a swipe-up gesture. + */ +- (void)swipeUp; + +/*! + * Sends a swipe-down gesture. + */ +- (void)swipeDown; + +/*! + * Sends a swipe-left gesture. + */ +- (void)swipeLeft; + +/*! + * Sends a swipe-right gesture. + */ +- (void)swipeRight; + +/*! + * Sends a pinching gesture with two touches. + * + * The system makes a best effort to synthesize the requested scale and velocity: absolute accuracy is not guaranteed. + * Some values may not be possible based on the size of the element's frame - these will result in test failures. + * + * @param scale + * The scale of the pinch gesture. Use a scale between 0 and 1 to "pinch close" or zoom out and a scale greater than 1 to "pinch open" or zoom in. + * + * @param velocity + * The velocity of the pinch in scale factor per second. + */ +- (void)pinchWithScale:(CGFloat)scale velocity:(CGFloat)velocity; + +/*! + * Sends a rotation gesture with two touches. + * + * The system makes a best effort to synthesize the requested rotation and velocity: absolute accuracy is not guaranteed. + * Some values may not be possible based on the size of the element's frame - these will result in test failures. + * + * @param rotation + * The rotation of the gesture in radians. + * + * @param velocity + * The velocity of the rotation gesture in radians per second. + */ +- (void)rotate:(CGFloat)rotation withVelocity:(CGFloat)velocity; + +#elif TARGET_OS_MAC + +/*! + * Moves the cursor over the element. + */ +- (void)hover; + +/*! + * Sends a click event to a hittable point computed for the element. + */ +- (void)click; + +/*! + * Sends a double click event to a hittable point computed for the element. + */ +- (void)doubleClick; + +/*! + * Sends a right click event to a hittable point computed for the element. + */ +- (void)rightClick; + +/*! + * Clicks and holds for a specified duration (generally long enough to start a drag operation) then drags + * to the other element. + */ +- (void)clickForDuration:(NSTimeInterval)duration thenDragToElement:(XCUIElement *)otherElement; + +/*! + * Hold modifier keys while the given block runs. This method pushes and pops the modifiers as global state + * without need for reference to a particular element. Inside the block, elements can be clicked on, dragged + * from, typed into, etc. + */ ++ (void)performWithKeyModifiers:(XCUIKeyModifierFlags)flags block:(void (^)(void))block; + +/*! + * Types a single key with the specified modifier flags. Although `key` is a string, it must represent + * a single key on a physical keyboard; strings that resolve to multiple keys will raise an error at runtime. + * In addition to literal string key representations like "a", "6", and "[", keys such as the arrow keys, + * command, control, option, and function keys can be typed using constants defined for them in XCUIKeyboardKeys.h + */ +- (void)typeKey:(NSString *)key modifierFlags:(XCUIKeyModifierFlags)flags; + +/*! + * Scroll the view the specified pixels, x and y. + */ +- (void)scrollByDeltaX:(CGFloat)deltaX deltaY:(CGFloat)deltaY; + +#endif + +@end + +/*! This category on XCUIElement provides functionality for automating UISlider and NSSlider. */ +@interface XCUIElement (XCUIElementTypeSlider) + +/*! Manipulates the UI to change the displayed value of the slider to one based on a normalized position. 0 corresponds to the minimum value of the slider, 1 corresponds to its maximum value. The adjustment is a "best effort" to move the indicator to the desired position; absolute fidelity is not guaranteed. */ +- (void)adjustToNormalizedSliderPosition:(CGFloat)normalizedSliderPosition; + +/*! Returns the position of the slider's indicator as a normalized value where 0 corresponds to the minimum value of the slider and 1 corresponds to its maximum value. */ +@property (readonly) CGFloat normalizedSliderPosition; + +@end + +#if TARGET_OS_IOS + +/*! This category on XCUIElement provides functionality for automating the picker wheels of UIPickerViews and UIDatePickers. */ +@interface XCUIElement (XCUIElementTypePickerWheel) + +/*! Changes the displayed value for the picker wheel. Will generate a test failure if the specified value is not available. */ +- (void)adjustToPickerWheelValue:(NSString *)pickerWheelValue; + +@end + +#endif + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h new file mode 100644 index 00000000..39b7818d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h @@ -0,0 +1,77 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import +#import + +#if XCT_UI_TESTING_AVAILABLE + +#if TARGET_OS_IPHONE + +#import + +typedef NS_ENUM(NSInteger, XCUIUserInterfaceSizeClass) { + XCUIUserInterfaceSizeClassUnspecified = UIUserInterfaceSizeClassUnspecified, + XCUIUserInterfaceSizeClassCompact = UIUserInterfaceSizeClassCompact, + XCUIUserInterfaceSizeClassRegular = UIUserInterfaceSizeClassRegular, +}; + +#else + +#import + +typedef NS_ENUM(NSInteger, XCUIUserInterfaceSizeClass) { + XCUIUserInterfaceSizeClassUnspecified = 0, +}; + +#endif + +NS_ASSUME_NONNULL_BEGIN + +/*! Protocol describing the attributes exposed on user interface elements and available during query matching. These attributes represent data exposed to the Accessibility system. */ +@protocol XCUIElementAttributes + +/*! The accessibility identifier. */ +@property (readonly) NSString *identifier; + +/*! The frame of the element in the screen coordinate space. */ +@property (readonly) CGRect frame; + +/*! The raw value attribute of the element. Depending on the element, the actual type can vary. */ +@property (readonly, nullable) id value; + +/*! The title attribute of the element. */ +@property (readonly, copy) NSString *title; + +/*! The label attribute of the element. */ +@property (readonly, copy) NSString *label; + +/*! The type of the element. /seealso XCUIElementType. */ +@property (readonly) XCUIElementType elementType; + +/*! Whether or not the element is enabled for user interaction. */ +@property (readonly, getter = isEnabled) BOOL enabled; + +/*! The horizontal size class of the element. */ +@property (readonly) XCUIUserInterfaceSizeClass horizontalSizeClass; + +/*! The vertical size class of the element. */ +@property (readonly) XCUIUserInterfaceSizeClass verticalSizeClass; + +/*! The value that is displayed when the element has no value. */ +@property (readonly, nullable) NSString *placeholderValue; + +/*! Whether or not the element is selected. */ +@property (readonly, getter = isSelected) BOOL selected; + +#if TARGET_OS_TV +/*! Whether or not the elment has UI focus. */ +@property (readonly) BOOL hasFocus; +#endif + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h new file mode 100644 index 00000000..bbc7f8d8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h @@ -0,0 +1,81 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +XCT_EXPORT NSString *XCUIIdentifierCloseWindow; +XCT_EXPORT NSString *XCUIIdentifierMinimizeWindow; +XCT_EXPORT NSString *XCUIIdentifierZoomWindow; +XCT_EXPORT NSString *XCUIIdentifierFullScreenWindow; + +@class XCUIElement; + +/*! Object for locating elements that can be chained with other queries. */ +NS_CLASS_AVAILABLE(10_11, 9_0) +@interface XCUIElementQuery : NSObject + +/*! Returns an element that will use the query for resolution. */ +@property (readonly) XCUIElement *element; + +/*! Evaluates the query at the time it is called and returns the number of matches found. */ +@property (readonly) NSUInteger count; + +/*! Returns an element that will resolve to the index into the query's result set. */ +- (XCUIElement *)elementAtIndex:(NSUInteger)index NS_DEPRECATED(10_11, 10_11, 9_0, 9_0, "Use elementBoundByIndex instead."); + +/*! Returns an element that will use the index into the query's results to determine which underlying accessibility element it is matched with. */ +- (XCUIElement *)elementBoundByIndex:(NSUInteger)index; + +/*! Returns an element that matches the predicate. The predicate will be evaluated against objects of type id. */ +- (XCUIElement *)elementMatchingPredicate:(NSPredicate *)predicate; + +/*! Returns an element that matches the type and identifier. */ +- (XCUIElement *)elementMatchingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; + +/*! Keyed subscripting is implemented as a shortcut for matching an identifier only. For example, app.descendants["Foo"] -> XCUIElement. */ +- (XCUIElement *)objectForKeyedSubscript:(NSString *)key; + +/*! Immediately evaluates the query and returns an array of elements bound to the resulting accessibility elements. */ +@property (readonly, copy) NSArray *allElementsBoundByAccessibilityElement; + +/*! Immediately evaluates the query and returns an array of elements bound by the index of each result. */ +@property (readonly, copy) NSArray *allElementsBoundByIndex; + +/*! Returns a new query that finds the descendants of all the elements found by the receiver. */ +- (XCUIElementQuery *)descendantsMatchingType:(XCUIElementType)type; + +/*! Returns a new query that finds the direct children of all the elements found by the receiver. */ +- (XCUIElementQuery *)childrenMatchingType:(XCUIElementType)type; + +/*! Returns a new query that applies the specified attributes or predicate to the receiver. The predicate will be evaluated against objects of type id. */ +- (XCUIElementQuery *)matchingPredicate:(NSPredicate *)predicate; +- (XCUIElementQuery *)matchingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; +- (XCUIElementQuery *)matchingIdentifier:(NSString *)identifier; + +/*! Returns a new query for finding elements that contain a descendant matching the specification. The predicate will be evaluated against objects of type id. */ +- (XCUIElementQuery *)containingPredicate:(NSPredicate *)predicate; +- (XCUIElementQuery *)containingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; + +/*! + @discussion + Provides debugging information about the query. The data in the string will vary based on the time + at which it is captured, but it may include any of the following as well as additional data: + • A description of each step of the query. + • Information about the inputs and matched outputs of each step of the query. + This data should be used for debugging only - depending on any of the data as part of a test is unsupported. + */ +@property (readonly, copy) NSString *debugDescription; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h new file mode 100644 index 00000000..6df4fd2e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h @@ -0,0 +1,99 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +NS_ASSUME_NONNULL_BEGIN + +@class XCUIElementQuery; + +@protocol XCUIElementTypeQueryProvider + +@property (readonly, copy) XCUIElementQuery *groups; +@property (readonly, copy) XCUIElementQuery *windows; +@property (readonly, copy) XCUIElementQuery *sheets; +@property (readonly, copy) XCUIElementQuery *drawers; +@property (readonly, copy) XCUIElementQuery *alerts; +@property (readonly, copy) XCUIElementQuery *dialogs; +@property (readonly, copy) XCUIElementQuery *buttons; +@property (readonly, copy) XCUIElementQuery *radioButtons; +@property (readonly, copy) XCUIElementQuery *radioGroups; +@property (readonly, copy) XCUIElementQuery *checkBoxes; +@property (readonly, copy) XCUIElementQuery *disclosureTriangles; +@property (readonly, copy) XCUIElementQuery *popUpButtons; +@property (readonly, copy) XCUIElementQuery *comboBoxes; +@property (readonly, copy) XCUIElementQuery *menuButtons; +@property (readonly, copy) XCUIElementQuery *toolbarButtons; +@property (readonly, copy) XCUIElementQuery *popovers; +@property (readonly, copy) XCUIElementQuery *keyboards; +@property (readonly, copy) XCUIElementQuery *keys; +@property (readonly, copy) XCUIElementQuery *navigationBars; +@property (readonly, copy) XCUIElementQuery *tabBars; +@property (readonly, copy) XCUIElementQuery *tabGroups; +@property (readonly, copy) XCUIElementQuery *toolbars; +@property (readonly, copy) XCUIElementQuery *statusBars; +@property (readonly, copy) XCUIElementQuery *tables; +@property (readonly, copy) XCUIElementQuery *tableRows; +@property (readonly, copy) XCUIElementQuery *tableColumns; +@property (readonly, copy) XCUIElementQuery *outlines; +@property (readonly, copy) XCUIElementQuery *outlineRows; +@property (readonly, copy) XCUIElementQuery *browsers; +@property (readonly, copy) XCUIElementQuery *collectionViews; +@property (readonly, copy) XCUIElementQuery *sliders; +@property (readonly, copy) XCUIElementQuery *pageIndicators; +@property (readonly, copy) XCUIElementQuery *progressIndicators; +@property (readonly, copy) XCUIElementQuery *activityIndicators; +@property (readonly, copy) XCUIElementQuery *segmentedControls; +@property (readonly, copy) XCUIElementQuery *pickers; +@property (readonly, copy) XCUIElementQuery *pickerWheels; +@property (readonly, copy) XCUIElementQuery *switches; +@property (readonly, copy) XCUIElementQuery *toggles; +@property (readonly, copy) XCUIElementQuery *links; +@property (readonly, copy) XCUIElementQuery *images; +@property (readonly, copy) XCUIElementQuery *icons; +@property (readonly, copy) XCUIElementQuery *searchFields; +@property (readonly, copy) XCUIElementQuery *scrollViews; +@property (readonly, copy) XCUIElementQuery *scrollBars; +@property (readonly, copy) XCUIElementQuery *staticTexts; +@property (readonly, copy) XCUIElementQuery *textFields; +@property (readonly, copy) XCUIElementQuery *secureTextFields; +@property (readonly, copy) XCUIElementQuery *datePickers; +@property (readonly, copy) XCUIElementQuery *textViews; +@property (readonly, copy) XCUIElementQuery *menus; +@property (readonly, copy) XCUIElementQuery *menuItems; +@property (readonly, copy) XCUIElementQuery *menuBars; +@property (readonly, copy) XCUIElementQuery *menuBarItems; +@property (readonly, copy) XCUIElementQuery *maps; +@property (readonly, copy) XCUIElementQuery *webViews; +@property (readonly, copy) XCUIElementQuery *steppers; +@property (readonly, copy) XCUIElementQuery *incrementArrows; +@property (readonly, copy) XCUIElementQuery *decrementArrows; +@property (readonly, copy) XCUIElementQuery *tabs; +@property (readonly, copy) XCUIElementQuery *timelines; +@property (readonly, copy) XCUIElementQuery *ratingIndicators; +@property (readonly, copy) XCUIElementQuery *valueIndicators; +@property (readonly, copy) XCUIElementQuery *splitGroups; +@property (readonly, copy) XCUIElementQuery *splitters; +@property (readonly, copy) XCUIElementQuery *relevanceIndicators; +@property (readonly, copy) XCUIElementQuery *colorWells; +@property (readonly, copy) XCUIElementQuery *helpTags; +@property (readonly, copy) XCUIElementQuery *mattes; +@property (readonly, copy) XCUIElementQuery *dockItems; +@property (readonly, copy) XCUIElementQuery *rulers; +@property (readonly, copy) XCUIElementQuery *rulerMarkers; +@property (readonly, copy) XCUIElementQuery *grids; +@property (readonly, copy) XCUIElementQuery *levelIndicators; +@property (readonly, copy) XCUIElementQuery *cells; +@property (readonly, copy) XCUIElementQuery *layoutAreas; +@property (readonly, copy) XCUIElementQuery *layoutItems; +@property (readonly, copy) XCUIElementQuery *handles; +@property (readonly, copy) XCUIElementQuery *otherElements; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h new file mode 100644 index 00000000..3f303a09 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h @@ -0,0 +1,94 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +NS_ENUM_AVAILABLE(10_11, 9_0) +typedef NS_ENUM(NSUInteger, XCUIElementType) { + XCUIElementTypeAny = 0, + XCUIElementTypeOther = 1, + XCUIElementTypeApplication = 2, + XCUIElementTypeGroup = 3, + XCUIElementTypeWindow = 4, + XCUIElementTypeSheet = 5, + XCUIElementTypeDrawer = 6, + XCUIElementTypeAlert = 7, + XCUIElementTypeDialog = 8, + XCUIElementTypeButton = 9, + XCUIElementTypeRadioButton = 10, + XCUIElementTypeRadioGroup = 11, + XCUIElementTypeCheckBox = 12, + XCUIElementTypeDisclosureTriangle = 13, + XCUIElementTypePopUpButton = 14, + XCUIElementTypeComboBox = 15, + XCUIElementTypeMenuButton = 16, + XCUIElementTypeToolbarButton = 17, + XCUIElementTypePopover = 18, + XCUIElementTypeKeyboard = 19, + XCUIElementTypeKey = 20, + XCUIElementTypeNavigationBar = 21, + XCUIElementTypeTabBar = 22, + XCUIElementTypeTabGroup = 23, + XCUIElementTypeToolbar = 24, + XCUIElementTypeStatusBar = 25, + XCUIElementTypeTable = 26, + XCUIElementTypeTableRow = 27, + XCUIElementTypeTableColumn = 28, + XCUIElementTypeOutline = 29, + XCUIElementTypeOutlineRow = 30, + XCUIElementTypeBrowser = 31, + XCUIElementTypeCollectionView = 32, + XCUIElementTypeSlider = 33, + XCUIElementTypePageIndicator = 34, + XCUIElementTypeProgressIndicator = 35, + XCUIElementTypeActivityIndicator = 36, + XCUIElementTypeSegmentedControl = 37, + XCUIElementTypePicker = 38, + XCUIElementTypePickerWheel = 39, + XCUIElementTypeSwitch = 40, + XCUIElementTypeToggle = 41, + XCUIElementTypeLink = 42, + XCUIElementTypeImage = 43, + XCUIElementTypeIcon = 44, + XCUIElementTypeSearchField = 45, + XCUIElementTypeScrollView = 46, + XCUIElementTypeScrollBar = 47, + XCUIElementTypeStaticText = 48, + XCUIElementTypeTextField = 49, + XCUIElementTypeSecureTextField = 50, + XCUIElementTypeDatePicker = 51, + XCUIElementTypeTextView = 52, + XCUIElementTypeMenu = 53, + XCUIElementTypeMenuItem = 54, + XCUIElementTypeMenuBar = 55, + XCUIElementTypeMenuBarItem = 56, + XCUIElementTypeMap = 57, + XCUIElementTypeWebView = 58, + XCUIElementTypeIncrementArrow = 59, + XCUIElementTypeDecrementArrow = 60, + XCUIElementTypeTimeline = 61, + XCUIElementTypeRatingIndicator = 62, + XCUIElementTypeValueIndicator = 63, + XCUIElementTypeSplitGroup = 64, + XCUIElementTypeSplitter = 65, + XCUIElementTypeRelevanceIndicator = 66, + XCUIElementTypeColorWell = 67, + XCUIElementTypeHelpTag = 68, + XCUIElementTypeMatte = 69, + XCUIElementTypeDockItem = 70, + XCUIElementTypeRuler = 71, + XCUIElementTypeRulerMarker = 72, + XCUIElementTypeGrid = 73, + XCUIElementTypeLevelIndicator = 74, + XCUIElementTypeCell = 75, + XCUIElementTypeLayoutArea = 76, + XCUIElementTypeLayoutItem = 77, + XCUIElementTypeHandle = 78, + XCUIElementTypeStepper = 79, + XCUIElementTypeTab = 80, +}; + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h new file mode 100644 index 00000000..37d4ee68 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h @@ -0,0 +1,67 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import +#import + +#if XCT_UI_TESTING_AVAILABLE + +/*! + Constants for use with -[XCUIElement typeKey:modifierFlags:], + representing keys that have no textual representation. These comprise + the set of control, function, and modifier keys found on most keyboards. +*/ + +extern NSString *const XCUIKeyboardKeyDelete; +extern NSString *const XCUIKeyboardKeyReturn; +extern NSString *const XCUIKeyboardKeyEnter; +extern NSString *const XCUIKeyboardKeyTab; +extern NSString *const XCUIKeyboardKeySpace; +extern NSString *const XCUIKeyboardKeyEscape; + +extern NSString *const XCUIKeyboardKeyUpArrow; +extern NSString *const XCUIKeyboardKeyDownArrow; +extern NSString *const XCUIKeyboardKeyLeftArrow; +extern NSString *const XCUIKeyboardKeyRightArrow; + +extern NSString *const XCUIKeyboardKeyF1; +extern NSString *const XCUIKeyboardKeyF2; +extern NSString *const XCUIKeyboardKeyF3; +extern NSString *const XCUIKeyboardKeyF4; +extern NSString *const XCUIKeyboardKeyF5; +extern NSString *const XCUIKeyboardKeyF6; +extern NSString *const XCUIKeyboardKeyF7; +extern NSString *const XCUIKeyboardKeyF8; +extern NSString *const XCUIKeyboardKeyF9; +extern NSString *const XCUIKeyboardKeyF10; +extern NSString *const XCUIKeyboardKeyF11; +extern NSString *const XCUIKeyboardKeyF12; +extern NSString *const XCUIKeyboardKeyF13; +extern NSString *const XCUIKeyboardKeyF14; +extern NSString *const XCUIKeyboardKeyF15; +extern NSString *const XCUIKeyboardKeyF16; +extern NSString *const XCUIKeyboardKeyF17; +extern NSString *const XCUIKeyboardKeyF18; +extern NSString *const XCUIKeyboardKeyF19; + +extern NSString *const XCUIKeyboardKeyForwardDelete; +extern NSString *const XCUIKeyboardKeyHome; +extern NSString *const XCUIKeyboardKeyEnd; +extern NSString *const XCUIKeyboardKeyPageUp; +extern NSString *const XCUIKeyboardKeyPageDown; +extern NSString *const XCUIKeyboardKeyClear; +extern NSString *const XCUIKeyboardKeyHelp; + +extern NSString *const XCUIKeyboardKeyCapsLock; +extern NSString *const XCUIKeyboardKeyShift; +extern NSString *const XCUIKeyboardKeyControl; +extern NSString *const XCUIKeyboardKeyOption; +extern NSString *const XCUIKeyboardKeyCommand; +extern NSString *const XCUIKeyboardKeyRightShift; +extern NSString *const XCUIKeyboardKeyRightControl; +extern NSString *const XCUIKeyboardKeyRightOption; +extern NSString *const XCUIKeyboardKeyRightCommand; +extern NSString *const XCUIKeyboardKeySecondaryFn; + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h new file mode 100644 index 00000000..6aba68c8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h @@ -0,0 +1,68 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +/*! + * @enum XCUIRemoteButton + * + * A button on a physical remote control. + */ +typedef NS_ENUM(NSUInteger, XCUIRemoteButton) { + XCUIRemoteButtonUp = 0, + XCUIRemoteButtonDown = 1, + XCUIRemoteButtonLeft = 2, + XCUIRemoteButtonRight = 3, + + XCUIRemoteButtonSelect = 4, + XCUIRemoteButtonMenu = 5, + XCUIRemoteButtonPlayPause = 6, +}; + +#if TARGET_OS_TV + +/*! + * @class XCUIRemote + * + * Simulates interaction with a physical remote control. + */ +NS_CLASS_AVAILABLE_IOS(9_0) +@interface XCUIRemote : NSObject + +/*! + * The simulated physical remote control. + */ ++ (instancetype)sharedRemote; + +/*! + * Sends a momentary press of a button on a physical remote control. + * + * @param remoteButton + * The button on the physical remote control for which to synthesize a press. + */ +- (void)pressButton:(XCUIRemoteButton)remoteButton; + +/*! + * Sends a press and hold of a button on a physical remote control, holding for the specified duration. + * + * @param remoteButton + * The button on the physical remote control for which to synthesize a press. + * + * @param duration + * Duration in seconds. + */ +- (void)pressButton:(XCUIRemoteButton)remoteButton forDuration:(NSTimeInterval)duration; + +@end + +#endif + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist new file mode 100644 index 00000000..f1c4fcec Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap new file mode 100644 index 00000000..d5d16b0f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap @@ -0,0 +1,5 @@ +framework module XCTest { + umbrella header "XCTest.h" + requires objc + export * +} diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd new file mode 100644 index 00000000..dd26b7c8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd @@ -0,0 +1,77 @@ +--- !tapi-tbd-v2 +archs: [ armv7, armv7s, arm64 ] +uuids: [ 'armv7: 980D7276-D90C-3306-B752-E4A1AE6CF4FD', 'armv7s: AC6433EE-3027-3332-9DF5-B7317BBA65E5', + 'arm64: C15156CE-D7E1-311C-AF37-A57F9E18787A' ] +platform: ios +flags: [ not_app_extension_safe ] +install-name: '@rpath/XCTest.framework/XCTest' +current-version: 11109.2 +objc-constraint: none +exports: + - archs: [ armv7, armv7s, arm64 ] + symbols: [ '_OBJC_EHTYPE_$__XCTestCaseInterruptionException', _XCSourceCodeTreeNode_PrefixDelimiter, + _XCSourceCodeTreeNode_SuffixDelimiter, _XCTPerformanceMetric_HighWaterMarkForHeapAllocations, + _XCTPerformanceMetric_HighWaterMarkForVMAllocations, _XCTPerformanceMetric_PersistentHeapAllocations, + _XCTPerformanceMetric_PersistentHeapAllocationsNodes, _XCTPerformanceMetric_PersistentVMAllocations, + _XCTPerformanceMetric_RunTime, _XCTPerformanceMetric_SystemTime, + _XCTPerformanceMetric_TemporaryHeapAllocationsKilobytes, _XCTPerformanceMetric_TemporaryHeapAllocationsNodes, + _XCTPerformanceMetric_TemporaryVMAllocationsKilobytes, _XCTPerformanceMetric_TotalHeapAllocationsKilobytes, + _XCTPerformanceMetric_TransientHeapAllocationsKilobytes, _XCTPerformanceMetric_TransientHeapAllocationsNodes, + _XCTPerformanceMetric_TransientVMAllocationsKilobytes, _XCTPerformanceMetric_UserTime, + _XCTPerformanceMetric_WallClockTime, _XCTSelfTestMain, _XCTestErrorDomain, + _XCTestObserverClassKey, _XCTestScopeAll, _XCTestScopeKey, + _XCTestScopeNone, _XCTestScopeSelf, _XCTestToolKey, _XCTestedUnitPath, + _XCUIIdentifierCloseWindow, _XCUIIdentifierFullScreenWindow, + _XCUIIdentifierMinimizeWindow, _XCUIIdentifierZoomWindow, + _XCUIKeyModifierFlagsFromUIKeyModifierFlags, _XCUIKeyModifierFlagsToDisplayString, + _XCUIKeyModifierFlagsToUIKeyModifierFlags, _XCUIKeyModifiersMaskAll, + _XCUIKeyboardKeyCapsLock, _XCUIKeyboardKeyClear, _XCUIKeyboardKeyCommand, + _XCUIKeyboardKeyControl, _XCUIKeyboardKeyDelete, _XCUIKeyboardKeyDownArrow, + _XCUIKeyboardKeyEnd, _XCUIKeyboardKeyEnter, _XCUIKeyboardKeyEscape, + _XCUIKeyboardKeyF1, _XCUIKeyboardKeyF10, _XCUIKeyboardKeyF11, + _XCUIKeyboardKeyF12, _XCUIKeyboardKeyF13, _XCUIKeyboardKeyF14, + _XCUIKeyboardKeyF15, _XCUIKeyboardKeyF16, _XCUIKeyboardKeyF17, + _XCUIKeyboardKeyF18, _XCUIKeyboardKeyF19, _XCUIKeyboardKeyF2, + _XCUIKeyboardKeyF3, _XCUIKeyboardKeyF4, _XCUIKeyboardKeyF5, + _XCUIKeyboardKeyF6, _XCUIKeyboardKeyF7, _XCUIKeyboardKeyF8, + _XCUIKeyboardKeyF9, _XCUIKeyboardKeyForwardDelete, _XCUIKeyboardKeyHelp, + _XCUIKeyboardKeyHome, _XCUIKeyboardKeyLeftArrow, _XCUIKeyboardKeyOption, + _XCUIKeyboardKeyPageDown, _XCUIKeyboardKeyPageUp, _XCUIKeyboardKeyReturn, + _XCUIKeyboardKeyRightArrow, _XCUIKeyboardKeyRightCommand, + _XCUIKeyboardKeyRightControl, _XCUIKeyboardKeyRightOption, + _XCUIKeyboardKeyRightShift, _XCUIKeyboardKeySecondaryFn, _XCUIKeyboardKeyShift, + _XCUIKeyboardKeySpace, _XCUIKeyboardKeyTab, _XCUIKeyboardKeyUpArrow, + __XCINFLog, __XCLog, __XCTAXMessagingTimeout, __XCTAXResponseTimeout, + __XCTApplicationStateTimeout, __XCTCurrentTestCase, __XCTDaemonConfirmationTimeout, + __XCTDescriptionForValue, __XCTEventConfirmationTimeout, __XCTFailInCurrentTest, + __XCTFailureFormat, __XCTFailureHandler, __XCTPreformattedFailureHandler, + __XCTSetAXMessagingTimeout, __XCTSetAXResponseTimeout, __XCTSetApplicationStateTimeout, + __XCTSetDaemonConfirmationTimeout, __XCTSetEventConfirmationTimeout, + __XCTestMain, __XCWaitLoopIsValid ] + objc-classes: [ _XCAXClient_iOS, _XCAccessibilityElement, _XCActivityRecord, + _XCApplicationMonitor, _XCElementSnapshot, _XCEventGenerator, + _XCPointerEvent, _XCPointerEventPath, _XCSourceCodeRecording, + _XCSourceCodeTreeNode, _XCSymbolicationRecord, _XCSynthesizedEventRecord, + _XCTest, _XCTestCase, _XCTestCaseRun, _XCTestConfiguration, + _XCTestContext, _XCTestDriver, _XCTestExpectation, _XCTestExpectationWaiter, + _XCTestLog, _XCTestObservationCenter, _XCTestObserver, _XCTestProbe, + _XCTestRun, _XCTestSuite, _XCTestSuiteRun, _XCUIApplication, + _XCUIApplicationImpl, _XCUIApplicationProcess, _XCUICoordinate, + _XCUIDevice, _XCUIElement, _XCUIElementQuery, _XCUIRecorderUtilities, + __XCTestCaseImplementation, __XCTestCaseInterruptionException ] + objc-ivars: [ _XCAXClient_iOS._alertNotificationCounter, _XCAXClient_iOS._cacheAccessibilityLoadedValuesForPIDs, + _XCAXClient_iOS._userTestingNotificationHandlers, _XCApplicationMonitor._applicationImplementations, + _XCApplicationMonitor._applicationProcessesForPID, _XCApplicationMonitor._applicationProcessesForToken, + _XCApplicationMonitor._launchedApplications, _XCEventGenerator._eventQueue, + _XCEventGenerator._generation, _XCEventGenerator._generationObserver, + _XCTestConfiguration._absolutePath, _XCTestConfiguration._aggregateStatisticsBeforeCrash, + _XCTestConfiguration._baselineFileRelativePath, _XCTestConfiguration._baselineFileURL, + _XCTestConfiguration._disablePerformanceMetrics, _XCTestConfiguration._initializeForUITesting, + _XCTestConfiguration._pathToXcodeReportingSocket, _XCTestConfiguration._productModuleName, + _XCTestConfiguration._reportActivities, _XCTestConfiguration._reportResultsToIDE, + _XCTestConfiguration._sessionIdentifier, _XCTestConfiguration._targetApplicationBundleID, + _XCTestConfiguration._targetApplicationPath, _XCTestConfiguration._testBundleRelativePath, + _XCTestConfiguration._testBundleURL, _XCTestConfiguration._testsMustRunOnMainThread, + _XCTestConfiguration._testsToRun, _XCTestConfiguration._testsToSkip, + _XCTestConfiguration._treatMissingBaselinesAsFailures ] +... diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest new file mode 100755 index 00000000..0f41b5ce Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest.tbd b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest.tbd new file mode 120000 index 00000000..a6c462ca --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest.tbd @@ -0,0 +1 @@ +TextBasedStubs/XCTest.tbd \ No newline at end of file diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist new file mode 100644 index 00000000..84ff12d3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService new file mode 100755 index 00000000..42b1b6b7 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources new file mode 100644 index 00000000..3d940d72 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + wp9yBxRX+Vnamk6ScdFfxQ16/Xc= + + version.plist + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + + files2 + + version.plist + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist new file mode 100644 index 00000000..ab98ba4e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 2 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + ProjectName + XCTest_iOS + SourceVersion + 11109002000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist new file mode 100644 index 00000000..372d10b6 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources new file mode 100644 index 00000000..fc2c742b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + i3+icKxNXebgagUwOjTbUF1wrsM= + + version.plist + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + + files2 + + version.plist + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist new file mode 100644 index 00000000..ab98ba4e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 2 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + ProjectName + XCTest_iOS + SourceVersion + 11109002000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator new file mode 100755 index 00000000..02ce3149 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..f83b7bf9 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources @@ -0,0 +1,723 @@ + + + + + files + + Headers/XCAbstractTest.h + + glimZR9g23UWmtfTfpa3DtRU32o= + + Headers/XCTest.h + + FeItRoIRWX9yeukRVtg0l8vKWu0= + + Headers/XCTestAssertions.h + + t430vwqgq3wiAocVV386i0N+lOY= + + Headers/XCTestAssertionsImpl.h + + ZbDVHohdSHIPtEqmg7zN34qa0T4= + + Headers/XCTestCase+AsynchronousTesting.h + + PL1ZOdDhdZzPNjCxecLsCysb3OQ= + + Headers/XCTestCase.h + + YzjVm663E0vT+P6c0ORX46w/zQ0= + + Headers/XCTestCaseRun.h + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + Headers/XCTestDefines.h + + Dz7Tri4hztdVrwGfOLzpE53H3kk= + + Headers/XCTestErrors.h + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + Headers/XCTestExpectation.h + + dwE0LefMLJ+L/tF8PwAW0Adc7I0= + + Headers/XCTestLog.h + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + Headers/XCTestObservation.h + + 24hjfD82jAN7/PhxU8RiEWTo5gs= + + Headers/XCTestObservationCenter.h + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + Headers/XCTestObserver.h + + DV3Cjdd1CAe6nYFEzmUrCtnzxQg= + + Headers/XCTestProbe.h + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + Headers/XCTestRun.h + + LAZ8VzMsuBB9pLfqrrnltc7bl1E= + + Headers/XCTestSuite.h + + 8I97NjqsYFEmiGVB5ZkFAdtT3ic= + + Headers/XCTestSuiteRun.h + + OX+g52bOAnhjLVDKkweTKM8jTHQ= + + Headers/XCUIApplication.h + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + Headers/XCUICoordinate.h + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + Headers/XCUIDevice.h + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + Headers/XCUIElement.h + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + Headers/XCUIElementAttributes.h + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + Headers/XCUIElementQuery.h + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + Headers/XCUIElementTypeQueryProvider.h + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + Headers/XCUIElementTypes.h + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + Headers/XCUIKeyboardKeys.h + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + Headers/XCUIRemote.h + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + Info.plist + + sWMeizG36OkpLKNlcRTey0wkHu4= + + Modules/module.modulemap + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + TextBasedStubs/XCTest.tbd + + G0fT5ztdftpY3i0YsJOdE5N+bps= + + XPCServices/XCUIRecorderService.xpc/Info.plist + + wp9yBxRX+Vnamk6ScdFfxQ16/Xc= + + XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + GDnbG0D5s9JzYJJRXueYs8/r+co= + + XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + OgbD2xo+/FVKTQAQOaqkxdo1/OM= + + XPCServices/XCUIRecorderService.xpc/version.plist + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + XPCServices/xctestSymbolicator.xpc/Info.plist + + i3+icKxNXebgagUwOjTbUF1wrsM= + + XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + N13Cs4wVhS+GEjlnK9cFi50whTE= + + XPCServices/xctestSymbolicator.xpc/version.plist + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + TdBE6ccvP8IjqV9NKVeik656eJ0= + + en.lproj/InfoPlist.strings + + hash + + WbY3O0G7IBs11w3Ll/yYYaDQvo8= + + optional + + + version.plist + + S1R4XpCxixgIChvML3EBYnfj0oA= + + + files2 + + Headers/XCAbstractTest.h + + hash + + glimZR9g23UWmtfTfpa3DtRU32o= + + hash2 + + iJV+kqvtDhSFsj6V8IHHeUMh3uqAzOiOhNZJLxv/Yjo= + + + Headers/XCTest.h + + hash + + FeItRoIRWX9yeukRVtg0l8vKWu0= + + hash2 + + cePpQAPDKPPX6Ewck1uGjz6XlhGY2+Xkn22o3S2HEhE= + + + Headers/XCTestAssertions.h + + hash + + t430vwqgq3wiAocVV386i0N+lOY= + + hash2 + + pGvrq4y/YqWUdlF2m6LpdEp5xPWAw5OzuiryWTlaF3I= + + + Headers/XCTestAssertionsImpl.h + + hash + + ZbDVHohdSHIPtEqmg7zN34qa0T4= + + hash2 + + RxajF3uw62Qphc/Icq0LxEM3ocmdcEbdthtDn0ABR2k= + + + Headers/XCTestCase+AsynchronousTesting.h + + hash + + PL1ZOdDhdZzPNjCxecLsCysb3OQ= + + hash2 + + 2zBJeAHb9e6Y4kdJ0/haRtF3RwyzXQaNxTIXtxAlp7o= + + + Headers/XCTestCase.h + + hash + + YzjVm663E0vT+P6c0ORX46w/zQ0= + + hash2 + + Gf33taQZIdxR5NyU75WAw1X4IxfI/flQ2aZ2wmMDHIY= + + + Headers/XCTestCaseRun.h + + hash + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + hash2 + + jEzXeXeFAbT7xbfbqjlf4yF+lZvOKKw9u0dhT8Lzpe4= + + + Headers/XCTestDefines.h + + hash + + Dz7Tri4hztdVrwGfOLzpE53H3kk= + + hash2 + + kN/qMEAwR27j0Phyq5tli2mY38/Rhl19QT47SZy9YiA= + + + Headers/XCTestErrors.h + + hash + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + hash2 + + bqmU7PnCm6GkYigcYehsZluZJau/3nfvDl9NneLn8NI= + + + Headers/XCTestExpectation.h + + hash + + dwE0LefMLJ+L/tF8PwAW0Adc7I0= + + hash2 + + WKLqfVacGfP6KpNqRvb5c71MmE9nh5pUiDBfoOONtF4= + + + Headers/XCTestLog.h + + hash + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + hash2 + + Tu+6JYZZzftcXmUWH11IO9/jXCXi6QPeWDrL6izup6s= + + + Headers/XCTestObservation.h + + hash + + 24hjfD82jAN7/PhxU8RiEWTo5gs= + + hash2 + + bZQGOpPj/qLs1snCfbJDBnIeMfcP2Bs5EhkID+1qmjM= + + + Headers/XCTestObservationCenter.h + + hash + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + hash2 + + gJCADNWI0IDm5zuz+KL6LYNXWT0Lsxr4sEocmy5MPpc= + + + Headers/XCTestObserver.h + + hash + + DV3Cjdd1CAe6nYFEzmUrCtnzxQg= + + hash2 + + 7CTdhCJbuEzQNSyp3exgcCn6JnIRjBwpUcOKmiddBtU= + + + Headers/XCTestProbe.h + + hash + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + hash2 + + FKXb32Ennc+6f3SkuVdo8bBNcIIWwryV5u5FmQYN8Fc= + + + Headers/XCTestRun.h + + hash + + LAZ8VzMsuBB9pLfqrrnltc7bl1E= + + hash2 + + QPsZNPPJMjhvKdJEwS32IX3eiBh5IaTv9hOuayOZD0g= + + + Headers/XCTestSuite.h + + hash + + 8I97NjqsYFEmiGVB5ZkFAdtT3ic= + + hash2 + + PmXhm9tv6asfgO3L46K3ks3u77vcSSyKhym7xg+L7Zc= + + + Headers/XCTestSuiteRun.h + + hash + + OX+g52bOAnhjLVDKkweTKM8jTHQ= + + hash2 + + QDxhlFfxAJEcudV29W9M96FJW5LQiR0yqdUHzkjMuA0= + + + Headers/XCUIApplication.h + + hash + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + hash2 + + JkLYYE7r3tU7HcoCggIpStg31BvV5II6XmzRc8UFwVY= + + + Headers/XCUICoordinate.h + + hash + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + hash2 + + nUiZ2Tur0bUvr5aMb4C8rjGb93zvhtTZJCMSZxHXjKc= + + + Headers/XCUIDevice.h + + hash + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + hash2 + + 4F7O+P7bZ4FDk3pTby8bo9q5G0cwibsG9cW8z0Q86HQ= + + + Headers/XCUIElement.h + + hash + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + hash2 + + 9QxRETFinr/XJVF9/35Kukn15838D8MU72tFSQ8FMsw= + + + Headers/XCUIElementAttributes.h + + hash + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + hash2 + + 9SI2mH0Fw8cgcd7e5L+9MJCRlhcVP03/Kb6JOrmb4DA= + + + Headers/XCUIElementQuery.h + + hash + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + hash2 + + NMskO3WW4aROu6ZaP7LKB1edLWw7YuhyYtZI3TmlriY= + + + Headers/XCUIElementTypeQueryProvider.h + + hash + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + hash2 + + cbOnohF7eJyBVdhyKusSvWWBk4aKBh19HfZgfKFaVHE= + + + Headers/XCUIElementTypes.h + + hash + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + hash2 + + 7j1y+g8wo73vbn8tycgUCS4eC0reDvc610S59wmdbQM= + + + Headers/XCUIKeyboardKeys.h + + hash + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + hash2 + + kzhkCi7cyiO5rkZQfIpV5T9SL10/XMLDvluf1CewgSQ= + + + Headers/XCUIRemote.h + + hash + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + hash2 + + OyKIhJNyDgDu6svFc+wfN7RH20nNS2xcd6wxQhKwNpc= + + + Modules/module.modulemap + + hash + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + hash2 + + jnKXP8AnVeA8lhMYYv9wWZO1A6Rn46h/Dz1jgopnxYQ= + + + TextBasedStubs/XCTest.tbd + + hash + + G0fT5ztdftpY3i0YsJOdE5N+bps= + + hash2 + + yoZj6jm+jyLXjsrXxICUerMk1WqaHXaK25zt0IKnj08= + + + XCTest.tbd + + symlink + TextBasedStubs/XCTest.tbd + + XPCServices/XCUIRecorderService.xpc/Info.plist + + hash + + wp9yBxRX+Vnamk6ScdFfxQ16/Xc= + + hash2 + + pZDQtnzIPr4D3tEzZzI3f7oXZccaSVDP/oW3SIUy2uc= + + + XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + hash + + GDnbG0D5s9JzYJJRXueYs8/r+co= + + hash2 + + oWP3StTGUNr4SL256L58toQOxpAIRx38Uh5ypilGR1c= + + + XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + hash + + OgbD2xo+/FVKTQAQOaqkxdo1/OM= + + hash2 + + +t8S+EevMwepxboxQAd5jcT08r2Lhe350L8u8KwA1uE= + + + XPCServices/XCUIRecorderService.xpc/version.plist + + hash + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + hash2 + + 6HEB71x8qDmQeUHDnSRvaTcnk0o0xhNws7mXKZ8GsFY= + + + XPCServices/xctestSymbolicator.xpc/Info.plist + + hash + + i3+icKxNXebgagUwOjTbUF1wrsM= + + hash2 + + ghLRk11WG/2+QfsVU8wpmRz9sND86+ZWcG8J0RAH6V0= + + + XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + hash + + N13Cs4wVhS+GEjlnK9cFi50whTE= + + hash2 + + Aaadt4ATIHFrMOrXTLJ4Gj/66Acs1gXYsmP5t3UcgoQ= + + + XPCServices/xctestSymbolicator.xpc/version.plist + + hash + + 1L8lRBpL7ZgBnon9xuSLQV8wa/M= + + hash2 + + 6HEB71x8qDmQeUHDnSRvaTcnk0o0xhNws7mXKZ8GsFY= + + + XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + hash + + TdBE6ccvP8IjqV9NKVeik656eJ0= + + hash2 + + hP9GH8SIhybsT8h6y6My5fGdSjryX6sVBmut1iceFJk= + + + en.lproj/InfoPlist.strings + + hash + + WbY3O0G7IBs11w3Ll/yYYaDQvo8= + + hash2 + + csRKk47Q2InuM0gffz1DO94bvTX6/Kv9tWEkpwDOEco= + + optional + + + version.plist + + hash + + S1R4XpCxixgIChvML3EBYnfj0oA= + + hash2 + + 1eEUXvBLTRi6pWXAAuQspMmPMI0COKGm0hoB3PlXPhQ= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings new file mode 100644 index 00000000..5596dba6 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist new file mode 100644 index 00000000..624d4c71 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 2 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 11109.2 + ProjectName + XCTest_iOS + SourceVersion + 11109002000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCore.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCore.dylib new file mode 100755 index 00000000..2d93ab1f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCore.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 00000000..1c1ef3df Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 00000000..7903fe9f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib new file mode 100755 index 00000000..6e4fc9a8 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib new file mode 100755 index 00000000..8dc29975 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib new file mode 100755 index 00000000..9b93769d Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 00000000..6a653a52 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftSwiftOnoneSupport.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftSwiftOnoneSupport.dylib new file mode 100755 index 00000000..362af38a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftSwiftOnoneSupport.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib new file mode 100755 index 00000000..acee1e93 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Info.plist new file mode 100644 index 00000000..a1bdfcea Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/MixpanelDemo b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/MixpanelDemo new file mode 100755 index 00000000..f8a9b717 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/MixpanelDemo differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/PkgInfo b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/PkgInfo new file mode 100644 index 00000000..bd04210f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist new file mode 100644 index 00000000..276d9a78 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/_CodeSignature/CodeResources new file mode 100644 index 00000000..c6c00d88 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/_CodeSignature/CodeResources @@ -0,0 +1,618 @@ + + + + + files + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash + + I5f5IL3N1afywU1Tj4FQFFPYaI8= + + optional + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + optional + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash + + RmBCdXsHB5Tr2JwDaudSDEnQpv4= + + optional + + + Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib + + hash + + q3UVhmWNT2lR+9L7OFsdVfr6DAU= + + optional + + + Base.lproj/Main.storyboardc/ActionCompleteViewController.nib + + hash + + u18NC4xedQpE2fz+1VOxGShUvms= + + optional + + + Base.lproj/Main.storyboardc/Info.plist + + hash + + mloVb8jo1vepZeL1KbUrpPULy30= + + optional + + + Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib + + hash + + i8XDR11JysAWGpA7pfdhlMtXiRY= + + optional + + + Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib + + hash + + RLC0Men3GBPQB5ruLgfk51l48zk= + + optional + + + Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib + + hash + + tdvONfuzVuuuHDbv1C11x80WWC4= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib + + hash + + 8tX/c3qadwJDAcNO0+PlcZZJWrs= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib + + hash + + +OjkeLnNFpVdJHtUWahS+/jTuhY= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib + + hash + + 9r0XVk4482qU5DDwm21RxNkFHkg= + + optional + + + Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib + + hash + + dkt1ciDl0IFOyd2fdb5DgaS4xF4= + + optional + + + Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib + + hash + + 0EeRFYMvN0+Oe4Yor8Huk2bvuOM= + + optional + + + Frameworks/Mixpanel.framework/Info.plist + + kgMhrnzgBtWrUD09DaxzXAqZW4Q= + + Frameworks/Mixpanel.framework/Mixpanel + + 1oW6dZL/PqX0fXSka+OTbI8NmO0= + + Frameworks/Mixpanel.framework/_CodeSignature/CodeResources + + 5646U2/nRwQBAJmOGL5wmCOtx6c= + + Frameworks/libswiftCore.dylib + + +JzGAlEMBzJ4YjFRx1mxKcFWFq8= + + Frameworks/libswiftCoreGraphics.dylib + + 1n064NrZMmMUanAseNkkuOmAozA= + + Frameworks/libswiftCoreImage.dylib + + mOELKyb7ZLkFx5wpsJ0hSc82rro= + + Frameworks/libswiftDarwin.dylib + + oRHjlR1lnSg8VbNTqdDm22jhB1s= + + Frameworks/libswiftDispatch.dylib + + DA4EJj+7X6ssGQnF+jRzSXYhR90= + + Frameworks/libswiftFoundation.dylib + + GLCQIMXaJ+u9+0ckyizvjVjwrvg= + + Frameworks/libswiftObjectiveC.dylib + + ZmDAN3M1FXoa8ochFwUCKo45ss0= + + Frameworks/libswiftSwiftOnoneSupport.dylib + + n65aMEuADoI6XQFvDEQVlTRVui4= + + Frameworks/libswiftUIKit.dylib + + 3oTYcLc0E8g2KhA7vQ7HQyEueDo= + + Info.plist + + tFFNwZgGlpfqnw7hthh13ZSDXcg= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + embedded.mobileprovision + + l3MjklU4b62GmBzufeBVS+lQbYo= + + + files2 + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash + + I5f5IL3N1afywU1Tj4FQFFPYaI8= + + hash2 + + cRqSSs7f2IUn0wnkkHALOBEAHWyluNfPH7dCY+Y+8DI= + + optional + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + hash2 + + HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= + + optional + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash + + RmBCdXsHB5Tr2JwDaudSDEnQpv4= + + hash2 + + QULR2R8Y9BUUzJzQWD2Di/hPEDL6B0B6AgYiwB5uk3w= + + optional + + + Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib + + hash + + q3UVhmWNT2lR+9L7OFsdVfr6DAU= + + hash2 + + xhnwjOf6B+zVVh3YDjL00ganIXfZUH1vCNkg3UGUbec= + + optional + + + Base.lproj/Main.storyboardc/ActionCompleteViewController.nib + + hash + + u18NC4xedQpE2fz+1VOxGShUvms= + + hash2 + + K+JwJhSTh4w+upMEZT87JIUtOtSLGH59bbCFiSMnDsc= + + optional + + + Base.lproj/Main.storyboardc/Info.plist + + hash + + mloVb8jo1vepZeL1KbUrpPULy30= + + hash2 + + kjkB2TrY+LoToHDAow0Ar0+1fDL5COI00CR0UxqOq2o= + + optional + + + Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib + + hash + + i8XDR11JysAWGpA7pfdhlMtXiRY= + + hash2 + + vaEJtrJaroNrP2OBxUHat8xOQIVgsh4mp61SEo3odIQ= + + optional + + + Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib + + hash + + RLC0Men3GBPQB5ruLgfk51l48zk= + + hash2 + + ledqr7MHYC7oRwnzYh2MQ6WTqpXqlcvqzuvbnUC+1Lo= + + optional + + + Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib + + hash + + tdvONfuzVuuuHDbv1C11x80WWC4= + + hash2 + + 76AU/a0QGQZXmutTb5MaBv0EtNUBnJ++1vByNmS+8Ds= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib + + hash + + 8tX/c3qadwJDAcNO0+PlcZZJWrs= + + hash2 + + CtHZyNbJ0S6o4NqE9dbd2m9fdsK05BUi3m6jESQHWyQ= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib + + hash + + +OjkeLnNFpVdJHtUWahS+/jTuhY= + + hash2 + + duRS0mvgpyyPOXgkTYJq0HIhAXarJ/Yp3OfH6h1PMjs= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib + + hash + + 9r0XVk4482qU5DDwm21RxNkFHkg= + + hash2 + + ow8BwCs41oGCc/uCIySSdUMTeSoldeYFP7k8EEUiliM= + + optional + + + Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib + + hash + + dkt1ciDl0IFOyd2fdb5DgaS4xF4= + + hash2 + + /n9mYqQQoJDIEL2oePuEM8QBR4h2InVLP7i/n4rohtU= + + optional + + + Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib + + hash + + 0EeRFYMvN0+Oe4Yor8Huk2bvuOM= + + hash2 + + JJ+mbImUkRdIX89uXUa0+RMh49o7nDZKUmEqVGI/12I= + + optional + + + Frameworks/Mixpanel.framework/Info.plist + + hash + + kgMhrnzgBtWrUD09DaxzXAqZW4Q= + + hash2 + + oUoZnZFQx71yii22y+VZql3fC40rclNDL1ysvjOIGew= + + + Frameworks/Mixpanel.framework/Mixpanel + + hash + + 1oW6dZL/PqX0fXSka+OTbI8NmO0= + + hash2 + + mPFMJNsNnqk0P/CJPyaUmVBqs3kvR/2vxcPFVyAV4t0= + + + Frameworks/Mixpanel.framework/_CodeSignature/CodeResources + + hash + + 5646U2/nRwQBAJmOGL5wmCOtx6c= + + hash2 + + yllBFRJH8+EThnyymEpg9QLTMU4Fp8G3HypkY9F8G4U= + + + Frameworks/libswiftCore.dylib + + hash + + +JzGAlEMBzJ4YjFRx1mxKcFWFq8= + + hash2 + + 4SYDJIkCtIUo6gfTaPg3joOKGy5AZtoiwW+eGO5xSKY= + + + Frameworks/libswiftCoreGraphics.dylib + + hash + + 1n064NrZMmMUanAseNkkuOmAozA= + + hash2 + + fDbao6P3KG8KKmZZPGHfUdwoJVWTEa5dP6EWwzWyB2M= + + + Frameworks/libswiftCoreImage.dylib + + hash + + mOELKyb7ZLkFx5wpsJ0hSc82rro= + + hash2 + + eza27wfh4xF2zcSbRe1Z0JffgU9BQJGxbHkahqmRPo8= + + + Frameworks/libswiftDarwin.dylib + + hash + + oRHjlR1lnSg8VbNTqdDm22jhB1s= + + hash2 + + OdTdsVVBT7EQ65ZfYUArCJfFLPKa0+3S0RK3Ae7fEbU= + + + Frameworks/libswiftDispatch.dylib + + hash + + DA4EJj+7X6ssGQnF+jRzSXYhR90= + + hash2 + + vWdDwG7B+j9gCfdggGswb8YF3eHFi4SYfuXC6QdVo3o= + + + Frameworks/libswiftFoundation.dylib + + hash + + GLCQIMXaJ+u9+0ckyizvjVjwrvg= + + hash2 + + dnwp8cW0/iGZM7eZpTjA4gMDVogXByucclLWZg4vfPE= + + + Frameworks/libswiftObjectiveC.dylib + + hash + + ZmDAN3M1FXoa8ochFwUCKo45ss0= + + hash2 + + UGy/xyGEGQUkJXaNqJ/HrkQTmxZHDpKuMrvuLsOJ5Ro= + + + Frameworks/libswiftSwiftOnoneSupport.dylib + + hash + + n65aMEuADoI6XQFvDEQVlTRVui4= + + hash2 + + SiMHTQ0RHsAf47OIYwPY1/mRw2Kr3/7v8tWNkQQjSjg= + + + Frameworks/libswiftUIKit.dylib + + hash + + 3oTYcLc0E8g2KhA7vQ7HQyEueDo= + + hash2 + + d59scU4O7i7dMtKq3VfC68s+a83sbsRv8YykAW2Ajnk= + + + embedded.mobileprovision + + hash + + l3MjklU4b62GmBzufeBVS+lQbYo= + + hash2 + + LSd/heG2loE6DQBA7rbZz7Cr6mt+Dn0IjPdFYh1AxO4= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/embedded.mobileprovision b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/embedded.mobileprovision new file mode 100644 index 00000000..8a9742c0 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.app/embedded.mobileprovision differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm.swiftdoc new file mode 100644 index 00000000..79738c07 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm.swiftmodule new file mode 100644 index 00000000..ed285e87 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftdoc new file mode 100644 index 00000000..b91807de Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule new file mode 100644 index 00000000..4ea21fca Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/MixpanelDemo.swiftmodule/arm64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h new file mode 100644 index 00000000..8c26687f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h @@ -0,0 +1,5 @@ +#import + +@protocol LSHTTPBody +- (NSData *)data; +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h new file mode 100644 index 00000000..db14c6cb --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSMatcheable.h @@ -0,0 +1,9 @@ +#import + +@class LSMatcher; + +@protocol LSMatcheable + +- (LSMatcher *)matcher; + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h new file mode 100644 index 00000000..aa85901e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSNocilla.h @@ -0,0 +1,25 @@ +#import +#import "Nocilla.h" + +@class LSStubRequest; +@class LSStubResponse; +@class LSHTTPClientHook; +@protocol LSHTTPRequest; + +extern NSString * const LSUnexpectedRequest; + +@interface LSNocilla : NSObject ++ (LSNocilla *)sharedInstance; + +@property (nonatomic, strong, readonly) NSArray *stubbedRequests; +@property (nonatomic, assign, readonly, getter = isStarted) BOOL started; + +- (void)start; +- (void)stop; +- (void)addStubbedRequest:(LSStubRequest *)request; +- (void)clearStubs; + +- (void)registerHook:(LSHTTPClientHook *)hook; + +- (LSStubResponse *)responseForRequest:(id)request; +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h new file mode 100644 index 00000000..d7df7430 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h @@ -0,0 +1,39 @@ +#import +#import "NSString+Matcheable.h" +#import "NSRegularExpression+Matcheable.h" +#import "NSData+Matcheable.h" + +@class LSStubRequestDSL; +@class LSStubResponseDSL; +@class LSStubRequest; + +@protocol LSHTTPBody; + +typedef LSStubRequestDSL *(^WithHeaderMethod)(NSString *, NSString *); +typedef LSStubRequestDSL *(^WithHeadersMethod)(NSDictionary *); +typedef LSStubRequestDSL *(^AndBodyMethod)(id); +typedef LSStubResponseDSL *(^AndReturnMethod)(NSInteger); +typedef LSStubResponseDSL *(^AndReturnRawResponseMethod)(NSData *rawResponseData); +typedef void (^AndFailWithErrorMethod)(NSError *error); + +@interface LSStubRequestDSL : NSObject +- (id)initWithRequest:(LSStubRequest *)request; + +@property (nonatomic, strong, readonly) WithHeaderMethod withHeader; +@property (nonatomic, strong, readonly) WithHeadersMethod withHeaders; +@property (nonatomic, strong, readonly) AndBodyMethod withBody; +@property (nonatomic, strong, readonly) AndReturnMethod andReturn; +@property (nonatomic, strong, readonly) AndReturnRawResponseMethod andReturnRawResponse; +@property (nonatomic, strong, readonly) AndFailWithErrorMethod andFailWithError; + +@end + +#ifdef __cplusplus +extern "C" { +#endif + +LSStubRequestDSL * stubRequest(NSString *method, id url); + +#ifdef __cplusplus +} +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h new file mode 100644 index 00000000..2ba6b663 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h @@ -0,0 +1,19 @@ +#import + +@class LSStubResponse; +@class LSStubResponseDSL; + +@protocol LSHTTPBody; + +typedef LSStubResponseDSL *(^ResponseWithBodyMethod)(id); +typedef LSStubResponseDSL *(^ResponseWithHeaderMethod)(NSString *, NSString *); +typedef LSStubResponseDSL *(^ResponseWithHeadersMethod)(NSDictionary *); + +@interface LSStubResponseDSL : NSObject +- (id)initWithResponse:(LSStubResponse *)response; + +@property (nonatomic, strong, readonly) ResponseWithHeaderMethod withHeader; +@property (nonatomic, strong, readonly) ResponseWithHeadersMethod withHeaders; +@property (nonatomic, strong, readonly) ResponseWithBodyMethod withBody; + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h new file mode 100644 index 00000000..c3dfef94 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h @@ -0,0 +1,14 @@ +// +// NSData+Matcheable.h +// Nocilla +// +// Created by Luis Solano Bonet on 09/11/14. +// Copyright (c) 2014 Luis Solano Bonet. All rights reserved. +// + +#import +#import "LSMatcheable.h" + +@interface NSData (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h new file mode 100644 index 00000000..92ebbc75 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h @@ -0,0 +1,6 @@ +#import +#import "LSHTTPBody.h" + +@interface NSData (Nocilla) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h new file mode 100644 index 00000000..9d9717f8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h @@ -0,0 +1,6 @@ +#import +#import "LSMatcheable.h" + +@interface NSRegularExpression (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h new file mode 100644 index 00000000..ca63ec73 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h @@ -0,0 +1,6 @@ +#import +#import "LSMatcheable.h" + +@interface NSString (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h new file mode 100644 index 00000000..cc0df6d8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h @@ -0,0 +1,8 @@ +#import +#import "LSHTTPBody.h" + +@interface NSString (Nocilla) + +- (NSRegularExpression *)regex; + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h new file mode 100644 index 00000000..f9bc72cb --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h @@ -0,0 +1,17 @@ +#import + +#import "NSData+Nocilla.h" +#import "NSString+Nocilla.h" +#import "LSStubRequestDSL.h" +#import "LSStubResponseDSL.h" +#import "LSNocilla.h" +#import "LSMatcheable.h" +#import "NSData+Matcheable.h" +#import "NSRegularExpression+Matcheable.h" +#import "NSString+Matcheable.h" +#import "LSHTTPBody.h" +#import "Nocilla.h" + +FOUNDATION_EXPORT double NocillaVersionNumber; +FOUNDATION_EXPORT const unsigned char NocillaVersionString[]; + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h new file mode 100644 index 00000000..e86b640a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Headers/Nocilla.h @@ -0,0 +1,26 @@ +// +// Nocilla.h +// Nocilla +// +// Created by Robert Böhnke on 26/03/15. +// Copyright (c) 2015 Luis Solano Bonet. All rights reserved. +// + +#import + +//! Project version number for Nocilla. +FOUNDATION_EXPORT double NocillaVersionNumber; + +//! Project version string for Nocilla. +FOUNDATION_EXPORT const unsigned char NocillaVersionString[]; + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Info.plist new file mode 100644 index 00000000..f90913bc Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Nocilla b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Nocilla new file mode 100755 index 00000000..974b49de Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Nocilla/Nocilla.framework/Nocilla differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h new file mode 100644 index 00000000..9d49c62b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_MixpanelDemoTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_MixpanelDemoTestsVersionString[]; + diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Info.plist new file mode 100644 index 00000000..bb367e57 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Modules/module.modulemap new file mode 100644 index 00000000..e291a44a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MixpanelDemoTests { + umbrella header "Pods-MixpanelDemoTests-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests new file mode 100644 index 00000000..053d4a75 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphoneos/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h new file mode 100644 index 00000000..e9eefef8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h @@ -0,0 +1,19 @@ +// +// Mixpanel.h +// Mixpanel +// +// Created by Yarden Eitan on 6/1/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +#import + +//! Project version number for Mixpanel. +FOUNDATION_EXPORT double MixpanelVersionNumber; + +//! Project version string for Mixpanel. +FOUNDATION_EXPORT const unsigned char MixpanelVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..f82d30ea Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Mixpanel b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Mixpanel new file mode 100755 index 00000000..ad24e280 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftdoc new file mode 100644 index 00000000..1e1ff9ab Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule new file mode 100644 index 00000000..bde4434d Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftdoc new file mode 100644 index 00000000..e1624d98 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule new file mode 100644 index 00000000..875c39c4 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/Modules/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..f92b2025 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Mixpanel.framework/_CodeSignature/CodeResources @@ -0,0 +1,216 @@ + + + + + files + + Headers/Mixpanel-Swift.h + + DNZPny81CxwOqERQU5vYDPsZe8w= + + Headers/Mixpanel.h + + pFeEs0M9LSC0WQ9H7qTOKsy4wzA= + + Info.plist + + chiI2guz1gUE6dP1DDvy+delclg= + + Modules/Mixpanel.swiftmodule/i386.swiftdoc + + 9g2AcausiK/ezW6RRr8BsyfEoyY= + + Modules/Mixpanel.swiftmodule/i386.swiftmodule + + maW/IdX5HFG6F7c8hmXZvYhZ458= + + Modules/Mixpanel.swiftmodule/x86_64.swiftdoc + + DRmBJ/1B+lq8f7LmG4Y+747jg5Q= + + Modules/Mixpanel.swiftmodule/x86_64.swiftmodule + + /GJ7R2HXWfAwLqSbFZd7zDJ3E0c= + + Modules/module.modulemap + + fYvZy8Iky1Y4eMYNb5aHN1WqHz8= + + + files2 + + Headers/Mixpanel-Swift.h + + hash + + DNZPny81CxwOqERQU5vYDPsZe8w= + + hash2 + + ROnObJgoSTrEA186gQluVfsBWqTjUhPqEtUNxJK5OVE= + + + Headers/Mixpanel.h + + hash + + pFeEs0M9LSC0WQ9H7qTOKsy4wzA= + + hash2 + + nprYfXwJvUUGpCXlXu8abDE6b4MUpD+baVe/5gz6UJU= + + + Modules/Mixpanel.swiftmodule/i386.swiftdoc + + hash + + 9g2AcausiK/ezW6RRr8BsyfEoyY= + + hash2 + + 3TntgI1997jD3tBIJgg2ohbrA4zqX3GJq6Be9zBrYy0= + + + Modules/Mixpanel.swiftmodule/i386.swiftmodule + + hash + + maW/IdX5HFG6F7c8hmXZvYhZ458= + + hash2 + + vLc+jvoocpr6lZLkYQ2ZVOoW9Tuxyask2AjsSeREEmg= + + + Modules/Mixpanel.swiftmodule/x86_64.swiftdoc + + hash + + DRmBJ/1B+lq8f7LmG4Y+747jg5Q= + + hash2 + + L1Sj11LOwFEJfM+2Ms3rY573zkk3LWKHiOWnwLTIgMA= + + + Modules/Mixpanel.swiftmodule/x86_64.swiftmodule + + hash + + /GJ7R2HXWfAwLqSbFZd7zDJ3E0c= + + hash2 + + B5T/DFlYox38MpuWvUpmRM4ZeCUBAb5a09+iYXmeKZE= + + + Modules/module.modulemap + + hash + + fYvZy8Iky1Y4eMYNb5aHN1WqHz8= + + hash2 + + PrsPMe/qS9+i+YznYmp9h4bwbY4IWlsgFeWtel0MNsA= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000..7cb23cda Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000..32288e88 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000..0e7f288e Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..e47d3c3c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..93f862a6 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Info.plist new file mode 100644 index 00000000..92bb666d Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..f378961d Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..35329a10 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..3a214526 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..f486be1c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..66f7244f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..d202945c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..f26b86b9 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..6926c162 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection new file mode 100755 index 00000000..600a0bfe Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist new file mode 100644 index 00000000..3997f0e2 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..56259c7e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + s8xzJx0p/OCl8VAr3/1cO4153Xg= + + version.plist + + hrLEt31x7WOsD3EiGTuti3IPJnw= + + + files2 + + version.plist + + hrLEt31x7WOsD3EiGTuti3IPJnw= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist new file mode 100644 index 00000000..3bdf5833 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + IDEBundleInjection + BuildVersion + 18 + CFBundleShortVersionString + 5.0 + CFBundleVersion + 10004 + ProjectName + IDEBundleInjection_Sim + SourceVersion + 10004000000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..f82d30ea Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel new file mode 100755 index 00000000..ad24e280 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..f92b2025 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/_CodeSignature/CodeResources @@ -0,0 +1,216 @@ + + + + + files + + Headers/Mixpanel-Swift.h + + DNZPny81CxwOqERQU5vYDPsZe8w= + + Headers/Mixpanel.h + + pFeEs0M9LSC0WQ9H7qTOKsy4wzA= + + Info.plist + + chiI2guz1gUE6dP1DDvy+delclg= + + Modules/Mixpanel.swiftmodule/i386.swiftdoc + + 9g2AcausiK/ezW6RRr8BsyfEoyY= + + Modules/Mixpanel.swiftmodule/i386.swiftmodule + + maW/IdX5HFG6F7c8hmXZvYhZ458= + + Modules/Mixpanel.swiftmodule/x86_64.swiftdoc + + DRmBJ/1B+lq8f7LmG4Y+747jg5Q= + + Modules/Mixpanel.swiftmodule/x86_64.swiftmodule + + /GJ7R2HXWfAwLqSbFZd7zDJ3E0c= + + Modules/module.modulemap + + fYvZy8Iky1Y4eMYNb5aHN1WqHz8= + + + files2 + + Headers/Mixpanel-Swift.h + + hash + + DNZPny81CxwOqERQU5vYDPsZe8w= + + hash2 + + ROnObJgoSTrEA186gQluVfsBWqTjUhPqEtUNxJK5OVE= + + + Headers/Mixpanel.h + + hash + + pFeEs0M9LSC0WQ9H7qTOKsy4wzA= + + hash2 + + nprYfXwJvUUGpCXlXu8abDE6b4MUpD+baVe/5gz6UJU= + + + Modules/Mixpanel.swiftmodule/i386.swiftdoc + + hash + + 9g2AcausiK/ezW6RRr8BsyfEoyY= + + hash2 + + 3TntgI1997jD3tBIJgg2ohbrA4zqX3GJq6Be9zBrYy0= + + + Modules/Mixpanel.swiftmodule/i386.swiftmodule + + hash + + maW/IdX5HFG6F7c8hmXZvYhZ458= + + hash2 + + vLc+jvoocpr6lZLkYQ2ZVOoW9Tuxyask2AjsSeREEmg= + + + Modules/Mixpanel.swiftmodule/x86_64.swiftdoc + + hash + + DRmBJ/1B+lq8f7LmG4Y+747jg5Q= + + hash2 + + L1Sj11LOwFEJfM+2Ms3rY573zkk3LWKHiOWnwLTIgMA= + + + Modules/Mixpanel.swiftmodule/x86_64.swiftmodule + + hash + + /GJ7R2HXWfAwLqSbFZd7zDJ3E0c= + + hash2 + + B5T/DFlYox38MpuWvUpmRM4ZeCUBAb5a09+iYXmeKZE= + + + Modules/module.modulemap + + hash + + fYvZy8Iky1Y4eMYNb5aHN1WqHz8= + + hash2 + + PrsPMe/qS9+i+YznYmp9h4bwbY4IWlsgFeWtel0MNsA= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h new file mode 100644 index 00000000..bb1b2dca --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h @@ -0,0 +1,113 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestRun; + +/*! + * @class XCTest + * + * An abstract base class for testing. XCTestCase and XCTestSuite extend XCTest to provide + * for creating, managing, and executing tests. Most developers will not need to subclass + * XCTest directly. + */ +@interface XCTest : NSObject { +#ifndef __OBJC2__ +@private + id _internal; +#endif +} + +/*! + * @property testCaseCount + * Number of test cases. Must be overridden by subclasses. + */ +@property (readonly) NSUInteger testCaseCount; + +/*! + * @property name + * Test's name. Must be overridden by subclasses. + */ +@property (readonly, copy, nullable) NSString *name; + +/*! + * @property testRunClass + * The XCTestRun subclass that will be instantiated when the test is run to hold + * the test's results. Must be overridden by subclasses. + */ +@property (readonly, nullable) Class testRunClass; + +/*! + * @property testRun + * The test run object that executed the test, an instance of testRunClass. If the test has not yet been run, this will be nil. + */ +#if XCT_NULLABLE_AVAILABLE +@property (readonly, nullable) XCTestRun *testRun; +#else +@property (readonly) XCTestRun *testRun; +#endif + +/*! + * @method -performTest: + * The method through which tests are executed. Must be overridden by subclasses. + */ +- (void)performTest:(XCTestRun *)run; + +/*! + * @method -run + * Deprecated: use -runTest instead. + */ +- (XCTestRun *)run DEPRECATED_ATTRIBUTE; + +/*! + * @method -runTest + * Creates an instance of the testRunClass and passes it as a parameter to -performTest:. + */ +- (void)runTest; + +/*! + * @method -setUp + * Setup method called before the invocation of each test method in the class. + */ +- (void)setUp; + +/*! + * @method -tearDown + * Teardown method called after the invocation of each test method in the class. + */ +- (void)tearDown; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h new file mode 100644 index 00000000..182218ad --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h @@ -0,0 +1,59 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h new file mode 100644 index 00000000..1660e6ef --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h @@ -0,0 +1,247 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +/*! + * @function XCTFail(...) + * Generates a failure unconditionally. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTFail(...) \ + _XCTPrimitiveFail(self, __VA_ARGS__) + +/*! + * @define XCTAssertNil(expression, ...) + * Generates a failure when ((\a expression) != nil). + * @param expression An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNil(expression, ...) \ + _XCTPrimitiveAssertNil(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertNotNil(expression, ...) + * Generates a failure when ((\a expression) == nil). + * @param expression An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotNil(expression, ...) \ + _XCTPrimitiveAssertNotNil(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssert(expression, ...) + * Generates a failure when ((\a expression) == false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssert(expression, ...) \ + _XCTPrimitiveAssertTrue(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertTrue(expression, ...) + * Generates a failure when ((\a expression) == false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertTrue(expression, ...) \ + _XCTPrimitiveAssertTrue(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertFalse(expression, ...) + * Generates a failure when ((\a expression) != false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertFalse(expression, ...) \ + _XCTPrimitiveAssertFalse(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertEqualObjects(expression1, expression2, ...) + * Generates a failure when ((\a expression1) not equal to (\a expression2)). + * @param expression1 An expression of id type. + * @param expression2 An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqualObjects(expression1, expression2, ...) \ + _XCTPrimitiveAssertEqualObjects(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqualObjects(expression1, expression2, ...) + * Generates a failure when ((\a expression1) equal to (\a expression2)). + * @param expression1 An expression of id type. + * @param expression2 An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqualObjects(expression1, expression2, ...) \ + _XCTPrimitiveAssertNotEqualObjects(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) != (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) == (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertNotEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertEqualWithAccuracy(expression1, expression2, accuracy, ...) + * Generates a failure when (difference between (\a expression1) and (\a expression2) is > (\a accuracy))). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param accuracy An expression of C scalar type describing the maximum difference between \a expression1 and \a expression2 for these values to be considered equal. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqualWithAccuracy(expression1, expression2, accuracy, ...) \ + _XCTPrimitiveAssertEqualWithAccuracy(self, expression1, @#expression1, expression2, @#expression2, accuracy, @#accuracy, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...) + * Generates a failure when (difference between (\a expression1) and (\a expression2) is <= (\a accuracy)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param accuracy An expression of C scalar type describing the maximum difference between \a expression1 and \a expression2 for these values to be considered equal. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...) \ + _XCTPrimitiveAssertNotEqualWithAccuracy(self, expression1, @#expression1, expression2, @#expression2, accuracy, @#accuracy, __VA_ARGS__) + +/*! + * @define XCTAssertGreaterThan(expression1, expression2, ...) + * Generates a failure when ((\a expression1) <= (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertGreaterThan(expression1, expression2, ...) \ + _XCTPrimitiveAssertGreaterThan(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertGreaterThanOrEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) < (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertGreaterThanOrEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertGreaterThanOrEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertLessThan(expression1, expression2, ...) + * Generates a failure when ((\a expression1) >= (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertLessThan(expression1, expression2, ...) \ + _XCTPrimitiveAssertLessThan(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertLessThanOrEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) > (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertLessThanOrEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertLessThanOrEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertThrows(expression, ...) + * Generates a failure when ((\a expression) does not throw). + * @param expression An expression. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrows(expression, ...) \ + _XCTPrimitiveAssertThrows(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertThrowsSpecific(expression, exception_class, ...) + * Generates a failure when ((\a expression) does not throw \a exception_class). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrowsSpecific(expression, exception_class, ...) \ + _XCTPrimitiveAssertThrowsSpecific(self, expression, @#expression, exception_class, __VA_ARGS__) + +/*! + * @define XCTAssertThrowsSpecificNamed(expression, exception_class, exception_name, ...) + * Generates a failure when ((\a expression) does not throw \a exception_class with \a exception_name). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param exception_name The name of the exception. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrowsSpecificNamed(expression, exception_class, exception_name, ...) \ + _XCTPrimitiveAssertThrowsSpecificNamed(self, expression, @#expression, exception_class, exception_name, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrow(expression, ...) + * Generates a failure when ((\a expression) throws). + * @param expression An expression. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrow(expression, ...) \ + _XCTPrimitiveAssertNoThrow(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrowSpecific(expression, exception_class, ...) + * Generates a failure when ((\a expression) throws \a exception_class). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrowSpecific(expression, exception_class, ...) \ + _XCTPrimitiveAssertNoThrowSpecific(self, expression, @#expression, exception_class, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrowSpecificNamed(expression, exception_class, exception_name, ...) + * Generates a failure when ((\a expression) throws \a exception_class with \a exception_name). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param exception_name The name of the exception. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrowSpecificNamed(expression, exception_class, exception_name, ...) \ + _XCTPrimitiveAssertNoThrowSpecificNamed(self, expression, @#expression, exception_class, exception_name, __VA_ARGS__) diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h new file mode 100644 index 00000000..2758a05b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h @@ -0,0 +1,475 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface _XCTestCaseInterruptionException : NSException +@end + +#if XCT_NULLABLE_AVAILABLE +XCT_EXPORT void _XCTFailureHandler(XCTestCase *test, BOOL expected, const char *filePath, NSUInteger lineNumber, NSString *condition, NSString * __nullable format, ...) NS_FORMAT_FUNCTION(6,7); +#else +XCT_EXPORT void _XCTFailureHandler(XCTestCase *test, BOOL expected, const char *filePath, NSUInteger lineNumber, NSString *condition, NSString *format, ...) NS_FORMAT_FUNCTION(6,7); +#endif + +XCT_EXPORT void _XCTPreformattedFailureHandler(XCTestCase *test, BOOL expected, NSString *filePath, NSUInteger lineNumber, NSString *condition, NSString *message); + +#define _XCTRegisterFailure(test, condition, ...) \ +({ \ + _XCTFailureHandler(test, YES, __FILE__, __LINE__, condition, @"" __VA_ARGS__); \ +}) + +#define _XCTRegisterUnexpectedFailure(test, condition, ...) \ +({ \ +_XCTFailureHandler(test, NO, __FILE__, __LINE__, condition, @"" __VA_ARGS__); \ +}) + +#pragma mark - + +typedef NS_ENUM(NSUInteger, _XCTAssertionType) { + _XCTAssertion_Fail, + _XCTAssertion_Nil, + _XCTAssertion_NotNil, + _XCTAssertion_EqualObjects, + _XCTAssertion_NotEqualObjects, + _XCTAssertion_Equal, + _XCTAssertion_NotEqual, + _XCTAssertion_EqualWithAccuracy, + _XCTAssertion_NotEqualWithAccuracy, + _XCTAssertion_GreaterThan, + _XCTAssertion_GreaterThanOrEqual, + _XCTAssertion_LessThan, + _XCTAssertion_LessThanOrEqual, + _XCTAssertion_True, + _XCTAssertion_False, + _XCTAssertion_Throws, + _XCTAssertion_ThrowsSpecific, + _XCTAssertion_ThrowsSpecificNamed, + _XCTAssertion_NoThrow, + _XCTAssertion_NoThrowSpecific, + _XCTAssertion_NoThrowSpecificNamed, +}; + +XCT_EXPORT NSString * _XCTFailureFormat (_XCTAssertionType assertionType, NSUInteger formatIndex); + +#define _XCTFailureDescription(assertion_type, format_index, ...) \ +({ \ + _Pragma("clang diagnostic push") \ + _Pragma("clang diagnostic ignored \"-Wformat-nonliteral\"") \ + [NSString stringWithFormat:_XCTFailureFormat(assertion_type, format_index), @"" __VA_ARGS__]; \ + _Pragma("clang diagnostic pop") \ +}) + +#pragma mark - + +XCT_EXPORT NSString * _XCTDescriptionForValue (NSValue *value); + +NS_ASSUME_NONNULL_END + +#pragma mark - + +#define _XCTPrimitiveFail(test, ...) \ +({ \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Fail, 0), __VA_ARGS__); \ +}) + +#define _XCTPrimitiveAssertNil(test, expression, expressionStr, ...) \ +({ \ + @try { \ + id expressionValue = (expression); \ + if (expressionValue != nil) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 0, expressionStr, expressionValue), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotNil(test, expression, expressionStr, ...) \ +({ \ + @try { \ + id expressionValue = (expression); \ + if (expressionValue == nil) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertTrue(test, expression, expressionStr, ...) \ +({ \ + @try { \ + BOOL expressionValue = !!(expression); \ + if (!expressionValue) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_True, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_True, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_True, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertFalse(test, expression, expressionStr, ...) \ +({ \ + @try { \ + BOOL expressionValue = !!(expression); \ + if (expressionValue) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_False, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_False, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_False, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqualObjects(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + id expressionValue1 = (expression1); \ + id expressionValue2 = (expression2); \ + if ((expressionValue1 != expressionValue2) && ![expressionValue1 isEqual:expressionValue2]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 0, expressionStr1, expressionStr2, expressionValue1, expressionValue2), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqualObjects(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + id expressionValue1 = (expression1); \ + id expressionValue2 = (expression2); \ + if ((expressionValue1 == expressionValue2) || [expressionValue1 isEqual:expressionValue2]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 0, expressionStr1, expressionStr2, expressionValue1, expressionValue2), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 != expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 == expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqualWithAccuracy(test, expression1, expressionStr1, expression2, expressionStr2, accuracy, accuracyStr, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + __typeof__(accuracy) accuracyValue = (accuracy); \ + if (isnan(expressionValue1) || isnan(expressionValue2) || ((MAX(expressionValue1, expressionValue2) - MIN(expressionValue1, expressionValue2)) > accuracyValue)) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + NSValue *accuracyBox = [NSValue value:&accuracyValue withObjCType:@encode(__typeof__(accuracy))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 0, expressionStr1, expressionStr2, accuracyStr, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2), _XCTDescriptionForValue(accuracyBox)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 1, expressionStr1, expressionStr2, accuracyStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 2, expressionStr1, expressionStr2, accuracyStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqualWithAccuracy(test, expression1, expressionStr1, expression2, expressionStr2, accuracy, accuracyStr, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + __typeof__(accuracy) accuracyValue = (accuracy); \ + if (!isnan(expressionValue1) && !isnan(expressionValue2) && ((MAX(expressionValue1, expressionValue2) - MIN(expressionValue1, expressionValue2)) <= accuracyValue)) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + NSValue *accuracyBox = [NSValue value:&accuracyValue withObjCType:@encode(__typeof__(accuracy))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 0, expressionStr1, expressionStr2, accuracyStr, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2), _XCTDescriptionForValue(accuracyBox)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 1, expressionStr1, expressionStr2, accuracyStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 2, expressionStr1, expressionStr2, accuracyStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertGreaterThan(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 <= expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertGreaterThanOrEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 < expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertLessThan(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 >= expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertLessThanOrEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 > expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrows(test, expression, expressionStr, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Throws, 0, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrowsSpecific(test, expression, expressionStr, exception_class, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + __didThrow = YES; \ + } \ + @catch (NSException *exception) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 0, expressionStr, @#exception_class, [exception class], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 1, expressionStr, @#exception_class), __VA_ARGS__); \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 2, expressionStr, @#exception_class), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrowsSpecificNamed(test, expression, expressionStr, exception_class, exception_name, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + __didThrow = YES; \ + if (![exception_name isEqualToString:[exception name]]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 0, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + } \ + @catch (NSException *exception) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 1, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 2, expressionStr, @#exception_class, exception_name), __VA_ARGS__); \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 3, expressionStr, @#exception_class, exception_name), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrow(test, expression, expressionStr, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (NSException *exception) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrow, 0, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrow, 1, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrowSpecific(test, expression, expressionStr, exception_class, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrowSpecific, 0, expressionStr, @#exception_class, [exception class], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + ; \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrowSpecificNamed(test, expression, expressionStr, exception_class, exception_name, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + if ([exception_name isEqualToString:[exception name]]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrowSpecificNamed, 0, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + } \ + @catch (...) { \ + ; \ + } \ +}) diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h new file mode 100644 index 00000000..e4b36c3a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h @@ -0,0 +1,231 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestExpectation + * + * @discussion + * Expectations represent specific conditions in asynchronous testing. + */ +@interface XCTestExpectation : NSObject { +#ifndef __OBJC2__ + id _internalImplementation; +#endif +} + +/*! + * @method -fulfill + * + * @discussion + * Call -fulfill to mark an expectation as having been met. It's an error to call + * -fulfill on an expectation that has already been fulfilled or when the test case + * that vended the expectation has already completed. + */ +- (void)fulfill; + +@end + +/*! + * @category AsynchronousTesting + * + * @discussion + * This category introduces support for asynchronous testing in XCTestCase. The mechanism + * allows you to specify one or more "expectations" that will occur asynchronously + * as a result of actions in the test. Once all expectations have been set, a "wait" + * API is called that will block execution of subsequent test code until all expected + * conditions have been fulfilled or a timeout occurs. + */ +@interface XCTestCase (AsynchronousTesting) + +/*! + * @method -expectationWithDescription: + * + * @param description + * This string will be displayed in the test log to help diagnose failures. + * + * @discussion + * Creates and returns an expectation associated with the test case. + */ +- (XCTestExpectation *)expectationWithDescription:(NSString *)description; + +/*! + * @typedef XCWaitCompletionHandler + * A block to be invoked when a call to -waitForExpectationsWithTimeout:handler: times out or has + * had all associated expectations fulfilled. + * + * @param error + * If the wait timed out or a failure was raised while waiting, the error's code + * will specify the type of failure. Otherwise error will be nil. + */ +#if XCT_NULLABLE_AVAILABLE +typedef void (^XCWaitCompletionHandler)(NSError * __nullable error); +#else +typedef void (^XCWaitCompletionHandler)(NSError *error); +#endif + +/*! + * @method -waitForExpectationsWithTimeout:handler: + * + * @param timeout + * The amount of time within which all expectations must be fulfilled. + * + * @param handler + * If provided, the handler will be invoked both on timeout or fulfillment of all + * expectations. Timeout is always treated as a test failure. + * + * @discussion + * -waitForExpectationsWithTimeout:handler: creates a point of synchronization in the flow of a + * test. Only one -waitForExpectationsWithTimeout:handler: can be active at any given time, but + * multiple discrete sequences of { expectations -> wait } can be chained together. + * + * -waitForExpectationsWithTimeout:handler: runs the run loop while handling events until all expectations + * are fulfilled or the timeout is reached. Clients should not manipulate the run + * loop while using this API. + */ +#if XCT_NULLABLE_AVAILABLE +- (void)waitForExpectationsWithTimeout:(NSTimeInterval)timeout handler:(nullable XCWaitCompletionHandler)handler; +#else +- (void)waitForExpectationsWithTimeout:(NSTimeInterval)timeout handler:(XCWaitCompletionHandler)handler; +#endif + +#pragma mark Convenience APIs + +/*! + * @method -keyValueObservingExpectationForObject:keyPath:expectedValue: + * + * @discussion + * A convenience method for asynchronous tests that use Key Value Observing to detect changes + * to values on an object. This variant takes an expected value and observes changes on the object + * until the keyPath's value matches the expected value using -[NSObject isEqual:]. If + * other comparisions are needed, use the variant below that takes a handler block. + * + * @param objectToObserve + * The object to observe. + * + * @param keyPath + * The key path to observe. + * + * @param expectedValue + * Expected value of the keyPath for the object. The expectation will fulfill itself when the + * keyPath is equal, as tested using -[NSObject isEqual:]. If nil, the expectation will be + * fulfilled by the first change to the key path of the observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath expectedValue:(nullable id)expectedValue; +#else +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath expectedValue:(id)expectedValue; +#endif + +/*! + * @typedef + * A block to be invoked when a change is observed for the keyPath of the observed object. + * + * @param observedObject + * The observed object, provided to avoid block capture issues. + * + * @param change + * The KVO change dictionary. + * + * @return + * Return YES if the expectation is fulfilled, NO if it is not. + */ +typedef BOOL (^XCKeyValueObservingExpectationHandler)(id observedObject, NSDictionary *change); + +/*! + * @method -keyValueObservingExpectationForObject:keyPath:handler: + * + * @discussion + * Variant of the convenience for tests that use Key Value Observing. Takes a handler + * block instead of an expected value. Every KVO change will run the handler block until + * it returns YES (or the wait times out). Returning YES from the block will fulfill the + * expectation. XCTAssert and related APIs can be used in the block to report a failure. + * + * @param objectToObserve + * The object to observe. + * + * @param keyPath + * The key path to observe. + * + * @param handler + * Optional handler, /see XCKeyValueObservingExpectationHandler. If not provided, the expectation will + * be fulfilled by the first change to the key path of the observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath handler:(nullable XCKeyValueObservingExpectationHandler)handler; +#else +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath handler:(XCKeyValueObservingExpectationHandler)handler; +#endif + +/*! + * @typedef + * A block to be invoked when a notification matching the specified name is observed + * from the object. + * + * @param notification + * The notification object. + * + * @return + * Return YES if the expectation is fulfilled, NO if it is not. + */ +typedef BOOL (^XCNotificationExpectationHandler)(NSNotification *notification); + +/*! + * @method -expectationForNotification:object:handler: + * + * @discussion + * A convenience method for asynchronous tests that observe NSNotifications. + * + * @param notificationName + * The notification to register for. + * + * @param objectToObserve + * The object to observe. + * + * @param handler + * Optional handler, /see XCNotificationExpectationHandler. If not provided, the expectation + * will be fulfilled by the first notification matching the specified name from the + * observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)expectationForNotification:(NSString *)notificationName object:(nullable id)objectToObserve handler:(nullable XCNotificationExpectationHandler)handler; +#else +- (XCTestExpectation *)expectationForNotification:(NSString *)notificationName object:(id)objectToObserve handler:(XCNotificationExpectationHandler)handler; +#endif + +/*! + * @typedef + * Handler called when evaluating the predicate against the object returns true. If the handler is not + * provided the first successful evaluation will fulfill the expectation. If provided, the handler can + * override that behavior which leaves the caller responsible for fulfilling the expectation. + */ +typedef BOOL (^XCPredicateExpectationHandler)(); + +/*! + * @method -expectationForPredicate:evaluatedWithObject:handler: + * Creates an expectation that is fulfilled if the predicate returns true when evaluated with the given + * object. The expectation periodically evaluates the predicate and also may use notifications or other + * events to optimistically re-evaluate. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)expectationForPredicate:(NSPredicate *)predicate evaluatedWithObject:(id)object handler:(nullable XCPredicateExpectationHandler)handler; +#else +- (XCTestExpectation *)expectationForPredicate:(NSPredicate *)predicate evaluatedWithObject:(id)object handler:(XCPredicateExpectationHandler)handler; +#endif + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h new file mode 100644 index 00000000..b8b8cf9d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h @@ -0,0 +1,317 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestSuite; +@class XCTestCaseRun; + +#if XCT_UI_TESTING_AVAILABLE +@class XCUIElement; +#endif + +/*! + * @class XCTestCase + * XCTestCase is a concrete subclass of XCTest that should be the override point for + * most developers creating tests for their projects. A test case subclass can have + * multiple test methods and supports setup and tear down that executes for every test + * method as well as class level setup and tear down. + * + * To define a test case: + * + * • Create a subclass of XCTestCase. + * • Implement -test methods. + * • Optionally define instance variables or properties that store the state of the test. + * • Optionally initialize state by overriding -setUp + * • Optionally clean-up after a test by overriding -tearDown. + * + * Test methods are instance methods meeting these requirements: + * • accepting no parameters + * • returning no value + * • prefixed with 'test' + * + * For example: + + - (void)testSomething; + + * Test methods are automatically recognized as test cases by the XCTest framework. + * Each XCTestCase subclass's defaultTestSuite is a XCTestSuite which includes these + * tests. Test method implementations usually contain assertions that must be verified + * for the test to pass, for example: + + @interface MathTest : XCTestCase { + @private + float f1; + float f2; + } + + - (void)testAddition; + + @end + + @implementation MathTest + + - (void)setUp + { + f1 = 2.0; + f2 = 3.0; + } + + - (void)testAddition + { + XCTAssertTrue (f1 + f2 == 5.0); + } + @end + */ +@interface XCTestCase : XCTest { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + +/*! + * @method +testCaseWithInvocation: + */ +#if XCT_NULLABLE_AVAILABLE ++ (instancetype)testCaseWithInvocation:(nullable NSInvocation *)invocation; +#else ++ (instancetype)testCaseWithInvocation:(NSInvocation *)invocation; +#endif + +/*! + * @method -initWithInvocation: + */ +#if XCT_NULLABLE_AVAILABLE +- (instancetype)initWithInvocation:(nullable NSInvocation *)invocation; +#else +- (instancetype)initWithInvocation:(NSInvocation *)invocation; +#endif + +/*! + * @method +testCaseWithSelector: + */ ++ (instancetype)testCaseWithSelector:(SEL)selector; + +/*! + * @method -initWithSelector: + */ +- (instancetype)initWithSelector:(SEL)selector; + +/*! + * @property invocation + * The invocation used when this test is run. + */ +#if XCT_NULLABLE_AVAILABLE +@property (strong, nullable) NSInvocation *invocation; +#else +@property (strong) NSInvocation *invocation; +#endif + +/*! + * @method -invokeTest + * Invoking a test performs its setUp, invocation, and tearDown. In general this + * should not be called directly. + */ +- (void)invokeTest; + +/*! + * @property continueAfterFailure + * The test case behavior after a failure. Defaults to YES. + */ +@property BOOL continueAfterFailure; + +/*! + * @method -recordFailureWithDescription:inFile:atLine:expected: + * Records a failure in the execution of the test and is used by all test assertions. + * + * @param description The description of the failure being reported. + * + * @param filePath The file path to the source file where the failure being reported + * was encountered. + * + * @param lineNumber The line number in the source file at filePath where the + * failure being reported was encountered. + * + * @param expected YES if the failure being reported was the result of a failed assertion, + * NO if it was the result of an uncaught exception. + * + */ +- (void)recordFailureWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; + +/*! + * @method +testInvocations + * Invocations for each test method in the test case. + */ +#if XCT_GENERICS_AVAILABLE ++ (NSArray *)testInvocations; +#else ++ (NSArray *)testInvocations; +#endif + +#pragma mark - Measuring Performance Metrics + +/*! + * @const XCTPerformanceMetric_WallClockTime + * Records wall clock time in seconds between startMeasuring/stopMeasuring. + */ +XCT_EXPORT NSString * const XCTPerformanceMetric_WallClockTime; + +/*! + * @method +defaultPerformanceMetrics + * The names of the performance metrics to measure when invoking -measureBlock:. Returns XCTPerformanceMetric_WallClockTime by default. Subclasses can override this to change the behavior of -measureBlock: + */ +#if XCT_GENERICS_AVAILABLE ++ (NSArray *)defaultPerformanceMetrics; +#else ++ (NSArray *)defaultPerformanceMetrics; +#endif + +/*! + * @method -measureBlock: + * + * Call from a test method to measure resources (+defaultPerformanceMetrics) used by the + * block in the current process. + + - (void)testPerformanceOfMyFunction { + + [self measureBlock:^{ + // Do that thing you want to measure. + MyFunction(); + }]; + } + + * @param block A block whose performance to measure. + */ +- (void)measureBlock:(void (^)(void))block; + +/*! + * @method -measureMetrics:automaticallyStartMeasuring:forBlock: + * + * Call from a test method to measure resources (XCTPerformanceMetrics) used by the + * block in the current process. Each metric will be measured across calls to the block. + * The number of times the block will be called is undefined and may change in the + * future. For one example of why, as long as the requested performance metrics do + * not interfere with each other the API will measure all metrics across the same + * calls to the block. If the performance metrics may interfere the API will measure + * them separately. + + - (void)testMyFunction2_WallClockTime { + [self measureMetrics:[[self class] defaultPerformanceMetrics] automaticallyStartMeasuring:NO forBlock:^{ + + // Do setup work that needs to be done for every iteration but you don't want to measure before the call to -startMeasuring + SetupSomething(); + [self startMeasuring]; + + // Do that thing you want to measure. + MyFunction(); + [self stopMeasuring]; + + // Do teardown work that needs to be done for every iteration but you don't want to measure after the call to -stopMeasuring + TeardownSomething(); + }]; + } + + * Caveats: + * • If YES was passed for automaticallyStartMeasuring and -startMeasuring is called + * anyway, the test will fail. + * • If NO was passed for automaticallyStartMeasuring then -startMeasuring must be + * called once and only once before the end of the block or the test will fail. + * • If -stopMeasuring is called multiple times during the block the test will fail. + * + * @param metrics An array of NSStrings (XCTPerformanceMetrics) to measure. Providing an unrecognized string is a test failure. + * + * @param automaticallyStartMeasuring If NO, XCTestCase will not take any measurements until -startMeasuring is called. + * + * @param block A block whose performance to measure. + */ +#if XCT_GENERICS_AVAILABLE +- (void)measureMetrics:(NSArray *)metrics automaticallyStartMeasuring:(BOOL)automaticallyStartMeasuring forBlock:(void (^)(void))block; +#else +- (void)measureMetrics:(NSArray *)metrics automaticallyStartMeasuring:(BOOL)automaticallyStartMeasuring forBlock:(void (^)(void))block; +#endif + +/*! + * @method -startMeasuring + * Call this from within a measure block to set the beginning of the critical section. + * Measurement of metrics will start at this point. + */ +- (void)startMeasuring; + +/*! + * @method -stopMeasuring + * Call this from within a measure block to set the ending of the critical section. + * Measurement of metrics will stop at this point. + */ +- (void)stopMeasuring; + +#pragma mark - UI Testing Support +#if XCT_UI_TESTING_AVAILABLE + +/*! Adds a handler to the current context. Returns a token that can be used to unregister the handler. Handlers are invoked in the reverse order in which they are added until one of the handlers returns true, indicating that it has handled the alert. + @param handlerDescription Explanation of the behavior and purpose of this handler, mainly used for debugging and analysis. + @param handler Handler block for asynchronous UI such as alerts and other dialogs. Handlers should return true if they handled the UI, false if they did not. The handler is passed an XCUIElement representing the top level UI element for the alert. + */ +- (id )addUIInterruptionMonitorWithDescription:(NSString *)handlerDescription handler:(BOOL (^)(XCUIElement *interruptingElement))handler; + +/*! Removes a handler using the token provided when it was added. */ +- (void)removeUIInterruptionMonitor:(id )monitor; + +#endif + +@end + +@interface XCTestCase (XCTestSuiteExtensions) + +/*! + * @method +defaultTestSuite + * Returns a test suite containing test cases for all of the tests in the class. + */ ++ (XCTestSuite *)defaultTestSuite; + +/*! + * @method +setUp + * Setup method called before the invocation of any test method in the class. + */ ++ (void)setUp; + +/*! + * @method +testDown + * Teardown method called after the invocation of every test method in the class. + */ ++ (void)tearDown; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h new file mode 100644 index 00000000..b530349f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h @@ -0,0 +1,44 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestCase; + +@interface XCTestCaseRun : XCTestRun + +- (void)recordFailureInTest:(XCTestCase *)testCase withDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected DEPRECATED_ATTRIBUTE; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h new file mode 100644 index 00000000..d6b8b96a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h @@ -0,0 +1,70 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +#if defined(__cplusplus) + #define XCT_EXPORT extern "C" +#else + #define XCT_EXPORT extern +#endif + +#if __has_feature(objc_generics) +#define XCT_GENERICS_AVAILABLE 1 +#endif + +#if __has_feature(nullability) +#define XCT_NULLABLE_AVAILABLE 1 +#endif + +#if (!defined(__OBJC_GC__) || (defined(__OBJC_GC__) && ! __OBJC_GC__)) && (defined(__OBJC2__) && __OBJC2__) && (!defined (TARGET_OS_WATCH) || (defined(TARGET_OS_WATCH) && ! TARGET_OS_WATCH)) +#ifndef XCT_UI_TESTING_AVAILABLE +#define XCT_UI_TESTING_AVAILABLE 1 +#endif +#endif + +#ifndef XCT_NULLABLE_AVAILABLE +#define XCT_NULLABLE_AVAILABLE 0 +#endif + +#ifndef XCT_GENERICS_AVAILABLE +#define XCT_GENERICS_AVAILABLE 0 +#endif + +#ifndef XCT_UI_TESTING_AVAILABLE +#define XCT_UI_TESTING_AVAILABLE 0 +#endif + +#if TARGET_OS_SIMULATOR +#define XCTEST_SIMULATOR_UNAVAILABLE(_msg) __attribute__((availability(ios,unavailable,message=_msg))) +#else +#define XCTEST_SIMULATOR_UNAVAILABLE(_msg) +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h new file mode 100644 index 00000000..f1dc3981 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h @@ -0,0 +1,24 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +/*! + * @const XCTestErrorDomain + * Domain for errors provided by the XCTest framework. + */ +XCT_EXPORT NSString *const XCTestErrorDomain; + +/*! + * @typedef XCTestErrorCode + * Error codes used with errors in the XCTestErrorDomain. + * + * @constant XCTestErrorCodeTimeoutWhileWaiting Indicates that a call to -waitForExpectationsWithTimeout:handler: timed out. + * @constant XCTestErrorCodeFailureWhileWaiting Indicates that a failure assertion was raised while waiting in -waitForExpectationsWithTimeout:handler:. + */ +typedef NS_ENUM(NSInteger, XCTestErrorCode) { + XCTestErrorCodeTimeoutWhileWaiting, + XCTestErrorCodeFailureWhileWaiting, +}; + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestExpectation.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestExpectation.h new file mode 100644 index 00000000..73cd5ad5 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestExpectation.h @@ -0,0 +1,33 @@ +// +// Copyright (c) 2016 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestExpectation + * + * @discussion + * Expectations represent specific conditions in asynchronous testing. + */ +@interface XCTestExpectation : NSObject { +#ifndef __OBJC2__ + id _internalImplementation; +#endif +} + +/*! + * @method -fulfill + * + * @discussion + * Call -fulfill to mark an expectation as having been met. It's an error to call + * -fulfill on an expectation that has already been fulfilled or when the test case + * that vended the expectation has already completed. + */ +- (void)fulfill; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h new file mode 100644 index 00000000..226a96f1 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h @@ -0,0 +1,49 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +/*! + * XCTestLog is deprecated. + */ + +DEPRECATED_ATTRIBUTE +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" +@interface XCTestLog : XCTestObserver +#pragma clang diagnostic pop + +@property (readonly, strong) NSFileHandle *logFileHandle; +- (void)testLogWithFormat:(NSString *)format, ... NS_FORMAT_FUNCTION(1,2); +- (void)testLogWithFormat:(NSString *)format arguments:(va_list)arguments NS_FORMAT_FUNCTION(1,0); + +@end + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h new file mode 100644 index 00000000..127daa05 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h @@ -0,0 +1,122 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestSuite, XCTestCase; + +/*! + * @protocol XCTestObservation + * + * Objects conforming to XCTestObservation can register to be notified of the progress of test runs. See XCTestObservationCenter + * for details on registration. + * + * Progress events are delivered in the following sequence: + * + * -testBundleWillStart: // exactly once per test bundle + * -testSuiteWillStart: // exactly once per test suite + * -testCaseWillStart: // exactly once per test case + * -testCase:didFailWithDescription:... // zero or more times per test case, any time between test case start and finish + * -testCaseDidFinish: // exactly once per test case + * -testSuite:didFailWithDescription:... // zero or more times per test suite, any time between test suite start and finish + * -testSuiteDidFinish: // exactly once per test suite + * -testBundleDidFinish: // exactly once per test bundle + */ +@protocol XCTestObservation +@optional + +/*! + * @method -testBundleWillStart: + * + * Sent immediately before tests begin as a hook for any pre-testing setup. + * + * @param testBundle The bundle containing the tests that were executed. + */ +- (void)testBundleWillStart:(NSBundle *)testBundle; + +/*! + * @method -testBundleDidFinish: + * + * Sent immediately after all tests have finished as a hook for any post-testing activity. The test process will generally + * exit after this method returns, so if there is long running and/or asynchronous work to be done after testing, be sure + * to implement this method in a way that it blocks until all such activity is complete. + * + * @param testBundle The bundle containing the tests that were executed. + */ +- (void)testBundleDidFinish:(NSBundle *)testBundle; + +/*! + * @method -testSuiteWillStart: + * + * Sent when a test suite starts executing. + * + * @param testSuite The test suite that started. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testSuiteWillStart:(XCTestSuite *)testSuite; + +/*! + * @method -testSuiteDidFail:withDescription:inFile:atLine: + * + * Sent when a test suite reports a failure. Suite failures are most commonly reported during suite-level setup and teardown + * whereas failures during tests are reported for the test case alone and are not reported as suite failures. + * + * @param testSuite The test suite that failed. Additional information can be retrieved from the associated XCTestRun. + * @param description A textual description of the failure. + * @param filePath The path of file where the failure occurred, nil if unknown. + * @param lineNumber The line where the failure was reported. + */ +#if XCT_NULLABLE_AVAILABLE +- (void)testSuite:(XCTestSuite *)testSuite didFailWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber; +#else +- (void)testSuite:(XCTestSuite *)testSuite didFailWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; +#endif + +/*! + * @method -testSuiteDidFinish: + * + * Sent when a test suite finishes executing. + * + * @param testSuite The test suite that finished. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testSuiteDidFinish:(XCTestSuite *)testSuite; + +/*! + * @method -testCaseWillStart: + * + * Sent when a test case starts executing. + * + * @param testCase The test case that started. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testCaseWillStart:(XCTestCase *)testCase; + +/*! + * @method -testCaseDidFail:withDescription:inFile:atLine: + * + * Sent when a test case reports a failure. + * + * @param testCase The test case that failed. Additional information can be retrieved from the associated XCTestRun. + * @param description A textual description of the failure. + * @param filePath The path of file where the failure occurred, nil if unknown. + * @param lineNumber The line where the failure was reported. + */ +#if XCT_NULLABLE_AVAILABLE +- (void)testCase:(XCTestCase *)testCase didFailWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber; +#else +- (void)testCase:(XCTestCase *)testCase didFailWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; +#endif + +/*! + * @method -testCaseDidFinish: + * + * Sent when a test case finishes executing. + * + * @param testCase The test case that finished. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testCaseDidFinish:(XCTestCase *)testCase; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h new file mode 100644 index 00000000..961bf06d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h @@ -0,0 +1,59 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestObservationCenter + * + * The XCTestObservationCenter distributes information about the progress of test runs to registered + * observers. Observers can be any object conforming to the XCTestObservation protocol. + * + * If an NSPrincipalClass is declared in the test bundle's Info.plist, XCTest automatically creates a + * single instance of that class when the test bundle is loaded. This instance provides a means to register + * observers or do other pretesting global set up. + * + * Observers must be registered manually. The NSPrincipalClass instance is not automatically + * registered as an observer even if the class conforms to . + */ +@interface XCTestObservationCenter : NSObject { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + +/*! + * @method +sharedTestObservationCenter + * + * @return The shared XCTestObservationCenter singleton instance. + */ ++ (XCTestObservationCenter *)sharedTestObservationCenter; + +/*! + * @method -addTestObserver: + * + * Register an object conforming to XCTestObservation as an observer for the current test session. Observers may be added + * at any time, but will not receive events that occurred before they were registered. The observation center maintains a strong + * reference to observers. + * + * Events may be delivered to observers in any order - given observers A and B, A may be notified of a test failure before + * or after B. Any ordering dependencies or serialization requirements must be managed by clients. + */ +- (void)addTestObserver:(id )testObserver; + +/*! + * @method -removeTestObserver: + * + * Unregister an object conforming to XCTestObservation as an observer for the current test session. + */ +- (void)removeTestObserver:(id )testObserver; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h new file mode 100644 index 00000000..839c5775 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h @@ -0,0 +1,55 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +@class XCTestRun; + +/*! + * XCTestObserver is deprecated. + */ +DEPRECATED_ATTRIBUTE +@interface XCTestObserver : NSObject + +- (void)startObserving; +- (void)stopObserving; +- (void)testSuiteDidStart:(XCTestRun *)testRun; +- (void)testSuiteDidStop:(XCTestRun *)testRun; +- (void)testCaseDidStart:(XCTestRun *)testRun; +- (void)testCaseDidStop:(XCTestRun *)testRun; +- (void)testCaseDidFail:(XCTestRun *)testRun withDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; + +@end + +/*! + * XCTestObserverClassKey is deprecated. + */ +XCT_EXPORT NSString * const XCTestObserverClassKey DEPRECATED_ATTRIBUTE; diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h new file mode 100644 index 00000000..1f5455ed --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h @@ -0,0 +1,50 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +#import + +XCT_EXPORT int XCTSelfTestMain(void) DEPRECATED_ATTRIBUTE; + +DEPRECATED_ATTRIBUTE +@interface XCTestProbe : NSObject + ++ (BOOL)isTesting; + +@end + +XCT_EXPORT NSString * const XCTestedUnitPath DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeKey DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeAll DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeNone DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeSelf DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestToolKey DEPRECATED_ATTRIBUTE; diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h new file mode 100644 index 00000000..7e22b4fd --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h @@ -0,0 +1,180 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestRun + * A test run collects information about the execution of a test. Failures in explicit + * test assertions are classified as "expected", while failures from unrelated or + * uncaught exceptions are classified as "unexpected". + */ +@interface XCTestRun : NSObject { +#ifndef __OBJC2__ +@private + id _internalTestRun; +#endif +} + +/*! + * @method +testRunWithTest: + * Class factory method for the XCTestRun class. + * + * @param test An XCTest instance. + * + * @return A test run for the provided test. + */ ++ (instancetype)testRunWithTest:(XCTest *)test; + +/*! + * @method -initWithTest: + * Designated initializer for the XCTestRun class. + * + * @param test An XCTest instance. + * + * @return A test run for the provided test. + */ +- (instancetype)initWithTest:(XCTest *)test NS_DESIGNATED_INITIALIZER; + +/*! + * @property test + * The test instance provided when the test run was initialized. + */ +@property (readonly, strong) XCTest *test; + +/*! + * @method -start + * Start a test run. Must not be called more than once. + */ +- (void)start; + +/*! + * @method -stop + * Stop a test run. Must not be called unless the run has been started. Must not be called more than once. + */ +- (void)stop; + +/*! + * @property startDate + * The time at which the test run was started, or nil. + */ +#if XCT_NULLABLE_AVAILABLE +@property (readonly, copy, nullable) NSDate *startDate; +#else +@property (readonly, copy) NSDate *startDate; +#endif + +/*! + * @property stopDate + * The time at which the test run was stopped, or nil. + */ +#if XCT_NULLABLE_AVAILABLE +@property (readonly, copy, nullable) NSDate *stopDate; +#else +@property (readonly, copy) NSDate *stopDate; +#endif + +/*! + * @property totalDuration + * The number of seconds that elapsed between when the run was started and when it was stopped. + */ +@property (readonly) NSTimeInterval totalDuration; + +/*! + * @property testDuration + * The number of seconds that elapsed between when the run was started and when it was stopped. + */ +@property (readonly) NSTimeInterval testDuration; + +/*! + * @property testCaseCount + * The number of tests in the run. + */ +@property (readonly) NSUInteger testCaseCount; + +/*! + * @property executionCount + * The number of test executions recorded during the run. + */ +@property (readonly) NSUInteger executionCount; + +/*! + * @property failureCount + * The number of test failures recorded during the run. + */ +@property (readonly) NSUInteger failureCount; + +/*! + * @property unexpectedExceptionCount + * The number of uncaught exceptions recorded during the run. + */ +@property (readonly) NSUInteger unexpectedExceptionCount; + +/*! + * @property totalFailureCount + * The total number of test failures and uncaught exceptions recorded during the run. + */ +@property (readonly) NSUInteger totalFailureCount; + +/*! + * @property hasSucceeded + * YES if all tests in the run completed their execution without recording any failures, otherwise NO. + */ +@property (readonly) BOOL hasSucceeded; + +/*! + * @method -recordFailureWithDescription:inFile:atLine:expected: + * Records a failure in the execution of the test for this test run. Must not be called + * unless the run has been started. Must not be called if the test run has been stopped. + * + * @param description The description of the failure being reported. + * + * @param filePath The file path to the source file where the failure being reported + * was encountered or nil if unknown. + * + * @param lineNumber The line number in the source file at filePath where the + * failure being reported was encountered. + * + * @param expected YES if the failure being reported was the result of a failed assertion, + * NO if it was the result of an uncaught exception. + * + */ +#if XCT_NULLABLE_AVAILABLE +- (void)recordFailureWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; +#else +- (void)recordFailureWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; +#endif + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h new file mode 100644 index 00000000..6d95c4ba --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h @@ -0,0 +1,90 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestSuite + * A concrete subclass of XCTest, XCTestSuite is a collection of test cases. Suites + * are usually managed by the IDE, but XCTestSuite also provides API for dynamic test + * and suite management: + + XCTestSuite *suite = [XCTestSuite testSuiteWithName:@"My tests"]; + [suite addTest:[MathTest testCaseWithSelector:@selector(testAdd)]]; + [suite addTest:[MathTest testCaseWithSelector:@selector(testDivideByZero)]]; + + * Alternatively, a test suite can extract the tests to be run automatically. To do so, + * pass the class of your test case class to the suite's constructor: + + XCTestSuite *suite = [XCTestSuite testSuiteForTestCaseClass:[MathTest class]]; + + * This creates a suite with all the methods starting with "test" that take no arguments. + * Also, a test suite of all the test cases found in the runtime can be created automatically: + + XCTestSuite *suite = [XCTestSuite defaultTestSuite]; + + * This creates a suite of suites with all the XCTestCase subclasses methods that start + * with "test" and take no arguments. + */ +@interface XCTestSuite : XCTest { +#ifndef __OBJC2__ +@private + NSString *_name; +#if XCT_GENERICS_AVAILABLE + NSMutableArray <__kindof XCTest *> *_tests; +#else + NSMutableArray *_tests; +#endif +#endif +} + ++ (instancetype)defaultTestSuite; ++ (instancetype)testSuiteForBundlePath:(NSString *)bundlePath; ++ (instancetype)testSuiteForTestCaseWithName:(NSString *)name; ++ (instancetype)testSuiteForTestCaseClass:(Class)testCaseClass; + ++ (instancetype)testSuiteWithName:(NSString *)name; +- (instancetype)initWithName:(NSString *)name; + +- (void)addTest:(XCTest *)test; + +#if XCT_GENERICS_AVAILABLE +@property (readonly, copy) NSArray <__kindof XCTest *> *tests; +#else +@property (readonly, copy) NSArray *tests; +#endif + +@end + +NS_ASSUME_NONNULL_END + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h new file mode 100644 index 00000000..22b4a397 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h @@ -0,0 +1,57 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface XCTestSuiteRun : XCTestRun { +#ifndef __OBJC2__ +@private +#if XCT_GENERICS_AVAILABLE + NSMutableArray *_testRuns; +#else + NSMutableArray *_testRuns; +#endif +#endif +} + +#if XCT_GENERICS_AVAILABLE +@property (readonly, copy) NSArray *testRuns; +#else +@property (readonly, copy) NSArray *testRuns; +#endif + +- (void)addTestRun:(XCTestRun *)testRun; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h new file mode 100644 index 00000000..0b3b67cc --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h @@ -0,0 +1,54 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +NS_CLASS_AVAILABLE(10_11, 9_0) + +/*! Proxy for an application. The information identifying the application is specified in the Xcode target settings as the "Target Application". */ +@interface XCUIApplication : XCUIElement + +/*! + * Launches the application. This call is synchronous and when it returns the application is launched + * and ready to handle user events. Any failure in the launch sequence is reported as a test failure + * and halts the test at this point. If the application is already running, this call will first + * terminate the existing instance to ensure clean state of the launched instance. + */ +- (void)launch; + +/*! + * Terminates any running instance of the application. If the application has an existing debug session + * via Xcode, the termination is implemented as a halt via that debug connection. Otherwise, a SIGKILL + * is sent to the process. + */ +- (void)terminate; + +/*! + * The arguments that will be passed to the application on launch. If not modified, these are the + * arguments that Xcode will pass on launch. Those arguments can be changed, added to, or removed. + * Unlike NSTask, it is legal to modify these arguments after the application has been launched. These + * changes will not affect the current launch session, but will take effect the next time the application + * is launched. + */ +@property (nonatomic, copy) NSArray *launchArguments; + +/*! + * The environment that will be passed to the application on launch. If not modified, this is the + * environment that Xcode will pass on launch. Those variables can be changed, added to, or removed. + * Unlike NSTask, it is legal to modify the environment after the application has been launched. These + * changes will not affect the current launch session, but will take effect the next time the application + * is launched. + */ +@property (nonatomic, copy) NSDictionary *launchEnvironment; + +@end + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h new file mode 100644 index 00000000..c7f7584b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h @@ -0,0 +1,55 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if TARGET_OS_IPHONE +#import +#else +#import +#endif + + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE && !TARGET_OS_TV + +@class XCUIElement; + +NS_CLASS_AVAILABLE(10_11, 9_0) + +/*! A coordinate represents a location on screen, relative to some element. Coordinates are dynamic, just like the elements to which they refer, and may compute different screen locations at different times, or be invalid if the referenced element does not exist. */ +@interface XCUICoordinate : NSObject + +/*! Coordinates are never instantiated directly. Instead, they are created by elements or by other coordinates. */ +- (instancetype)init NS_UNAVAILABLE; + +/*! The element that the coordinate is based on, either directly or via the coordinate from which it was derived. */ +@property (readonly) XCUIElement *referencedElement; + +/*! The dynamically computed value of the coordinate's location on screen. Note that this value is dependent on the current frame of the referenced element; if the element's frame changes, so will the value returned by this property. If the referenced element does exist when this is called, it will fail the test; check the referenced element's exists property if the element may not be present. */ +@property (readonly) CGPoint screenPoint; + +/*! Creates a new coordinate with an absolute offset in points from the original coordinate. */ +- (XCUICoordinate *)coordinateWithOffset:(CGVector)offsetVector; + +#if TARGET_OS_IPHONE +- (void)tap; +- (void)doubleTap; +- (void)pressForDuration:(NSTimeInterval)duration; +- (void)pressForDuration:(NSTimeInterval)duration thenDragToCoordinate:(XCUICoordinate *)otherCoordinate; +#else +- (void)hover; +- (void)click; +- (void)doubleClick; +- (void)rightClick; +- (void)clickForDuration:(NSTimeInterval)duration thenDragToCoordinate:(XCUICoordinate *)otherCoordinate; +- (void)scrollByDeltaX:(CGFloat)deltaX deltaY:(CGFloat)deltaY; +#endif + +@end + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h new file mode 100644 index 00000000..00585f25 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h @@ -0,0 +1,57 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +#if TARGET_OS_IPHONE + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @enum XCUIDeviceButton + * + * Represents a physical button on a device. + * + * @note Some buttons are not available in the Simulator, and should not be used in your tests. + * You can use a block like this: + * + * #if !TARGET_OS_SIMULATOR + * // test code that depends on buttons not available in the Simulator + * #endif + * + * in your test code to ensure it does not call unavailable APIs. + */ +typedef NS_ENUM(NSInteger, XCUIDeviceButton) { + XCUIDeviceButtonHome = 1, + XCUIDeviceButtonVolumeUp XCTEST_SIMULATOR_UNAVAILABLE("This API is not available in the Simulator, see the XCUIDeviceButton documentation for details.") = 2, + XCUIDeviceButtonVolumeDown XCTEST_SIMULATOR_UNAVAILABLE("This API is not available in the Simulator, see the XCUIDeviceButton documentation for details.") = 3 +}; + +/*! Represents a device, providing an interface for simulating events involving physical buttons and device state. */ +NS_CLASS_AVAILABLE(NA, 9_0) +@interface XCUIDevice : NSObject + +/*! The current device. */ ++ (XCUIDevice *)sharedDevice; + +#if TARGET_OS_IOS +/*! The orientation of the device. */ +@property (nonatomic) UIDeviceOrientation orientation; +#endif + +/*! Simulates the user pressing a physical button. */ +- (void)pressButton:(XCUIDeviceButton)button; + +@end + +NS_ASSUME_NONNULL_END + +#endif + +#endif + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h new file mode 100644 index 00000000..ddd48af4 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h @@ -0,0 +1,261 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if TARGET_OS_IPHONE +#import +#else +#import +#endif + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +NS_ENUM_AVAILABLE(10_11, 9_0) +typedef NS_OPTIONS(NSUInteger, XCUIKeyModifierFlags) { + XCUIKeyModifierNone = 0, + XCUIKeyModifierAlphaShift = (1UL << 0), + XCUIKeyModifierShift = (1UL << 1), + XCUIKeyModifierControl = (1UL << 2), + XCUIKeyModifierAlternate = (1UL << 3), + XCUIKeyModifierOption = XCUIKeyModifierAlternate, + XCUIKeyModifierCommand = (1UL << 4), +}; + +@class XCUIElementQuery; +@class XCUICoordinate; + +/*! + * @class XCUIElement (/seealso XCUIElementAttributes) + * Elements are objects encapsulating the information needed to dynamically locate a user interface + * element in an application. Elements are described in terms of queries /seealso XCUIElementQuery. + */ +NS_CLASS_AVAILABLE(10_11, 9_0) +@interface XCUIElement : NSObject + +/*! Test to determine if the element exists. */ +@property (readonly) BOOL exists; + +/*! Whether or not a hit point can be computed for the element for the purpose of synthesizing events. */ +@property (readonly, getter = isHittable) BOOL hittable; + +/*! Returns a query for all descendants of the element matching the specified type. */ +- (XCUIElementQuery *)descendantsMatchingType:(XCUIElementType)type; + +/*! Returns a query for direct children of the element matching the specified type. */ +- (XCUIElementQuery *)childrenMatchingType:(XCUIElementType)type; + +#if !TARGET_OS_TV +/*! Creates and returns a new coordinate that will compute its screen point by adding the offset multiplied by the size of the element’s frame to the origin of the element’s frame. */ +- (XCUICoordinate *)coordinateWithNormalizedOffset:(CGVector)normalizedOffset; +#endif + +/*! + @discussion + Provides debugging information about the element. The data in the string will vary based on the + time at which it is captured, but it may include any of the following as well as additional data: + • Values for the elements attributes. + • The entire tree of descendants rooted at the element. + • The element's query. + This data should be used for debugging only - depending on any of the data as part of a test is unsupported. + */ +@property (readonly, copy) NSString *debugDescription; + +@end + +#pragma mark - Event Synthesis + +/*! + * @category Events + * Events that can be synthesized relative to an XCUIElement object. When an event API is called, the element + * will be resolved. If zero or multiple matches are found, an error will be raised. + */ +@interface XCUIElement (XCUIElementEventSynthesis) + +/*! + * Types a string into the element. The element or a descendant must have keyboard focus; otherwise an + * error is raised. + * + * This API discards any modifiers set in the current context by +performWithKeyModifiers:block: so that + * it strictly interprets the provided text. To input keys with modifier flags, use -typeKey:modifierFlags:. + */ +- (void)typeText:(NSString *)text; + +#if TARGET_OS_TV +#elif TARGET_OS_IOS + +/*! + * Sends a tap event to a hittable point computed for the element. + */ +- (void)tap; + +/*! + * Sends a double tap event to a hittable point computed for the element. + */ +- (void)doubleTap; + +/*! + * Sends a two finger tap event to a hittable point computed for the element. + */ +- (void)twoFingerTap; + +/*! + * Sends one or more taps with one of more touch points. + * + * @param numberOfTaps + * The number of taps. + * + * @param numberOfTouches + * The number of touch points. + */ +- (void)tapWithNumberOfTaps:(NSUInteger)numberOfTaps numberOfTouches:(NSUInteger)numberOfTouches; + +/*! + * Sends a long press gesture to a hittable point computed for the element, holding for the specified duration. + * + * @param duration + * Duration in seconds. + */ +- (void)pressForDuration:(NSTimeInterval)duration; + +/*! + * Initiates a press-and-hold gesture that then drags to another element, suitable for table cell reordering and similar operations. + * @param duration + * Duration of the initial press-and-hold. + * @param otherElement + * The element to finish the drag gesture over. In the example of table cell reordering, this would be the reorder element of the destination row. + */ +- (void)pressForDuration:(NSTimeInterval)duration thenDragToElement:(XCUIElement *)otherElement; + +/*! + * Sends a swipe-up gesture. + */ +- (void)swipeUp; + +/*! + * Sends a swipe-down gesture. + */ +- (void)swipeDown; + +/*! + * Sends a swipe-left gesture. + */ +- (void)swipeLeft; + +/*! + * Sends a swipe-right gesture. + */ +- (void)swipeRight; + +/*! + * Sends a pinching gesture with two touches. + * + * The system makes a best effort to synthesize the requested scale and velocity: absolute accuracy is not guaranteed. + * Some values may not be possible based on the size of the element's frame - these will result in test failures. + * + * @param scale + * The scale of the pinch gesture. Use a scale between 0 and 1 to "pinch close" or zoom out and a scale greater than 1 to "pinch open" or zoom in. + * + * @param velocity + * The velocity of the pinch in scale factor per second. + */ +- (void)pinchWithScale:(CGFloat)scale velocity:(CGFloat)velocity; + +/*! + * Sends a rotation gesture with two touches. + * + * The system makes a best effort to synthesize the requested rotation and velocity: absolute accuracy is not guaranteed. + * Some values may not be possible based on the size of the element's frame - these will result in test failures. + * + * @param rotation + * The rotation of the gesture in radians. + * + * @param velocity + * The velocity of the rotation gesture in radians per second. + */ +- (void)rotate:(CGFloat)rotation withVelocity:(CGFloat)velocity; + +#elif TARGET_OS_MAC + +/*! + * Moves the cursor over the element. + */ +- (void)hover; + +/*! + * Sends a click event to a hittable point computed for the element. + */ +- (void)click; + +/*! + * Sends a double click event to a hittable point computed for the element. + */ +- (void)doubleClick; + +/*! + * Sends a right click event to a hittable point computed for the element. + */ +- (void)rightClick; + +/*! + * Clicks and holds for a specified duration (generally long enough to start a drag operation) then drags + * to the other element. + */ +- (void)clickForDuration:(NSTimeInterval)duration thenDragToElement:(XCUIElement *)otherElement; + +/*! + * Hold modifier keys while the given block runs. This method pushes and pops the modifiers as global state + * without need for reference to a particular element. Inside the block, elements can be clicked on, dragged + * from, typed into, etc. + */ ++ (void)performWithKeyModifiers:(XCUIKeyModifierFlags)flags block:(void (^)(void))block; + +/*! + * Types a single key with the specified modifier flags. Although `key` is a string, it must represent + * a single key on a physical keyboard; strings that resolve to multiple keys will raise an error at runtime. + * In addition to literal string key representations like "a", "6", and "[", keys such as the arrow keys, + * command, control, option, and function keys can be typed using constants defined for them in XCUIKeyboardKeys.h + */ +- (void)typeKey:(NSString *)key modifierFlags:(XCUIKeyModifierFlags)flags; + +/*! + * Scroll the view the specified pixels, x and y. + */ +- (void)scrollByDeltaX:(CGFloat)deltaX deltaY:(CGFloat)deltaY; + +#endif + +@end + +/*! This category on XCUIElement provides functionality for automating UISlider and NSSlider. */ +@interface XCUIElement (XCUIElementTypeSlider) + +/*! Manipulates the UI to change the displayed value of the slider to one based on a normalized position. 0 corresponds to the minimum value of the slider, 1 corresponds to its maximum value. The adjustment is a "best effort" to move the indicator to the desired position; absolute fidelity is not guaranteed. */ +- (void)adjustToNormalizedSliderPosition:(CGFloat)normalizedSliderPosition; + +/*! Returns the position of the slider's indicator as a normalized value where 0 corresponds to the minimum value of the slider and 1 corresponds to its maximum value. */ +@property (readonly) CGFloat normalizedSliderPosition; + +@end + +#if TARGET_OS_IOS + +/*! This category on XCUIElement provides functionality for automating the picker wheels of UIPickerViews and UIDatePickers. */ +@interface XCUIElement (XCUIElementTypePickerWheel) + +/*! Changes the displayed value for the picker wheel. Will generate a test failure if the specified value is not available. */ +- (void)adjustToPickerWheelValue:(NSString *)pickerWheelValue; + +@end + +#endif + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h new file mode 100644 index 00000000..39b7818d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h @@ -0,0 +1,77 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import +#import + +#if XCT_UI_TESTING_AVAILABLE + +#if TARGET_OS_IPHONE + +#import + +typedef NS_ENUM(NSInteger, XCUIUserInterfaceSizeClass) { + XCUIUserInterfaceSizeClassUnspecified = UIUserInterfaceSizeClassUnspecified, + XCUIUserInterfaceSizeClassCompact = UIUserInterfaceSizeClassCompact, + XCUIUserInterfaceSizeClassRegular = UIUserInterfaceSizeClassRegular, +}; + +#else + +#import + +typedef NS_ENUM(NSInteger, XCUIUserInterfaceSizeClass) { + XCUIUserInterfaceSizeClassUnspecified = 0, +}; + +#endif + +NS_ASSUME_NONNULL_BEGIN + +/*! Protocol describing the attributes exposed on user interface elements and available during query matching. These attributes represent data exposed to the Accessibility system. */ +@protocol XCUIElementAttributes + +/*! The accessibility identifier. */ +@property (readonly) NSString *identifier; + +/*! The frame of the element in the screen coordinate space. */ +@property (readonly) CGRect frame; + +/*! The raw value attribute of the element. Depending on the element, the actual type can vary. */ +@property (readonly, nullable) id value; + +/*! The title attribute of the element. */ +@property (readonly, copy) NSString *title; + +/*! The label attribute of the element. */ +@property (readonly, copy) NSString *label; + +/*! The type of the element. /seealso XCUIElementType. */ +@property (readonly) XCUIElementType elementType; + +/*! Whether or not the element is enabled for user interaction. */ +@property (readonly, getter = isEnabled) BOOL enabled; + +/*! The horizontal size class of the element. */ +@property (readonly) XCUIUserInterfaceSizeClass horizontalSizeClass; + +/*! The vertical size class of the element. */ +@property (readonly) XCUIUserInterfaceSizeClass verticalSizeClass; + +/*! The value that is displayed when the element has no value. */ +@property (readonly, nullable) NSString *placeholderValue; + +/*! Whether or not the element is selected. */ +@property (readonly, getter = isSelected) BOOL selected; + +#if TARGET_OS_TV +/*! Whether or not the elment has UI focus. */ +@property (readonly) BOOL hasFocus; +#endif + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h new file mode 100644 index 00000000..bbc7f8d8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h @@ -0,0 +1,81 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +XCT_EXPORT NSString *XCUIIdentifierCloseWindow; +XCT_EXPORT NSString *XCUIIdentifierMinimizeWindow; +XCT_EXPORT NSString *XCUIIdentifierZoomWindow; +XCT_EXPORT NSString *XCUIIdentifierFullScreenWindow; + +@class XCUIElement; + +/*! Object for locating elements that can be chained with other queries. */ +NS_CLASS_AVAILABLE(10_11, 9_0) +@interface XCUIElementQuery : NSObject + +/*! Returns an element that will use the query for resolution. */ +@property (readonly) XCUIElement *element; + +/*! Evaluates the query at the time it is called and returns the number of matches found. */ +@property (readonly) NSUInteger count; + +/*! Returns an element that will resolve to the index into the query's result set. */ +- (XCUIElement *)elementAtIndex:(NSUInteger)index NS_DEPRECATED(10_11, 10_11, 9_0, 9_0, "Use elementBoundByIndex instead."); + +/*! Returns an element that will use the index into the query's results to determine which underlying accessibility element it is matched with. */ +- (XCUIElement *)elementBoundByIndex:(NSUInteger)index; + +/*! Returns an element that matches the predicate. The predicate will be evaluated against objects of type id. */ +- (XCUIElement *)elementMatchingPredicate:(NSPredicate *)predicate; + +/*! Returns an element that matches the type and identifier. */ +- (XCUIElement *)elementMatchingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; + +/*! Keyed subscripting is implemented as a shortcut for matching an identifier only. For example, app.descendants["Foo"] -> XCUIElement. */ +- (XCUIElement *)objectForKeyedSubscript:(NSString *)key; + +/*! Immediately evaluates the query and returns an array of elements bound to the resulting accessibility elements. */ +@property (readonly, copy) NSArray *allElementsBoundByAccessibilityElement; + +/*! Immediately evaluates the query and returns an array of elements bound by the index of each result. */ +@property (readonly, copy) NSArray *allElementsBoundByIndex; + +/*! Returns a new query that finds the descendants of all the elements found by the receiver. */ +- (XCUIElementQuery *)descendantsMatchingType:(XCUIElementType)type; + +/*! Returns a new query that finds the direct children of all the elements found by the receiver. */ +- (XCUIElementQuery *)childrenMatchingType:(XCUIElementType)type; + +/*! Returns a new query that applies the specified attributes or predicate to the receiver. The predicate will be evaluated against objects of type id. */ +- (XCUIElementQuery *)matchingPredicate:(NSPredicate *)predicate; +- (XCUIElementQuery *)matchingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; +- (XCUIElementQuery *)matchingIdentifier:(NSString *)identifier; + +/*! Returns a new query for finding elements that contain a descendant matching the specification. The predicate will be evaluated against objects of type id. */ +- (XCUIElementQuery *)containingPredicate:(NSPredicate *)predicate; +- (XCUIElementQuery *)containingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; + +/*! + @discussion + Provides debugging information about the query. The data in the string will vary based on the time + at which it is captured, but it may include any of the following as well as additional data: + • A description of each step of the query. + • Information about the inputs and matched outputs of each step of the query. + This data should be used for debugging only - depending on any of the data as part of a test is unsupported. + */ +@property (readonly, copy) NSString *debugDescription; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h new file mode 100644 index 00000000..6df4fd2e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h @@ -0,0 +1,99 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +NS_ASSUME_NONNULL_BEGIN + +@class XCUIElementQuery; + +@protocol XCUIElementTypeQueryProvider + +@property (readonly, copy) XCUIElementQuery *groups; +@property (readonly, copy) XCUIElementQuery *windows; +@property (readonly, copy) XCUIElementQuery *sheets; +@property (readonly, copy) XCUIElementQuery *drawers; +@property (readonly, copy) XCUIElementQuery *alerts; +@property (readonly, copy) XCUIElementQuery *dialogs; +@property (readonly, copy) XCUIElementQuery *buttons; +@property (readonly, copy) XCUIElementQuery *radioButtons; +@property (readonly, copy) XCUIElementQuery *radioGroups; +@property (readonly, copy) XCUIElementQuery *checkBoxes; +@property (readonly, copy) XCUIElementQuery *disclosureTriangles; +@property (readonly, copy) XCUIElementQuery *popUpButtons; +@property (readonly, copy) XCUIElementQuery *comboBoxes; +@property (readonly, copy) XCUIElementQuery *menuButtons; +@property (readonly, copy) XCUIElementQuery *toolbarButtons; +@property (readonly, copy) XCUIElementQuery *popovers; +@property (readonly, copy) XCUIElementQuery *keyboards; +@property (readonly, copy) XCUIElementQuery *keys; +@property (readonly, copy) XCUIElementQuery *navigationBars; +@property (readonly, copy) XCUIElementQuery *tabBars; +@property (readonly, copy) XCUIElementQuery *tabGroups; +@property (readonly, copy) XCUIElementQuery *toolbars; +@property (readonly, copy) XCUIElementQuery *statusBars; +@property (readonly, copy) XCUIElementQuery *tables; +@property (readonly, copy) XCUIElementQuery *tableRows; +@property (readonly, copy) XCUIElementQuery *tableColumns; +@property (readonly, copy) XCUIElementQuery *outlines; +@property (readonly, copy) XCUIElementQuery *outlineRows; +@property (readonly, copy) XCUIElementQuery *browsers; +@property (readonly, copy) XCUIElementQuery *collectionViews; +@property (readonly, copy) XCUIElementQuery *sliders; +@property (readonly, copy) XCUIElementQuery *pageIndicators; +@property (readonly, copy) XCUIElementQuery *progressIndicators; +@property (readonly, copy) XCUIElementQuery *activityIndicators; +@property (readonly, copy) XCUIElementQuery *segmentedControls; +@property (readonly, copy) XCUIElementQuery *pickers; +@property (readonly, copy) XCUIElementQuery *pickerWheels; +@property (readonly, copy) XCUIElementQuery *switches; +@property (readonly, copy) XCUIElementQuery *toggles; +@property (readonly, copy) XCUIElementQuery *links; +@property (readonly, copy) XCUIElementQuery *images; +@property (readonly, copy) XCUIElementQuery *icons; +@property (readonly, copy) XCUIElementQuery *searchFields; +@property (readonly, copy) XCUIElementQuery *scrollViews; +@property (readonly, copy) XCUIElementQuery *scrollBars; +@property (readonly, copy) XCUIElementQuery *staticTexts; +@property (readonly, copy) XCUIElementQuery *textFields; +@property (readonly, copy) XCUIElementQuery *secureTextFields; +@property (readonly, copy) XCUIElementQuery *datePickers; +@property (readonly, copy) XCUIElementQuery *textViews; +@property (readonly, copy) XCUIElementQuery *menus; +@property (readonly, copy) XCUIElementQuery *menuItems; +@property (readonly, copy) XCUIElementQuery *menuBars; +@property (readonly, copy) XCUIElementQuery *menuBarItems; +@property (readonly, copy) XCUIElementQuery *maps; +@property (readonly, copy) XCUIElementQuery *webViews; +@property (readonly, copy) XCUIElementQuery *steppers; +@property (readonly, copy) XCUIElementQuery *incrementArrows; +@property (readonly, copy) XCUIElementQuery *decrementArrows; +@property (readonly, copy) XCUIElementQuery *tabs; +@property (readonly, copy) XCUIElementQuery *timelines; +@property (readonly, copy) XCUIElementQuery *ratingIndicators; +@property (readonly, copy) XCUIElementQuery *valueIndicators; +@property (readonly, copy) XCUIElementQuery *splitGroups; +@property (readonly, copy) XCUIElementQuery *splitters; +@property (readonly, copy) XCUIElementQuery *relevanceIndicators; +@property (readonly, copy) XCUIElementQuery *colorWells; +@property (readonly, copy) XCUIElementQuery *helpTags; +@property (readonly, copy) XCUIElementQuery *mattes; +@property (readonly, copy) XCUIElementQuery *dockItems; +@property (readonly, copy) XCUIElementQuery *rulers; +@property (readonly, copy) XCUIElementQuery *rulerMarkers; +@property (readonly, copy) XCUIElementQuery *grids; +@property (readonly, copy) XCUIElementQuery *levelIndicators; +@property (readonly, copy) XCUIElementQuery *cells; +@property (readonly, copy) XCUIElementQuery *layoutAreas; +@property (readonly, copy) XCUIElementQuery *layoutItems; +@property (readonly, copy) XCUIElementQuery *handles; +@property (readonly, copy) XCUIElementQuery *otherElements; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h new file mode 100644 index 00000000..3f303a09 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h @@ -0,0 +1,94 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +NS_ENUM_AVAILABLE(10_11, 9_0) +typedef NS_ENUM(NSUInteger, XCUIElementType) { + XCUIElementTypeAny = 0, + XCUIElementTypeOther = 1, + XCUIElementTypeApplication = 2, + XCUIElementTypeGroup = 3, + XCUIElementTypeWindow = 4, + XCUIElementTypeSheet = 5, + XCUIElementTypeDrawer = 6, + XCUIElementTypeAlert = 7, + XCUIElementTypeDialog = 8, + XCUIElementTypeButton = 9, + XCUIElementTypeRadioButton = 10, + XCUIElementTypeRadioGroup = 11, + XCUIElementTypeCheckBox = 12, + XCUIElementTypeDisclosureTriangle = 13, + XCUIElementTypePopUpButton = 14, + XCUIElementTypeComboBox = 15, + XCUIElementTypeMenuButton = 16, + XCUIElementTypeToolbarButton = 17, + XCUIElementTypePopover = 18, + XCUIElementTypeKeyboard = 19, + XCUIElementTypeKey = 20, + XCUIElementTypeNavigationBar = 21, + XCUIElementTypeTabBar = 22, + XCUIElementTypeTabGroup = 23, + XCUIElementTypeToolbar = 24, + XCUIElementTypeStatusBar = 25, + XCUIElementTypeTable = 26, + XCUIElementTypeTableRow = 27, + XCUIElementTypeTableColumn = 28, + XCUIElementTypeOutline = 29, + XCUIElementTypeOutlineRow = 30, + XCUIElementTypeBrowser = 31, + XCUIElementTypeCollectionView = 32, + XCUIElementTypeSlider = 33, + XCUIElementTypePageIndicator = 34, + XCUIElementTypeProgressIndicator = 35, + XCUIElementTypeActivityIndicator = 36, + XCUIElementTypeSegmentedControl = 37, + XCUIElementTypePicker = 38, + XCUIElementTypePickerWheel = 39, + XCUIElementTypeSwitch = 40, + XCUIElementTypeToggle = 41, + XCUIElementTypeLink = 42, + XCUIElementTypeImage = 43, + XCUIElementTypeIcon = 44, + XCUIElementTypeSearchField = 45, + XCUIElementTypeScrollView = 46, + XCUIElementTypeScrollBar = 47, + XCUIElementTypeStaticText = 48, + XCUIElementTypeTextField = 49, + XCUIElementTypeSecureTextField = 50, + XCUIElementTypeDatePicker = 51, + XCUIElementTypeTextView = 52, + XCUIElementTypeMenu = 53, + XCUIElementTypeMenuItem = 54, + XCUIElementTypeMenuBar = 55, + XCUIElementTypeMenuBarItem = 56, + XCUIElementTypeMap = 57, + XCUIElementTypeWebView = 58, + XCUIElementTypeIncrementArrow = 59, + XCUIElementTypeDecrementArrow = 60, + XCUIElementTypeTimeline = 61, + XCUIElementTypeRatingIndicator = 62, + XCUIElementTypeValueIndicator = 63, + XCUIElementTypeSplitGroup = 64, + XCUIElementTypeSplitter = 65, + XCUIElementTypeRelevanceIndicator = 66, + XCUIElementTypeColorWell = 67, + XCUIElementTypeHelpTag = 68, + XCUIElementTypeMatte = 69, + XCUIElementTypeDockItem = 70, + XCUIElementTypeRuler = 71, + XCUIElementTypeRulerMarker = 72, + XCUIElementTypeGrid = 73, + XCUIElementTypeLevelIndicator = 74, + XCUIElementTypeCell = 75, + XCUIElementTypeLayoutArea = 76, + XCUIElementTypeLayoutItem = 77, + XCUIElementTypeHandle = 78, + XCUIElementTypeStepper = 79, + XCUIElementTypeTab = 80, +}; + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h new file mode 100644 index 00000000..37d4ee68 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h @@ -0,0 +1,67 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import +#import + +#if XCT_UI_TESTING_AVAILABLE + +/*! + Constants for use with -[XCUIElement typeKey:modifierFlags:], + representing keys that have no textual representation. These comprise + the set of control, function, and modifier keys found on most keyboards. +*/ + +extern NSString *const XCUIKeyboardKeyDelete; +extern NSString *const XCUIKeyboardKeyReturn; +extern NSString *const XCUIKeyboardKeyEnter; +extern NSString *const XCUIKeyboardKeyTab; +extern NSString *const XCUIKeyboardKeySpace; +extern NSString *const XCUIKeyboardKeyEscape; + +extern NSString *const XCUIKeyboardKeyUpArrow; +extern NSString *const XCUIKeyboardKeyDownArrow; +extern NSString *const XCUIKeyboardKeyLeftArrow; +extern NSString *const XCUIKeyboardKeyRightArrow; + +extern NSString *const XCUIKeyboardKeyF1; +extern NSString *const XCUIKeyboardKeyF2; +extern NSString *const XCUIKeyboardKeyF3; +extern NSString *const XCUIKeyboardKeyF4; +extern NSString *const XCUIKeyboardKeyF5; +extern NSString *const XCUIKeyboardKeyF6; +extern NSString *const XCUIKeyboardKeyF7; +extern NSString *const XCUIKeyboardKeyF8; +extern NSString *const XCUIKeyboardKeyF9; +extern NSString *const XCUIKeyboardKeyF10; +extern NSString *const XCUIKeyboardKeyF11; +extern NSString *const XCUIKeyboardKeyF12; +extern NSString *const XCUIKeyboardKeyF13; +extern NSString *const XCUIKeyboardKeyF14; +extern NSString *const XCUIKeyboardKeyF15; +extern NSString *const XCUIKeyboardKeyF16; +extern NSString *const XCUIKeyboardKeyF17; +extern NSString *const XCUIKeyboardKeyF18; +extern NSString *const XCUIKeyboardKeyF19; + +extern NSString *const XCUIKeyboardKeyForwardDelete; +extern NSString *const XCUIKeyboardKeyHome; +extern NSString *const XCUIKeyboardKeyEnd; +extern NSString *const XCUIKeyboardKeyPageUp; +extern NSString *const XCUIKeyboardKeyPageDown; +extern NSString *const XCUIKeyboardKeyClear; +extern NSString *const XCUIKeyboardKeyHelp; + +extern NSString *const XCUIKeyboardKeyCapsLock; +extern NSString *const XCUIKeyboardKeyShift; +extern NSString *const XCUIKeyboardKeyControl; +extern NSString *const XCUIKeyboardKeyOption; +extern NSString *const XCUIKeyboardKeyCommand; +extern NSString *const XCUIKeyboardKeyRightShift; +extern NSString *const XCUIKeyboardKeyRightControl; +extern NSString *const XCUIKeyboardKeyRightOption; +extern NSString *const XCUIKeyboardKeyRightCommand; +extern NSString *const XCUIKeyboardKeySecondaryFn; + +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h new file mode 100644 index 00000000..6aba68c8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h @@ -0,0 +1,68 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +/*! + * @enum XCUIRemoteButton + * + * A button on a physical remote control. + */ +typedef NS_ENUM(NSUInteger, XCUIRemoteButton) { + XCUIRemoteButtonUp = 0, + XCUIRemoteButtonDown = 1, + XCUIRemoteButtonLeft = 2, + XCUIRemoteButtonRight = 3, + + XCUIRemoteButtonSelect = 4, + XCUIRemoteButtonMenu = 5, + XCUIRemoteButtonPlayPause = 6, +}; + +#if TARGET_OS_TV + +/*! + * @class XCUIRemote + * + * Simulates interaction with a physical remote control. + */ +NS_CLASS_AVAILABLE_IOS(9_0) +@interface XCUIRemote : NSObject + +/*! + * The simulated physical remote control. + */ ++ (instancetype)sharedRemote; + +/*! + * Sends a momentary press of a button on a physical remote control. + * + * @param remoteButton + * The button on the physical remote control for which to synthesize a press. + */ +- (void)pressButton:(XCUIRemoteButton)remoteButton; + +/*! + * Sends a press and hold of a button on a physical remote control, holding for the specified duration. + * + * @param remoteButton + * The button on the physical remote control for which to synthesize a press. + * + * @param duration + * Duration in seconds. + */ +- (void)pressButton:(XCUIRemoteButton)remoteButton forDuration:(NSTimeInterval)duration; + +@end + +#endif + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist new file mode 100644 index 00000000..c41a0c3a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap new file mode 100644 index 00000000..d5d16b0f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap @@ -0,0 +1,5 @@ +framework module XCTest { + umbrella header "XCTest.h" + requires objc + export * +} diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd new file mode 100644 index 00000000..19a00be2 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd @@ -0,0 +1,76 @@ +--- !tapi-tbd-v2 +archs: [ i386, x86_64 ] +uuids: [ 'i386: BF96024F-3139-391D-ABAF-48023A32734D', 'x86_64: 35A97692-921F-327F-821D-09F241DEEC0E' ] +platform: ios +flags: [ not_app_extension_safe ] +install-name: '@rpath/XCTest.framework/XCTest' +current-version: 11109.2 +objc-constraint: none +exports: + - archs: [ i386, x86_64 ] + symbols: [ '_OBJC_EHTYPE_$__XCTestCaseInterruptionException', _XCSourceCodeTreeNode_PrefixDelimiter, + _XCSourceCodeTreeNode_SuffixDelimiter, _XCTPerformanceMetric_HighWaterMarkForHeapAllocations, + _XCTPerformanceMetric_HighWaterMarkForVMAllocations, _XCTPerformanceMetric_PersistentHeapAllocations, + _XCTPerformanceMetric_PersistentHeapAllocationsNodes, _XCTPerformanceMetric_PersistentVMAllocations, + _XCTPerformanceMetric_RunTime, _XCTPerformanceMetric_SystemTime, + _XCTPerformanceMetric_TemporaryHeapAllocationsKilobytes, _XCTPerformanceMetric_TemporaryHeapAllocationsNodes, + _XCTPerformanceMetric_TemporaryVMAllocationsKilobytes, _XCTPerformanceMetric_TotalHeapAllocationsKilobytes, + _XCTPerformanceMetric_TransientHeapAllocationsKilobytes, _XCTPerformanceMetric_TransientHeapAllocationsNodes, + _XCTPerformanceMetric_TransientVMAllocationsKilobytes, _XCTPerformanceMetric_UserTime, + _XCTPerformanceMetric_WallClockTime, _XCTSelfTestMain, _XCTestErrorDomain, + _XCTestObserverClassKey, _XCTestScopeAll, _XCTestScopeKey, + _XCTestScopeNone, _XCTestScopeSelf, _XCTestToolKey, _XCTestedUnitPath, + _XCUIIdentifierCloseWindow, _XCUIIdentifierFullScreenWindow, + _XCUIIdentifierMinimizeWindow, _XCUIIdentifierZoomWindow, + _XCUIKeyModifierFlagsFromUIKeyModifierFlags, _XCUIKeyModifierFlagsToDisplayString, + _XCUIKeyModifierFlagsToUIKeyModifierFlags, _XCUIKeyModifiersMaskAll, + _XCUIKeyboardKeyCapsLock, _XCUIKeyboardKeyClear, _XCUIKeyboardKeyCommand, + _XCUIKeyboardKeyControl, _XCUIKeyboardKeyDelete, _XCUIKeyboardKeyDownArrow, + _XCUIKeyboardKeyEnd, _XCUIKeyboardKeyEnter, _XCUIKeyboardKeyEscape, + _XCUIKeyboardKeyF1, _XCUIKeyboardKeyF10, _XCUIKeyboardKeyF11, + _XCUIKeyboardKeyF12, _XCUIKeyboardKeyF13, _XCUIKeyboardKeyF14, + _XCUIKeyboardKeyF15, _XCUIKeyboardKeyF16, _XCUIKeyboardKeyF17, + _XCUIKeyboardKeyF18, _XCUIKeyboardKeyF19, _XCUIKeyboardKeyF2, + _XCUIKeyboardKeyF3, _XCUIKeyboardKeyF4, _XCUIKeyboardKeyF5, + _XCUIKeyboardKeyF6, _XCUIKeyboardKeyF7, _XCUIKeyboardKeyF8, + _XCUIKeyboardKeyF9, _XCUIKeyboardKeyForwardDelete, _XCUIKeyboardKeyHelp, + _XCUIKeyboardKeyHome, _XCUIKeyboardKeyLeftArrow, _XCUIKeyboardKeyOption, + _XCUIKeyboardKeyPageDown, _XCUIKeyboardKeyPageUp, _XCUIKeyboardKeyReturn, + _XCUIKeyboardKeyRightArrow, _XCUIKeyboardKeyRightCommand, + _XCUIKeyboardKeyRightControl, _XCUIKeyboardKeyRightOption, + _XCUIKeyboardKeyRightShift, _XCUIKeyboardKeySecondaryFn, _XCUIKeyboardKeyShift, + _XCUIKeyboardKeySpace, _XCUIKeyboardKeyTab, _XCUIKeyboardKeyUpArrow, + __XCINFLog, __XCLog, __XCTAXMessagingTimeout, __XCTAXResponseTimeout, + __XCTApplicationStateTimeout, __XCTCurrentTestCase, __XCTDaemonConfirmationTimeout, + __XCTDescriptionForValue, __XCTEventConfirmationTimeout, __XCTFailInCurrentTest, + __XCTFailureFormat, __XCTFailureHandler, __XCTPreformattedFailureHandler, + __XCTSetAXMessagingTimeout, __XCTSetAXResponseTimeout, __XCTSetApplicationStateTimeout, + __XCTSetDaemonConfirmationTimeout, __XCTSetEventConfirmationTimeout, + __XCTestMain, __XCWaitLoopIsValid ] + objc-classes: [ _XCAXClient_iOS, _XCAccessibilityElement, _XCActivityRecord, + _XCApplicationMonitor, _XCElementSnapshot, _XCEventGenerator, + _XCPointerEvent, _XCPointerEventPath, _XCSourceCodeRecording, + _XCSourceCodeTreeNode, _XCSymbolicationRecord, _XCSynthesizedEventRecord, + _XCTest, _XCTestCase, _XCTestCaseRun, _XCTestConfiguration, + _XCTestContext, _XCTestDriver, _XCTestExpectation, _XCTestExpectationWaiter, + _XCTestLog, _XCTestObservationCenter, _XCTestObserver, _XCTestProbe, + _XCTestRun, _XCTestSuite, _XCTestSuiteRun, _XCUIApplication, + _XCUIApplicationImpl, _XCUIApplicationProcess, _XCUICoordinate, + _XCUIDevice, _XCUIElement, _XCUIElementQuery, _XCUIRecorderUtilities, + __XCTestCaseImplementation, __XCTestCaseInterruptionException ] + objc-ivars: [ _XCAXClient_iOS._alertNotificationCounter, _XCAXClient_iOS._cacheAccessibilityLoadedValuesForPIDs, + _XCAXClient_iOS._userTestingNotificationHandlers, _XCApplicationMonitor._applicationImplementations, + _XCApplicationMonitor._applicationProcessesForPID, _XCApplicationMonitor._applicationProcessesForToken, + _XCApplicationMonitor._launchedApplications, _XCEventGenerator._eventQueue, + _XCEventGenerator._generation, _XCEventGenerator._generationObserver, + _XCTestConfiguration._absolutePath, _XCTestConfiguration._aggregateStatisticsBeforeCrash, + _XCTestConfiguration._baselineFileRelativePath, _XCTestConfiguration._baselineFileURL, + _XCTestConfiguration._disablePerformanceMetrics, _XCTestConfiguration._initializeForUITesting, + _XCTestConfiguration._pathToXcodeReportingSocket, _XCTestConfiguration._productModuleName, + _XCTestConfiguration._reportActivities, _XCTestConfiguration._reportResultsToIDE, + _XCTestConfiguration._sessionIdentifier, _XCTestConfiguration._targetApplicationBundleID, + _XCTestConfiguration._targetApplicationPath, _XCTestConfiguration._testBundleRelativePath, + _XCTestConfiguration._testBundleURL, _XCTestConfiguration._testsMustRunOnMainThread, + _XCTestConfiguration._testsToRun, _XCTestConfiguration._testsToSkip, + _XCTestConfiguration._treatMissingBaselinesAsFailures ] +... diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest new file mode 100755 index 00000000..9c4c41bc Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest.tbd b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest.tbd new file mode 120000 index 00000000..a6c462ca --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest.tbd @@ -0,0 +1 @@ +TextBasedStubs/XCTest.tbd \ No newline at end of file diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist new file mode 100644 index 00000000..14e5d3c9 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService new file mode 100755 index 00000000..23d95757 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources new file mode 100644 index 00000000..7289397d --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + Ra1OAR8JJfekaIhcLE/zFw79MYs= + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + files2 + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist new file mode 100644 index 00000000..e5b2660f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 1 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + ProjectName + XCTest_Sim + SourceVersion + 10112000000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist new file mode 100644 index 00000000..b68f0f2a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources new file mode 100644 index 00000000..8181534a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + G/SYWALY85QBHvRY+oF2avX64nk= + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + files2 + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist new file mode 100644 index 00000000..e5b2660f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 1 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + ProjectName + XCTest_Sim + SourceVersion + 10112000000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator new file mode 100755 index 00000000..eb8f3dc4 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..c71bb841 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources @@ -0,0 +1,425 @@ + + + + + files + + Headers/XCAbstractTest.h + + 5uVAxKt54MLW6NC721Ou4E5VdbA= + + Headers/XCTest.h + + J/40JIWasorAJl8ehqWsKDIRe8s= + + Headers/XCTestAssertions.h + + t430vwqgq3wiAocVV386i0N+lOY= + + Headers/XCTestAssertionsImpl.h + + HE6AZsSiKafvCZwy1E+Nz9eZ1AY= + + Headers/XCTestCase+AsynchronousTesting.h + + szAnsvd6a5FmJK3Rd7GHUE+zD6Q= + + Headers/XCTestCase.h + + a+X7pEiPweigSlO/04evCASEVqA= + + Headers/XCTestCaseRun.h + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + Headers/XCTestDefines.h + + prtDP44JOQFIOtGvonzIO4tX34E= + + Headers/XCTestErrors.h + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + Headers/XCTestLog.h + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + Headers/XCTestObservation.h + + bxfVjwijO6HVQKKnzhFvQQa76dU= + + Headers/XCTestObservationCenter.h + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + Headers/XCTestObserver.h + + D2bzqa/eakvQSHJORM15iHntXxI= + + Headers/XCTestProbe.h + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + Headers/XCTestRun.h + + cjg6r+NJy2z/IjyKJPGmIDBFm68= + + Headers/XCTestSuite.h + + 0MZwfzMWlLFnYzNrPr2MS6bPTfA= + + Headers/XCTestSuiteRun.h + + yTc+L3PJ+wxS4wyorpMQd7kNJvQ= + + Headers/XCUIApplication.h + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + Headers/XCUICoordinate.h + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + Headers/XCUIDevice.h + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + Headers/XCUIElement.h + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + Headers/XCUIElementAttributes.h + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + Headers/XCUIElementQuery.h + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + Headers/XCUIElementTypeQueryProvider.h + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + Headers/XCUIElementTypes.h + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + Headers/XCUIKeyboardKeys.h + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + Headers/XCUIRemote.h + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + Info.plist + + gP0ZTwBfw/8qxea3ADZsO58qdC4= + + Modules/module.modulemap + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + XPCServices/XCUIRecorderService.xpc/Info.plist + + Ra1OAR8JJfekaIhcLE/zFw79MYs= + + XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + dNCg/464I5J6zw4R8tZT1r0RzJ0= + + XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + i0U858e/zTOCwD3yw7lKJtyISlc= + + XPCServices/XCUIRecorderService.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/Info.plist + + G/SYWALY85QBHvRY+oF2avX64nk= + + XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + ac1OISk4seEdGGW1r3kTNNJXJ/A= + + XPCServices/xctestSymbolicator.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + QpmtVhl9xnftpLUcVwKzSS8WQTU= + + en.lproj/InfoPlist.strings + + hash + + TuBj57ZP6zBqcL9HttO2Rucaw9E= + + optional + + + version.plist + + rWsOVM/FcCyTHZaNQcsjyYoN0yo= + + + files2 + + Headers/XCAbstractTest.h + + 5uVAxKt54MLW6NC721Ou4E5VdbA= + + Headers/XCTest.h + + J/40JIWasorAJl8ehqWsKDIRe8s= + + Headers/XCTestAssertions.h + + t430vwqgq3wiAocVV386i0N+lOY= + + Headers/XCTestAssertionsImpl.h + + HE6AZsSiKafvCZwy1E+Nz9eZ1AY= + + Headers/XCTestCase+AsynchronousTesting.h + + szAnsvd6a5FmJK3Rd7GHUE+zD6Q= + + Headers/XCTestCase.h + + a+X7pEiPweigSlO/04evCASEVqA= + + Headers/XCTestCaseRun.h + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + Headers/XCTestDefines.h + + prtDP44JOQFIOtGvonzIO4tX34E= + + Headers/XCTestErrors.h + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + Headers/XCTestLog.h + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + Headers/XCTestObservation.h + + bxfVjwijO6HVQKKnzhFvQQa76dU= + + Headers/XCTestObservationCenter.h + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + Headers/XCTestObserver.h + + D2bzqa/eakvQSHJORM15iHntXxI= + + Headers/XCTestProbe.h + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + Headers/XCTestRun.h + + cjg6r+NJy2z/IjyKJPGmIDBFm68= + + Headers/XCTestSuite.h + + 0MZwfzMWlLFnYzNrPr2MS6bPTfA= + + Headers/XCTestSuiteRun.h + + yTc+L3PJ+wxS4wyorpMQd7kNJvQ= + + Headers/XCUIApplication.h + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + Headers/XCUICoordinate.h + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + Headers/XCUIDevice.h + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + Headers/XCUIElement.h + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + Headers/XCUIElementAttributes.h + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + Headers/XCUIElementQuery.h + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + Headers/XCUIElementTypeQueryProvider.h + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + Headers/XCUIElementTypes.h + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + Headers/XCUIKeyboardKeys.h + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + Headers/XCUIRemote.h + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + Modules/module.modulemap + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + XPCServices/XCUIRecorderService.xpc/Info.plist + + Ra1OAR8JJfekaIhcLE/zFw79MYs= + + XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + dNCg/464I5J6zw4R8tZT1r0RzJ0= + + XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + i0U858e/zTOCwD3yw7lKJtyISlc= + + XPCServices/XCUIRecorderService.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/Info.plist + + G/SYWALY85QBHvRY+oF2avX64nk= + + XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + ac1OISk4seEdGGW1r3kTNNJXJ/A= + + XPCServices/xctestSymbolicator.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + QpmtVhl9xnftpLUcVwKzSS8WQTU= + + en.lproj/InfoPlist.strings + + hash + + TuBj57ZP6zBqcL9HttO2Rucaw9E= + + optional + + + version.plist + + rWsOVM/FcCyTHZaNQcsjyYoN0yo= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings new file mode 100644 index 00000000..d6446876 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist new file mode 100644 index 00000000..6a4d61a5 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 1 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 10112 + ProjectName + XCTest_Sim + SourceVersion + 10112000000000000 + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftContacts.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftContacts.dylib new file mode 100755 index 00000000..2ac0f6b8 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftContacts.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCore.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCore.dylib new file mode 100755 index 00000000..77aab7fa Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCore.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 00000000..adda2f49 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 00000000..8e19621c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib new file mode 100755 index 00000000..a098473c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib new file mode 100755 index 00000000..1c552ad5 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib new file mode 100755 index 00000000..4715e961 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 00000000..56b4a20f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftSwiftOnoneSupport.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftSwiftOnoneSupport.dylib new file mode 100755 index 00000000..ae468ecb Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftSwiftOnoneSupport.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib new file mode 100755 index 00000000..78515f4f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftXCTest.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftXCTest.dylib new file mode 100755 index 00000000..fce49667 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftXCTest.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Info.plist new file mode 100644 index 00000000..3b47b917 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..c82b1dc2 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..0e343e16 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Info.plist new file mode 100644 index 00000000..92bb666d Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..1442b68f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..7d4d6a19 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..89d1aa95 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..6cc320c0 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..c3883971 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..be53828f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..eaf0dade Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..baa93539 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/MixpanelDemo b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/MixpanelDemo new file mode 100755 index 00000000..81d8dfc9 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/MixpanelDemo differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/MixpanelDemo.entitlements b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/MixpanelDemo.entitlements new file mode 100755 index 00000000..903def2a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/MixpanelDemo.entitlements @@ -0,0 +1,8 @@ + + + + + aps-environment + development + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PkgInfo b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PkgInfo new file mode 100644 index 00000000..bd04210f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Info.plist new file mode 100644 index 00000000..ff8c179e Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Nocilla b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Nocilla new file mode 100755 index 00000000..28fb6b81 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Nocilla differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..5aa8f22c --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/_CodeSignature/CodeResources @@ -0,0 +1,306 @@ + + + + + files + + Headers/LSHTTPBody.h + + YetKUYT6SL2jf0li9xzvykHCCxQ= + + Headers/LSMatcheable.h + + nsyw/sA5qZxdRTCmhlabRO9qh0s= + + Headers/LSNocilla.h + + 6KgMvSt2Oun+u9GSAqKhvDM1mps= + + Headers/LSStubRequestDSL.h + + O0spOCsIIpVj2vMg15jJsq3pnvU= + + Headers/LSStubResponseDSL.h + + 0vytadI8Lpe16HFwxRydCg7NiBI= + + Headers/NSData+Matcheable.h + + +n2a1ZU0naPzeLz6z97NlGuEGVU= + + Headers/NSData+Nocilla.h + + j1+IHqb4kLjR3B0zPavUAgwWIO8= + + Headers/NSRegularExpression+Matcheable.h + + WCbtCppcqh0kdJXH1ymAgfDpCac= + + Headers/NSString+Matcheable.h + + hLijE/CXs+qEwxkrq7bbL2AnpQ4= + + Headers/NSString+Nocilla.h + + sQ9iGhrtBQFvyoZMcjqL3jC9gkA= + + Headers/Nocilla-umbrella.h + + aRSqk7csTftBShNQNhvQAH3ob3g= + + Headers/Nocilla.h + + 3C5K3hiAjQToMNZWuRmM/YuzL8I= + + Info.plist + + dpAlQ6Vlwf+bYyD1NwzcqP9qdIM= + + Modules/module.modulemap + + vlRm7Pn3rs+qCSJxPAsnkqkDtCE= + + + files2 + + Headers/LSHTTPBody.h + + hash + + YetKUYT6SL2jf0li9xzvykHCCxQ= + + hash2 + + qGl+ZxKRDz5QH2WC6eeAeCN24DaIx5vNpOgZqoqtMEo= + + + Headers/LSMatcheable.h + + hash + + nsyw/sA5qZxdRTCmhlabRO9qh0s= + + hash2 + + BB+44Vf3+U+CFEiz5EjxICTJ2Du7/QiM3fAOpjWP9LU= + + + Headers/LSNocilla.h + + hash + + 6KgMvSt2Oun+u9GSAqKhvDM1mps= + + hash2 + + TNIjqcP2K4xF9U4y9cP8KIRA4lsCIf0i4PRoCDH9TI8= + + + Headers/LSStubRequestDSL.h + + hash + + O0spOCsIIpVj2vMg15jJsq3pnvU= + + hash2 + + rZAE3PAin/pbsVQ3Hw2XfyeXiGdRVDsx3ANpQ7u0DHk= + + + Headers/LSStubResponseDSL.h + + hash + + 0vytadI8Lpe16HFwxRydCg7NiBI= + + hash2 + + EBpxDgdnhNkyU74L6WojvRwHewlWv9QPSDYmWsJ67Oo= + + + Headers/NSData+Matcheable.h + + hash + + +n2a1ZU0naPzeLz6z97NlGuEGVU= + + hash2 + + ZjAogTKYL1+CqMWbO7fvCaw8Fd0YczAwxMUE9zcE44Y= + + + Headers/NSData+Nocilla.h + + hash + + j1+IHqb4kLjR3B0zPavUAgwWIO8= + + hash2 + + kloU4K1SpD4LUibcI1USk4H9AVyxiAsZB5cjQXyDgDs= + + + Headers/NSRegularExpression+Matcheable.h + + hash + + WCbtCppcqh0kdJXH1ymAgfDpCac= + + hash2 + + SWfFBbmGlSgMm1XFvwJh0bNgvaVuWqEs6Ld+V6XavXM= + + + Headers/NSString+Matcheable.h + + hash + + hLijE/CXs+qEwxkrq7bbL2AnpQ4= + + hash2 + + b+hNXZKdyEztjWfXp9GmqrecEODnutx+QIuZtqKOnAg= + + + Headers/NSString+Nocilla.h + + hash + + sQ9iGhrtBQFvyoZMcjqL3jC9gkA= + + hash2 + + TzStTOql7lUC15SeAtxa3FVozA+GacVjb0TY0Hgfrs8= + + + Headers/Nocilla-umbrella.h + + hash + + aRSqk7csTftBShNQNhvQAH3ob3g= + + hash2 + + dtkf6AUK1zCNgwMcmqIXbW6L2UF1T1cKbC8ElrWmhsI= + + + Headers/Nocilla.h + + hash + + 3C5K3hiAjQToMNZWuRmM/YuzL8I= + + hash2 + + Fpc6gSu2QGOYAO1q7nVupa/kaGifUNQiiOgZoIJ4oz0= + + + Modules/module.modulemap + + hash + + vlRm7Pn3rs+qCSJxPAsnkqkDtCE= + + hash2 + + sCuyX5A1CFLYIEJkAMsVY5UdoE669bCR5fk9qnMhIrA= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftContacts.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftContacts.dylib new file mode 100755 index 00000000..2ac0f6b8 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftContacts.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCore.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCore.dylib new file mode 100755 index 00000000..77aab7fa Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCore.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreGraphics.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 00000000..adda2f49 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreImage.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 00000000..8e19621c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreImage.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDarwin.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDarwin.dylib new file mode 100755 index 00000000..a098473c Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDarwin.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDispatch.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDispatch.dylib new file mode 100755 index 00000000..1c552ad5 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDispatch.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftFoundation.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftFoundation.dylib new file mode 100755 index 00000000..4715e961 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftFoundation.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftObjectiveC.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 00000000..56b4a20f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftObjectiveC.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib new file mode 100755 index 00000000..ae468ecb Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftUIKit.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftUIKit.dylib new file mode 100755 index 00000000..78515f4f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftUIKit.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftXCTest.dylib b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftXCTest.dylib new file mode 100755 index 00000000..fce49667 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftXCTest.dylib differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist new file mode 100644 index 00000000..df7b325a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests new file mode 100755 index 00000000..286c4c23 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-2F8FB223-8568-4289-A803-54241E4C6AEF.xctestconfiguration b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-2F8FB223-8568-4289-A803-54241E4C6AEF.xctestconfiguration new file mode 100644 index 00000000..4973805f Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-2F8FB223-8568-4289-A803-54241E4C6AEF.xctestconfiguration differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-3315F597-1C04-44C0-B6D1-8CC379420501.xctestconfiguration b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-3315F597-1C04-44C0-B6D1-8CC379420501.xctestconfiguration new file mode 100644 index 00000000..df3bb893 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-3315F597-1C04-44C0-B6D1-8CC379420501.xctestconfiguration differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-47A178C3-D08E-451D-93B1-4BC9D16E54DC.xctestconfiguration b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-47A178C3-D08E-451D-93B1-4BC9D16E54DC.xctestconfiguration new file mode 100644 index 00000000..c501c797 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-47A178C3-D08E-451D-93B1-4BC9D16E54DC.xctestconfiguration differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-8088E4FF-30E2-45E9-9F54-BBC926975362.xctestconfiguration b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-8088E4FF-30E2-45E9-9F54-BBC926975362.xctestconfiguration new file mode 100644 index 00000000..ed6b2816 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-8088E4FF-30E2-45E9-9F54-BBC926975362.xctestconfiguration differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-C97F0B34-BDCA-4E49-AC74-C30AE6D7E295.xctestconfiguration b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-C97F0B34-BDCA-4E49-AC74-C30AE6D7E295.xctestconfiguration new file mode 100644 index 00000000..a91b03b1 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-C97F0B34-BDCA-4E49-AC74-C30AE6D7E295.xctestconfiguration differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-D80CD2CB-EB76-4A56-805C-6C7A37162863.xctestconfiguration b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-D80CD2CB-EB76-4A56-805C-6C7A37162863.xctestconfiguration new file mode 100644 index 00000000..4e089786 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests-D80CD2CB-EB76-4A56-805C-6C7A37162863.xctestconfiguration differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/_CodeSignature/CodeResources new file mode 100644 index 00000000..3ba9eac6 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/_CodeSignature/CodeResources @@ -0,0 +1,306 @@ + + + + + files + + Frameworks/Nocilla.framework/Info.plist + + dpAlQ6Vlwf+bYyD1NwzcqP9qdIM= + + Frameworks/Nocilla.framework/Nocilla + + 2Qk3hfQtn/24KkNc9RSe+HfXvSs= + + Frameworks/Nocilla.framework/_CodeSignature/CodeResources + + hnTEEXVPTQdQFXuO3sXFqWPin5Q= + + Frameworks/libswiftCore.dylib + + D28CsdD914ud/1otVExjTgmPg/A= + + Frameworks/libswiftCoreGraphics.dylib + + ZnDGhKi/0FJzqEgEKHBfnJ3ORHw= + + Frameworks/libswiftCoreImage.dylib + + R5EbN/gsclAl5gg3vs69cxmjeTo= + + Frameworks/libswiftDarwin.dylib + + QDea40dieXsMTQCQfhNQQQ22KSI= + + Frameworks/libswiftDispatch.dylib + + Z1iXMY8F1dUrDGfH0rOE9/aCXfI= + + Frameworks/libswiftFoundation.dylib + + 1OUEXfo18UJQeyiQ9VPTqt2w9YI= + + Frameworks/libswiftObjectiveC.dylib + + zC2EZdfnZbfAH2K3IUCzu/t9+vE= + + Frameworks/libswiftSwiftOnoneSupport.dylib + + +K97Yfr/PjaWVik4FAUw0lVOgg0= + + Frameworks/libswiftUIKit.dylib + + r4nCBankaC9rfyhf7RgxMorASRg= + + Frameworks/libswiftXCTest.dylib + + yzjhm99+P6gLcvd88fi12cpUOuI= + + Info.plist + + 1N8ZLh3awTD9OI0/E2N7eTPZi6c= + + + files2 + + Frameworks/Nocilla.framework/Info.plist + + hash + + dpAlQ6Vlwf+bYyD1NwzcqP9qdIM= + + hash2 + + zTD9gcHztyLLBx94Y/2jIaGhwLG2C6tniiIz8TZj1So= + + + Frameworks/Nocilla.framework/Nocilla + + hash + + 2Qk3hfQtn/24KkNc9RSe+HfXvSs= + + hash2 + + rOknFawc1EBaDk1cd0B4bRSJB4seb4y5SuitGEfZIiw= + + + Frameworks/Nocilla.framework/_CodeSignature/CodeResources + + hash + + hnTEEXVPTQdQFXuO3sXFqWPin5Q= + + hash2 + + woCNJjbAuBt3jwfiVBbvZ0s/M9uLWwNlYhAsFGb4cL0= + + + Frameworks/libswiftCore.dylib + + hash + + D28CsdD914ud/1otVExjTgmPg/A= + + hash2 + + LakrDycVqgiUvEfgAErC5QqXGH+tpgokgSFiqSyDOeg= + + + Frameworks/libswiftCoreGraphics.dylib + + hash + + ZnDGhKi/0FJzqEgEKHBfnJ3ORHw= + + hash2 + + QddwjWTA7RbaL6J28Cq6xUU4wAS2ApJIvmCsaNiGkds= + + + Frameworks/libswiftCoreImage.dylib + + hash + + R5EbN/gsclAl5gg3vs69cxmjeTo= + + hash2 + + g80Oxk9JvqX7bM7f8Ag2hXKmm7Ol5njiSDc/rhWEowk= + + + Frameworks/libswiftDarwin.dylib + + hash + + QDea40dieXsMTQCQfhNQQQ22KSI= + + hash2 + + 3lfSdFPOxOpiYwFyhWwI5s/PgluRvJq3Nll2F4ASB5Y= + + + Frameworks/libswiftDispatch.dylib + + hash + + Z1iXMY8F1dUrDGfH0rOE9/aCXfI= + + hash2 + + 4c49z5r6y4EbN4euf76Zb1qMda9/ILAE3iTN+kDGOYg= + + + Frameworks/libswiftFoundation.dylib + + hash + + 1OUEXfo18UJQeyiQ9VPTqt2w9YI= + + hash2 + + xmL798WWu5nMGpfQqgDfKYxO459c/o8HTx7JyivMYi0= + + + Frameworks/libswiftObjectiveC.dylib + + hash + + zC2EZdfnZbfAH2K3IUCzu/t9+vE= + + hash2 + + KTIb2cirMOJzEgWCXfY8N90nHmpFQT9m6QjNGMBLtkU= + + + Frameworks/libswiftSwiftOnoneSupport.dylib + + hash + + +K97Yfr/PjaWVik4FAUw0lVOgg0= + + hash2 + + yIjblG4aXzKsdqKBrCs4LvugQPbe+RVLgZgLb3uYr+Q= + + + Frameworks/libswiftUIKit.dylib + + hash + + r4nCBankaC9rfyhf7RgxMorASRg= + + hash2 + + pOusfaS8xxAwuDbSYY+roScm3fSNP1hvIR7fqMwTirU= + + + Frameworks/libswiftXCTest.dylib + + hash + + yzjhm99+P6gLcvd88fi12cpUOuI= + + hash2 + + 1iKXxxJOg68kvqrIPs0NVvy/JkK5up8aFWlMW6ZFozc= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/_CodeSignature/CodeResources new file mode 100644 index 00000000..d920291a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.app/_CodeSignature/CodeResources @@ -0,0 +1,1770 @@ + + + + + files + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash + + nEWH5GQuTRameBdn0ibY0UfpssY= + + optional + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + optional + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash + + RFqy9/nhGjRnBQNLzyxE3+5lEwk= + + optional + + + Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib + + hash + + TIDA6R8dUQSVjmKhaJCf+t8bhKc= + + optional + + + Base.lproj/Main.storyboardc/ActionCompleteViewController.nib + + hash + + Dd0YPkQIL9hL6A4OrAYSeqTy7mk= + + optional + + + Base.lproj/Main.storyboardc/Info.plist + + hash + + P2XLFU0OKMXc3gLgEU0wYynxNdI= + + optional + + + Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib + + hash + + G+5Hia6SEYQ5C4LMbkqAqvqxpqY= + + optional + + + Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib + + hash + + F+eP7aClNOQbQOYNyLb/Kl4H8Ow= + + optional + + + Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib + + hash + + +N3Or9RQJPQ1yZC9nzu293afpO4= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib + + hash + + d9tGFFtUlkVAASoO0dHkgfnHjr4= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib + + hash + + bAXFmnDc4+4gq66Z/zucT5gIcXc= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib + + hash + + xPSoHeHL6A1kBXMYo0NopdkRins= + + optional + + + Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib + + hash + + KoOj95VJZiLmPNWIK/hpxCUsCfs= + + optional + + + Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib + + hash + + Z/AM2wDWLYO1CU2pSK3Q99vYkyY= + + optional + + + Frameworks/IDEBundleInjection.framework/IDEBundleInjection + + ZHt6cpyIHNPsCB1AgFudpN6AmiI= + + Frameworks/IDEBundleInjection.framework/Info.plist + + hfqQZ64155EAPkkSlgBOko1ap0E= + + Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources + + ggWPowTL9WZ0Xpsiji4yUIoJm+w= + + Frameworks/IDEBundleInjection.framework/version.plist + + fe0VoRMvl8bM6vL0n62YWRKaZZw= + + Frameworks/Mixpanel.framework/Info.plist + + chiI2guz1gUE6dP1DDvy+delclg= + + Frameworks/Mixpanel.framework/Mixpanel + + pexgxkBydhYTTRGKzk/GSBm73fI= + + Frameworks/Mixpanel.framework/_CodeSignature/CodeResources + + m4mtR5Byxt02lXb+MZ5noCUYDl4= + + Frameworks/XCTest.framework/Headers/XCAbstractTest.h + + glimZR9g23UWmtfTfpa3DtRU32o= + + Frameworks/XCTest.framework/Headers/XCTest.h + + FeItRoIRWX9yeukRVtg0l8vKWu0= + + Frameworks/XCTest.framework/Headers/XCTestAssertions.h + + t430vwqgq3wiAocVV386i0N+lOY= + + Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h + + ZbDVHohdSHIPtEqmg7zN34qa0T4= + + Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h + + PL1ZOdDhdZzPNjCxecLsCysb3OQ= + + Frameworks/XCTest.framework/Headers/XCTestCase.h + + YzjVm663E0vT+P6c0ORX46w/zQ0= + + Frameworks/XCTest.framework/Headers/XCTestCaseRun.h + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + Frameworks/XCTest.framework/Headers/XCTestDefines.h + + Dz7Tri4hztdVrwGfOLzpE53H3kk= + + Frameworks/XCTest.framework/Headers/XCTestErrors.h + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + Frameworks/XCTest.framework/Headers/XCTestExpectation.h + + dwE0LefMLJ+L/tF8PwAW0Adc7I0= + + Frameworks/XCTest.framework/Headers/XCTestLog.h + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + Frameworks/XCTest.framework/Headers/XCTestObservation.h + + 24hjfD82jAN7/PhxU8RiEWTo5gs= + + Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + Frameworks/XCTest.framework/Headers/XCTestObserver.h + + DV3Cjdd1CAe6nYFEzmUrCtnzxQg= + + Frameworks/XCTest.framework/Headers/XCTestProbe.h + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + Frameworks/XCTest.framework/Headers/XCTestRun.h + + LAZ8VzMsuBB9pLfqrrnltc7bl1E= + + Frameworks/XCTest.framework/Headers/XCTestSuite.h + + 8I97NjqsYFEmiGVB5ZkFAdtT3ic= + + Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h + + OX+g52bOAnhjLVDKkweTKM8jTHQ= + + Frameworks/XCTest.framework/Headers/XCUIApplication.h + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + Frameworks/XCTest.framework/Headers/XCUICoordinate.h + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + Frameworks/XCTest.framework/Headers/XCUIDevice.h + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + Frameworks/XCTest.framework/Headers/XCUIElement.h + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + Frameworks/XCTest.framework/Headers/XCUIElementQuery.h + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + Frameworks/XCTest.framework/Headers/XCUIElementTypes.h + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + Frameworks/XCTest.framework/Headers/XCUIRemote.h + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + Frameworks/XCTest.framework/Info.plist + + RlXL6/DvCRSeOgz5nn3M491olOY= + + Frameworks/XCTest.framework/Modules/module.modulemap + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd + + LGSU2P/34JP3STZ4E7miSr7gRl0= + + Frameworks/XCTest.framework/XCTest + + YMeAxvQm3Wn6FDelRHd+ITvguIQ= + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist + + lN0YnDYw1gwkzBpp3KxUxiQys5Q= + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + 2BVbAGo8eGpfwTq8QAdl1YKSCuo= + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + 4P++PHtaAMhjOVGyK8ZSH/rD6bA= + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist + + CYa4SmBHrAdAQlQ0LKt7Cv25vuI= + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist + + UGV7XqHlXbPLfyxBbkAmBggmbo8= + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + cQagAd5VJohU9qyrHtCq+8sRQ68= + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist + + CYa4SmBHrAdAQlQ0LKt7Cv25vuI= + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + f/BkpmndR1XaArBmpjnOegUSgYc= + + Frameworks/XCTest.framework/_CodeSignature/CodeResources + + vMHE9rOFvFyDvsjLKoeCWI9m8Vc= + + Frameworks/XCTest.framework/en.lproj/InfoPlist.strings + + hash + + WbY3O0G7IBs11w3Ll/yYYaDQvo8= + + optional + + + Frameworks/XCTest.framework/version.plist + + sH7B+B8EwE04FM+o/Gg3XGtEdeA= + + Frameworks/libswiftContacts.dylib + + PuHscvszds78uI5EQrynGPVjYNs= + + Frameworks/libswiftCore.dylib + + D28CsdD914ud/1otVExjTgmPg/A= + + Frameworks/libswiftCoreGraphics.dylib + + ZnDGhKi/0FJzqEgEKHBfnJ3ORHw= + + Frameworks/libswiftCoreImage.dylib + + R5EbN/gsclAl5gg3vs69cxmjeTo= + + Frameworks/libswiftDarwin.dylib + + QDea40dieXsMTQCQfhNQQQ22KSI= + + Frameworks/libswiftDispatch.dylib + + Z1iXMY8F1dUrDGfH0rOE9/aCXfI= + + Frameworks/libswiftFoundation.dylib + + 1OUEXfo18UJQeyiQ9VPTqt2w9YI= + + Frameworks/libswiftObjectiveC.dylib + + zC2EZdfnZbfAH2K3IUCzu/t9+vE= + + Frameworks/libswiftSwiftOnoneSupport.dylib + + +K97Yfr/PjaWVik4FAUw0lVOgg0= + + Frameworks/libswiftUIKit.dylib + + r4nCBankaC9rfyhf7RgxMorASRg= + + Frameworks/libswiftXCTest.dylib + + yzjhm99+P6gLcvd88fi12cpUOuI= + + Info.plist + + wgGKyj6qWChgkiTErF6dQw6npsQ= + + Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib + + mObc8NazuSdwNN7HFZ2I+39AanE= + + Main.storyboardc/ActionCompleteViewController.nib + + TdA1ODGEiXs3ncdO1w25Mpj7kcA= + + Main.storyboardc/Info.plist + + mloVb8jo1vepZeL1KbUrpPULy30= + + Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib + + hGes4dsJhFHKDtppsPX9JhPua5c= + + Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib + + NskdKW3DXN8uiFL51pg/+PaMh1s= + + Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib + + ZOo4aRS3SBaCo5nZo5Hkd8YnYmg= + + Main.storyboardc/UIViewController-7Gy-11-CCV.nib + + aMnYTWzHeclgRBkfXHg6VSKOPPQ= + + Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib + + +3T0YWQ/9Oxe0aC7rT5lY9wA1WQ= + + Main.storyboardc/UIViewController-Ykd-V3-DUE.nib + + ftaxBr8tCqEQSmtM/kJ4YnyEAwU= + + Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib + + HWXPEWUDhHn4E180l4519gDbzJw= + + Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib + + rvH6sqbCrkXraHJi+cQ3pSzF0Y4= + + MixpanelDemo.entitlements + + uVC4UsEAjsaAorNMAW+mHUKgk9o= + + PkgInfo + + n57qDP4tZfLD1rCS43W0B4LQjzE= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Info.plist + + dpAlQ6Vlwf+bYyD1NwzcqP9qdIM= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Nocilla + + 2Qk3hfQtn/24KkNc9RSe+HfXvSs= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/_CodeSignature/CodeResources + + hnTEEXVPTQdQFXuO3sXFqWPin5Q= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCore.dylib + + D28CsdD914ud/1otVExjTgmPg/A= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreGraphics.dylib + + ZnDGhKi/0FJzqEgEKHBfnJ3ORHw= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreImage.dylib + + R5EbN/gsclAl5gg3vs69cxmjeTo= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDarwin.dylib + + QDea40dieXsMTQCQfhNQQQ22KSI= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDispatch.dylib + + Z1iXMY8F1dUrDGfH0rOE9/aCXfI= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftFoundation.dylib + + 1OUEXfo18UJQeyiQ9VPTqt2w9YI= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftObjectiveC.dylib + + zC2EZdfnZbfAH2K3IUCzu/t9+vE= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib + + +K97Yfr/PjaWVik4FAUw0lVOgg0= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftUIKit.dylib + + r4nCBankaC9rfyhf7RgxMorASRg= + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftXCTest.dylib + + yzjhm99+P6gLcvd88fi12cpUOuI= + + PlugIns/MixpanelDemoTests.xctest/Info.plist + + 1N8ZLh3awTD9OI0/E2N7eTPZi6c= + + PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests + + IEwDytp1w0D60GN727JOJnAt30k= + + PlugIns/MixpanelDemoTests.xctest/_CodeSignature/CodeResources + + +QZfF0vxSO8UWPd5EFz0+xEgAhk= + + + files2 + + Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib + + hash + + nEWH5GQuTRameBdn0ibY0UfpssY= + + hash2 + + NQzkwgcnE2nXN+3P66i1iSh/xCViuKlKYvDDsnXPPYw= + + optional + + + Base.lproj/LaunchScreen.storyboardc/Info.plist + + hash + + n2t8gsDpfE6XkhG31p7IQJRxTxU= + + hash2 + + HyVdXMU7Ux4/KalAao30mpWOK/lEPT4gvYN09wf31cg= + + optional + + + Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib + + hash + + RFqy9/nhGjRnBQNLzyxE3+5lEwk= + + hash2 + + p7i2WDiF5h8z4uRLKYiDtVPRNXhi2kPnbYiRhOzqPNQ= + + optional + + + Base.lproj/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib + + hash + + TIDA6R8dUQSVjmKhaJCf+t8bhKc= + + hash2 + + qcWNm4IslkkiPucD8Q0I7sAHFyUSgIHxMJW4aFor+Ck= + + optional + + + Base.lproj/Main.storyboardc/ActionCompleteViewController.nib + + hash + + Dd0YPkQIL9hL6A4OrAYSeqTy7mk= + + hash2 + + tYl8syjSHTEFgQ3wIDLXfvUJfFG4CI1IBpDuzN8X8rs= + + optional + + + Base.lproj/Main.storyboardc/Info.plist + + hash + + P2XLFU0OKMXc3gLgEU0wYynxNdI= + + hash2 + + g5pYxlSG1mfq/m0ewydFvXAqQfXAoZ7+H3ZQK8T0eV4= + + optional + + + Base.lproj/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib + + hash + + G+5Hia6SEYQ5C4LMbkqAqvqxpqY= + + hash2 + + teMj0afUhbzUi0hol+Fjt7/c9H20acStaVn+isgqS5c= + + optional + + + Base.lproj/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib + + hash + + F+eP7aClNOQbQOYNyLb/Kl4H8Ow= + + hash2 + + 2KKUb6URj7zXeroxJZ1gQ2jAu34DwLhF0wWxyyiLw2Y= + + optional + + + Base.lproj/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib + + hash + + +N3Or9RQJPQ1yZC9nzu293afpO4= + + hash2 + + f62Jnu53iiOPSckHt2ooKIEyGrtu7ZH4jIs6abzdSxQ= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-7Gy-11-CCV.nib + + hash + + d9tGFFtUlkVAASoO0dHkgfnHjr4= + + hash2 + + HnT5ZkHJ2ayCwBfEP7E/+pZ6KAb4hJptQBq9RYpLDKM= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib + + hash + + bAXFmnDc4+4gq66Z/zucT5gIcXc= + + hash2 + + PEZXx9Nsoi4OFsfLHcNoFe/S6lPiakKIEinRxCLBvrI= + + optional + + + Base.lproj/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib + + hash + + xPSoHeHL6A1kBXMYo0NopdkRins= + + hash2 + + 8y6Aa1mnOlCR4OrHuAO/XzdomhIdO2UcfzkPFqLmGOs= + + optional + + + Base.lproj/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib + + hash + + KoOj95VJZiLmPNWIK/hpxCUsCfs= + + hash2 + + AYXS1zeQx7TichIQJkeAPil8X73CXquSC3QVTPTFtKk= + + optional + + + Base.lproj/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib + + hash + + Z/AM2wDWLYO1CU2pSK3Q99vYkyY= + + hash2 + + 12SVeQ08gxxiOaPveo8Cv0zP83fSY8mEuMnCrkn1cEM= + + optional + + + Frameworks/IDEBundleInjection.framework/IDEBundleInjection + + hash + + ZHt6cpyIHNPsCB1AgFudpN6AmiI= + + hash2 + + teNu0oJ84B4LxKDEt/muFPuShbWPPjh5XrUIv1pRC70= + + + Frameworks/IDEBundleInjection.framework/Info.plist + + hash + + hfqQZ64155EAPkkSlgBOko1ap0E= + + hash2 + + a3nG69eHdZjz8ffPHLO0GDX07O7g/DJaeaBFBb49VCM= + + + Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources + + hash + + ggWPowTL9WZ0Xpsiji4yUIoJm+w= + + hash2 + + xSMKcPAA7xu//mZbNoF5sMZZJHlsSzso1fe79VMfeuc= + + + Frameworks/IDEBundleInjection.framework/version.plist + + hash + + fe0VoRMvl8bM6vL0n62YWRKaZZw= + + hash2 + + rAHh8SxM5UCfZycyoeCZ0SQBZTxYOKmEDTCODohwgFk= + + + Frameworks/Mixpanel.framework/Info.plist + + hash + + chiI2guz1gUE6dP1DDvy+delclg= + + hash2 + + C3BLN+sPz2nHFfLXpFdx6i41z7/s0mR+W0VjGpdRECY= + + + Frameworks/Mixpanel.framework/Mixpanel + + hash + + pexgxkBydhYTTRGKzk/GSBm73fI= + + hash2 + + 7bBrFvtKUPUUQnWKWHR/KGeTydLeLOpWuuYvC3Z1ks8= + + + Frameworks/Mixpanel.framework/_CodeSignature/CodeResources + + hash + + m4mtR5Byxt02lXb+MZ5noCUYDl4= + + hash2 + + 9tqCGjHPuq5+lo2ZT+t1Od9froOh7A1P8pTMM1DcILY= + + + Frameworks/XCTest.framework/Headers/XCAbstractTest.h + + hash + + glimZR9g23UWmtfTfpa3DtRU32o= + + hash2 + + iJV+kqvtDhSFsj6V8IHHeUMh3uqAzOiOhNZJLxv/Yjo= + + + Frameworks/XCTest.framework/Headers/XCTest.h + + hash + + FeItRoIRWX9yeukRVtg0l8vKWu0= + + hash2 + + cePpQAPDKPPX6Ewck1uGjz6XlhGY2+Xkn22o3S2HEhE= + + + Frameworks/XCTest.framework/Headers/XCTestAssertions.h + + hash + + t430vwqgq3wiAocVV386i0N+lOY= + + hash2 + + pGvrq4y/YqWUdlF2m6LpdEp5xPWAw5OzuiryWTlaF3I= + + + Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h + + hash + + ZbDVHohdSHIPtEqmg7zN34qa0T4= + + hash2 + + RxajF3uw62Qphc/Icq0LxEM3ocmdcEbdthtDn0ABR2k= + + + Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h + + hash + + PL1ZOdDhdZzPNjCxecLsCysb3OQ= + + hash2 + + 2zBJeAHb9e6Y4kdJ0/haRtF3RwyzXQaNxTIXtxAlp7o= + + + Frameworks/XCTest.framework/Headers/XCTestCase.h + + hash + + YzjVm663E0vT+P6c0ORX46w/zQ0= + + hash2 + + Gf33taQZIdxR5NyU75WAw1X4IxfI/flQ2aZ2wmMDHIY= + + + Frameworks/XCTest.framework/Headers/XCTestCaseRun.h + + hash + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + hash2 + + jEzXeXeFAbT7xbfbqjlf4yF+lZvOKKw9u0dhT8Lzpe4= + + + Frameworks/XCTest.framework/Headers/XCTestDefines.h + + hash + + Dz7Tri4hztdVrwGfOLzpE53H3kk= + + hash2 + + kN/qMEAwR27j0Phyq5tli2mY38/Rhl19QT47SZy9YiA= + + + Frameworks/XCTest.framework/Headers/XCTestErrors.h + + hash + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + hash2 + + bqmU7PnCm6GkYigcYehsZluZJau/3nfvDl9NneLn8NI= + + + Frameworks/XCTest.framework/Headers/XCTestExpectation.h + + hash + + dwE0LefMLJ+L/tF8PwAW0Adc7I0= + + hash2 + + WKLqfVacGfP6KpNqRvb5c71MmE9nh5pUiDBfoOONtF4= + + + Frameworks/XCTest.framework/Headers/XCTestLog.h + + hash + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + hash2 + + Tu+6JYZZzftcXmUWH11IO9/jXCXi6QPeWDrL6izup6s= + + + Frameworks/XCTest.framework/Headers/XCTestObservation.h + + hash + + 24hjfD82jAN7/PhxU8RiEWTo5gs= + + hash2 + + bZQGOpPj/qLs1snCfbJDBnIeMfcP2Bs5EhkID+1qmjM= + + + Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h + + hash + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + hash2 + + gJCADNWI0IDm5zuz+KL6LYNXWT0Lsxr4sEocmy5MPpc= + + + Frameworks/XCTest.framework/Headers/XCTestObserver.h + + hash + + DV3Cjdd1CAe6nYFEzmUrCtnzxQg= + + hash2 + + 7CTdhCJbuEzQNSyp3exgcCn6JnIRjBwpUcOKmiddBtU= + + + Frameworks/XCTest.framework/Headers/XCTestProbe.h + + hash + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + hash2 + + FKXb32Ennc+6f3SkuVdo8bBNcIIWwryV5u5FmQYN8Fc= + + + Frameworks/XCTest.framework/Headers/XCTestRun.h + + hash + + LAZ8VzMsuBB9pLfqrrnltc7bl1E= + + hash2 + + QPsZNPPJMjhvKdJEwS32IX3eiBh5IaTv9hOuayOZD0g= + + + Frameworks/XCTest.framework/Headers/XCTestSuite.h + + hash + + 8I97NjqsYFEmiGVB5ZkFAdtT3ic= + + hash2 + + PmXhm9tv6asfgO3L46K3ks3u77vcSSyKhym7xg+L7Zc= + + + Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h + + hash + + OX+g52bOAnhjLVDKkweTKM8jTHQ= + + hash2 + + QDxhlFfxAJEcudV29W9M96FJW5LQiR0yqdUHzkjMuA0= + + + Frameworks/XCTest.framework/Headers/XCUIApplication.h + + hash + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + hash2 + + JkLYYE7r3tU7HcoCggIpStg31BvV5II6XmzRc8UFwVY= + + + Frameworks/XCTest.framework/Headers/XCUICoordinate.h + + hash + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + hash2 + + nUiZ2Tur0bUvr5aMb4C8rjGb93zvhtTZJCMSZxHXjKc= + + + Frameworks/XCTest.framework/Headers/XCUIDevice.h + + hash + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + hash2 + + 4F7O+P7bZ4FDk3pTby8bo9q5G0cwibsG9cW8z0Q86HQ= + + + Frameworks/XCTest.framework/Headers/XCUIElement.h + + hash + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + hash2 + + 9QxRETFinr/XJVF9/35Kukn15838D8MU72tFSQ8FMsw= + + + Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h + + hash + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + hash2 + + 9SI2mH0Fw8cgcd7e5L+9MJCRlhcVP03/Kb6JOrmb4DA= + + + Frameworks/XCTest.framework/Headers/XCUIElementQuery.h + + hash + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + hash2 + + NMskO3WW4aROu6ZaP7LKB1edLWw7YuhyYtZI3TmlriY= + + + Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h + + hash + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + hash2 + + cbOnohF7eJyBVdhyKusSvWWBk4aKBh19HfZgfKFaVHE= + + + Frameworks/XCTest.framework/Headers/XCUIElementTypes.h + + hash + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + hash2 + + 7j1y+g8wo73vbn8tycgUCS4eC0reDvc610S59wmdbQM= + + + Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h + + hash + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + hash2 + + kzhkCi7cyiO5rkZQfIpV5T9SL10/XMLDvluf1CewgSQ= + + + Frameworks/XCTest.framework/Headers/XCUIRemote.h + + hash + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + hash2 + + OyKIhJNyDgDu6svFc+wfN7RH20nNS2xcd6wxQhKwNpc= + + + Frameworks/XCTest.framework/Info.plist + + hash + + RlXL6/DvCRSeOgz5nn3M491olOY= + + hash2 + + tGMA2+4W9Mr63mZmE5PRUHzAgGnfMGjyHkVcL3oXeGY= + + + Frameworks/XCTest.framework/Modules/module.modulemap + + hash + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + hash2 + + jnKXP8AnVeA8lhMYYv9wWZO1A6Rn46h/Dz1jgopnxYQ= + + + Frameworks/XCTest.framework/TextBasedStubs/XCTest.tbd + + hash + + LGSU2P/34JP3STZ4E7miSr7gRl0= + + hash2 + + BTOjDP5BZv+oS50w1g0OgfJaW5bSt5gm+Lqwv4K7HXI= + + + Frameworks/XCTest.framework/XCTest + + hash + + YMeAxvQm3Wn6FDelRHd+ITvguIQ= + + hash2 + + uMT4l/KPN/ZTR/XinoQSu/lzBPU3KXleink2RlOXYlE= + + + Frameworks/XCTest.framework/XCTest.tbd + + symlink + TextBasedStubs/XCTest.tbd + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist + + hash + + lN0YnDYw1gwkzBpp3KxUxiQys5Q= + + hash2 + + JfOoD0JPPIEi0l6n6b7JOGJjyYIdAM2nRiRV7rcUXSo= + + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + hash + + 2BVbAGo8eGpfwTq8QAdl1YKSCuo= + + hash2 + + q7ETbuRMsf63URHZI2ZzXNz9txjdN8I1hVCebfHnrCE= + + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + hash + + 4P++PHtaAMhjOVGyK8ZSH/rD6bA= + + hash2 + + huUxB6B5iTql4JGNRFrdGH5/7zG5alY9GO3BVhqMm38= + + + Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist + + hash + + CYa4SmBHrAdAQlQ0LKt7Cv25vuI= + + hash2 + + IYawfIUuGGj89/ldVe+MI43nlREBPxFGhFsgU2dB8lw= + + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist + + hash + + UGV7XqHlXbPLfyxBbkAmBggmbo8= + + hash2 + + ekT9fyOF5k5D8cgARZbCEMVhTumFe+OjSfFsQYh6RUc= + + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + hash + + cQagAd5VJohU9qyrHtCq+8sRQ68= + + hash2 + + KnOoWpII/yddXWPo98kGR5qIRp2g/TrHuEaqHNTY6xE= + + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist + + hash + + CYa4SmBHrAdAQlQ0LKt7Cv25vuI= + + hash2 + + IYawfIUuGGj89/ldVe+MI43nlREBPxFGhFsgU2dB8lw= + + + Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + hash + + f/BkpmndR1XaArBmpjnOegUSgYc= + + hash2 + + wOonY5cTfyPX0ZyCv6B8z5tjFbMiFDGHDrXcln/4xpQ= + + + Frameworks/XCTest.framework/_CodeSignature/CodeResources + + hash + + vMHE9rOFvFyDvsjLKoeCWI9m8Vc= + + hash2 + + 6gaIVCbGxfkj4GXOY//RQOyZtyv4oMqiFYJJo9B3Xd0= + + + Frameworks/XCTest.framework/en.lproj/InfoPlist.strings + + hash + + WbY3O0G7IBs11w3Ll/yYYaDQvo8= + + hash2 + + csRKk47Q2InuM0gffz1DO94bvTX6/Kv9tWEkpwDOEco= + + optional + + + Frameworks/XCTest.framework/version.plist + + hash + + sH7B+B8EwE04FM+o/Gg3XGtEdeA= + + hash2 + + 4E8SufQb1LGJ61YNqNqCTh8VTbbbzTHy90aMtu9io8c= + + + Frameworks/libswiftContacts.dylib + + hash + + PuHscvszds78uI5EQrynGPVjYNs= + + hash2 + + aK+m7vvJ6ENiHcZCLaiMUiVrtALwYFJh1sDdJFwiRIc= + + + Frameworks/libswiftCore.dylib + + hash + + D28CsdD914ud/1otVExjTgmPg/A= + + hash2 + + LakrDycVqgiUvEfgAErC5QqXGH+tpgokgSFiqSyDOeg= + + + Frameworks/libswiftCoreGraphics.dylib + + hash + + ZnDGhKi/0FJzqEgEKHBfnJ3ORHw= + + hash2 + + QddwjWTA7RbaL6J28Cq6xUU4wAS2ApJIvmCsaNiGkds= + + + Frameworks/libswiftCoreImage.dylib + + hash + + R5EbN/gsclAl5gg3vs69cxmjeTo= + + hash2 + + g80Oxk9JvqX7bM7f8Ag2hXKmm7Ol5njiSDc/rhWEowk= + + + Frameworks/libswiftDarwin.dylib + + hash + + QDea40dieXsMTQCQfhNQQQ22KSI= + + hash2 + + 3lfSdFPOxOpiYwFyhWwI5s/PgluRvJq3Nll2F4ASB5Y= + + + Frameworks/libswiftDispatch.dylib + + hash + + Z1iXMY8F1dUrDGfH0rOE9/aCXfI= + + hash2 + + 4c49z5r6y4EbN4euf76Zb1qMda9/ILAE3iTN+kDGOYg= + + + Frameworks/libswiftFoundation.dylib + + hash + + 1OUEXfo18UJQeyiQ9VPTqt2w9YI= + + hash2 + + xmL798WWu5nMGpfQqgDfKYxO459c/o8HTx7JyivMYi0= + + + Frameworks/libswiftObjectiveC.dylib + + hash + + zC2EZdfnZbfAH2K3IUCzu/t9+vE= + + hash2 + + KTIb2cirMOJzEgWCXfY8N90nHmpFQT9m6QjNGMBLtkU= + + + Frameworks/libswiftSwiftOnoneSupport.dylib + + hash + + +K97Yfr/PjaWVik4FAUw0lVOgg0= + + hash2 + + yIjblG4aXzKsdqKBrCs4LvugQPbe+RVLgZgLb3uYr+Q= + + + Frameworks/libswiftUIKit.dylib + + hash + + r4nCBankaC9rfyhf7RgxMorASRg= + + hash2 + + pOusfaS8xxAwuDbSYY+roScm3fSNP1hvIR7fqMwTirU= + + + Frameworks/libswiftXCTest.dylib + + hash + + yzjhm99+P6gLcvd88fi12cpUOuI= + + hash2 + + 1iKXxxJOg68kvqrIPs0NVvy/JkK5up8aFWlMW6ZFozc= + + + Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib + + hash + + mObc8NazuSdwNN7HFZ2I+39AanE= + + hash2 + + MlesWE5um+TFP/u6OQg8/BIfnxV1W46fzsZu2KlDQDo= + + + Main.storyboardc/ActionCompleteViewController.nib + + hash + + TdA1ODGEiXs3ncdO1w25Mpj7kcA= + + hash2 + + hfFcb16ScSgITjfETAnwjpfjRt/qPnNPNC7i+XZ/x3c= + + + Main.storyboardc/Info.plist + + hash + + mloVb8jo1vepZeL1KbUrpPULy30= + + hash2 + + kjkB2TrY+LoToHDAow0Ar0+1fDL5COI00CR0UxqOq2o= + + + Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib + + hash + + hGes4dsJhFHKDtppsPX9JhPua5c= + + hash2 + + mRY+W31D3SApiF0N94ZISIsuly0Mfrri9YDCmHhuJ7A= + + + Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib + + hash + + NskdKW3DXN8uiFL51pg/+PaMh1s= + + hash2 + + 54D2UxZ/i4MlYLXEpEXvZ8fZA7LyccTgIkJDHMYxwU8= + + + Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib + + hash + + ZOo4aRS3SBaCo5nZo5Hkd8YnYmg= + + hash2 + + 7PHfLQT9Fvo9DosprXb0cyJu3eNMO8f9aL2t1Hjpe2U= + + + Main.storyboardc/UIViewController-7Gy-11-CCV.nib + + hash + + aMnYTWzHeclgRBkfXHg6VSKOPPQ= + + hash2 + + XICTTW4pQh3RqgO5CtpGhJ6Eq6ny5C0CGgvwE95rRz4= + + + Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib + + hash + + +3T0YWQ/9Oxe0aC7rT5lY9wA1WQ= + + hash2 + + TFxrKb+YXAzRPyuHZl942ewbDsuFxbCJ4zGEbnGZJAM= + + + Main.storyboardc/UIViewController-Ykd-V3-DUE.nib + + hash + + ftaxBr8tCqEQSmtM/kJ4YnyEAwU= + + hash2 + + PngW5sfjOasF6zHHNiTxIkU3XjW46UXskZJDbAB8nt4= + + + Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib + + hash + + HWXPEWUDhHn4E180l4519gDbzJw= + + hash2 + + nQ4dG0nhICghE14IXLjEm3gr5Ly0eJPbiPTidyxvgtA= + + + Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib + + hash + + rvH6sqbCrkXraHJi+cQ3pSzF0Y4= + + hash2 + + pomZuaQWiXcgoCLkha6N/Pr5M3mMBY25TmNsRWiLnQc= + + + MixpanelDemo.entitlements + + hash + + uVC4UsEAjsaAorNMAW+mHUKgk9o= + + hash2 + + e/joE7ObU4L5jO1+1JUxZxM/FUkgLPoVg6yex5UVEFk= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Info.plist + + hash + + dpAlQ6Vlwf+bYyD1NwzcqP9qdIM= + + hash2 + + zTD9gcHztyLLBx94Y/2jIaGhwLG2C6tniiIz8TZj1So= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/Nocilla + + hash + + 2Qk3hfQtn/24KkNc9RSe+HfXvSs= + + hash2 + + rOknFawc1EBaDk1cd0B4bRSJB4seb4y5SuitGEfZIiw= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/Nocilla.framework/_CodeSignature/CodeResources + + hash + + hnTEEXVPTQdQFXuO3sXFqWPin5Q= + + hash2 + + woCNJjbAuBt3jwfiVBbvZ0s/M9uLWwNlYhAsFGb4cL0= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCore.dylib + + hash + + D28CsdD914ud/1otVExjTgmPg/A= + + hash2 + + LakrDycVqgiUvEfgAErC5QqXGH+tpgokgSFiqSyDOeg= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreGraphics.dylib + + hash + + ZnDGhKi/0FJzqEgEKHBfnJ3ORHw= + + hash2 + + QddwjWTA7RbaL6J28Cq6xUU4wAS2ApJIvmCsaNiGkds= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftCoreImage.dylib + + hash + + R5EbN/gsclAl5gg3vs69cxmjeTo= + + hash2 + + g80Oxk9JvqX7bM7f8Ag2hXKmm7Ol5njiSDc/rhWEowk= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDarwin.dylib + + hash + + QDea40dieXsMTQCQfhNQQQ22KSI= + + hash2 + + 3lfSdFPOxOpiYwFyhWwI5s/PgluRvJq3Nll2F4ASB5Y= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftDispatch.dylib + + hash + + Z1iXMY8F1dUrDGfH0rOE9/aCXfI= + + hash2 + + 4c49z5r6y4EbN4euf76Zb1qMda9/ILAE3iTN+kDGOYg= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftFoundation.dylib + + hash + + 1OUEXfo18UJQeyiQ9VPTqt2w9YI= + + hash2 + + xmL798WWu5nMGpfQqgDfKYxO459c/o8HTx7JyivMYi0= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftObjectiveC.dylib + + hash + + zC2EZdfnZbfAH2K3IUCzu/t9+vE= + + hash2 + + KTIb2cirMOJzEgWCXfY8N90nHmpFQT9m6QjNGMBLtkU= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftSwiftOnoneSupport.dylib + + hash + + +K97Yfr/PjaWVik4FAUw0lVOgg0= + + hash2 + + yIjblG4aXzKsdqKBrCs4LvugQPbe+RVLgZgLb3uYr+Q= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftUIKit.dylib + + hash + + r4nCBankaC9rfyhf7RgxMorASRg= + + hash2 + + pOusfaS8xxAwuDbSYY+roScm3fSNP1hvIR7fqMwTirU= + + + PlugIns/MixpanelDemoTests.xctest/Frameworks/libswiftXCTest.dylib + + hash + + yzjhm99+P6gLcvd88fi12cpUOuI= + + hash2 + + 1iKXxxJOg68kvqrIPs0NVvy/JkK5up8aFWlMW6ZFozc= + + + PlugIns/MixpanelDemoTests.xctest/Info.plist + + hash + + 1N8ZLh3awTD9OI0/E2N7eTPZi6c= + + hash2 + + C+CQ3ylsnBQD1eXXTdbc+Iod2Kw4RmI5HAOvWau8lRk= + + + PlugIns/MixpanelDemoTests.xctest/MixpanelDemoTests + + hash + + IEwDytp1w0D60GN727JOJnAt30k= + + hash2 + + I7S9CaYaLUXhD+2wHXgHejQMkK2cVRGqpLcqm5VARsk= + + + PlugIns/MixpanelDemoTests.xctest/_CodeSignature/CodeResources + + hash + + +QZfF0vxSO8UWPd5EFz0+xEgAhk= + + hash2 + + b0wlOIkITYwca+2nq17xYQkG/yB66/4OBxlNBP2ubA0= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftmodule new file mode 100644 index 00000000..4344cf26 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule new file mode 100644 index 00000000..b639c132 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/i386.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/i386.swiftdoc new file mode 100644 index 00000000..1cac6547 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/i386.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/i386.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/i386.swiftmodule new file mode 100644 index 00000000..ad83930a Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/i386.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/x86_64.swiftdoc b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/x86_64.swiftdoc new file mode 100644 index 00000000..bea97cbf Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/x86_64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/x86_64.swiftmodule b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/x86_64.swiftmodule new file mode 100644 index 00000000..17f15d05 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/MixpanelDemoTests.swiftmodule/x86_64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h new file mode 100644 index 00000000..8c26687f --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h @@ -0,0 +1,5 @@ +#import + +@protocol LSHTTPBody +- (NSData *)data; +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h new file mode 100644 index 00000000..db14c6cb --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h @@ -0,0 +1,9 @@ +#import + +@class LSMatcher; + +@protocol LSMatcheable + +- (LSMatcher *)matcher; + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h new file mode 100644 index 00000000..aa85901e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h @@ -0,0 +1,25 @@ +#import +#import "Nocilla.h" + +@class LSStubRequest; +@class LSStubResponse; +@class LSHTTPClientHook; +@protocol LSHTTPRequest; + +extern NSString * const LSUnexpectedRequest; + +@interface LSNocilla : NSObject ++ (LSNocilla *)sharedInstance; + +@property (nonatomic, strong, readonly) NSArray *stubbedRequests; +@property (nonatomic, assign, readonly, getter = isStarted) BOOL started; + +- (void)start; +- (void)stop; +- (void)addStubbedRequest:(LSStubRequest *)request; +- (void)clearStubs; + +- (void)registerHook:(LSHTTPClientHook *)hook; + +- (LSStubResponse *)responseForRequest:(id)request; +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h new file mode 100644 index 00000000..d7df7430 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h @@ -0,0 +1,39 @@ +#import +#import "NSString+Matcheable.h" +#import "NSRegularExpression+Matcheable.h" +#import "NSData+Matcheable.h" + +@class LSStubRequestDSL; +@class LSStubResponseDSL; +@class LSStubRequest; + +@protocol LSHTTPBody; + +typedef LSStubRequestDSL *(^WithHeaderMethod)(NSString *, NSString *); +typedef LSStubRequestDSL *(^WithHeadersMethod)(NSDictionary *); +typedef LSStubRequestDSL *(^AndBodyMethod)(id); +typedef LSStubResponseDSL *(^AndReturnMethod)(NSInteger); +typedef LSStubResponseDSL *(^AndReturnRawResponseMethod)(NSData *rawResponseData); +typedef void (^AndFailWithErrorMethod)(NSError *error); + +@interface LSStubRequestDSL : NSObject +- (id)initWithRequest:(LSStubRequest *)request; + +@property (nonatomic, strong, readonly) WithHeaderMethod withHeader; +@property (nonatomic, strong, readonly) WithHeadersMethod withHeaders; +@property (nonatomic, strong, readonly) AndBodyMethod withBody; +@property (nonatomic, strong, readonly) AndReturnMethod andReturn; +@property (nonatomic, strong, readonly) AndReturnRawResponseMethod andReturnRawResponse; +@property (nonatomic, strong, readonly) AndFailWithErrorMethod andFailWithError; + +@end + +#ifdef __cplusplus +extern "C" { +#endif + +LSStubRequestDSL * stubRequest(NSString *method, id url); + +#ifdef __cplusplus +} +#endif diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h new file mode 100644 index 00000000..2ba6b663 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h @@ -0,0 +1,19 @@ +#import + +@class LSStubResponse; +@class LSStubResponseDSL; + +@protocol LSHTTPBody; + +typedef LSStubResponseDSL *(^ResponseWithBodyMethod)(id); +typedef LSStubResponseDSL *(^ResponseWithHeaderMethod)(NSString *, NSString *); +typedef LSStubResponseDSL *(^ResponseWithHeadersMethod)(NSDictionary *); + +@interface LSStubResponseDSL : NSObject +- (id)initWithResponse:(LSStubResponse *)response; + +@property (nonatomic, strong, readonly) ResponseWithHeaderMethod withHeader; +@property (nonatomic, strong, readonly) ResponseWithHeadersMethod withHeaders; +@property (nonatomic, strong, readonly) ResponseWithBodyMethod withBody; + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h new file mode 100644 index 00000000..c3dfef94 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h @@ -0,0 +1,14 @@ +// +// NSData+Matcheable.h +// Nocilla +// +// Created by Luis Solano Bonet on 09/11/14. +// Copyright (c) 2014 Luis Solano Bonet. All rights reserved. +// + +#import +#import "LSMatcheable.h" + +@interface NSData (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h new file mode 100644 index 00000000..92ebbc75 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h @@ -0,0 +1,6 @@ +#import +#import "LSHTTPBody.h" + +@interface NSData (Nocilla) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h new file mode 100644 index 00000000..9d9717f8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h @@ -0,0 +1,6 @@ +#import +#import "LSMatcheable.h" + +@interface NSRegularExpression (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h new file mode 100644 index 00000000..ca63ec73 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h @@ -0,0 +1,6 @@ +#import +#import "LSMatcheable.h" + +@interface NSString (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h new file mode 100644 index 00000000..cc0df6d8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h @@ -0,0 +1,8 @@ +#import +#import "LSHTTPBody.h" + +@interface NSString (Nocilla) + +- (NSRegularExpression *)regex; + +@end diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h new file mode 100644 index 00000000..f9bc72cb --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h @@ -0,0 +1,17 @@ +#import + +#import "NSData+Nocilla.h" +#import "NSString+Nocilla.h" +#import "LSStubRequestDSL.h" +#import "LSStubResponseDSL.h" +#import "LSNocilla.h" +#import "LSMatcheable.h" +#import "NSData+Matcheable.h" +#import "NSRegularExpression+Matcheable.h" +#import "NSString+Matcheable.h" +#import "LSHTTPBody.h" +#import "Nocilla.h" + +FOUNDATION_EXPORT double NocillaVersionNumber; +FOUNDATION_EXPORT const unsigned char NocillaVersionString[]; + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h new file mode 100644 index 00000000..e86b640a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h @@ -0,0 +1,26 @@ +// +// Nocilla.h +// Nocilla +// +// Created by Robert Böhnke on 26/03/15. +// Copyright (c) 2015 Luis Solano Bonet. All rights reserved. +// + +#import + +//! Project version number for Nocilla. +FOUNDATION_EXPORT double NocillaVersionNumber; + +//! Project version string for Nocilla. +FOUNDATION_EXPORT const unsigned char NocillaVersionString[]; + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Info.plist new file mode 100644 index 00000000..ff8c179e Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Nocilla b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Nocilla new file mode 100755 index 00000000..28fb6b81 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/Nocilla differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..5aa8f22c --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Nocilla/Nocilla.framework/_CodeSignature/CodeResources @@ -0,0 +1,306 @@ + + + + + files + + Headers/LSHTTPBody.h + + YetKUYT6SL2jf0li9xzvykHCCxQ= + + Headers/LSMatcheable.h + + nsyw/sA5qZxdRTCmhlabRO9qh0s= + + Headers/LSNocilla.h + + 6KgMvSt2Oun+u9GSAqKhvDM1mps= + + Headers/LSStubRequestDSL.h + + O0spOCsIIpVj2vMg15jJsq3pnvU= + + Headers/LSStubResponseDSL.h + + 0vytadI8Lpe16HFwxRydCg7NiBI= + + Headers/NSData+Matcheable.h + + +n2a1ZU0naPzeLz6z97NlGuEGVU= + + Headers/NSData+Nocilla.h + + j1+IHqb4kLjR3B0zPavUAgwWIO8= + + Headers/NSRegularExpression+Matcheable.h + + WCbtCppcqh0kdJXH1ymAgfDpCac= + + Headers/NSString+Matcheable.h + + hLijE/CXs+qEwxkrq7bbL2AnpQ4= + + Headers/NSString+Nocilla.h + + sQ9iGhrtBQFvyoZMcjqL3jC9gkA= + + Headers/Nocilla-umbrella.h + + aRSqk7csTftBShNQNhvQAH3ob3g= + + Headers/Nocilla.h + + 3C5K3hiAjQToMNZWuRmM/YuzL8I= + + Info.plist + + dpAlQ6Vlwf+bYyD1NwzcqP9qdIM= + + Modules/module.modulemap + + vlRm7Pn3rs+qCSJxPAsnkqkDtCE= + + + files2 + + Headers/LSHTTPBody.h + + hash + + YetKUYT6SL2jf0li9xzvykHCCxQ= + + hash2 + + qGl+ZxKRDz5QH2WC6eeAeCN24DaIx5vNpOgZqoqtMEo= + + + Headers/LSMatcheable.h + + hash + + nsyw/sA5qZxdRTCmhlabRO9qh0s= + + hash2 + + BB+44Vf3+U+CFEiz5EjxICTJ2Du7/QiM3fAOpjWP9LU= + + + Headers/LSNocilla.h + + hash + + 6KgMvSt2Oun+u9GSAqKhvDM1mps= + + hash2 + + TNIjqcP2K4xF9U4y9cP8KIRA4lsCIf0i4PRoCDH9TI8= + + + Headers/LSStubRequestDSL.h + + hash + + O0spOCsIIpVj2vMg15jJsq3pnvU= + + hash2 + + rZAE3PAin/pbsVQ3Hw2XfyeXiGdRVDsx3ANpQ7u0DHk= + + + Headers/LSStubResponseDSL.h + + hash + + 0vytadI8Lpe16HFwxRydCg7NiBI= + + hash2 + + EBpxDgdnhNkyU74L6WojvRwHewlWv9QPSDYmWsJ67Oo= + + + Headers/NSData+Matcheable.h + + hash + + +n2a1ZU0naPzeLz6z97NlGuEGVU= + + hash2 + + ZjAogTKYL1+CqMWbO7fvCaw8Fd0YczAwxMUE9zcE44Y= + + + Headers/NSData+Nocilla.h + + hash + + j1+IHqb4kLjR3B0zPavUAgwWIO8= + + hash2 + + kloU4K1SpD4LUibcI1USk4H9AVyxiAsZB5cjQXyDgDs= + + + Headers/NSRegularExpression+Matcheable.h + + hash + + WCbtCppcqh0kdJXH1ymAgfDpCac= + + hash2 + + SWfFBbmGlSgMm1XFvwJh0bNgvaVuWqEs6Ld+V6XavXM= + + + Headers/NSString+Matcheable.h + + hash + + hLijE/CXs+qEwxkrq7bbL2AnpQ4= + + hash2 + + b+hNXZKdyEztjWfXp9GmqrecEODnutx+QIuZtqKOnAg= + + + Headers/NSString+Nocilla.h + + hash + + sQ9iGhrtBQFvyoZMcjqL3jC9gkA= + + hash2 + + TzStTOql7lUC15SeAtxa3FVozA+GacVjb0TY0Hgfrs8= + + + Headers/Nocilla-umbrella.h + + hash + + aRSqk7csTftBShNQNhvQAH3ob3g= + + hash2 + + dtkf6AUK1zCNgwMcmqIXbW6L2UF1T1cKbC8ElrWmhsI= + + + Headers/Nocilla.h + + hash + + 3C5K3hiAjQToMNZWuRmM/YuzL8I= + + hash2 + + Fpc6gSu2QGOYAO1q7nVupa/kaGifUNQiiOgZoIJ4oz0= + + + Modules/module.modulemap + + hash + + vlRm7Pn3rs+qCSJxPAsnkqkDtCE= + + hash2 + + sCuyX5A1CFLYIEJkAMsVY5UdoE669bCR5fk9qnMhIrA= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h new file mode 100644 index 00000000..9d49c62b --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_MixpanelDemoTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_MixpanelDemoTestsVersionString[]; + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Info.plist b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Info.plist new file mode 100644 index 00000000..428e8851 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules/module.modulemap new file mode 100644 index 00000000..e291a44a --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MixpanelDemoTests { + umbrella header "Pods-MixpanelDemoTests-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests new file mode 100644 index 00000000..751c5cc7 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeDirectory b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeDirectory new file mode 100644 index 00000000..6baf4cf9 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeDirectory differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeRequirements b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeRequirements new file mode 100644 index 00000000..dbf9d614 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeRequirements differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeRequirements-1 b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeRequirements-1 new file mode 100644 index 00000000..62f4ebf3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeRequirements-1 differ diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..8acca3a0 --- /dev/null +++ b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeResources @@ -0,0 +1,141 @@ + + + + + files + + Headers/Pods-MixpanelDemoTests-umbrella.h + + PaJPWsduPZSnEwtBHhalk/qD/gs= + + Info.plist + + Hy0QJPmrJIBbbYBJnC7HQBlBerw= + + Modules/module.modulemap + + W8owXuJRvfEmdXYFQoiYFSiKBRA= + + + files2 + + Headers/Pods-MixpanelDemoTests-umbrella.h + + hash + + PaJPWsduPZSnEwtBHhalk/qD/gs= + + hash2 + + 9ZNi7YkyPk+Y0eui90xxCZG+Q6YdcQJjv7Qeu9ieAY4= + + + Modules/module.modulemap + + hash + + W8owXuJRvfEmdXYFQoiYFSiKBRA= + + hash2 + + +LzHcvGbh+kH+28Sj+8GNpajKiFLP8WkrBZv4k0ldww= + + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeSignature b/MixpanelDemo/Build/Products/Debug-iphonesimulator/Pods_MixpanelDemoTests.framework/_CodeSignature/CodeSignature new file mode 100644 index 00000000..e69de29b diff --git a/MixpanelDemo/Build/Products/Release-iphoneos/409FDB51-D98B-39BA-96C7-F51B3183E782.bcsymbolmap b/MixpanelDemo/Build/Products/Release-iphoneos/409FDB51-D98B-39BA-96C7-F51B3183E782.bcsymbolmap new file mode 100644 index 00000000..7c443df2 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphoneos/409FDB51-D98B-39BA-96C7-F51B3183E782.bcsymbolmap @@ -0,0 +1,2430 @@ +BCSymbolMap Version: 1.0 +_TFC8Mixpanel16MixpanelInstance9unarchivefT_T_ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundFCSo14NSNotificationT_U_FT_T_ +_TTRXFo__dT__XFdCb__dT__ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundFCSo14NSNotificationT_U0_FT_T_ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849630applicationWillEnterForegroundFCSo14NSNotificationT_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849624applicationWillTerminateFCSo14NSNotificationT_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance15setCurrentRadioFT_T_U_FT_T_ +_TTWC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_FS1_5flushfT10completionGSqFT_T___T_ +_TTWC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_FS1_30updateNetworkActivityIndicatorfSbT_ +_TFFC8Mixpanel16MixpanelInstance8identifyFT10distinctIdSS_T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance5resetFT_T_U_FT_T_ +_TFFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_U_FSbT_ +_TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance16clearTimedEventsFT_T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance20clearSuperPropertiesFT_T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__12defaultValueGSqPS2____T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance23unregisterSuperPropertyFSST_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_ +_TFFC8Mixpanel5Flush15startFlushTimerFT_T_U_FT_T_ +block_copy_helper +block_destroy_helper +_TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_ +objectdestroy +_TPA__TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_ +_TFC8Mixpanel5Flush19flushQueueInBatchesfTRGSaGVs10DictionarySSPs9AnyObject___4typeOS_9FlushType_T_ +globalinit_33_A5066DE13777C552986D7397F9E123E1_func5 +_TFFC8Mixpanel5Track27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__15superPropertiesRGS1_SSPS2___12defaultValueGSqPS2____T_U_FTSSPS2___T_ +_TTRXFo_oSSoPs9AnyObject__dT_zoPs9ErrorType__XFo_iTSSPS____iT_zoPS0___ +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_func6 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_func7 +_TFIZvC8Mixpanel19AutomaticProperties10propertiesGVs10DictionarySSPs9AnyObject__iU_FT_GS1_SSPS2___ +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_func9 +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_func10 +_TTSg5O8Mixpanel13PropertyErrorS0_s9ErrorTypeS____TFEsPs9ErrorTypeg7_domainSS +_TTWVSC20NSJSONWritingOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb +_TTWVSC20NSJSONWritingOptionss23ArrayLiteralConvertible10FoundationFS0_Cft12arrayLiteralGSawx7Element__x +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_CfT_x +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_5unionfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_9intersectfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_11exclusiveOrfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_6removefwx7ElementGSqwxS2__ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_12unionInPlacefxT_ +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_12unionInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_16intersectInPlacefxT_ +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_16intersectInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_18exclusiveOrInPlacefxT_ +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_18exclusiveOrInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_8subtractfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_10isSubsetOffxSb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_14isDisjointWithfxSb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_12isSupersetOffxSb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_CuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S__GSaS__GSaS__s12SequenceTypes_GVs17IndexingGeneratorGSaS___GS3_GSaS___s13GeneratorTypes_GVs10ArraySliceS_____TFEsPs14SetAlgebraTypeCuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_15subtractInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element8subsumeswxS2__Sb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element14isDisjointWithwxS2__Sb +_TTWVSC20NSJSONWritingOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ +_TTWVSC20NSJSONWritingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue +_TTWVSC20NSJSONWritingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x +_TTSf4d_n_n_n_d___TTSg5Vs4UTF8S_s16UnicodeCodecTypes_GSRVs5UInt8_GSRS1__s14CollectionTypes_S1__GVs28UnsafeBufferPointerGeneratorS1__GS3_S1__s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGSRS1___GS8_GSRS1___s9IndexablesGS8_GSRS1___s12SequenceTypes_GVs17IndexingGeneratorGS8_GSRS1____GS11_GS8_GSRS1____S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GSRS1____S1__S1____TZFVs13_StringBuffer13fromCodeUnitsu0_Rxs16UnicodeCodecType_s14CollectionTypewx8CodeUnitzW_9Generator7Element_rfTMx5inputq_24repairIllFormedSequencesSb15minimumCapacitySi_TGSqS__8hadErrorSb_ +_TTSg5SS___TFCs23_ContiguousArrayStoraged +_TTSg5TSSPs9AnyObject_____TFCs23_ContiguousArrayStoraged +_TTSg5TSSSS____TFCs23_ContiguousArrayStoraged +_TTSg5P____TFCs23_ContiguousArrayStoraged +_TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS +_TTSg5SiSis23CustomStringConvertibles___TFs26_toStringReadOnlyPrintableuRxs23CustomStringConvertiblerFxSS +_TTSg5VSS8UTF8ViewS_s14CollectionTypes_GVs17IndexingGeneratorS__GS1_S__s13GeneratorTypes_Vs5UInt8_VS_5IndexS4_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__S_S_s9IndexablesS_s12SequenceTypes_GS1_S__GS1_S__S2_s_S3__S4_S4_S5_s_SiSiS6_s_SiSiS7_s_S8__S__S3__S3____TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTSg5VVSS8UTF8View5IndexS0_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFEsPs16ForwardIndexType10distanceTofxwx8Distance +_TTSf4n_n_d___TTSg5Vs5UInt8___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5Vs5UInt8___TFSa16_copyToNewBufferfSiT_ +_TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa16_copyToNewBufferfSiT_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage24nativeRemoveObjectForKeyfxGSqq__ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage17nativeUpdateValuefTx6forKeyx_GSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage24nativeRemoveObjectForKeyfxGSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage8maybeGetfxGSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TZFOs18_VariantSetStorage24maybeGetFromCocoaStoragefTVs16_CocoaSetStorage6forKeyx_GSqx_ +_TTSg5GVs12_ArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_S0__GVs17IndexingGeneratorGS_S0___GS2_GS_S0___s13GeneratorTypes_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS0__GS7_S0__s14CollectionTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0__GS7_S0__s9IndexablesGS7_S0__s12SequenceTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0___S0__S0__S0____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_GVs14_IgnorePointerS0__GS2_S0__s20_PointerFunctionTypes_S0__GVs17IndexingGeneratorGS_S0___GS4_GS_S0___s13GeneratorTypes_S0__GVs12_SliceBufferS0__GS6_S0__s14CollectionTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS6_S0__GS6_S0__s9IndexablesGS6_S0__s12SequenceTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS6_S0___S0__S0__S0____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4s_n_n___TTSg5Vs5UInt8___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSg5O8Mixpanel8LogLevel___TZFCs21_NativeSetStorageImpl6createfSiGS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5_findfTxSi_T3posGVs15_NativeSetIndexx_5foundSb_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSf4gs_n_n_d___TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage16nativeDeleteImplfTGVs17_NativeSetStoragex_11idealBucketSi6offsetSi_T_ +_TMaGCs23_ContiguousArrayStorageSS_ +__swift_noop_void_return +__swift_noop_self_return +_TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4n_gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypefTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__ +_TTSf4gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A19unarchivePropertiesfT5tokenSS_TGVs10DictionarySSPs9AnyObject__GS1_SSPS2___SSGSqSS_GSaGS1_SSPS2_____ +_TTSf4g_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TMaGVs10DictionarySSPs9AnyObject__ +_TMaPs9AnyObject_ +_TTSf4n_g_gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFilefTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_ +_TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ +_TTSf4g_n_n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage16nativeDeleteImplfTGVs24_NativeDictionaryStoragexq__11idealBucketSi6offsetSi_T_ +_TTSf4n_s_d___TZFC8Mixpanel11Persistence17archivePropertiesfTVS_18ArchivedProperties5tokenSS_T_ +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_ +_TPA__TFFC8Mixpanel16MixpanelInstance8identifyFT10distinctIdSS_T_U_FT_T_ +_TMaP_ +objectdestroy.14 +_TMaGCs23_ContiguousArrayStorageTSSSS__ +_TTSf4g_d___TTSg5SSSSs8Hashables_SS___TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TMaGCs29_NativeDictionaryStorageOwnerSSSS_ +objectdestroy.16 +objectdestroy.22 +_TPA__TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_ +objectdestroy.36 +_TPA__TFFC8Mixpanel16MixpanelInstance4timeFT5eventSS_T_U_FT_T_ +objectdestroy.44 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_ +objectdestroy.49 +_TPA__TFFC8Mixpanel16MixpanelInstance23registerSuperPropertiesFGVs10DictionarySSPs9AnyObject__T_U_FT_T_ +objectdestroy.57 +_TPA__TFFC8Mixpanel16MixpanelInstance27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__12defaultValueGSqPS2____T_U_FT_T_ +objectdestroy.65 +_TPA__TFFC8Mixpanel16MixpanelInstance23unregisterSuperPropertyFSST_U_FT_T_ +_TTSf4g_n___TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0____T____TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ +_TTSf4gs_g_d___TZFC8Mixpanel7Network16trackIntegrationfT8apiTokenSS10completionFSbT__T_ +_TTSf4g_d___TZFC8Mixpanel5Track19assertPropertyTypesfGSqGVs10DictionarySSPs9AnyObject___T_ +_TTSf4n_g___TTSg5SSSSs8Hashables_Ps9AnyObject____TZF8Mixpaneloi2peu0_Rxs8HashablerFTRGVs10Dictionaryxq__GS1_xq___T_ +_TTSf4g_g_n_n_g_gs_n_n___TFC8Mixpanel5Track5trackfT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject___11eventsQueueRGSaGS1_SSPS2____11timedEventsRGS1_SSPS2___15superPropertiesGS1_SSPS2___10distinctIdSS13epochIntervalSd_T_ +_TTSf4g_n_n_d___TFC8Mixpanel5Track4timefT5eventGSqSS_11timedEventsRGVs10DictionarySSPs9AnyObject__9startTimeSd_T_ +_TTSf4gs_d___TFOC8Mixpanel11Persistence11ArchiveTypeCfT8rawValueSS_GSqS1__ +_TTSf4gs_d___TFO8Mixpanel6MethodCfT8rawValueSS_GSqS0__ +_TTSf4gs_d___TFO8Mixpanel8LogLevelCfT8rawValueSS_GSqS0__ +_TTSf4gs_d___TFO8Mixpanel9FlushTypeCfT8rawValueSS_GSqS0__ +_TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ +_TMaVSC20NSJSONWritingOptions +__swift_memcpy8_8 +__swift_memcpy_array8_8 +__swift_memmove_array8_8 +get_field_types_NSJSONWritingOptions +_TWaC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_ +_TWTurGSax_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGSax_s14CollectionTypes11SubSequencePs12SequenceType_ +_TWturGSax_s12SequenceTypes9Generator +_TWTurGSax_s12SequenceTypes9GeneratorPs13GeneratorType_ +_TWturGSax_s12SequenceTypes11SubSequence +_TWtuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypes7Element +_TWturGVs15EmptyCollectionx_s14CollectionTypes9Generator +_TWTurGVs15EmptyCollectionx_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWturGVs15EmptyCollectionx_s14CollectionTypes11SubSequence +_TWturGVs14_IgnorePointerx_s20_PointerFunctionTypes7Element +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes9Generator +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes11SubSequence +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s9Indexables5Index +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s9Indexables5IndexPs16ForwardIndexType_ +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s9Indexables8_Element +_TWturGVs15ContiguousArrayx_s12SequenceTypes9Generator +_TWturGVs10ArraySlicex_s12SequenceTypes9Generator +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s16LazySequenceTypes8Elements +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s16LazySequenceTypes8ElementsPs12SequenceType_ +_TWtuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9Indexables5Index +_TWTuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9Indexables5IndexPs16ForwardIndexType_ +_TWtuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9Indexables8_Element +_TWtuRxs14CollectionTyperGVs14LazyCollectionx_s16LazySequenceTypes8Elements +_TWTuRxs14CollectionTyperGVs14LazyCollectionx_s16LazySequenceTypes8ElementsPs12SequenceType_ +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9Indexables5Index +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9Indexables5IndexPs16ForwardIndexType_ +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9Indexables8_Element +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s9Generator +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s9GeneratorPs13GeneratorType_ +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s11SubSequence +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s11SubSequencePs9Indexable_ +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s11SubSequencePs12SequenceType_ +_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes9Generator +_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequence +_TWturGVs12_SliceBufferx_s14CollectionTypes9Generator +_TWturGVs12_SliceBufferx_s14CollectionTypes11SubSequence +_TWTurGVs12_SliceBufferx_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGVs12_SliceBufferx_s14CollectionTypes11SubSequencePs12SequenceType_ +get_field_types_MixpanelInstance +_TPA__TFFC8Mixpanel16MixpanelInstance15setCurrentRadioFT_T_U_FT_T_ +objectdestroy.99 +_TPA__TFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_ +block_copy_helper.101 +block_destroy_helper.102 +objectdestroy.104 +objectdestroy.110 +_TPA__TFFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_U_FSbT_ +_TMaCSo8NSObject +objectdestroy.112 +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_.114 +objectdestroy.127 +_TPA__TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundFCSo14NSNotificationT_U0_FT_T_ +objectdestroy.132 +_TPA__TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_.134 +objectdestroy.138 +_TPA__TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_.140 +_TTSf4n_n_d___TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb +_TTSf4n_n_d___TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb +_TMaGCs22_NativeSetStorageOwnerO8Mixpanel8LogLevel_ +_TMaGCs21_NativeSetStorageImplO8Mixpanel8LogLevel_ +_TMaGCs23_ContiguousArrayStorageP__ +_TMaMO8Mixpanel13PropertyError +objectdestroy.153 +_TPA__TFFC8Mixpanel5Track27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__15superPropertiesRGS1_SSPS2___12defaultValueGSqPS2____T_U_FTSSPS2___T_ +objectdestroy.155 +_TPA__TTRXFo_oSSoPs9AnyObject__dT_zoPs9ErrorType__XFo_iTSSPS____iT_zoPS0___ +_TPA__TTRXFo_iT__iT__XFo__dT__ +_TMaGCs28_NativeDictionaryStorageImplSSSS_ +_swift_dead_method_stub +objectdestroy.4 +objectdestroy.88 +objectdestroy.73 +_TWturGSax_s14CollectionTypes11SubSequence +_TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence +_TWturGVs10ArraySlicex_s12SequenceTypes11SubSequence +objectdestroy.27 +objectdestroy.30 +objectdestroy.79 +objectdestroy.82 +objectdestroy.85 +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_.18 +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_.90 +_TWturGSax_s14CollectionTypes9Generator +objectdestroy.9 +_TPA__TFFC8Mixpanel16MixpanelInstance15setCurrentRadioFT_T_U_FT_T_.106 +objectdestroy.157 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_.53 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_.61 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_.69 +_TPA__TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_.149 +_TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element +_TWturGVs12_ArrayBufferx_s9Indexables8_Element +_TWturGVs15EmptyCollectionx_s9Indexables8_Element +_TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element +_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element +_TWturGSax_s9Indexables8_Element +_TWtuRxs14CollectionTyperGVs31_InitializeMemoryFromCollectionx_s20_PointerFunctionTypes7Element +_TWturGVs12_SliceBufferx_s16_ArrayBufferTypes7Element +_TWturGVs12_SliceBufferx_s9Indexables8_Element +block_destroy_helper.2 +block_destroy_helper.7 +block_destroy_helper.12 +block_destroy_helper.20 +block_destroy_helper.25 +block_destroy_helper.34 +block_destroy_helper.39 +block_destroy_helper.42 +block_destroy_helper.47 +block_destroy_helper.55 +block_destroy_helper.63 +block_destroy_helper.71 +block_destroy_helper.77 +block_destroy_helper.92 +block_destroy_helper.97 +block_destroy_helper.108 +block_destroy_helper.116 +block_destroy_helper.119 +block_destroy_helper.122 +block_destroy_helper.125 +block_destroy_helper.130 +block_destroy_helper.136 +block_destroy_helper.142 +block_destroy_helper.145 +block_destroy_helper.151 +block_destroy_helper.160 +objectdestroy.51 +objectdestroy.59 +objectdestroy.67 +objectdestroy.147 +objectdestroy.94 +block_copy_helper.1 +block_copy_helper.6 +block_copy_helper.11 +block_copy_helper.19 +block_copy_helper.24 +block_copy_helper.33 +block_copy_helper.38 +block_copy_helper.41 +block_copy_helper.46 +block_copy_helper.54 +block_copy_helper.62 +block_copy_helper.70 +block_copy_helper.76 +block_copy_helper.91 +block_copy_helper.96 +block_copy_helper.107 +block_copy_helper.115 +block_copy_helper.118 +block_copy_helper.121 +block_copy_helper.124 +block_copy_helper.129 +block_copy_helper.135 +block_copy_helper.141 +block_copy_helper.144 +block_copy_helper.150 +block_copy_helper.159 +_TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWTurGVs15EmptyCollectionx_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGVs15EmptyCollectionx_s14CollectionTypes11SubSequencePs12SequenceType_ +_TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_ +_TWTurGVs10ArraySlicex_s12SequenceTypes9GeneratorPs13GeneratorType_ +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes11SubSequencePs9Indexable_ +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes11SubSequencePs12SequenceType_ +_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWTurGVs12_SliceBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs12SequenceType_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_6insertfwx7ElementT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb +_TPA__TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_.75 +globalinit_33_A5066DE13777C552986D7397F9E123E1_token5 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_token6 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_token7 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_token8 +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_token9 +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_token10 +globalinit_33_DC679E1127B8EE4445673262459DB836_token11 +globalinit_33_DC679E1127B8EE4445673262459DB836_token12 +globalinit_33_5BB93A66CA3F8035AFDFA4141CC75A3F_token13 +block_descriptor +metadata +block_descriptor.3 +_TMLGCs23_ContiguousArrayStorageSS_ +L_selector_data(defaultCenter) +L_selector(defaultCenter) +L_selector_data(removeObserver:) +L_selector(removeObserver:) +_TMLGVs10DictionarySSPs9AnyObject__ +_TMLPs9AnyObject_ +_PROTOCOL__TtPs9AnyObject_ +l_OBJC_LABEL_PROTOCOL_$__TtPs9AnyObject_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs9AnyObject_ +L_selector_data(allocWithZone:) +L_selector(allocWithZone:) +L_selector_data(init) +L_selector(init) +L_selector_data(timeIntervalSince1970) +L_selector(timeIntervalSince1970) +metadata.5 +block_descriptor.8 +metadata.10 +block_descriptor.13 +_TZvC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E13enabledLevelsGVs3SetOS_8LogLevel_ +_TMLP_ +_TZvC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E7loggersGSaPS_7Logging__ +metadata.15 +_TMLGCs23_ContiguousArrayStorageTSSSS__ +_TMLTSSSS_ +_TMLGCs29_NativeDictionaryStorageOwnerSSSS_ +metadata.17 +block_descriptor.21 +metadata.23 +block_descriptor.26 +metadata.28 +metadata.31 +block_descriptor.35 +metadata.37 +block_descriptor.40 +block_descriptor.43 +metadata.45 +block_descriptor.48 +metadata.50 +metadata.52 +block_descriptor.56 +metadata.58 +metadata.60 +block_descriptor.64 +metadata.66 +metadata.68 +block_descriptor.72 +L_selector_data(UUIDString) +L_selector(UUIDString) +metadata.74 +block_descriptor.78 +metadata.80 +metadata.83 +metadata.86 +_TMLGCs23_ContiguousArrayStorageTSSPs9AnyObject___ +_TMLTSSPs9AnyObject__ +_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ +metadata.89 +block_descriptor.93 +_TWVVSC20NSJSONWritingOptions +_TMnVSC20NSJSONWritingOptions +_TMVSC20NSJSONWritingOptions +_TWPVSC20NSJSONWritingOptionss23ArrayLiteralConvertible10Foundation +_TWPVSC20NSJSONWritingOptionss9Equatable10Foundation +_TWPC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_ +_TWPVSC20NSJSONWritingOptionss14SetAlgebraType10Foundation +_TWPVSC20NSJSONWritingOptionss16RawRepresentable10Foundation +_TWPVSC20NSJSONWritingOptionss13OptionSetType10Foundation +L_selector_data(applicationDidBecomeActive:) +L_selector_data(applicationWillResignActive:) +L_selector_data(applicationDidEnterBackground:) +L_selector_data(applicationWillEnterForeground:) +L_selector_data(applicationWillTerminate:) +L_selector_data(appLinksNotificationRaised:) +L_selector_data(setCurrentRadio) +_METACLASS_DATA__TtC8Mixpanel16MixpanelInstance +_INSTANCE_METHODS__TtC8Mixpanel16MixpanelInstance +_IVARS__TtC8Mixpanel16MixpanelInstance +_DATA__TtC8Mixpanel16MixpanelInstance +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849614setupListenersfT_T_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849626applicationDidBecomeActivefCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849627applicationWillResignActivefCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundfCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849630applicationWillEnterForegroundfCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849624applicationWillTerminatefCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849626appLinksNotificationRaisedfCSo14NSNotificationT_ +_TMfC8Mixpanel16MixpanelInstance +_swift_FORCE_LOAD_$_swiftUIKit_$_Mixpanel +_swift_FORCE_LOAD_$_swiftCoreImage_$_Mixpanel +_swift_FORCE_LOAD_$_swiftDarwin_$_Mixpanel +_swift_FORCE_LOAD_$_swiftCoreGraphics_$_Mixpanel +_swift_FORCE_LOAD_$_swiftDispatch_$_Mixpanel +_swift_FORCE_LOAD_$_swiftObjectiveC_$_Mixpanel +_swift_FORCE_LOAD_$_swiftFoundation_$_Mixpanel +l_protocol_conformances +got._TMps23ArrayLiteralConvertible +got._TMps9Equatable +got._TMp8Mixpanel13FlushDelegate +got._TMps28CustomDebugStringConvertible +got._TMps14SetAlgebraType +got._TMps16RawRepresentable +got._TMps13OptionSetType +field_type_vector_MixpanelInstance +_TMLGSqP8Mixpanel16MixpanelDelegate__ +_TMLP8Mixpanel16MixpanelDelegate_ +_TMLGSQC8Mixpanel6People_ +_TMLGSaGVs10DictionarySSPs9AnyObject___ +_TMLGSQPSo17OS_dispatch_queue__ +_TMLPSo17OS_dispatch_queue_ +_PROTOCOL_OS_dispatch_queue +l_OBJC_LABEL_PROTOCOL_$_OS_dispatch_queue +l_OBJC_PROTOCOL_REFERENCE_$_OS_dispatch_queue +field_type_vector_NSJSONWritingOptions +L_selector_data(currentRadioAccessTechnology) +L_selector(currentRadioAccessTechnology) +metadata.95 +block_descriptor.98 +L_selector_data(substringFromIndex:) +L_selector(substringFromIndex:) +L_selector_data(objectForKey:) +L_selector(objectForKey:) +_PROTOCOL__TtPs17_NSStringCoreType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ +L_selector_data(standardUserDefaults) +L_selector(standardUserDefaults) +L_selector_data(boolForKey:) +L_selector(boolForKey:) +metadata.100 +block_descriptor.103 +metadata.105 +block_descriptor.109 +L_selector(setCurrentRadio) +L_selector_data(addObserver:selector:name:object:) +L_selector(addObserver:selector:name:object:) +L_selector(applicationWillTerminate:) +L_selector(applicationWillResignActive:) +L_selector(applicationDidBecomeActive:) +L_selector(applicationDidEnterBackground:) +L_selector(applicationWillEnterForeground:) +L_selector(appLinksNotificationRaised:) +metadata.111 +L_selector_data(setBool:forKey:) +L_selector(setBool:forKey:) +L_selector_data(synchronize) +L_selector(synchronize) +L_selector_data(userInfo) +L_selector(userInfo) +_TMLCSo8NSObject +metadata.113 +block_descriptor.117 +block_descriptor.120 +block_descriptor.123 +L_selector_data(sharedApplication) +L_selector(sharedApplication) +L_selector_data(endBackgroundTask:) +L_selector(endBackgroundTask:) +L_selector_data(setNetworkActivityIndicatorVisible:) +L_selector(setNetworkActivityIndicatorVisible:) +block_descriptor.126 +L_selector_data(beginBackgroundTaskWithExpirationHandler:) +L_selector(beginBackgroundTaskWithExpirationHandler:) +metadata.128 +block_descriptor.131 +metadata.133 +block_descriptor.137 +metadata.139 +block_descriptor.143 +block_descriptor.146 +metadata.148 +block_descriptor.152 +_TMLGCs23_ContiguousArrayStorageVSC20NSJSONWritingOptions_ +_TMLGCs22_NativeSetStorageOwnerO8Mixpanel8LogLevel_ +_TMLGCs21_NativeSetStorageImplO8Mixpanel8LogLevel_ +L_selector_data(count) +L_selector(count) +L_selector_data(countByEnumeratingWithState:objects:count:) +L_selector(countByEnumeratingWithState:objects:count:) +L_selector_data(currentDevice) +L_selector(currentDevice) +L_selector_data(identifierForVendor) +L_selector(identifierForVendor) +_TMLGCs23_ContiguousArrayStorageP__ +_TMLMO8Mixpanel13PropertyError +metadata.154 +metadata.156 +metadata.158 +block_descriptor.161 +_TMLGCs28_NativeDictionaryStorageImplSSSS_ +L_selector_data(member:) +L_selector(member:) +_PROTOCOL_OS_dispatch_object +l_OBJC_LABEL_PROTOCOL_$_OS_dispatch_object +l_OBJC_PROTOCOL_REFERENCE_$_OS_dispatch_object +_PROTOCOL_NSObject +l_OBJC_LABEL_PROTOCOL_$_NSObject +l_OBJC_PROTOCOL_REFERENCE_$_NSObject +_PROTOCOL_PROTOCOLS_OS_dispatch_queue +_PROTOCOL__TtPs14_NSCopyingType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_ +_PROTOCOL__TtPs22_NSFastEnumerationType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs22_NSFastEnumerationType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs22_NSFastEnumerationType_ +L_selector_data(length) +L_selector_data(characterAtIndex:) +_PROTOCOL_PROTOCOLS__TtPs17_NSStringCoreType_ +_PROTOCOL_INSTANCE_METHODS__TtPs17_NSStringCoreType_ +_PROTOCOL_METHOD_TYPES__TtPs17_NSStringCoreType_ +_PROTOCOL_PROTOCOLS_OS_dispatch_object +L_selector_data(isEqual:) +L_selector_data(hash) +L_selector_data(superclass) +L_selector_data(class) +L_selector_data(self) +L_selector_data(performSelector:) +L_selector_data(performSelector:withObject:) +L_selector_data(performSelector:withObject:withObject:) +L_selector_data(isProxy) +L_selector_data(isKindOfClass:) +L_selector_data(isMemberOfClass:) +L_selector_data(conformsToProtocol:) +L_selector_data(respondsToSelector:) +L_selector_data(retain) +L_selector_data(release) +L_selector_data(autorelease) +L_selector_data(retainCount) +L_selector_data(zone) +L_selector_data(description) +L_selector_data(debugDescription) +_PROTOCOL_INSTANCE_METHODS_NSObject +_PROTOCOL_INSTANCE_METHODS_OPT_NSObject +_PROTOCOL_PROPERTIES_NSObject +_PROTOCOL_METHOD_TYPES_NSObject +_PROTOCOL__TtPs15_ShadowProtocol_ +l_OBJC_LABEL_PROTOCOL_$__TtPs15_ShadowProtocol_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs15_ShadowProtocol_ +L_selector_data(copyWithZone:) +_PROTOCOL_PROTOCOLS__TtPs14_NSCopyingType_ +_PROTOCOL_INSTANCE_METHODS__TtPs14_NSCopyingType_ +_PROTOCOL_METHOD_TYPES__TtPs14_NSCopyingType_ +_PROTOCOL_PROTOCOLS__TtPs22_NSFastEnumerationType_ +_PROTOCOL_INSTANCE_METHODS__TtPs22_NSFastEnumerationType_ +_PROTOCOL_METHOD_TYPES__TtPs22_NSFastEnumerationType_ +objc_classes +switch.table.165 +switch.table.166 +Apple LLVM version 7.3.0 (clang-703.0.31) +-emit-bc /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift -target arm64-apple-ios8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos -F /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos -g -import-underlying-module -module-cache-path /Users/yardeneitan/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos/include -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/arm64 -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/yardeneitan/Development/mixpanel-swift -emit-module-doc-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftdoc -O -module-name Mixpanel -emit-module-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.swiftmodule -emit-objc-header-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel-Swift.h -serialize-diagnostics-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.dia -emit-dependencies-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.d -num-threads 8 -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/MixpanelInstance.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Constants.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Flush.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Persistence.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/PrintLogging.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Network.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FileLogging.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/People.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Track.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/JSONHandler.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/AutomaticProperties.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Logger.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Error.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/FlushRequest.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/arm64/Mixpanel.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift +dispatch_get_main_queue +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/include/dispatch/queue.h +/Users/yardeneitan/Development/mixpanel-swift + +Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +_TMaTSuSuSuSuSu_ +MixpanelInstance.swift +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel +_TMaGSpSu_ +_TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___ +_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ +_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb +_TFVs13_StringBufferg8capacitySi +_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ +_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ +_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ +_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb +_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb +_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ +_TTSg5SS___TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSf4n_d___TFScCfVs6UInt32Sc +_TTSg5VVSS17UnicodeScalarView17_ScratchGeneratorS0_s13GeneratorTypes___TFVs5UTF166decodeuRxs13GeneratorTypewx7ElementzVs6UInt16rfRxOs21UnicodeDecodingResult +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa9removeAllfT12keepCapacitySb_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp10initializefxT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5GSaGVs10DictionarySSPs9AnyObject___GSaGS_SSPS0____s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_SSPS0______TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag8endIndexSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa6appendfxT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag9subscriptFSix +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3SetCfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevel___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ +_TTSg5O8Mixpanel8LogLevel___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ +_TTSg5P8Mixpanel7Logging____TFSaCfT_GSax_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5SS_SS___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSSS____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSSS____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSSS____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSSS____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSSS____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSSS__GSaTSSSS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSSS____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSSS____TFSag8endIndexSi +_TTSg5TSSSS____TFSag10startIndexSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSg5TSSSS____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSSS____TFVs12_ArrayBufferg5countSi +_TTSg5TSSSS____TFSa9_getCountfT_Si +_TTSg5TSSSS____TFSag5countSi +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5TSSSS____TFSag9subscriptFSix +_TTSg5GSaTSSSS__GSaTSSSS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSSS__GS3_TSSSS__s9IndexablesGS3_TSSSS__s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSSS___GS6_GS3_TSSSS___s13GeneratorTypes_TSSSS__SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSSS___TSSSS__TSSSS____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5TSSSS____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSSS____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTRXFo_iT__iT__XFo__dT__ +flushPeopleQueue +requestNotAllowed +flushEventsQueue +flushQueue +_TFFC8Mixpanel16MixpanelInstance4timeFT5eventSS_T_U_FT_T_ +clearTimedEvents +clearSuperProperties +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg5countSi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage9removeAllfT12keepCapacitySb_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary9removeAllfT12keepCapacitySb_T_ +archiveProperties +registerSuperProperties +_TFFC8Mixpanel16MixpanelInstance23registerSuperPropertiesFGVs10DictionarySSPs9AnyObject__T_U_FT_T_ +registerSuperPropertiesOnce +unregisterSuperProperty +_TTSg5P____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_P____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_P____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5P____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSg5MO8Mixpanel13PropertyError___TFSSCurfT10reflectingx_SS +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffers5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TZFsoi2eeFTSSSS_Sb +unarchivePeople +_TTSg5GVs10DictionarySSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +unarchive +unarchiveEvents +_TTSg5Vs5UInt8___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +init +_TMaCSo8UIDevice +_TMaPMP_ +_TMaGSqPMP__ +_TZFsoi2neFTGSqPMP__GSqPMP___Sb +_TTSg5Vs5UInt8___TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSaCfT_GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT_GS_xq__ +defaultDistinctId +_TTSg5Vs5UInt8___TFSa9_getCountfT_Si +_TTSg5Vs5UInt8___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5Vs5UInt8___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TFFC8Mixpanel16MixpanelInstanceW14loggingEnabledSbu0_KT_P_ +_TTSg5O8Mixpanel8LogLevel___TFSp4movefT_x +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5_prevfSiSi +_TTSg5O8Mixpanel8LogLevel___TTRGrXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TFZFCs21_NativeSetStorageImpl6createFSiGS_x_U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ +_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ +_TTSg5O8Mixpanel8LogLevel___TZFCs21_NativeSetStorageImpl14bytesForBitMapfSiSi +_TTSg5O8Mixpanel8LogLevel___TZFCs21_NativeSetStorageImpl12bytesForKeysfSiSi +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage20isUniquelyReferencedfT_Sb +__swift_memmove_array64_8 +__swift_memcpy_array64_8 +__swift_copy_outline_pointer +_TwalVSC28_SwiftNSFastEnumerationState +_TwTkVSC28_SwiftNSFastEnumerationState +__swift_memcpy64_8 +_TwCpVSC28_SwiftNSFastEnumerationState +_TwdeVSC28_SwiftNSFastEnumerationState +_TwprVSC28_SwiftNSFastEnumerationState +_TwCPVSC28_SwiftNSFastEnumerationState +_TwXXVSC28_SwiftNSFastEnumerationState +_TMaGSqPs9AnyObject__ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorageg11_bucketMaskSi +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg5_keysGSpx_ +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorageCfT8capacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwnercfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwnerCfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevel___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5_nextfSiSi +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs15_NativeSetIndexCfT13nativeStorageGVs17_NativeSetStoragex_6offsetSi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage12unsafeAddNewfT3keyx_T_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage18isInitializedEntryfSiSb +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorageCfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage6setKeyfTx2atSi_T_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5keyAtfSix +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImpls6_countSi +_TTSg5O8Mixpanel8LogLevel___TFSp10initializefxT_ +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg21_maxLoadFactorInverseSd +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg6_countSi +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg9_capacitySi +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage7_bucketfxSi +_TFFC8Mixpanel16MixpanelInstanceW14loggingEnabledSbu_KT_P_ +_TTSg5CSo8NSObject___TFs25_isClassOrObjCExistentialurFMxSb +_TTSg5CSo8NSObject___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ +_TTSg5CSo8NSObject___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ +_TFFC8Mixpanel16MixpanelInstance21trackPushNotificationFTGVs10DictionaryCSo8NSObjectPs9AnyObject__5eventSS_T_u_KT_P_ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x +== +flush +updateNetworkActivityIndicator +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_8containsfxSb +contains +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType5unionfxx +union +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType9intersectfxx +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType11exclusiveOrfxx +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6insertfwxS0_T_ +insert +remove +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6removefwxS0_GSqwxS0__ +unionInPlace +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType8subtractfxx +subtract +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType10isSubsetOffxSb +isSubsetOf +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType14isDisjointWithfxSb +isDisjointWith +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType12isSupersetOffxSb +intersect +isSupersetOf +_TTWSus9EquatablesZFS_oi2eefTxx_Sb +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeg7isEmptySb +_TTWSus21BitwiseOperationsTypesZFS_g8allZerosx +isEmpty.get +_TTWSus21BitwiseOperationsTypesZFS_oi1xfTxx_x +_TTWSus21BitwiseOperationsTypesZFS_oi1afTxx_x +intersectInPlace +exclusiveOrInPlace +exclusiveOr +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType15subtractInPlacefxT_ +subtractInPlace +element +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5VSC20NSJSONWritingOptions___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5VSC20NSJSONWritingOptions___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5VSC20NSJSONWritingOptions___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaGCs23_ContiguousArrayStorageVSC20NSJSONWritingOptions_ +_TTSg5VSC20NSJSONWritingOptions___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +rawValue.get +applicationDidBecomeActive +applicationWillResignActive +applicationDidEnterBackground +_TMaCSo13UIApplication +applicationWillEnterForeground +applicationWillTerminate +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5SSSSs8Hashables_SS___TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_SS___TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_SS___TFVs10Dictionaryg9subscriptFxGSqq__ +appLinksNotificationRaised +setCurrentRadio +_TFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_ +_TMaCSo14NSUserDefaults +trackIntegration +setupListeners +_TTSg5Ps9AnyObject____TFSp10initializefxT_ +_TTSg5Ps9AnyObject____TFSp4movefT_x +_TTSg5SS___TFSp10initializefxT_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5Ps9AnyObject____TFSp7destroyfT_T_ +_TTSg5SS___TFSp7destroyfT_T_ +_TTSg5SS___TFSp4movefT_x +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_prevfSiSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TMaPs17_NSStringCoreType_ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTWSSs8HashablesFS_g9hashValueSi +_TTSf4s___TFSSg9hashValueSi +_TTSg5SS___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary17removeValueForKeyfxGSqq__ +_TTSg5SS___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17removeValueForKeyfxGSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__ +_TFC8Mixpanel19AutomaticPropertiesau10propertiesGVs10DictionarySSPs9AnyObject__ +_TTSf4g_d___TZFVVSS13CharacterView5Index38_measureExtendedGraphemeClusterForwardfVVSS17UnicodeScalarView5IndexSi +_TFSS9hasPrefixfSSSb +_TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TFC8Mixpanel19AutomaticPropertiesau13telephonyInfoCSo22CTTelephonyNetworkInfo +getCurrentRadio +__swift_memmove_array4_4 +__swift_memcpy_array4_4 +__swift_memcpy4_4 +_TMaPSo17OS_dispatch_queue_ +_TMaGSQPSo17OS_dispatch_queue__ +_TMaGSaGVs10DictionarySSPs9AnyObject___ +_TMaGSQC8Mixpanel6People_ +_TMaP8Mixpanel16MixpanelDelegate_ +_TMaGSqP8Mixpanel16MixpanelDelegate__ +_TMaC8Mixpanel16MixpanelInstance +_TWaVSC20NSJSONWritingOptionss13OptionSetType10Foundation +_TWaVSC20NSJSONWritingOptionss16RawRepresentable10Foundation +_TWaVSC20NSJSONWritingOptionss14SetAlgebraType10Foundation +_TWaC8Mixpanel16MixpanelInstances28CustomDebugStringConvertibleS_ +_TWaVSC20NSJSONWritingOptionss9Equatable10Foundation +_TWaVSC20NSJSONWritingOptionss23ArrayLiteralConvertible10Foundation +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5TSSPs9AnyObject_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSPs9AnyObject_____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSPs9AnyObject__ +_TMaGCs23_ContiguousArrayStorageTSSPs9AnyObject___ +_TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.87 +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg9subscriptFxGSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs10Dictionaryg9subscriptFxGSqq__ +trackPushNotification +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.84 +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage11updateValuefTx6forKeyx_GSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3Set6insertfxT_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage17removeValueForKeyfxGSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3Set6removefxGSqx_ +disableLevel +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.81 +enableLevel +info +loggingEnabled.didset +_TIZFC8Mixpanel8Mixpanel10initializeFT5tokenSS13launchOptionsGSqGVs10DictionaryCSo8NSObjectPs9AnyObject___13flushIntervalSd12instanceNameSS_CS_16MixpanelInstanceA2_ +Mixpanel.swift +_TIZFC8Mixpanel8Mixpanel10initializeFT5tokenSS13launchOptionsGSqGVs10DictionaryCSo8NSObjectPs9AnyObject___13flushIntervalSd12instanceNameSS_CS_16MixpanelInstanceA1_ +_TIZFC8Mixpanel8Mixpanel10initializeFT5tokenSS13launchOptionsGSqGVs10DictionaryCSo8NSObjectPs9AnyObject___13flushIntervalSd12instanceNameSS_CS_16MixpanelInstanceA0_ +hashValue.get +_TTSg5O8Mixpanel9FlushTypeS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_code.get +_domain.get +_TTSg5O8Mixpanel8LogLevelS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_TIFC8Mixpanel6People11trackChargeFT6amountSd10propertiesGSqGVs10DictionarySSPs9AnyObject____T_A0_ +People.swift +_TTSg5O8Mixpanel6MethodS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_TFSig9hashValueSi +_TTWSSs9EquatablesZFS_oi2eefTxx_Sb +_TTSg5OC8Mixpanel11Persistence11ArchiveTypeS1_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_TIFC8Mixpanel16MixpanelInstance27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__12defaultValueGSqPS2____T_A0_ +dispatchAndTrack +currentSuperProperties +time +_TIFC8Mixpanel16MixpanelInstance21trackPushNotificationFTGVs10DictionaryCSo8NSObjectPs9AnyObject__5eventSS_T_A0_ +_TIFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_A0_ +reset +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.32 +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.29 +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSSS____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSSS____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSSS____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSSS_ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5TSSSS____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TFFC8Mixpanel16MixpanelInstance11createAliasFTSS10distinctIdSS_T_u0_KT_P_ +_TFFC8Mixpanel16MixpanelInstance11createAliasFTSS10distinctIdSS_T_u_KT_P_ +createAlias +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorageg6nativeGVs17_NativeSetStoragex_ +_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TMaP8Mixpanel7Logging_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5P8Mixpanel7Logging____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5P8Mixpanel7Logging____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5P8Mixpanel7Logging____TFSag9subscriptFSix +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5P8Mixpanel7Logging____TFSag8endIndexSi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_ +_TFC8Mixpanel6LoggerauP33_6BBD8F7A3C4520592F2A3564F6D31C9E7loggersGSaPS_7Logging__ +forwardLogMessage +_TTSg5SS___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5SS___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5SS___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5SS___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5SS___TFSag9subscriptFSix +_TTWSis22BidirectionalIndexTypesFS_11predecessorfT_x +_TTSg5GSaSS_GSaSS_s14CollectionTypes_GVs17IndexingGeneratorGSaSS__GS0_GSaSS__s13GeneratorTypes_SS_SiSis22BidirectionalIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceSS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS0_GS5_SS__GS0_GS5_SS__S1_s_SS_SiSis16ForwardIndexTypes_SiSiS3_s_SiSiS4_s_Si_GS5_SS__SS_SS___TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_g4lastGSqWx9Generator7Element__ +_TTWSis9EquatablesZFS_oi2eefTxx_Sb +_TTSg5P____TFSSCurfxSS +_TTSg5P____TFSSCurfT26stringInterpolationSegmentx_SS +_TTSg5C8Mixpanel16MixpanelInstance___TFSSCurfxSS +_TTSg5C8Mixpanel16MixpanelInstance___TFSSCurfT26stringInterpolationSegmentx_SS +_TTSg5O8Mixpanel8LogLevelS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage8maybeGetfxGSqx_ +_TFC8Mixpanel6LoggerauP33_6BBD8F7A3C4520592F2A3564F6D31C9E13enabledLevelsGVs3SetOS_8LogLevel_ +_TFSSCfT26_builtinUTF16StringLiteralBp17numberOfCodeUnitsBw_SS +_TTWVSS13CharacterViews9IndexablesFS0_g8endIndexwx5Index +_TTWVSS13CharacterViews9IndexablesFS0_g10startIndexwx5Index +_TFSSg10charactersVSS13CharacterView +_TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_ +_TTSg5GSaP8Mixpanel7Logging__GSaPS0___s12SequenceTypes_GVs17IndexingGeneratorGSaPS0____GS2_GSaPS0____s13GeneratorTypes_PS0___GVs10ArraySlicePS0______TFEsPs12SequenceType7forEachfzFzWx9Generator7Element_T_T_ +_TTSg5GSaP8Mixpanel7Logging__GSaPS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_PS0_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5GSaP8Mixpanel7Logging__GSaPS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_PS0_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5SS___TFSag8endIndexSi +_TFFC8Mixpanel16MixpanelInstance8identifyFT10distinctIdSS_T_u_KT_P_ +error +_TTSg5O8Mixpanel8LogLevelS0_s9EquatableS____TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3Set8containsfxSb +_TTWVVSS13CharacterView5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance +_TTSg5VVSS13CharacterView5IndexS0_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFEsPs16ForwardIndexType10distanceTofxwx8Distance +identify +debugDescription.get +showNetworkActivityIndicator.materialize +showNetworkActivityIndicator.set +showNetworkActivityIndicator.get +people.materialize +people.set +distinctId.materialize +distinctId.set +delegate.materialize +delegate.set +delegate.get +track +archivePeople +archiveEvents +archive +_TIFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_A_ +_TMaCSo20NSNotificationCenter +deinit +_TFSSCft19stringInterpolationGSaSS__SS +_TFSSCfT26stringInterpolationSegmentSi_SS +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag5countSi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5SS___TFSa9_getCountfT_Si +_TFSSCfT26stringInterpolationSegmentSS_SS +_TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +__swift_memmove_array16_8 +__swift_memcpy_array16_8 +__swift_memcpy16_8 +distinctId.get +people.get +_TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TZFsoi1pFTSSSS_SS +_TTSg5SS___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSf4g_d___TFSSCft19stringInterpolationGSaSS__SS +_TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS +_TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS +_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +loggingEnabled.materialize +loggingEnabled.set +loggingEnabled.get +serverURL.materialize +serverURL.get +serverURL.set +_TFV8Mixpanel8BasePathau11MixpanelAPISS +useIPAddressForGeoLocation.materialize +useIPAddressForGeoLocation.get +useIPAddressForGeoLocation.set +flushOnBackground.materialize +flushOnBackground.get +flushOnBackground.set +flushInterval.materialize +flushInterval.get +$defer +startFlushTimer +stopFlushTimer +flushInterval.set +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift +__swift_memcpy0_1 +__swift_memcpy_array0_1 +__swift_memmove_array0_1 +get_field_types_QueueConstants +get_field_types_APIConstants +_TMfV8Mixpanel14QueueConstants +_TMfV8Mixpanel12APIConstants +field_type_vector_APIConstants +field_type_vector_QueueConstants +_TMaV8Mixpanel12APIConstants +Constants.swift +_TMaV8Mixpanel14QueueConstants +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift +_TWaC8Mixpanel5FlushS_12AppLifecycleS_ +_TToFC8Mixpanel5Flush13flushSelectorfT_T_ +_TFFC8Mixpanel5Flush19flushQueueInBatchesFTRGSaGVs10DictionarySSPs9AnyObject___4typeOS_9FlushType_T_U_FSbT_ +_TFC8Mixpanel5FlushD +get_field_types_Flush +_TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx8newCountSi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs12_SliceBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s9IndexablesGS_GS0_SSPS1____s12SequenceTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1______TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTSf4s_n_n___TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSf4g_n___TZFC8Mixpanel11JSONHandler13encodeAPIDatafPs9AnyObject_GSqSS_ +objectdestroy.1 +objectdestroy.3 +_TPA__TFFC8Mixpanel5Flush19flushQueueInBatchesFTRGSaGVs10DictionarySSPs9AnyObject___4typeOS_9FlushType_T_U_FSbT_ +_TTSf4gs_n_n_g_n___TFC8Mixpanel12FlushRequest11sendRequestfTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_ +_TTSf4s_n_d_n___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1____GVs15EmptyCollectionGS0_SSPS1____GS12_GS0_SSPS1____S9_s_GVs14EmptyGeneratorGS0_SSPS1____GS13_GS0_SSPS1____S4_s_SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GVs5SliceGS12_GS0_SSPS1_____GS14_GS12_GS0_SSPS1_____S10_sGS14_GS12_GS0_SSPS1_____S11_s_GS3_GS14_GS12_GS0_SSPS1______GS3_GS14_GS12_GS0_SSPS1______S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS14_GS12_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TFEsPs16_ArrayBufferType7replaceuRd__s14CollectionTypewx7ElementzWd__9Generator7Element_rfT8subRangeGVs5RangeSi_4withSi10elementsOfqd___T_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GVs31_InitializeMemoryFromCollectionGVs15EmptyCollectionGS0_SSPS1_____GS3_GS4_GS0_SSPS1_____s20_PointerFunctionTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS6_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS6_GS8_GS0_SSPS1_____GS6_GS8_GS0_SSPS1_____S7_s_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS6_GS8_GS0_SSPS1_____GS6_GS8_GS0_SSPS1_____S7_s_GS0_SSPS1____SiSiS10_s_SiSiS11_s_SiSiS12_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4n_s_d_n___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GVs15EmptyCollectionGS0_SSPS1____GS3_GS0_SSPS1____s14CollectionTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS5_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____GVs12_SliceBufferGS0_SSPS1____GS7_GS0_SSPS1____S4_s_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_GS0_SSPS1____GS7_GS0_SSPS1____s9IndexablesGS7_GS0_SSPS1____s12SequenceTypes_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS7_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1____GVs14EmptyGeneratorGS0_SSPS1____GS13_GS0_SSPS1____S6_s_SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GVs5SliceGS3_GS0_SSPS1_____GS14_GS3_GS0_SSPS1_____S11_sGS14_GS3_GS0_SSPS1_____S12_s_GS5_GS14_GS3_GS0_SSPS1______GS5_GS14_GS3_GS0_SSPS1______S6_s_GS0_SSPS1____SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS14_GS3_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TFs23_arrayOutOfPlaceReplaceu0_Rxs16_ArrayBufferType_s14CollectionTypewx5IndexzSiwx7ElementzW_9Generator7Element_WxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S5_18IntegerLiteralType_zSirFTRxGVs5RangeSi_q_Si_T_ +_TMaGCs23_ContiguousArrayStorageGVs10DictionarySSPs9AnyObject___ +_TWPC8Mixpanel5FlushS_12AppLifecycleS_ +L_selector_data(flushSelector) +_METACLASS_DATA__TtC8Mixpanel5Flush +_INSTANCE_METHODS__TtC8Mixpanel5Flush +_IVARS__TtC8Mixpanel5Flush +_DATA__TtC8Mixpanel5Flush +_TMfC8Mixpanel5Flush +got._TMp8Mixpanel12AppLifecycle +field_type_vector_Flush +_TMLGSqCSo7NSTimer_ +_TMLCSo7NSTimer +_TMLGSqP8Mixpanel13FlushDelegate__ +_TMLP8Mixpanel13FlushDelegate_ +metadata.2 +metadata.4 +_TMLGCs23_ContiguousArrayStorageGVs10DictionarySSPs9AnyObject___ +L_selector_data(invalidate) +L_selector(invalidate) +L_selector(flushSelector) +L_selector_data(scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:) +L_selector(scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:) +Flush.swift +flushSelector +_TTSg5GVs12_SliceBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s9IndexablesGS_GS0_SSPS1____s12SequenceTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1______TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBuffer10getElementfSix +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp9successorfT_GSpx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index +_TTSg5GVs15EmptyCollectionGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs14EmptyGeneratorGS0_SSPS1____GS3_GS0_SSPS1____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS_GS0_SSPS1_____GS8_GS_GS0_SSPS1_____s9IndexablesGS8_GS_GS0_SSPS1_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS_GS0_SSPS1______GS11_GS8_GS_GS0_SSPS1______S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TTWuRxs14CollectionTyperGVs31_InitializeMemoryFromCollectionx_s20_PointerFunctionTypesFS1_4callfTGSpwx7Element_5countSi_T_ +_TTSg5GVs15EmptyCollectionGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs14EmptyGeneratorGS0_SSPS1____GS3_GS0_SSPS1____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS_GS0_SSPS1_____GS8_GS_GS0_SSPS1_____s9IndexablesGS8_GS_GS0_SSPS1_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS_GS0_SSPS1______GS11_GS8_GS_GS0_SSPS1______S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TFVs31_InitializeMemoryFromCollection4callfTGSpWx9Generator7Element__5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerlu5valuex +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp7destroyfSiT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_s5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp14moveAssignFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp26moveInitializeBackwardFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ +_TTWSis18_SignedIntegerTypesFS_CfVs5Int64x +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg10startIndexSi +_TTSg5GVs10DictionarySSPs9AnyObject___GVs15EmptyCollectionGS_SSPS0____GS1_GS_SSPS0____s14CollectionTypes_GVs14EmptyGeneratorGS_SSPS0____GS3_GS_SSPS0____s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS1_GS_SSPS0_____GS8_GS1_GS_SSPS0_____s9IndexablesGS8_GS1_GS_SSPS0_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS1_GS_SSPS0______GS11_GS8_GS1_GS_SSPS0______S4_s_GS_SSPS0____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS1_GS_SSPS0______GS_SSPS0____GS_SSPS0______TTWurGSax_s30RangeReplaceableCollectionTypesFS_12replaceRangeuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTGVs5Rangewx5Index_4withqd___T_ +_TTSg5GVs10DictionarySSPs9AnyObject___GVs15EmptyCollectionGS_SSPS0____GS1_GS_SSPS0____s14CollectionTypes_GVs14EmptyGeneratorGS_SSPS0____GS3_GS_SSPS0____s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS1_GS_SSPS0_____GS8_GS1_GS_SSPS0_____s9IndexablesGS8_GS1_GS_SSPS0_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS1_GS_SSPS0______GS11_GS8_GS1_GS_SSPS0______S4_s_GS_SSPS0____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS1_GS_SSPS0______GS_SSPS0____GS_SSPS0______TFSa12replaceRangeuRd__s14CollectionTypexzWd__9Generator7Element_rfTGVs5RangeSi_4withqd___T_ +_TTSg5GSaGVs10DictionarySSPs9AnyObject___GSaGS_SSPS0____s30RangeReplaceableCollectionTypes_GVs17IndexingGeneratorGSaGS_SSPS0_____GS2_GSaGS_SSPS0_____s13GeneratorTypes_GS_SSPS0____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceGS_SSPS0____GS7_GS_SSPS0____s9IndexablesGS7_GS_SSPS0____s12SequenceTypes_GS2_GS7_GS_SSPS0_____GS2_GS7_GS_SSPS0_____S3_s_GS_SSPS0____SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_GS_SSPS0_____GS_SSPS0____GS_SSPS0______TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg8endIndexSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject___GVs10ArraySliceGS_SSPS0____GS1_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS1_GS_SSPS0_____GS3_GS1_GS_SSPS0_____s13GeneratorTypes_GS1_GS_SSPS0_______TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg6bufferPs9AnyObject_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs10ArraySlicex_s12SequenceTypesFS0_24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs10ArraySliceCfGVs12_SliceBufferx_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg16_hasNativeBufferSb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBuffer15_invariantCheckfT_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferCfT5ownerPs9AnyObject_20subscriptBaseAddressGSpx_7indicesGVs5RangeSi_15hasNativeBufferSb_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg9subscriptFGVs5RangeSi_GVs12_SliceBufferx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg9subscriptFGVs5RangeSi_GVs12_SliceBufferx_ +_TTWSis10ComparablesZFS_oi1lfTxx_Sb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa11_checkIndexfSiT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag9subscriptFGVs5RangeSi_GVs10ArraySlicex_ +FV8Mixpanel12APIConstantsG9batchSizeSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa9_getCountfT_Si +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs10ArraySlice24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferx_ +_TTSg5GVs12_SliceBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s14CollectionTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s9IndexablesGS_GS0_SSPS1____s12SequenceTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs33_extractOrCopyToNativeArrayBufferuRxs16_ArrayBufferTypewx7ElementzWx9Generator7Element_rFxGVs22_ContiguousArrayBufferWxS1_S2___ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_SliceBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg12nativeBufferGVs22_ContiguousArrayBufferx_ +_TTSg5SiSis10Comparables___TFs3minuRxs10ComparablerFTxx_x +flushQueueInBatches +_TMaP8Mixpanel13FlushDelegate_ +_TMaGSqP8Mixpanel13FlushDelegate__ +_TMaCSo7NSTimer +_TMaGSqCSo7NSTimer_ +_TMaC8Mixpanel5Flush +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift +_TwXXV8Mixpanel18ArchivedProperties +_TwCPV8Mixpanel18ArchivedProperties +_TwprV8Mixpanel18ArchivedProperties +_TwdeV8Mixpanel18ArchivedProperties +_TwxxV8Mixpanel18ArchivedProperties +_TwCpV8Mixpanel18ArchivedProperties +_TwcpV8Mixpanel18ArchivedProperties +_TwcaV8Mixpanel18ArchivedProperties +_TwTkV8Mixpanel18ArchivedProperties +__swift_memcpy80_8 +_TwtaV8Mixpanel18ArchivedProperties +_TwalV8Mixpanel18ArchivedProperties +_TwXxV8Mixpanel18ArchivedProperties +_TwCcV8Mixpanel18ArchivedProperties +__swift_memmove_array80_8 +get_field_types_ArchivedProperties +_TFC8Mixpanel11PersistenceD +get_field_types_Persistence +__swift_memcpy1_1 +__swift_memcpy_array1_1 +__swift_memmove_array1_1 +_TwxsOC8Mixpanel11Persistence11ArchiveType +_TwxgOC8Mixpanel11Persistence11ArchiveType +_TwugOC8Mixpanel11Persistence11ArchiveType +_TwupOC8Mixpanel11Persistence11ArchiveType +_TwuiOC8Mixpanel11Persistence11ArchiveType +get_field_types_ArchiveType +_TTSg5CSo5NSURL___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ +_TTSf4gs_gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A11filePathForfTSS5tokenSS_GSqSS_ +_TTSf4gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A21unarchiveWithFilePathfSSGSqPs9AnyObject__ +objectdestroy.7 +objectdestroy.10 +_TMfV8Mixpanel18ArchivedProperties +_METACLASS_DATA__TtC8Mixpanel11Persistence +_DATA__TtC8Mixpanel11Persistence +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A11filePathForfTSS5tokenSS_GSqSS_ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFilefTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A21unarchiveWithFilePathfSSGSqPs9AnyObject__ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A15unarchiveEventsfT5tokenSS_GSaGVs10DictionarySSPs9AnyObject___ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A15unarchivePeoplefT5tokenSS_GSaGVs10DictionarySSPs9AnyObject___ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A19unarchivePropertiesfT5tokenSS_TGVs10DictionarySSPs9AnyObject__GS1_SSPS2___SSGSqSS_GSaGS1_SSPS2_____ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypefTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__ +_TMfC8Mixpanel11Persistence +_TMfOC8Mixpanel11Persistence11ArchiveType +got._TMps8Hashable +field_type_vector_ArchiveType +field_type_vector_Persistence +field_type_vector_ArchivedProperties +_TMLGSqSS_ +L_selector_data(unarchiveObjectWithFile:) +L_selector(unarchiveObjectWithFile:) +L_selector_data(defaultManager) +L_selector(defaultManager) +L_selector_data(removeItemAtPath:error:) +L_selector(removeItemAtPath:error:) +L_selector_data(URLsForDirectory:inDomains:) +L_selector(URLsForDirectory:inDomains:) +_TMLCSo5NSURL +L_selector_data(URLByAppendingPathComponent:) +L_selector(URLByAppendingPathComponent:) +L_selector_data(path) +L_selector(path) +L_selector_data(objectAtIndex:) +L_selector(objectAtIndex:) +metadata.8 +L_selector_data(archiveRootObject:toFile:) +L_selector(archiveRootObject:toFile:) +metadata.11 +Persistence.swift +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFileFTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_u_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.12 +_TMaCSo15NSKeyedArchiver +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.9 +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFileFTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_u0_KT_P_ +archiveToFile +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ +_TTSg5CSo5NSURL_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5CSo5NSURL___TFs25_isClassOrObjCExistentialurFMxSb +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_CSo5NSURL___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5CSo5NSURL___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5CSo5NSURL___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5CSo5NSURL___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb +_TTSg5CSo5NSURL___TFSa29_hoistableIsNativeTypeCheckedfT_Sb +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg9_isNativeSb +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg5countSi +_TTSg5CSo5NSURL___TFSa9_getCountfT_Si +_TMaCSo5NSURL +_TTSg5CSo5NSURL___TFSag9subscriptFSix +_TTSg5CSo5NSURL___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5GSaCSo5NSURL_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis22BidirectionalIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSis16ForwardIndexTypes_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S____TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_g4lastGSqWx9Generator7Element__ +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ +_TTSg5CSo5NSURL___TTWurGSax_s9IndexablesFS_g8endIndexwx5Index +_TTSg5CSo5NSURL___TFSag8endIndexSi +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +filePathFor +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypeFTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__u_KT_P_ +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A21unarchiveWithFilePathFSSGSqPs9AnyObject__u_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.6 +_TMaCSo13NSFileManager +_TTSg5Ps9AnyObject____TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TMaCSo17NSKeyedUnarchiver +unarchiveWithFilePath +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypeFTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__u0_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.3 +filePathWithType +unarchiveWithType +unarchiveProperties +_TMaGSqSS_ +_TMaOC8Mixpanel11Persistence11ArchiveType +_TMaC8Mixpanel11Persistence +_TMaV8Mixpanel18ArchivedProperties +_TWaOC8Mixpanel11Persistence11ArchiveTypes16RawRepresentableS_ +_TWaOC8Mixpanel11Persistence11ArchiveTypes8HashableS_ +_TWaOC8Mixpanel11Persistence11ArchiveTypes9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift +_TFC8Mixpanel12PrintLoggingD +_TTWC8Mixpanel12PrintLoggingS_7LoggingS_FS1_10addMessagefT7messageVS_10LogMessage_T_ +_TWaC8Mixpanel12PrintLoggingS_7LoggingS_ +_TTWC8Mixpanel17PrintDebugLoggingS_7LoggingS_FS1_10addMessagefT7messageVS_10LogMessage_T_ +_TWaC8Mixpanel17PrintDebugLoggingS_7LoggingS_ +get_field_types_PrintLogging +get_field_types_PrintDebugLogging +_TTSf4n_d___TFC8Mixpanel12PrintLogging10addMessagefT7messageVS_10LogMessage_T_ +_TTSf4n_d___TFC8Mixpanel17PrintDebugLogging10addMessagefT7messageVS_10LogMessage_T_ +_TFC8Mixpanel17PrintDebugLoggingD +_TWPC8Mixpanel12PrintLoggingS_7LoggingS_ +_TWPC8Mixpanel17PrintDebugLoggingS_7LoggingS_ +_METACLASS_DATA__TtC8Mixpanel12PrintLogging +_DATA__TtC8Mixpanel12PrintLogging +_TMfC8Mixpanel12PrintLogging +_METACLASS_DATA__TtC8Mixpanel17PrintDebugLogging +_DATA__TtC8Mixpanel17PrintDebugLogging +_TMfC8Mixpanel17PrintDebugLogging +got._TMp8Mixpanel7Logging +field_type_vector_PrintDebugLogging +field_type_vector_PrintLogging +switch.table.2 +switch.table.3 +PrintLogging.swift +addMessage +_TTSg5P____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5P____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5P____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5P____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5P____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5P____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_P____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TMaC8Mixpanel17PrintDebugLogging +_TMaC8Mixpanel12PrintLogging +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift +get_field_types_BasePath +_TwxsO8Mixpanel6Method +_TwxgO8Mixpanel6Method +_TwugO8Mixpanel6Method +_TwupO8Mixpanel6Method +_TwuiO8Mixpanel6Method +get_field_types_Method +_TwXXV8Mixpanel8Resource +_TwCPV8Mixpanel8Resource +_TwprV8Mixpanel8Resource +_TwdeV8Mixpanel8Resource +_TwxxV8Mixpanel8Resource +_TwCpV8Mixpanel8Resource +_TwcpV8Mixpanel8Resource +_TwcaV8Mixpanel8Resource +_TwTkV8Mixpanel8Resource +_TwtaV8Mixpanel8Resource +_TwalV8Mixpanel8Resource +_TwXxV8Mixpanel8Resource +_TwCcV8Mixpanel8Resource +get_field_types_Resource +create_generic_metadata_Resource +_TwXXO8Mixpanel6Reason +_TwCPO8Mixpanel6Reason +_TwxxO8Mixpanel6Reason +_TwCpO8Mixpanel6Reason +_TwcpO8Mixpanel6Reason +_TwcaO8Mixpanel6Reason +__swift_memcpy9_8 +_TwtaO8Mixpanel6Reason +_TwXxO8Mixpanel6Reason +_TwCcO8Mixpanel6Reason +_TwugO8Mixpanel6Reason +_TwupO8Mixpanel6Reason +_TwuiO8Mixpanel6Reason +get_field_types_Reason +_TTSg5Si___TFZFC8Mixpanel7Network10apiRequesturFT4baseSS8resourceGVS_8Resourcex_7failureFTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_7successFTxGSqS4___T__T_U_FTGSqS3__GSqS4__GSqCSo7NSError__T_ +_TTRXFo_oGSqCSo6NSData_oGSqCSo13NSURLResponse_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__ +_TFSiCfTSS5radixSi_GSqSi_ +_TTSf3cpfr93_TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U_FCSo6NSDataGSqSi__n_n___TTRXFo_oCSo6NSData_dGSqSi__XFo_oS__iGSqSi__ +_TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U0_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U1_FTSiGSqCSo13NSURLResponse__T_ +_TTRXFo_dSioGSqCSo13NSURLResponse__dT__XFo_iSioGSqS___dT__ +_TFC8Mixpanel7NetworkD +get_field_types_Network +_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndex9successorfT_GS_xq__ +_TTSf4gs_n_d___TTSg5Si___TZFC8Mixpanel7NetworkP33_A5066DE13777C552986D7397F9E123E115buildURLRequesturfTSS8resourceGVS_8Resourcex__GSqCSo12NSURLRequest_ +_TMaTPSo9NSCopying_Ps9AnyObject__ +_TPA__TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U0_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TPA__TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U1_FTSiGSqCSo13NSURLResponse__T_ +_TPA__TTRXFo_dSioGSqCSo13NSURLResponse__dT__XFo_iSioGSqS___dT__ +objectdestroy.5 +_TPA__TTSg5Si___TFZFC8Mixpanel7Network10apiRequesturFT4baseSS8resourceGVS_8Resourcex_7failureFTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_7successFTxGSqS4___T__T_U_FTGSqS3__GSqS4__GSqCSo7NSError__T_ +_TMfV8Mixpanel8BasePath +_TMfO8Mixpanel6Method +_TMfO8Mixpanel6Reason +_METACLASS_DATA__TtC8Mixpanel7Network +_DATA__TtC8Mixpanel7Network +_TWoZFC8Mixpanel7NetworkP33_A5066DE13777C552986D7397F9E123E115buildURLRequesturfTSS8resourceGVS_8Resourcex__GSqCSo12NSURLRequest_ +_TMfC8Mixpanel7Network +field_type_vector_Network +field_type_vector_Reason +_TMLT10statusCodeSi_ +_TMLCSo7NSError +_TMLGSqCSo6NSData_ +_TMLCSo6NSData +_TMLGVs10DictionarySSSS_ +field_type_vector_Method +field_type_vector_BasePath +L_selector_data(statusCode) +L_selector(statusCode) +L_selector_data(initWithString:) +L_selector(initWithString:) +L_selector_data(initWithURL:) +L_selector(initWithURL:) +L_selector_data(setHTTPMethod:) +L_selector(setHTTPMethod:) +L_selector_data(setHTTPBody:) +L_selector(setHTTPBody:) +L_selector_data(setValue:forHTTPHeaderField:) +L_selector(setValue:forHTTPHeaderField:) +_TMLGCs23_ContiguousArrayStorageCSo12NSDictionary_ +_TMLCSo12NSDictionary +_TMLGCs23_ContiguousArrayStorageTPSo9NSCopying_Ps9AnyObject___ +_TMLTPSo9NSCopying_Ps9AnyObject__ +_TMLPSo9NSCopying_ +_PROTOCOL_NSCopying +l_OBJC_LABEL_PROTOCOL_$_NSCopying +l_OBJC_PROTOCOL_REFERENCE_$_NSCopying +L_selector_data(sharedSession) +L_selector(sharedSession) +metadata.6 +L_selector_data(dataTaskWithRequest:completionHandler:) +L_selector(dataTaskWithRequest:completionHandler:) +L_selector_data(resume) +L_selector(resume) +_PROTOCOL_INSTANCE_METHODS_NSCopying +_PROTOCOL_METHOD_TYPES_NSCopying +Network.swift +_TIFSicFTSS5radixSi_GSqSi_A0_ +_TTSf4g___TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U_FCSo6NSDataGSqSi_ +_TFFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U0_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_u_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.11 +_TFFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U1_FTSiGSqCSo13NSURLResponse__T_u_KT_P_ +debug +_TMaCSo12NSURLSession +buildResource +_TTSg5CSo12NSDictionary___TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaPSo9NSCopying_ +_TMaGCs23_ContiguousArrayStorageTPSo9NSCopying_Ps9AnyObject___ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5CSo12NSDictionary___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5CSo12NSDictionary___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo12NSDictionary___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5CSo12NSDictionary___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5CSo12NSDictionary___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TMaCSo12NSDictionary +_TMaGCs23_ContiguousArrayStorageCSo12NSDictionary_ +_TTSg5CSo12NSDictionary___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +apiRequest +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5SSSSs8Hashables_SS___TZFVs19DictionaryGenerator7_NativefT5startGVs22_NativeDictionaryIndexxq__3endGS0_xq__5ownerGCs29_NativeDictionaryStorageOwnerxq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg8endIndexGVs22_NativeDictionaryIndexxq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg10startIndexGVs22_NativeDictionaryIndexxq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage12assertingGetfGVs22_NativeDictionaryIndexxq__Txq__ +_TTSg5SSSSs8Hashables_SS___TZFsoi2eeu0_Rxs8HashablerFTGVs22_NativeDictionaryIndexxq__GS0_xq___Sb +_TTSg5SSSSs8Hashables_SS___TZFVs19DictionaryGenerator6_CocoafCs25_CocoaDictionaryGeneratorGS_xq__ +_TTSg5SSSSs8Hashables_SS___TFOs25_VariantDictionaryStorage8generatefT_GVs19DictionaryGeneratorxq__ +_TTSg5SSSSs8Hashables_SS___TFVs19DictionaryGenerator11_nativeNextfT_GSqTxq___ +_TTSg5SSSSs8Hashables_SS___TFVs10Dictionary8generatefT_GVs19DictionaryGeneratorxq__ +buildURL +buildURLRequest +_TMaGVs10DictionarySSSS_ +_TMaCSo6NSData +_TMaGSqCSo6NSData_ +_TMaCSo7NSError +_TMaT10statusCodeSi_ +_TMaC8Mixpanel7Network +_TMaO8Mixpanel6Reason +_TMaO8Mixpanel6Method +_TMaV8Mixpanel8BasePath +_TWaO8Mixpanel6Methods16RawRepresentableS_ +_TWaO8Mixpanel6Methods8HashableS_ +_TWaO8Mixpanel6Methods9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift +_TFC8Mixpanel11FileLoggingD +_TFC8Mixpanel11FileLogging10addMessagefT7messageVS_10LogMessage_T_ +_TTWC8Mixpanel11FileLoggingS_7LoggingS_FS1_10addMessagefT7messageVS_10LogMessage_T_ +_TWaC8Mixpanel11FileLoggingS_7LoggingS_ +get_field_types_FileLogging +_TWPC8Mixpanel11FileLoggingS_7LoggingS_ +_TWvdvC8Mixpanel11FileLoggingP33_BF2A7E889900C46805361CADEEB4175310fileHandleCSo12NSFileHandle +_METACLASS_DATA__TtC8Mixpanel11FileLogging +_IVARS__TtC8Mixpanel11FileLogging +_DATA__TtC8Mixpanel11FileLogging +_TMfC8Mixpanel11FileLogging +field_type_vector_FileLogging +_TMLCSo12NSFileHandle +L_selector_data(writeData:) +L_selector(writeData:) +L_selector_data(closeFile) +L_selector(closeFile) +switch.table +switch.table.1 +FileLogging.swift +_TMaCSo12NSFileHandle +_TMaC8Mixpanel11FileLogging +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift +_TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_ +_TTSf3cpfr89_TFFC8Mixpanel6People9incrementFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb_n___TTRXFo_oPs9AnyObject__dSb_XFo_iPS___dSb_ +_TTSf3cpfr85_TFFC8Mixpanel6People5unionFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb_n___TTRXFo_oPs9AnyObject__dSb_XFo_iPS___dSb_ +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_func8 +_TFIZvC8Mixpanel19AutomaticProperties16peoplePropertiesGVs10DictionarySSPs9AnyObject__iU_FT_GS1_SSPS2___ +globalinit_33_DC679E1127B8EE4445673262459DB836_func11 +globalinit_33_DC679E1127B8EE4445673262459DB836_func12 +_TFIZvC8Mixpanel10Assertions18swiftAssertClosureFTSbSSVs12StaticStringSu_T_iU_FTSbSSS1_Su_T_ +_TMaGSaSS_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndex9successorfT_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFFVs10Dictionaryg6valuesGVs17LazyMapCollectionGS_xq__q__U_FTQ_Q0__Q0_ +_TTSf3cpfr108_TTSg5SSSSs8Hashables_Ps9AnyObject____TFFVs10Dictionaryg6valuesGVs17LazyMapCollectionGS_xq__q__U_FTQ_Q0__Q0__n_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TTRG0_Rxs8HashablerXFo_ixiq__iq__XFo_iTxq___iq__ +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs15LazyFilterIndexGVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS2____GS_GS0_GS1_SSPS2___PS2____s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFEsPs16ForwardIndexType10distanceTofxwx8Distance +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage12assertingGetfGVs15DictionaryIndexxq__Txq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg10startIndexGVs15DictionaryIndexxq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg8endIndexGVs15DictionaryIndexxq__ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs15LazyFilterIndex9successorfT_GS_x_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GVs14_IgnorePointerGS0_SSPS1____GS3_GS0_SSPS1____s20_PointerFunctionTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS5_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____GVs12_SliceBufferGS0_SSPS1____GS7_GS0_SSPS1____s14CollectionTypes_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_GS0_SSPS1____GS7_GS0_SSPS1____s9IndexablesGS7_GS0_SSPS1____s12SequenceTypes_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4n_d___TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_GSaSS____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_ +_TTSf4g___TFFC8Mixpanel6People9incrementFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +get_field_types_People +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.3 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.9 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.15 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.21 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.27 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.33 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.39 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.45 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.51 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.57 +objectdestroy.13 +objectdestroy.19 +objectdestroy.25 +objectdestroy.31 +objectdestroy.37 +objectdestroy.43 +objectdestroy.55 +block_destroy_helper.5 +block_destroy_helper.11 +block_destroy_helper.17 +block_destroy_helper.23 +block_destroy_helper.29 +block_destroy_helper.35 +block_destroy_helper.41 +block_destroy_helper.53 +block_destroy_helper.59 +block_copy_helper.4 +block_copy_helper.10 +block_copy_helper.16 +block_copy_helper.22 +block_copy_helper.28 +block_copy_helper.34 +block_copy_helper.40 +block_copy_helper.52 +block_copy_helper.58 +L_selector_data(bytes) +L_selector(bytes) +L_selector(length) +_TMLGCs23_ContiguousArrayStoragePs11CVarArgType__ +_TMLPs11CVarArgType_ +_TMLGCs23_ContiguousArrayStorageTSSGSaSS___ +_TMLTSSGSaSS__ +_TMLGSaSS_ +_TMLGCs29_NativeDictionaryStorageOwnerSSGSaSS__ +block_descriptor.6 +block_descriptor.12 +metadata.14 +block_descriptor.18 +_TMLGCs18_HeapBufferStorageSiPs9AnyObject__ +L_selector_data(getObjects:andKeys:) +L_selector(getObjects:andKeys:) +_TMLGSaPs9AnyObject__ +metadata.20 +block_descriptor.24 +metadata.26 +block_descriptor.30 +_TMLCSo7NSArray +metadata.32 +block_descriptor.36 +metadata.38 +block_descriptor.42 +metadata.44 +block_descriptor.54 +metadata.56 +block_descriptor.60 +_METACLASS_DATA__TtC8Mixpanel6People +_IVARS__TtC8Mixpanel6People +_DATA__TtC8Mixpanel6People +_TMfC8Mixpanel6People +field_type_vector_People +_TMLGCs28_NativeDictionaryStorageImplSSGSaSS__ +_TTSg5SS_GSaSS____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSGSaSS__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SSSSs8Hashables_GSaSS____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5GSaSS____TFSp10initializefxT_ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSGSaSS_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSGSaSS_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSGSaSS_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSGSaSS___GSaTSSGSaSS___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSGSaSS_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSGSaSS_____TFSag8endIndexSi +_TTSg5TSSGSaSS_____TFSag10startIndexSi +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg5countSi +_TTSg5TSSGSaSS_____TFSa9_getCountfT_Si +_TTSg5TSSGSaSS_____TFSag5countSi +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5TSSGSaSS_____TFSag9subscriptFSix +_TTSg5GSaTSSGSaSS___GSaTSSGSaSS___s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSGSaSS___GS3_TSSGSaSS___s9IndexablesGS3_TSSGSaSS___s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSGSaSS____GS6_GS3_TSSGSaSS____s13GeneratorTypes_TSSGSaSS___SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSGSaSS____TSSGSaSS___TSSGSaSS_____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5TSSGSaSS_____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSGSaSS_____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSg5TSSGSaSS_____TFCs23_ContiguousArrayStoraged +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa13removeAtIndexfSix +addPeopleObject +_TFV8Mixpanel14QueueConstantsau9queueSizeSi +_TFC8Mixpanel19AutomaticPropertiesau16peoplePropertiesGVs10DictionarySSPs9AnyObject__ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSPs9AnyObject_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSPs9AnyObject_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSPS______TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSPs9AnyObject_____TFSag8endIndexSi +_TTSg5TSSPs9AnyObject_____TFSag10startIndexSi +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg5countSi +_TTSg5TSSPs9AnyObject_____TFSa9_getCountfT_Si +_TTSg5TSSPs9AnyObject_____TFSag5countSi +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5TSSPs9AnyObject_____TFSag9subscriptFSix +_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSPS____GS4_TSSPS____s9IndexablesGS4_TSSPS____s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSPS_____GS7_GS4_TSSPS_____s13GeneratorTypes_TSSPS____SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSPS_____TSSPS____TSSPS______TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5TSSPs9AnyObject_____TFSp7destroyfSiT_ +_TTSg5TSSPs9AnyObject_____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSf4g___TFFC8Mixpanel6People5unionFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg10startIndexGVs22_NativeDictionaryIndexxq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12assertingGetfGVs22_NativeDictionaryIndexxq__Txq__ +_TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s9IndexablesFS1_g8endIndexwx5Index +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs15DictionaryIndexCfT6_valueGOs29DictionaryIndexRepresentationxq___GS_xq__ +_TTSg5GVs15DictionaryIndexSSPs9AnyObject__GS_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFVs14RangeGenerator4nextfT_GSqx_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs15DictionaryIndexxq__s14_IncrementablesFS1_9successorfT_x +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TTWuRxs14CollectionTyperGVs15LazyFilterIndexx_s14_IncrementablesFS1_9successorfT_x +_TTSg5GVs15LazyFilterIndexGVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS2____GS_GS0_GS1_SSPS2___PS2____s14_Incrementables___TFEsPs14_Incrementable17_successorInPlacefT_T_ +_TTWSis22_IntegerArithmeticTypesZFS_15addWithOverflowfTxx_Tx8overflowSb_ +_TTWSis33_BuiltinIntegerLiteralConvertiblesFS_CfT22_builtinIntegerLiteralBi2048__x +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs15DictionaryIndexxq__s9EquatablesZFS1_oi2eefTxx_Sb +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TZFsoi2eeuRxs14CollectionTyperFTGVs15LazyFilterIndexx_GS0_x__Sb +_TFC8Mixpanel10Assertionsau18swiftAssertClosureFTSbSSVs12StaticStringSu_T_ +_TMaC8Mixpanel6People +_TFFC8Mixpanel6People9incrementFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +increment +ignoreTime.materialize +ignoreTime.set +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffers5countSi +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +deleteUser +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffers5countSi +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5Ps9AnyObject____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5Ps9AnyObject____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5Ps9AnyObject____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TMaCSo7NSArray +clearCharges +append +trackCharge +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFsoi2eeu0_Rxs8HashablerFTGVs22_NativeDictionaryIndexxq__GS0_xq___Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg8endIndexGVs22_NativeDictionaryIndexxq__ +_TFC8Mixpanel10Assertionsau13assertClosureFTSbSSVs12StaticStringSu_T_ +MPAssert +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TTWuRxs14CollectionTyperGVs15LazyFilterIndexx_s16ForwardIndexTypesFS1_10distanceTofxwx8Distance +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs15LazyFilterIndexCfT13_baseElementsx4basewx5Index8_includeFWx9Generator7Element_Sb_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_PS0___GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TTWu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9IndexablesFS1_g8endIndexwx5Index +_TTSg5GVs20LazyFilterCollectionGVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS2____GS_GS0_GS1_SSPS2___PS2____s14CollectionTypes_GVs19LazyFilterGeneratorGVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS2___PS2____GS4_GS5_GS6_SSPS2___PS2____s13GeneratorTypes_PS2___GVs15LazyFilterIndexGS0_GS1_SSPS2___PS2____GS8_GS0_GS1_SSPS2___PS2____s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_GS1_SSPS2___PS2_____GS13_GS_GS0_GS1_SSPS2___PS2_____s9IndexablesGS13_GS_GS0_GS1_SSPS2___PS2_____s12SequenceTypes_GVs17IndexingGeneratorGS13_GS_GS0_GS1_SSPS2___PS2______GS16_GS13_GS_GS0_GS1_SSPS2___PS2______S7_s_PS2___GS8_GS0_GS1_SSPS2___PS2____GS8_GS0_GS1_SSPS2___PS2____S9_s_SiSiS10_s_SiSiS11_s_S12__GS13_GS_GS0_GS1_SSPS2___PS2______PS2___PS2_____TFEsPs14CollectionTypeg5countWx5Index8Distance_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs15DictionaryIndex7_NativefGVs22_NativeDictionaryIndexxq__GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs15DictionaryIndex6_CocoafVs21_CocoaDictionaryIndexGS_xq__ +_TMaGSaPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTRG0_Rxs8HashablerXFo_ixiq__iq__XFo_iTxq___iq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg9subscriptFGVs15DictionaryIndexxq__Txq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypesFS1_g9subscriptFwx5IndexWx9Generator7Element_ +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_PS0___GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFVs17LazyMapCollectiong9subscriptFwx5Indexq_ +_TMaGCs18_HeapBufferStorageSiPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s9IndexablesFS1_g10startIndexwx5Index +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFEsPs14CollectionTypeg4lazyGVs14LazyCollectionx_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg10startIndexGVs15DictionaryIndexxq__ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs20LazyFilterCollectionCfTx20whereElementsSatisfyFWx9Generator7Element_Sb_GS_x_ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s18LazyCollectionTypes_GS_GS0_SSPS1___PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS4_GS5_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS7_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS12_GS_GS0_SSPS1___PS1____s9IndexablesGS12_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS12_GS_GS0_SSPS1___PS1_____GS15_GS12_GS_GS0_SSPS1___PS1_____S6_s_PS1___GS7_SSPS1___GS7_SSPS1___S8_s_SiSiS9_s_SiSiS10_s_S11__GS12_GS_GS0_SSPS1___PS1_____PS1___PS1___GS4_GS5_SSPS1___PS1___GS4_GS5_SSPS1___PS1___S6_s_PS1___GS7_SSPS1___GS7_SSPS1___S8_s_SiSiS9_s_SiSiS10_s_S11__GS12_GS_GS0_SSPS1___PS1____GS12_GS_GS0_SSPS1___PS1____S13_sGS12_GS_GS0_SSPS1___PS1____S14_s_GS15_GS12_GS_GS0_SSPS1___PS1_____GS15_GS12_GS_GS0_SSPS1___PS1_____S6_s_PS1___GS7_SSPS1___GS7_SSPS1___S8_s_SiSiS9_s_SiSiS10_s_S11__GS12_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFEsPs18LazyCollectionType6filterfFWx8Elements9Generator7Element_SbGVs20LazyFilterCollectionwxS0__ +_TTSg5GVs14LazyCollectionGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s18LazyCollectionTypes_GS0_SSPS1___GS0_SSPS1___s14CollectionTypes_GVs19DictionaryGeneratorSSPS1___GS4_SSPS1___s13GeneratorTypes_TSSPS1____GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS0_SSPS1____GS11_GS0_SSPS1____s9IndexablesGS11_GS0_SSPS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS0_SSPS1_____GS14_GS11_GS0_SSPS1_____S5_s_TSSPS1____GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS0_SSPS1_____TSSPS1____TSSPS1____GS4_SSPS1___GS4_SSPS1___S5_s_TSSPS1____GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS_GS11_GS0_SSPS1_____GS_GS11_GS0_SSPS1_____S12_sGS_GS11_GS0_SSPS1_____S13_s_GS14_GS11_GS0_SSPS1_____GS14_GS11_GS0_SSPS1_____S5_s_TSSPS1____GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS_GS11_GS11_GS0_SSPS1_______TSSPS1____TSSPS1____PS1_____TFEsPs18LazyCollectionType3mapurfFWx8Elements9Generator7Element_qd__GVs17LazyMapCollectionwxS0_qd___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg6valuesGVs17LazyMapCollectionGS_xq__q__ +_TTSf4s_s___TZFsoi2eeFTVs21_CocoaDictionaryIndexS__Sb +_TTSg5GVs15DictionaryIndexSSPs9AnyObject__GS_SSPS0___s14_Incrementables___TFEsPs14_Incrementable17_successorInPlacefT_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs15DictionaryIndex9successorfT_GS_xq__ +_TTRXFo_oPs9AnyObject__dSb_XFo_iPS___dSb_ +_TFFC8Mixpanel6People5unionFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_PS0___GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFVs17LazyMapCollectionCfTx9transformFWx9Generator7Element_q__GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFsoi2eeu0_Rxs8HashablerFTGVs15DictionaryIndexxq__GS0_xq___Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg8endIndexGVs15DictionaryIndexxq__ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TTWuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9IndexablesFS1_g10startIndexwx5Index +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs20LazyFilterCollectiong10startIndexGVs15LazyFilterIndexx_ +unset +setOnce +set +_TTSg5SSSSs8Hashables_GSaSS____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TMaGCs29_NativeDictionaryStorageOwnerSSGSaSS__ +_TTSg5SSSSs8Hashables_GSaSS____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSGSaSS_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSGSaSS_____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSGSaSS__ +_TMaGCs23_ContiguousArrayStorageTSSGSaSS___ +_TTSg5TSSGSaSS_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5SS___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5SS___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Ps11CVarArgType____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Ps11CVarArgType____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5Ps11CVarArgType____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Ps11CVarArgType____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Ps11CVarArgType____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5Ps11CVarArgType____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaPs11CVarArgType_ +_TMaGCs23_ContiguousArrayStoragePs11CVarArgType__ +_TTSg5Ps11CVarArgType____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_ +ignoreTime.get +addPeopleRecordToQueueWithAction +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TZFsoi2peFTRSSSS_T_ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +addPushDeviceToken +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs19DictionaryGenerator4nextfT_GSqTxq___ +_TFSdCfSSGSqSd_ +_TFC8Mixpanel5TrackD +get_field_types_Track +_METACLASS_DATA__TtC8Mixpanel5Track +_IVARS__TtC8Mixpanel5Track +_DATA__TtC8Mixpanel5Track +_TMfC8Mixpanel5Track +field_type_vector_Track +_TMLPMPs9AnyObject_ +Track.swift +_TFFC8Mixpanel5Track5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject___11eventsQueueRGSaGS1_SSPS2____11timedEventsRGS1_SSPS2___15superPropertiesGS1_SSPS2___10distinctIdSS13epochIntervalSd_T_u0_KT_P_ +_TFFC8Mixpanel5Track4timeFT5eventGSqSS_11timedEventsRGVs10DictionarySSPs9AnyObject__9startTimeSd_T_u_KT_P_ +_TTSg5Ps9AnyObject____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TTSg5CSo8NSObjectS_s9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TMaPMPs9AnyObject_ +_TTSg5PMPs9AnyObject____TFSSCurfxSS +_TTSg5PMPs9AnyObject____TFSSCurfT26stringInterpolationSegmentx_SS +assertPropertyTypes +_TFCs25_CocoaDictionaryGenerator4nextfT_GSqTPs9AnyObject_PS0____ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs19DictionaryGenerator11_nativeNextfT_GSqTxq___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs19DictionaryGenerator7_NativefT5startGVs22_NativeDictionaryIndexxq__3endGS0_xq__5ownerGCs29_NativeDictionaryStorageOwnerxq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary11updateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs19DictionaryGeneratorCfT6_stateGOs33DictionaryGeneratorRepresentationxq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs19DictionaryGenerator6_CocoafCs25_CocoaDictionaryGeneratorGS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary8generatefT_GVs19DictionaryGeneratorxq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage8generatefT_GVs19DictionaryGeneratorxq__ ++= +_TMaC8Mixpanel5Track +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift +_TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__U0_FTSSPS1___T_ +_TFC8Mixpanel11JSONHandlerD +get_field_types_JSONHandler +_TTSg5T____TFVs15ContiguousArray15reserveCapacityfSiT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray15reserveCapacityfSiT_ +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5GVs22_ContiguousArrayBufferT__GS_T__s16_ArrayBufferTypes_T__GVs17IndexingGeneratorGS_T___GS1_GS_T___s13GeneratorTypes_T__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT__GS6_T__s14CollectionTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T__GS6_T__s9IndexablesGS6_T__s12SequenceTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T___T__T__T____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs22_ContiguousArrayBufferPs9AnyObject__GS_PS0___s16_ArrayBufferTypes_PS0___GVs17IndexingGeneratorGS_PS0____GS2_GS_PS0____s13GeneratorTypes_PS0___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS0___GS7_PS0___s14CollectionTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0___GS7_PS0___s9IndexablesGS7_PS0___s12SequenceTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0____PS0___PS0___PS0_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs22_ContiguousArrayBufferT__GS_T__s16_ArrayBufferTypes_T__GVs17IndexingGeneratorGS_T___GS1_GS_T___s13GeneratorTypes_T__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT__GS6_T__s14CollectionTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T__GS6_T__s9IndexablesGS6_T__s12SequenceTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T___T__T__T____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs22_ContiguousArrayBufferPs9AnyObject__GS_PS0___s16_ArrayBufferTypes_PS0___GVs17IndexingGeneratorGS_PS0____GS2_GS_PS0____s13GeneratorTypes_PS0___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS0___GS7_PS0___s14CollectionTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0___GS7_PS0___s9IndexablesGS7_PS0___s12SequenceTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0____PS0___PS0___PS0_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ +_TTSg5T____TFVs15ContiguousArray16_copyToNewBufferfSiT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray16_copyToNewBufferfSiT_ +_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferPs9AnyObject__GS_PS0___s16_ArrayBufferTypes_GVs14_IgnorePointerPS0___GS2_PS0___s20_PointerFunctionTypes_PS0___GVs17IndexingGeneratorGS_PS0____GS4_GS_PS0____s13GeneratorTypes_PS0___GVs12_SliceBufferPS0___GS6_PS0___s14CollectionTypes_GS4_GS6_PS0____GS4_GS6_PS0____S5_s_PS0___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS6_PS0___GS6_PS0___s9IndexablesGS6_PS0___s12SequenceTypes_GS4_GS6_PS0____GS4_GS6_PS0____S5_s_PS0___SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS6_PS0____PS0___PS0___PS0_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT__GS_T__s16_ArrayBufferTypes_GVs14_IgnorePointerT__GS1_T__s20_PointerFunctionTypes_T__GVs17IndexingGeneratorGS_T___GS3_GS_T___s13GeneratorTypes_T__GVs12_SliceBufferT__GS5_T__s14CollectionTypes_GS3_GS5_T___GS3_GS5_T___S4_s_T__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_T__GS5_T__s9IndexablesGS5_T__s12SequenceTypes_GS3_GS5_T___GS3_GS5_T___S4_s_T__SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_T___T__T__T____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4g_n___TZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializablefPs9AnyObject_PS1__ +_TTSf4g_n___TZFC8Mixpanel11JSONHandler19serializeJSONObjectfPs9AnyObject_GSqCSo6NSData_ +objectdestroy.15 +_TPA__TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__U0_FTSSPS1___T_ +objectdestroy.17 +_METACLASS_DATA__TtC8Mixpanel11JSONHandler +_DATA__TtC8Mixpanel11JSONHandler +_TWoZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializablefPs9AnyObject_PS1__ +_TMfC8Mixpanel11JSONHandler +field_type_vector_JSONHandler +L_selector_data(base64EncodedStringWithOptions:) +L_selector(base64EncodedStringWithOptions:) +L_selector_data(URLQueryAllowedCharacterSet) +L_selector(URLQueryAllowedCharacterSet) +L_selector_data(isValidJSONObject:) +L_selector(isValidJSONObject:) +L_selector_data(dataWithJSONObject:options:error:) +L_selector(dataWithJSONObject:options:error:) +L_selector(description) +L_selector(respondsToSelector:) +L_selector_data(absoluteString) +L_selector(absoluteString) +L_selector_data(setDateFormat:) +L_selector(setDateFormat:) +L_selector_data(timeZoneWithAbbreviation:) +L_selector(timeZoneWithAbbreviation:) +L_selector_data(setTimeZone:) +L_selector(setTimeZone:) +L_selector_data(initWithLocaleIdentifier:) +L_selector(initWithLocaleIdentifier:) +L_selector_data(setLocale:) +L_selector(setLocale:) +L_selector_data(stringFromDate:) +L_selector(stringFromDate:) +metadata.16 +metadata.18 +_TMLGCs23_ContiguousArrayStoragePs9AnyObject__ +_TMLGCs23_ContiguousArrayStorageT__ +_TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ +JSONHandler.swift +_TTSg5VSC20NSJSONWritingOptions___TFSag8endIndexSi +_TTSg5VSC20NSJSONWritingOptions___TFSag10startIndexSi +_TTSg5VSC20NSJSONWritingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5GSaVSC20NSJSONWritingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5VSC20NSJSONWritingOptions___TFSag9subscriptFSix +_TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__u_KT_P_ +_TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd +_TTSg5T____TFVs15ContiguousArrayg5countSi +_TTSg5T____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageT__ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_T____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5T____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5T____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5T____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ +_TTSg5T____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5T____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5T____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ +_TTSg5T____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerlu5valuex +_TTSg5T____TFVs22_ContiguousArrayBufferg10startIndexSi +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ +_TTSg5T____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5T____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5T____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5T____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5T____TFVs12_ArrayBuffers5countSi +_TTSg5T____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5T____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5T____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5T____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5T____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5T____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ +_TTSg5T____TFSp10initializefxT_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_T____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5T____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5T____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5T____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_T____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb +_TTSg5T____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5T____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5T____TFVs15ContiguousArrayCfT_GS_x_ +_TTSg5T____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5T____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5T____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5T____TFVs15ContiguousArray6appendfxT_ +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ +_TTSg5T____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypesFS1_g5countWx5Index8Distance_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArrayg5countSi +_TTSg5Ps9AnyObject__PS_____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStoragePs9AnyObject__ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5Ps9AnyObject____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5Ps9AnyObject____TFSp7destroyfSiT_ +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5Ps9AnyObject____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerlu5valuex +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg10startIndexSi +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ +_TTSg5Ps9AnyObject____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Ps9AnyObject____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5Ps9AnyObject____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Ps9AnyObject____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5Ps9AnyObject____TFVs15ContiguousArrayCfT_GS_x_ +_TTSg5Ps9AnyObject____TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg5countSi +_TTWSis14_IncrementablesFS_9successorfT_x +_TTSg5Ps9AnyObject____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray6appendfxT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTRXFo_oPs9AnyObject__oPS__zoPs9ErrorType__XFo_iPS___iPS__zoPS0___ +_TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__U_FPS1__PS1__ +_TTSg5Ps9AnyObject____TFSag9subscriptFSix +_TTSg5Ps9AnyObject____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5GSaPs9AnyObject__GSaPS___s14CollectionTypes_GVs17IndexingGeneratorGSaPS____GS1_GSaPS____s13GeneratorTypes_PS___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySlicePS___GS6_PS___s9IndexablesGS6_PS___s12SequenceTypes_GS1_GS6_PS____GS1_GS6_PS____S2_s_PS___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_PS____PS___PS___PS_____TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ +_TTSg5Ps9AnyObject____TFSag5countSi +makeObjectSerializable +_TFZFC8Mixpanel11JSONHandler19serializeJSONObjectFPs9AnyObject_GSqCSo6NSData_u_KT_P_ +_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x +_TFZFC8Mixpanel11JSONHandler19serializeJSONObjectFPs9AnyObject_GSqCSo6NSData_u0_KT_P_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5GSaVSC20NSJSONWritingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBufferg5countSi +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffers5countSi +_TTSg5VSC20NSJSONWritingOptions___TFVs12_ArrayBuffers5countSi +_TTSg5VSC20NSJSONWritingOptions___TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5VSC20NSJSONWritingOptions___TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5VSC20NSJSONWritingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TMaCSo19NSJSONSerialization +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +serializeJSONObject +_TFZFC8Mixpanel11JSONHandler13encodeAPIDataFPs9AnyObject_GSqSS_u_KT_P_ +_TFZFC8Mixpanel11JSONHandler13encodeAPIDataFPs9AnyObject_GSqSS_u0_KT_P_ +_TMaCSo14NSCharacterSet +warn +encodeAPIData +_TMaC8Mixpanel11JSONHandler +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift +_TFC8Mixpanel19AutomaticPropertiesD +get_field_types_AutomaticProperties +_TTSg5GVs28UnsafeBufferPointerGeneratorVs5UInt8_GS_S0__s13GeneratorTypes___TFVs4UTF86decodeuRxs13GeneratorTypewx7ElementzVs5UInt8rfRxOs21UnicodeDecodingResult +_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ +_METACLASS_DATA__TtC8Mixpanel19AutomaticProperties +_DATA__TtC8Mixpanel19AutomaticProperties +_TMfC8Mixpanel19AutomaticProperties +field_type_vector_AutomaticProperties +L_selector_data(mainScreen) +L_selector(mainScreen) +L_selector_data(bounds) +L_selector(bounds) +L_selector_data(mainBundle) +L_selector(mainBundle) +L_selector_data(infoDictionary) +L_selector(infoDictionary) +L_selector_data(subscriberCellularProvider) +L_selector(subscriberCellularProvider) +L_selector_data(carrierName) +L_selector(carrierName) +L_selector_data(bundleForClass:) +L_selector(bundleForClass:) +L_selector_data(systemName) +L_selector(systemName) +L_selector_data(systemVersion) +L_selector(systemVersion) +_TMLGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ +AutomaticProperties.swift +_TTSf4n_d_d___TZFVs4UTF812_isValidUTF8fTVs6UInt3210validBytesVs5UInt8_Sb +_TTSf4n_n_d___TZFVs4UTF842_findMaximalSubpartOfIllFormedUTF8SequencefTVs6UInt3210validBytesVs5UInt8_S1_ +_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ +_TZFSS11fromCStringfGSPVs4Int8_GSqSS_ +_TTRXFo_dGSpTVs4Int8S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S____oGSqSS_zoPs9ErrorType__XFo_dGSpTS_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S____iGSqSS_zoPS0___ +_TFZFC8Mixpanel19AutomaticProperties11deviceModelFT_SSU_FGSpTVs4Int8S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1___GSqSS_ +_TTSg5TVs4Int8S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S___GSqSS____TFs24withUnsafeMutablePointeru0_rFzTRxFzGSpx_q__q_ +_TMaCSo8NSBundle +_TMaCSo8UIScreen +deviceModel +libVersion +_TMaC8Mixpanel19AutomaticProperties +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift +_TwxsO8Mixpanel8LogLevel +_TwxgO8Mixpanel8LogLevel +_TwugO8Mixpanel8LogLevel +_TwupO8Mixpanel8LogLevel +_TwuiO8Mixpanel8LogLevel +get_field_types_LogLevel +_TwXXV8Mixpanel10LogMessage +_TwCPV8Mixpanel10LogMessage +_TwprV8Mixpanel10LogMessage +_TwdeV8Mixpanel10LogMessage +_TwxxV8Mixpanel10LogMessage +_TwCpV8Mixpanel10LogMessage +_TwcpV8Mixpanel10LogMessage +_TwcaV8Mixpanel10LogMessage +_TwTkV8Mixpanel10LogMessage +__swift_memcpy73_8 +_TwtaV8Mixpanel10LogMessage +_TwalV8Mixpanel10LogMessage +_TwXxV8Mixpanel10LogMessage +_TwCcV8Mixpanel10LogMessage +get_field_types_LogMessage +_TFC8Mixpanel6LoggerD +get_field_types_Logger +_TMfO8Mixpanel8LogLevel +_TMfV8Mixpanel10LogMessage +_METACLASS_DATA__TtC8Mixpanel6Logger +_DATA__TtC8Mixpanel6Logger +_TWoZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessagefVS_10LogMessageT_ +_TMfC8Mixpanel6Logger +field_type_vector_Logger +field_type_vector_LogMessage +field_type_vector_LogLevel +Logger.swift +_TMaC8Mixpanel6Logger +_TMaV8Mixpanel10LogMessage +_TMaO8Mixpanel8LogLevel +_TWaO8Mixpanel8LogLevels16RawRepresentableS_ +_TWaO8Mixpanel8LogLevels8HashableS_ +_TWaO8Mixpanel8LogLevels9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift +_TwXXO8Mixpanel13PropertyError +_TwCPO8Mixpanel13PropertyError +_TwcpO8Mixpanel13PropertyError +_TwcaO8Mixpanel13PropertyError +_TwtaO8Mixpanel13PropertyError +_TwXxO8Mixpanel13PropertyError +_TwCcO8Mixpanel13PropertyError +_TwxsO8Mixpanel13PropertyError +_TwxgO8Mixpanel13PropertyError +_TwugO8Mixpanel13PropertyError +_TwupO8Mixpanel13PropertyError +_TwuiO8Mixpanel13PropertyError +get_field_types_PropertyError +_TFC8Mixpanel10AssertionsD +get_field_types_Assertions +get_field_types_ErrorHandler +_TFC8Mixpanel12ErrorHandlerD +_TwCpO8Mixpanel13PropertyError +_TwxxO8Mixpanel13PropertyError +_TMfO8Mixpanel13PropertyError +_METACLASS_DATA__TtC8Mixpanel10Assertions +_DATA__TtC8Mixpanel10Assertions +_TMfC8Mixpanel10Assertions +_METACLASS_DATA__TtC8Mixpanel12ErrorHandler +_DATA__TtC8Mixpanel12ErrorHandler +_TMfC8Mixpanel12ErrorHandler +got._TMps9ErrorType +field_type_vector_ErrorHandler +field_type_vector_Assertions +field_type_vector_PropertyError +_TMLT4typePs9AnyObject__ +Error.swift +_TMaT4typePs9AnyObject__ +_TMaC8Mixpanel12ErrorHandler +_TMaC8Mixpanel10Assertions +_TMaO8Mixpanel13PropertyError +_TWaO8Mixpanel13PropertyErrors9ErrorTypeS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift +_TTSf3cpfr110_TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U_FCSo6NSDataGSqSi__n_n___TTRXFo_oCSo6NSData_dGSqSi__XFo_oS__iGSqSi__ +_TwxsO8Mixpanel9FlushType +_TwxgO8Mixpanel9FlushType +_TwugO8Mixpanel9FlushType +_TwupO8Mixpanel9FlushType +_TwuiO8Mixpanel9FlushType +get_field_types_FlushType +_TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U0_FTSiGSqCSo13NSURLResponse__T_ +_TFC8Mixpanel12FlushRequestD +get_field_types_FlushRequest +_TTSg5GSRVs6UInt16_GSRS__s14CollectionTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGSRS___GS6_GSRS___s9IndexablesGS6_GSRS___s12SequenceTypes_GVs17IndexingGeneratorGS6_GSRS____GS9_GS6_GSRS____S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_GSRS____S__S____TFs25_transcodeSomeUTF16AsUTF8uRxs14CollectionTypeWx9Generator7Element_zVs6UInt16rFTxwx5Index_TwxS3_Vs6UInt64_ +_TTSf4n_s___TFVs11_StringCoreg9subscriptFSiVs6UInt16 +_TFFSdcFSSGSqSd_L_9parseNTBSFGSPVs4Int8_TSdSi_ +_TTSf4s___TFSSg17nulTerminatedUTF8GVs15ContiguousArrayVs5UInt8_ +_TTSg5Vs5UInt8_VSS8UTF8ViewS0_s14CollectionTypes_GVs17IndexingGeneratorS0__GS2_S0__s13GeneratorTypes_VS0_5IndexS4_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__S0_S0_s9IndexablesS0_s12SequenceTypes_GS2_S0__GS2_S0__S3_s_S__S4_S4_S5_s_SiSiS6_s_SiSiS7_s_S8__S0__S__S____TZFsoi2peu0_R_s14CollectionTypexzW_9Generator7Element_rFTRGVs15ContiguousArrayx_q__T_ +_TTSg5Vs5UInt8___TFVs15ContiguousArray16_copyToNewBufferfSiT_ +_TTSg5GVs22_ContiguousArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_S0__GVs17IndexingGeneratorGS_S0___GS2_GS_S0___s13GeneratorTypes_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS0__GS7_S0__s14CollectionTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0__GS7_S0__s9IndexablesGS7_S0__s12SequenceTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0___S0__S0__S0____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_GVs14_IgnorePointerS0__GS2_S0__s20_PointerFunctionTypes_S0__GVs17IndexingGeneratorGS_S0___GS4_GS_S0___s13GeneratorTypes_S0__GVs12_SliceBufferS0__GS6_S0__s14CollectionTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS6_S0__GS6_S0__s9IndexablesGS6_S0__s12SequenceTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS6_S0___S0__S0__S0____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TPA__TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U0_FSbT_ +_TPA__TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TPA__TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U0_FTSiGSqCSo13NSURLResponse__T_ +_TTSf4g_n___TFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3716updateRetryDelayfGSqCSo13NSURLResponse_T_ +objectdestroy.11 +_TMfO8Mixpanel9FlushType +_METACLASS_DATA__TtC8Mixpanel12FlushRequest +_IVARS__TtC8Mixpanel12FlushRequest +_DATA__TtC8Mixpanel12FlushRequest +_TWoFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerfTSS8resourceGVS_8ResourceSi_10completionFSbT__T_ +_TWoFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3716updateRetryDelayfGSqCSo13NSURLResponse_T_ +_TWoFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3739retryBackOffTimeWithConsecutiveFailuresfSiSd +_TMfC8Mixpanel12FlushRequest +field_type_vector_FlushRequest +field_type_vector_FlushType +L_selector_data(initWithTimeIntervalSinceNow:) +L_selector(initWithTimeIntervalSinceNow:) +L_selector_data(allHeaderFields) +L_selector(allHeaderFields) +metadata.12 +_TMLGCs23_ContiguousArrayStorageVs5UInt8_ +FlushRequest.swift +_TTSf4g_n_n___TFs28_parseUnsignedAsciiAsUIntMaxFTVSS9UTF16ViewSiVs6UInt64_GSqS0__ +_TFVSS9UTF16Viewg9subscriptFVS_5IndexVs6UInt16 +_TTSf4g___TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U_FCSo6NSDataGSqSi_ +_TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U0_FSbT_ +updateRetryDelay +_TTRXFo_dGSPVs4Int8__dTSdSi_zoPs9ErrorType__XFo_dGSPS___iTSdSi_zoPS0___ +_TMaGCs23_ContiguousArrayStorageVs5UInt8_ +_TTSf4n_s___TFVs11_StringCore15_encodeSomeUTF8fSiTSiVs6UInt64_ +_TTSg5VSS8UTF8ViewS_s9Indexables_VS_5IndexS1_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__Vs5UInt8___TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5Vs6UInt16___TFSRg9subscriptFSix +_TTSf4n_s___TFVs11_StringCore32_encodeSomeContiguousUTF16AsUTF8fSiTSiVs6UInt64_ +_TTSf4n_s___TFVs11_StringCore35_encodeSomeNonContiguousUTF16AsUTF8fSiTSiVs6UInt64_ +_TTSg5Vs5UInt8___TFVs15ContiguousArray15reserveCapacityfSiT_ +_TTSg5TSdSi____TFFSS11withCStringurFzFzGSPVs4Int8_xxU_FzGSRVs5UInt8_Q_ +_TPA__TTRXFo_dGSPVs4Int8__dTSdSi_zoPs9ErrorType__XFo_dGSPS___iTSdSi_zoPS0___ +_TTSg5SdSds10Comparables___TFs3minuRxs10ComparablerFTxx_x +_TTWSds10ComparablesZFS_oi1lfTxx_Sb +retryBackOffTimeWithConsecutiveFailures +FV8Mixpanel12APIConstantsG19failuresTillBackoffSi +_TFFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U0_FTSiGSqCSo13NSURLResponse__T_u_KT_P_ +_TTSg5SdSds10Comparables___TFs3maxuRxs10ComparablerFTxx_x +_TTWSds10ComparablesZFS_oi2gefTxx_Sb +FV8Mixpanel12APIConstantsG15maxRetryBackoffSd +flushRequestHandler +sendRequest +_TMaC8Mixpanel12FlushRequest +_TMaO8Mixpanel9FlushType +_TWaO8Mixpanel9FlushTypes16RawRepresentableS_ +_TWaO8Mixpanel9FlushTypes8HashableS_ +_TWaO8Mixpanel9FlushTypes9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift +globalinit_33_5BB93A66CA3F8035AFDFA4141CC75A3F_func13 +_TFC8Mixpanel15MixpanelManagerD +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ +_TTSg5P8Mixpanel7Logging____TFSa16_copyToNewBufferfSiT_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage24nativeRemoveObjectForKeyfxGSqq__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSg5GVs12_ArrayBufferP8Mixpanel7Logging__GS_PS1___s16_ArrayBufferTypes_PS1___GVs17IndexingGeneratorGS_PS1____GS3_GS_PS1____s13GeneratorTypes_PS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS1___GS8_PS1___s14CollectionTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1___GS8_PS1___s9IndexablesGS8_PS1___s12SequenceTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1____PS1___PS1___PS1_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSf4n_d___TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_n___TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ +_TTSf4gs_n___TFC8Mixpanel15MixpanelManager11getInstancefT4nameSS_GSqCS_16MixpanelInstance_ +get_field_types_Mixpanel +get_field_types_MixpanelManager +_TTSf4g_n_n_d___TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage16nativeDeleteImplfTGVs24_NativeDictionaryStoragexq__11idealBucketSi6offsetSi_T_ +_TMaGCs29_NativeDictionaryStorageOwnerSSC8Mixpanel16MixpanelInstance_ +_TTSf4s_n_n___TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferP8Mixpanel7Logging__GS_PS1___s16_ArrayBufferTypes_GVs14_IgnorePointerPS1___GS3_PS1___s20_PointerFunctionTypes_PS1___GVs17IndexingGeneratorGS_PS1____GS5_GS_PS1____s13GeneratorTypes_PS1___GVs12_SliceBufferPS1___GS7_PS1___s14CollectionTypes_GS5_GS7_PS1____GS5_GS7_PS1____S6_s_PS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_PS1___GS7_PS1___s9IndexablesGS7_PS1___s12SequenceTypes_GS5_GS7_PS1____GS5_GS7_PS1____S6_s_PS1___SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_PS1____PS1___PS1___PS1_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_METACLASS_DATA__TtC8Mixpanel8Mixpanel +_DATA__TtC8Mixpanel8Mixpanel +_TMfC8Mixpanel8Mixpanel +_TWvdvC8Mixpanel15MixpanelManagerP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWvdvC8Mixpanel15MixpanelManagerP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_METACLASS_DATA__TtC8Mixpanel15MixpanelManager +_IVARS__TtC8Mixpanel15MixpanelManager +_DATA__TtC8Mixpanel15MixpanelManager +_TWoFC8Mixpanel15MixpanelManagergP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagersP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagermP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagergP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagersP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagermP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_TMfC8Mixpanel15MixpanelManager +field_type_vector_MixpanelManager +_TMLGVs10DictionarySSC8Mixpanel16MixpanelInstance_ +_TMLGSqC8Mixpanel16MixpanelInstance_ +field_type_vector_Mixpanel +_TMLGCs29_NativeDictionaryStorageOwnerSSC8Mixpanel16MixpanelInstance_ +_TMLGCs28_NativeDictionaryStorageImplSSC8Mixpanel16MixpanelInstance_ +_TMLP8Mixpanel7Logging_ +_TMLGCs23_ContiguousArrayStorageP8Mixpanel7Logging__ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageP8Mixpanel7Logging__ +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5GVs12_ArrayBufferP8Mixpanel7Logging__GS_PS1___s16_ArrayBufferTypes_PS1___GVs17IndexingGeneratorGS_PS1____GS3_GS_PS1____s13GeneratorTypes_PS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS1___GS8_PS1___s14CollectionTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1___GS8_PS1___s9IndexablesGS8_PS1___s12SequenceTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1____PS1___PS1___PS1_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5P8Mixpanel7Logging____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TTSg5P8Mixpanel7Logging____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5P8Mixpanel7Logging____TFSp7destroyfSiT_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferg10startIndexSi +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerlu5valuex +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5P8Mixpanel7Logging____TFSp10initializefxT_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffers5countSi +_TTSg5P8Mixpanel7Logging____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +addLogging +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ +_TTSg5P8Mixpanel7Logging____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5P8Mixpanel7Logging____TFSa6appendfxT_ +_TTSg5P8Mixpanel7Logging____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd +_TFFC8Mixpanel15MixpanelManager11getInstanceFT4nameSS_GSqCS_16MixpanelInstance_u_KT_P_ +getInstance +_TTSg5SS_C8Mixpanel16MixpanelInstance___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSC8Mixpanel16MixpanelInstance_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5C8Mixpanel16MixpanelInstance___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb +_TTSg5C8Mixpanel16MixpanelInstance___TFSp10initializefxT_ +_TTSg5C8Mixpanel16MixpanelInstance___TFSp4movefT_x +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5C8Mixpanel16MixpanelInstance___TFSp7destroyfT_T_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5_prevfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage7_bucketfxSi +_TMaGSqC8Mixpanel16MixpanelInstance_ +_TMaGVs10DictionarySSC8Mixpanel16MixpanelInstance_ +_TMaC8Mixpanel15MixpanelManager +_TMaC8Mixpanel8Mixpanel +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10Dictionary17removeValueForKeyfxGSqq__ +removeInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage17removeValueForKeyfxGSqq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +setMainInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10Dictionaryg9subscriptFxGSqq__ +getMainInstance +mainInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10Dictionarys9subscriptFxGSqq__ +initialize +_TFC8Mixpanel15MixpanelManagerau14sharedInstanceS0_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Products/Release-iphoneos/C23D5ECC-7151-3D37-9F58-0414568EBD79.bcsymbolmap b/MixpanelDemo/Build/Products/Release-iphoneos/C23D5ECC-7151-3D37-9F58-0414568EBD79.bcsymbolmap new file mode 100644 index 00000000..e9f68ce1 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphoneos/C23D5ECC-7151-3D37-9F58-0414568EBD79.bcsymbolmap @@ -0,0 +1,2428 @@ +BCSymbolMap Version: 1.0 +_TFC8Mixpanel16MixpanelInstance9unarchivefT_T_ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundFCSo14NSNotificationT_U_FT_T_ +_TTRXFo__dT__XFdCb__dT__ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundFCSo14NSNotificationT_U0_FT_T_ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849630applicationWillEnterForegroundFCSo14NSNotificationT_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849624applicationWillTerminateFCSo14NSNotificationT_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance15setCurrentRadioFT_T_U_FT_T_ +_TTWC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_FS1_5flushfT10completionGSqFT_T___T_ +_TTWC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_FS1_30updateNetworkActivityIndicatorfSbT_ +_TFFC8Mixpanel16MixpanelInstance8identifyFT10distinctIdSS_T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance5resetFT_T_U_FT_T_ +_TFFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_U_FSbT_ +_TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance16clearTimedEventsFT_T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance20clearSuperPropertiesFT_T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__12defaultValueGSqPS2____T_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance23unregisterSuperPropertyFSST_U_FT_T_ +_TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_ +_TFFC8Mixpanel5Flush15startFlushTimerFT_T_U_FT_T_ +block_copy_helper +block_destroy_helper +_TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_ +objectdestroy +_TPA__TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_ +_TFC8Mixpanel5Flush19flushQueueInBatchesfTRGSaGVs10DictionarySSPs9AnyObject___4typeOS_9FlushType_T_ +globalinit_33_A5066DE13777C552986D7397F9E123E1_func5 +_TFFC8Mixpanel5Track27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__15superPropertiesRGS1_SSPS2___12defaultValueGSqPS2____T_U_FTSSPS2___T_ +_TTRXFo_oSSoPs9AnyObject__dT_zoPs9ErrorType__XFo_iTSSPS____iT_zoPS0___ +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_func6 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_func7 +_TFIZvC8Mixpanel19AutomaticProperties10propertiesGVs10DictionarySSPs9AnyObject__iU_FT_GS1_SSPS2___ +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_func9 +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_func10 +_TTSg5O8Mixpanel13PropertyErrorS0_s9ErrorTypeS____TFEsPs9ErrorTypeg7_domainSS +_TTWVSC20NSJSONWritingOptionss9Equatable10FoundationZFS0_oi2eefTxx_Sb +_TTWVSC20NSJSONWritingOptionss23ArrayLiteralConvertible10FoundationFS0_Cft12arrayLiteralGSawx7Element__x +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_CfT_x +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_5unionfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_9intersectfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_11exclusiveOrfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_6removefwx7ElementGSqwxS2__ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_12unionInPlacefxT_ +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_12unionInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_16intersectInPlacefxT_ +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_16intersectInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_18exclusiveOrInPlacefxT_ +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__SuSus21BitwiseOperationsTypes___TFesRxs13OptionSetTypewx8RawValues21BitwiseOperationsTyperS_18exclusiveOrInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_8subtractfxx +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_10isSubsetOffxSb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_14isDisjointWithfxSb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_12isSupersetOffxSb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_g7isEmptySb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_CuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S__GSaS__GSaS__s12SequenceTypes_GVs17IndexingGeneratorGSaS___GS3_GSaS___s13GeneratorTypes_GVs10ArraySliceS_____TFEsPs14SetAlgebraTypeCuRd__s12SequenceTypewx7ElementzWd__9Generator7Element_rfqd__x +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_15subtractInPlacefxT_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element8subsumeswxS2__Sb +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationZFS0_7elementfTwx7Element14isDisjointWithwxS2__Sb +_TTWVSC20NSJSONWritingOptionss16RawRepresentable10FoundationFS0_CfT8rawValuewx8RawValue_GSqx_ +_TTWVSC20NSJSONWritingOptionss16RawRepresentable10FoundationFS0_g8rawValuewx8RawValue +_TTWVSC20NSJSONWritingOptionss13OptionSetType10FoundationFS0_CfT8rawValuewx8RawValue_x +_TTSf4d_n_n_n_d___TTSg5Vs4UTF8S_s16UnicodeCodecTypes_GSRVs5UInt8_GSRS1__s14CollectionTypes_S1__GVs28UnsafeBufferPointerGeneratorS1__GS3_S1__s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGSRS1___GS8_GSRS1___s9IndexablesGS8_GSRS1___s12SequenceTypes_GVs17IndexingGeneratorGS8_GSRS1____GS11_GS8_GSRS1____S4_s_S1__SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GSRS1____S1__S1____TZFVs13_StringBuffer13fromCodeUnitsu0_Rxs16UnicodeCodecType_s14CollectionTypewx8CodeUnitzW_9Generator7Element_rfTMx5inputq_24repairIllFormedSequencesSb15minimumCapacitySi_TGSqS__8hadErrorSb_ +_TTSg5SS___TFCs23_ContiguousArrayStoraged +_TTSg5TSSPs9AnyObject_____TFCs23_ContiguousArrayStoraged +_TTSg5TSSSS____TFCs23_ContiguousArrayStoraged +_TTSg5P____TFCs23_ContiguousArrayStoraged +_TTSg5SSSSs10Streamables___TFs27_toStringReadOnlyStreamableuRxs10StreamablerFxSS +_TTSg5SiSis23CustomStringConvertibles___TFs26_toStringReadOnlyPrintableuRxs23CustomStringConvertiblerFxSS +_TTSg5VSS8UTF8ViewS_s14CollectionTypes_GVs17IndexingGeneratorS__GS1_S__s13GeneratorTypes_Vs5UInt8_VS_5IndexS4_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__S_S_s9IndexablesS_s12SequenceTypes_GS1_S__GS1_S__S2_s_S3__S4_S4_S5_s_SiSiS6_s_SiSiS7_s_S8__S__S3__S3____TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTSg5VVSS8UTF8View5IndexS0_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFEsPs16ForwardIndexType10distanceTofxwx8Distance +_TTSf4n_n_d___TTSg5Vs5UInt8___TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5Vs5UInt8___TFSa16_copyToNewBufferfSiT_ +_TTSf4gs_gs___TZFsoi2eeFTSSSS_Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa16_copyToNewBufferfSiT_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage24nativeRemoveObjectForKeyfxGSqq__ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage17nativeUpdateValuefTx6forKeyx_GSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage24nativeRemoveObjectForKeyfxGSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage8maybeGetfxGSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TZFOs18_VariantSetStorage24maybeGetFromCocoaStoragefTVs16_CocoaSetStorage6forKeyx_GSqx_ +_TTSg5GVs12_ArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_S0__GVs17IndexingGeneratorGS_S0___GS2_GS_S0___s13GeneratorTypes_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS0__GS7_S0__s14CollectionTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0__GS7_S0__s9IndexablesGS7_S0__s12SequenceTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0___S0__S0__S0____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_GVs14_IgnorePointerS0__GS2_S0__s20_PointerFunctionTypes_S0__GVs17IndexingGeneratorGS_S0___GS4_GS_S0___s13GeneratorTypes_S0__GVs12_SliceBufferS0__GS6_S0__s14CollectionTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS6_S0__GS6_S0__s9IndexablesGS6_S0__s12SequenceTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS6_S0___S0__S0__S0____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4s_n_n___TTSg5Vs5UInt8___TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSg5O8Mixpanel8LogLevel___TZFCs21_NativeSetStorageImpl6createfSiGS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5_findfTxSi_T3posGVs15_NativeSetIndexx_5foundSb_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSf4gs_n_n_d___TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage16nativeDeleteImplfTGVs17_NativeSetStoragex_11idealBucketSi6offsetSi_T_ +_TMaGCs23_ContiguousArrayStorageSS_ +__swift_noop_void_return +__swift_noop_self_return +_TTSf4n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4n_gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypefTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__ +_TTSf4gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A19unarchivePropertiesfT5tokenSS_TGVs10DictionarySSPs9AnyObject__GS1_SSPS2___SSGSqSS_GSaGS1_SSPS2_____ +_TTSf4g_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TMaGVs10DictionarySSPs9AnyObject__ +_TMaPs9AnyObject_ +_TTSf4n_g_gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFilefTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_ +_TTSf4g_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ +_TTSf4g_n_n_d___TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage16nativeDeleteImplfTGVs24_NativeDictionaryStoragexq__11idealBucketSi6offsetSi_T_ +_TTSf4n_s_d___TZFC8Mixpanel11Persistence17archivePropertiesfTVS_18ArchivedProperties5tokenSS_T_ +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_ +_TPA__TFFC8Mixpanel16MixpanelInstance8identifyFT10distinctIdSS_T_U_FT_T_ +_TMaP_ +objectdestroy.14 +_TMaGCs23_ContiguousArrayStorageTSSSS__ +_TTSf4n_d___TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_SS___TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TMaGCs29_NativeDictionaryStorageOwnerSSSS_ +objectdestroy.16 +objectdestroy.22 +_TPA__TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_ +objectdestroy.36 +_TPA__TFFC8Mixpanel16MixpanelInstance4timeFT5eventSS_T_U_FT_T_ +objectdestroy.44 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_ +objectdestroy.49 +_TPA__TFFC8Mixpanel16MixpanelInstance23registerSuperPropertiesFGVs10DictionarySSPs9AnyObject__T_U_FT_T_ +objectdestroy.57 +_TPA__TFFC8Mixpanel16MixpanelInstance27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__12defaultValueGSqPS2____T_U_FT_T_ +objectdestroy.65 +_TPA__TFFC8Mixpanel16MixpanelInstance23unregisterSuperPropertyFSST_U_FT_T_ +_TTSf4g_n___TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0____T____TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ +_TTSf4gs_g_d___TZFC8Mixpanel7Network16trackIntegrationfT8apiTokenSS10completionFSbT__T_ +_TTSf4g_d___TZFC8Mixpanel5Track19assertPropertyTypesfGSqGVs10DictionarySSPs9AnyObject___T_ +_TTSf4n_g___TTSg5SSSSs8Hashables_Ps9AnyObject____TZF8Mixpaneloi2peu0_Rxs8HashablerFTRGVs10Dictionaryxq__GS1_xq___T_ +_TTSf4g_g_n_n_g_gs_n_n___TFC8Mixpanel5Track5trackfT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject___11eventsQueueRGSaGS1_SSPS2____11timedEventsRGS1_SSPS2___15superPropertiesGS1_SSPS2___10distinctIdSS13epochIntervalSd_T_ +_TTSf4g_n_n_d___TFC8Mixpanel5Track4timefT5eventGSqSS_11timedEventsRGVs10DictionarySSPs9AnyObject__9startTimeSd_T_ +_TTSf4gs_d___TFOC8Mixpanel11Persistence11ArchiveTypeCfT8rawValueSS_GSqS1__ +_TTSf4gs_d___TFO8Mixpanel6MethodCfT8rawValueSS_GSqS0__ +_TTSf4gs_d___TFO8Mixpanel8LogLevelCfT8rawValueSS_GSqS0__ +_TTSf4gs_d___TFO8Mixpanel9FlushTypeCfT8rawValueSS_GSqS0__ +_TMaGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ +_TMaVSC20NSJSONWritingOptions +__swift_memcpy4_4 +__swift_memcpy_array4_4 +__swift_memmove_array4_4 +get_field_types_NSJSONWritingOptions +_TWaC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_ +_TWTurGSax_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGSax_s14CollectionTypes11SubSequencePs12SequenceType_ +_TWturGSax_s12SequenceTypes9Generator +_TWTurGSax_s12SequenceTypes9GeneratorPs13GeneratorType_ +_TWturGSax_s12SequenceTypes11SubSequence +_TWtuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypes7Element +_TWturGVs15EmptyCollectionx_s14CollectionTypes9Generator +_TWTurGVs15EmptyCollectionx_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWturGVs15EmptyCollectionx_s14CollectionTypes11SubSequence +_TWturGVs14_IgnorePointerx_s20_PointerFunctionTypes7Element +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes9Generator +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes11SubSequence +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s9Indexables5Index +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s9Indexables5IndexPs16ForwardIndexType_ +_TWtu0_Rxs8HashablerGVs10Dictionaryxq__s9Indexables8_Element +_TWturGVs15ContiguousArrayx_s12SequenceTypes9Generator +_TWturGVs10ArraySlicex_s12SequenceTypes9Generator +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s16LazySequenceTypes8Elements +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s16LazySequenceTypes8ElementsPs12SequenceType_ +_TWtuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9Indexables5Index +_TWTuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9Indexables5IndexPs16ForwardIndexType_ +_TWtuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9Indexables8_Element +_TWtuRxs14CollectionTyperGVs14LazyCollectionx_s16LazySequenceTypes8Elements +_TWTuRxs14CollectionTyperGVs14LazyCollectionx_s16LazySequenceTypes8ElementsPs12SequenceType_ +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9Indexables5Index +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9Indexables5IndexPs16ForwardIndexType_ +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9Indexables8_Element +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s9Generator +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s9GeneratorPs13GeneratorType_ +_TWtu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s11SubSequence +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s11SubSequencePs9Indexable_ +_TWTu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__S_s11SubSequencePs12SequenceType_ +_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes9Generator +_TWturGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequence +_TWturGVs12_SliceBufferx_s14CollectionTypes9Generator +_TWturGVs12_SliceBufferx_s14CollectionTypes11SubSequence +_TWTurGVs12_SliceBufferx_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGVs12_SliceBufferx_s14CollectionTypes11SubSequencePs12SequenceType_ +get_field_types_MixpanelInstance +_TPA__TFFC8Mixpanel16MixpanelInstance15setCurrentRadioFT_T_U_FT_T_ +objectdestroy.99 +_TPA__TFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_ +block_copy_helper.101 +block_destroy_helper.102 +objectdestroy.104 +objectdestroy.110 +_TPA__TFFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_U_FSbT_ +_TMaCSo8NSObject +objectdestroy.112 +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_.114 +objectdestroy.127 +_TPA__TFFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundFCSo14NSNotificationT_U0_FT_T_ +objectdestroy.132 +_TPA__TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_.134 +objectdestroy.138 +_TPA__TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_.140 +_TTSf4n_n_d___TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element8subsumeswxS0__Sb +_TTSf4n_n_d___TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TZFEsPs14SetAlgebraType7elementfTwx7Element14isDisjointWithwxS0__Sb +_TMaGCs22_NativeSetStorageOwnerO8Mixpanel8LogLevel_ +_TMaGCs21_NativeSetStorageImplO8Mixpanel8LogLevel_ +_TMaGCs23_ContiguousArrayStorageP__ +_TMaMO8Mixpanel13PropertyError +objectdestroy.153 +_TPA__TFFC8Mixpanel5Track27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__15superPropertiesRGS1_SSPS2___12defaultValueGSqPS2____T_U_FTSSPS2___T_ +objectdestroy.155 +_TPA__TTRXFo_oSSoPs9AnyObject__dT_zoPs9ErrorType__XFo_iTSSPS____iT_zoPS0___ +_TPA__TTRXFo_iT__iT__XFo__dT__ +_swift_dead_method_stub +_TWturGSax_s14CollectionTypes11SubSequence +_TWturGVs15ContiguousArrayx_s12SequenceTypes11SubSequence +_TWturGVs10ArraySlicex_s12SequenceTypes11SubSequence +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_.18 +_TPA__TFFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_U_FT_T_.90 +objectdestroy.9 +objectdestroy.27 +objectdestroy.30 +objectdestroy.79 +objectdestroy.82 +objectdestroy.85 +objectdestroy.73 +objectdestroy.157 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_.53 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_.61 +_TPA__TFFC8Mixpanel16MixpanelInstance16dispatchAndTrackFFT_T_T_U_FT_T_.69 +_TPA__TFFC8Mixpanel5Flush14stopFlushTimerFT_T_U_FT_T_.149 +_TWturGVs12_ArrayBufferx_s16_ArrayBufferTypes7Element +_TWturGVs12_ArrayBufferx_s9Indexables8_Element +_TWturGVs15EmptyCollectionx_s9Indexables8_Element +_TWturGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypes7Element +_TWturGVs22_ContiguousArrayBufferx_s9Indexables8_Element +_TWturGSax_s9Indexables8_Element +_TWtuRxs14CollectionTyperGVs31_InitializeMemoryFromCollectionx_s20_PointerFunctionTypes7Element +_TWturGVs12_SliceBufferx_s16_ArrayBufferTypes7Element +_TWturGVs12_SliceBufferx_s9Indexables8_Element +block_destroy_helper.2 +block_destroy_helper.7 +block_destroy_helper.12 +block_destroy_helper.20 +block_destroy_helper.25 +block_destroy_helper.34 +block_destroy_helper.39 +block_destroy_helper.42 +block_destroy_helper.47 +block_destroy_helper.55 +block_destroy_helper.63 +block_destroy_helper.71 +block_destroy_helper.77 +block_destroy_helper.92 +block_destroy_helper.97 +block_destroy_helper.108 +block_destroy_helper.116 +block_destroy_helper.119 +block_destroy_helper.122 +block_destroy_helper.125 +block_destroy_helper.130 +block_destroy_helper.136 +block_destroy_helper.142 +block_destroy_helper.145 +block_destroy_helper.151 +block_destroy_helper.160 +objectdestroy.4 +objectdestroy.88 +objectdestroy.51 +objectdestroy.59 +objectdestroy.67 +objectdestroy.147 +objectdestroy.94 +_TPA__TFFC8Mixpanel16MixpanelInstance15setCurrentRadioFT_T_U_FT_T_.106 +block_copy_helper.1 +block_copy_helper.6 +block_copy_helper.11 +block_copy_helper.19 +block_copy_helper.24 +block_copy_helper.33 +block_copy_helper.38 +block_copy_helper.41 +block_copy_helper.46 +block_copy_helper.54 +block_copy_helper.62 +block_copy_helper.70 +block_copy_helper.76 +block_copy_helper.91 +block_copy_helper.96 +block_copy_helper.107 +block_copy_helper.115 +block_copy_helper.118 +block_copy_helper.121 +block_copy_helper.124 +block_copy_helper.129 +block_copy_helper.135 +block_copy_helper.141 +block_copy_helper.144 +block_copy_helper.150 +block_copy_helper.159 +_TPA__TFFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_U_FT_T_.75 +_TWTurGSax_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWTurGVs15EmptyCollectionx_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGVs15EmptyCollectionx_s14CollectionTypes11SubSequencePs12SequenceType_ +_TWTurGVs15ContiguousArrayx_s12SequenceTypes9GeneratorPs13GeneratorType_ +_TWTurGVs10ArraySlicex_s12SequenceTypes9GeneratorPs13GeneratorType_ +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes11SubSequencePs9Indexable_ +_TWTu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypes11SubSequencePs12SequenceType_ +_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWTurGVs12_SliceBufferx_s14CollectionTypes9GeneratorPs13GeneratorType_ +_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs9Indexable_ +_TWTurGVs22_ContiguousArrayBufferx_s14CollectionTypes11SubSequencePs12SequenceType_ +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_6insertfwx7ElementT_ +_TWturGSax_s14CollectionTypes9Generator +_TTWVSC20NSJSONWritingOptionss14SetAlgebraType10FoundationFS0_8containsfwx7ElementSb +globalinit_33_A5066DE13777C552986D7397F9E123E1_token5 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_token6 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_token7 +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_token8 +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_token9 +globalinit_33_6BBD8F7A3C4520592F2A3564F6D31C9E_token10 +globalinit_33_DC679E1127B8EE4445673262459DB836_token11 +globalinit_33_DC679E1127B8EE4445673262459DB836_token12 +globalinit_33_5BB93A66CA3F8035AFDFA4141CC75A3F_token13 +block_descriptor +metadata +block_descriptor.3 +_TMLGCs23_ContiguousArrayStorageSS_ +L_selector_data(defaultCenter) +L_selector(defaultCenter) +L_selector_data(removeObserver:) +L_selector(removeObserver:) +_TMLGVs10DictionarySSPs9AnyObject__ +_TMLPs9AnyObject_ +_PROTOCOL__TtPs9AnyObject_ +l_OBJC_LABEL_PROTOCOL_$__TtPs9AnyObject_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs9AnyObject_ +L_selector_data(allocWithZone:) +L_selector(allocWithZone:) +L_selector_data(init) +L_selector(init) +L_selector_data(timeIntervalSince1970) +L_selector(timeIntervalSince1970) +metadata.5 +block_descriptor.8 +metadata.10 +block_descriptor.13 +_TZvC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E13enabledLevelsGVs3SetOS_8LogLevel_ +_TMLP_ +_TZvC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E7loggersGSaPS_7Logging__ +metadata.15 +_TMLGCs23_ContiguousArrayStorageTSSSS__ +_TMLTSSSS_ +_TMLGCs29_NativeDictionaryStorageOwnerSSSS_ +metadata.17 +block_descriptor.21 +metadata.23 +block_descriptor.26 +metadata.28 +metadata.31 +block_descriptor.35 +metadata.37 +block_descriptor.40 +block_descriptor.43 +metadata.45 +block_descriptor.48 +metadata.50 +metadata.52 +block_descriptor.56 +metadata.58 +metadata.60 +block_descriptor.64 +metadata.66 +metadata.68 +block_descriptor.72 +L_selector_data(UUIDString) +L_selector(UUIDString) +metadata.74 +block_descriptor.78 +metadata.80 +metadata.83 +metadata.86 +_TMLGCs23_ContiguousArrayStorageTSSPs9AnyObject___ +_TMLTSSPs9AnyObject__ +_TMLGCs29_NativeDictionaryStorageOwnerSSPs9AnyObject__ +metadata.89 +block_descriptor.93 +_TWVVSC20NSJSONWritingOptions +_TMnVSC20NSJSONWritingOptions +_TMVSC20NSJSONWritingOptions +_TWPVSC20NSJSONWritingOptionss23ArrayLiteralConvertible10Foundation +_TWPVSC20NSJSONWritingOptionss9Equatable10Foundation +_TWPC8Mixpanel16MixpanelInstanceS_13FlushDelegateS_ +_TWPVSC20NSJSONWritingOptionss14SetAlgebraType10Foundation +_TWPVSC20NSJSONWritingOptionss16RawRepresentable10Foundation +_TWPVSC20NSJSONWritingOptionss13OptionSetType10Foundation +L_selector_data(applicationDidBecomeActive:) +L_selector_data(applicationWillResignActive:) +L_selector_data(applicationDidEnterBackground:) +L_selector_data(applicationWillEnterForeground:) +L_selector_data(applicationWillTerminate:) +L_selector_data(appLinksNotificationRaised:) +L_selector_data(setCurrentRadio) +_METACLASS_DATA__TtC8Mixpanel16MixpanelInstance +_INSTANCE_METHODS__TtC8Mixpanel16MixpanelInstance +_IVARS__TtC8Mixpanel16MixpanelInstance +_DATA__TtC8Mixpanel16MixpanelInstance +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849614setupListenersfT_T_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849626applicationDidBecomeActivefCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849627applicationWillResignActivefCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849629applicationDidEnterBackgroundfCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849630applicationWillEnterForegroundfCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849624applicationWillTerminatefCSo14NSNotificationT_ +_TWoFC8Mixpanel16MixpanelInstanceP33_0CB45E1C8B4A4433813A64026418849626appLinksNotificationRaisedfCSo14NSNotificationT_ +_TMfC8Mixpanel16MixpanelInstance +_swift_FORCE_LOAD_$_swiftUIKit_$_Mixpanel +_swift_FORCE_LOAD_$_swiftCoreImage_$_Mixpanel +_swift_FORCE_LOAD_$_swiftDarwin_$_Mixpanel +_swift_FORCE_LOAD_$_swiftCoreGraphics_$_Mixpanel +_swift_FORCE_LOAD_$_swiftDispatch_$_Mixpanel +_swift_FORCE_LOAD_$_swiftObjectiveC_$_Mixpanel +_swift_FORCE_LOAD_$_swiftFoundation_$_Mixpanel +l_protocol_conformances +got._TMps23ArrayLiteralConvertible +got._TMps9Equatable +got._TMp8Mixpanel13FlushDelegate +got._TMps28CustomDebugStringConvertible +got._TMps14SetAlgebraType +got._TMps16RawRepresentable +got._TMps13OptionSetType +field_type_vector_MixpanelInstance +_TMLGSqP8Mixpanel16MixpanelDelegate__ +_TMLP8Mixpanel16MixpanelDelegate_ +_TMLGSQC8Mixpanel6People_ +_TMLGSaGVs10DictionarySSPs9AnyObject___ +_TMLGSQPSo17OS_dispatch_queue__ +_TMLPSo17OS_dispatch_queue_ +_PROTOCOL_OS_dispatch_queue +l_OBJC_LABEL_PROTOCOL_$_OS_dispatch_queue +l_OBJC_PROTOCOL_REFERENCE_$_OS_dispatch_queue +field_type_vector_NSJSONWritingOptions +L_selector_data(currentRadioAccessTechnology) +L_selector(currentRadioAccessTechnology) +metadata.95 +block_descriptor.98 +L_selector_data(substringFromIndex:) +L_selector(substringFromIndex:) +L_selector_data(objectForKey:) +L_selector(objectForKey:) +_PROTOCOL__TtPs17_NSStringCoreType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs17_NSStringCoreType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs17_NSStringCoreType_ +L_selector_data(standardUserDefaults) +L_selector(standardUserDefaults) +L_selector_data(boolForKey:) +L_selector(boolForKey:) +metadata.100 +block_descriptor.103 +metadata.105 +block_descriptor.109 +L_selector(setCurrentRadio) +L_selector_data(addObserver:selector:name:object:) +L_selector(addObserver:selector:name:object:) +L_selector(applicationWillTerminate:) +L_selector(applicationWillResignActive:) +L_selector(applicationDidBecomeActive:) +L_selector(applicationDidEnterBackground:) +L_selector(applicationWillEnterForeground:) +L_selector(appLinksNotificationRaised:) +metadata.111 +L_selector_data(setBool:forKey:) +L_selector(setBool:forKey:) +L_selector_data(synchronize) +L_selector(synchronize) +L_selector_data(userInfo) +L_selector(userInfo) +_TMLCSo8NSObject +metadata.113 +block_descriptor.117 +block_descriptor.120 +block_descriptor.123 +L_selector_data(sharedApplication) +L_selector(sharedApplication) +L_selector_data(endBackgroundTask:) +L_selector(endBackgroundTask:) +L_selector_data(setNetworkActivityIndicatorVisible:) +L_selector(setNetworkActivityIndicatorVisible:) +block_descriptor.126 +L_selector_data(beginBackgroundTaskWithExpirationHandler:) +L_selector(beginBackgroundTaskWithExpirationHandler:) +metadata.128 +block_descriptor.131 +metadata.133 +block_descriptor.137 +metadata.139 +block_descriptor.143 +block_descriptor.146 +metadata.148 +block_descriptor.152 +_TMLGCs23_ContiguousArrayStorageVSC20NSJSONWritingOptions_ +_TMLGCs22_NativeSetStorageOwnerO8Mixpanel8LogLevel_ +_TMLGCs21_NativeSetStorageImplO8Mixpanel8LogLevel_ +L_selector_data(count) +L_selector(count) +L_selector_data(countByEnumeratingWithState:objects:count:) +L_selector(countByEnumeratingWithState:objects:count:) +L_selector_data(currentDevice) +L_selector(currentDevice) +L_selector_data(identifierForVendor) +L_selector(identifierForVendor) +_TMLGCs23_ContiguousArrayStorageP__ +_TMLMO8Mixpanel13PropertyError +metadata.154 +metadata.156 +metadata.158 +block_descriptor.161 +_TMLGCs28_NativeDictionaryStorageImplSSSS_ +L_selector_data(member:) +L_selector(member:) +_PROTOCOL_OS_dispatch_object +l_OBJC_LABEL_PROTOCOL_$_OS_dispatch_object +l_OBJC_PROTOCOL_REFERENCE_$_OS_dispatch_object +_PROTOCOL_NSObject +l_OBJC_LABEL_PROTOCOL_$_NSObject +l_OBJC_PROTOCOL_REFERENCE_$_NSObject +_PROTOCOL_PROTOCOLS_OS_dispatch_queue +_PROTOCOL__TtPs14_NSCopyingType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs14_NSCopyingType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs14_NSCopyingType_ +_PROTOCOL__TtPs22_NSFastEnumerationType_ +l_OBJC_LABEL_PROTOCOL_$__TtPs22_NSFastEnumerationType_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs22_NSFastEnumerationType_ +L_selector_data(length) +L_selector_data(characterAtIndex:) +_PROTOCOL_PROTOCOLS__TtPs17_NSStringCoreType_ +_PROTOCOL_INSTANCE_METHODS__TtPs17_NSStringCoreType_ +_PROTOCOL_METHOD_TYPES__TtPs17_NSStringCoreType_ +_PROTOCOL_PROTOCOLS_OS_dispatch_object +L_selector_data(isEqual:) +L_selector_data(hash) +L_selector_data(superclass) +L_selector_data(class) +L_selector_data(self) +L_selector_data(performSelector:) +L_selector_data(performSelector:withObject:) +L_selector_data(performSelector:withObject:withObject:) +L_selector_data(isProxy) +L_selector_data(isKindOfClass:) +L_selector_data(isMemberOfClass:) +L_selector_data(conformsToProtocol:) +L_selector_data(respondsToSelector:) +L_selector_data(retain) +L_selector_data(release) +L_selector_data(autorelease) +L_selector_data(retainCount) +L_selector_data(zone) +L_selector_data(description) +L_selector_data(debugDescription) +_PROTOCOL_INSTANCE_METHODS_NSObject +_PROTOCOL_INSTANCE_METHODS_OPT_NSObject +_PROTOCOL_PROPERTIES_NSObject +_PROTOCOL_METHOD_TYPES_NSObject +_PROTOCOL__TtPs15_ShadowProtocol_ +l_OBJC_LABEL_PROTOCOL_$__TtPs15_ShadowProtocol_ +l_OBJC_PROTOCOL_REFERENCE_$__TtPs15_ShadowProtocol_ +L_selector_data(copyWithZone:) +_PROTOCOL_PROTOCOLS__TtPs14_NSCopyingType_ +_PROTOCOL_INSTANCE_METHODS__TtPs14_NSCopyingType_ +_PROTOCOL_METHOD_TYPES__TtPs14_NSCopyingType_ +_PROTOCOL_PROTOCOLS__TtPs22_NSFastEnumerationType_ +_PROTOCOL_INSTANCE_METHODS__TtPs22_NSFastEnumerationType_ +_PROTOCOL_METHOD_TYPES__TtPs22_NSFastEnumerationType_ +objc_classes +switch.table.165 +switch.table.166 +Apple LLVM version 7.3.0 (clang-703.0.31) +-emit-bc /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift /Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift -target armv7-apple-ios8.0 -enable-objc-interop -sdk /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk -I /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos -F /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos -g -import-underlying-module -module-cache-path /Users/yardeneitan/Library/Developer/Xcode/DerivedData/ModuleCache -serialize-debugging-options -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/swift-overrides.hmap -Xcc -iquote -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-generated-files.hmap -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-own-target-headers.hmap -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-all-non-framework-target-headers.hmap -Xcc -ivfsoverlay -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/all-product-headers.yaml -Xcc -iquote -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Mixpanel-project-headers.hmap -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Products/Release-iphoneos/include -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/armv7 -Xcc -I/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources -Xcc -ivfsoverlay -Xcc /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/unextended-module-overlay.yaml -Xcc -working-directory/Users/yardeneitan/Development/mixpanel-swift -emit-module-doc-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.swiftdoc -O -module-name Mixpanel -emit-module-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.swiftmodule -emit-objc-header-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel-Swift.h -serialize-diagnostics-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/MixpanelInstance.dia -emit-dependencies-path /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/MixpanelInstance.d -num-threads 8 -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/MixpanelInstance.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Constants.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Flush.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Persistence.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/PrintLogging.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Network.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/FileLogging.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/People.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Track.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/JSONHandler.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/AutomaticProperties.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Logger.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Error.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/FlushRequest.bc -o /Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/Objects-normal/armv7/Mixpanel.bc -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift +dispatch_get_main_queue +/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/usr/include/dispatch/queue.h +/Users/yardeneitan/Development/mixpanel-swift + +Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +_TMaTSuSuSuSuSu_ +MixpanelInstance.swift +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel +_TMaGSpSu_ +_TMaGVs33AutoreleasingUnsafeMutablePointerGSqPs9AnyObject___ +_TTSg5Vs18_StringBufferIVars_Vs6UInt16___TFVs11_HeapBufferg6_valueGSpx_ +_TTSf4s_n_n___TFVs13_StringBuffer4growfTGVs5RangeGSPVs7RawByte__12newUsedCountSi_Sb +_TFVs13_StringBufferg8capacitySi +_TFFVs11_StringCoreg11cocoaBufferGSqPs9AnyObject__U_FPS0__PS0__ +_TFVs11_StringCore12_copyInPlacefT7newSizeSi11newCapacitySi15minElementWidthSi_T_ +_TFFVs11_StringCore20representableAsASCIIFT_SbU_FVs6UInt16Sb +_TTSf1cl57_TTRXFo_dVs6UInt16_dSbzoPs9ErrorType__XFo_iS__dSbzoPS0___XFo_dVs6UInt16_dSbzoPs9ErrorType___n___TTSg5GSRVs6UInt16_GSRS__s12SequenceTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_S__GVs5SliceGSRS______TFEsPs12SequenceType8containsfzFzWx9Generator7Element_SbSb +_TFVs11_StringCore14_claimCapacityfTSi15minElementWidthSi_TSiVs14COpaquePointer_ +_TTSf4gs_n___TFVs11_StringCore6appendfS_T_ +_TTSg5SS___TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5SS___TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSf4n_d___TFScCfVs6UInt32Sc +_TTSg5VVSS17UnicodeScalarView17_ScratchGeneratorS0_s13GeneratorTypes___TFVs5UTF166decodeuRxs13GeneratorTypewx7ElementzVs6UInt16rfRxOs21UnicodeDecodingResult +_TTSf4g_d___TZFVVSS13CharacterView5Index38_measureExtendedGraphemeClusterForwardfVVSS17UnicodeScalarView5IndexSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa9removeAllfT12keepCapacitySb_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp10initializefxT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5GSaGVs10DictionarySSPs9AnyObject___GSaGS_SSPS0____s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_SSPS0______TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag8endIndexSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa6appendfxT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag9subscriptFSix +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3SetCfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevel___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ +_TTSg5O8Mixpanel8LogLevel___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ +_TTSg5P8Mixpanel7Logging____TFSaCfT_GSax_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5SS_SS___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TFZFCs28_NativeDictionaryStorageImpl6createFSiGS_xq__U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_SS___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSSS_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSSS____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSSS____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSSS____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSSS____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSSS____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSSS__GSaTSSSS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSSS____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSSS____TFSag8endIndexSi +_TTSg5TSSSS____TFSag10startIndexSi +_TTSg5TSSSS____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSSS____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSSS____TFVs12_ArrayBufferg5countSi +_TTSg5TSSSS____TFSa9_getCountfT_Si +_TTSg5TSSSS____TFSag5countSi +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5TSSSS____TFSag9subscriptFSix +_TTSg5GSaTSSSS__GSaTSSSS__s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSSS__GS3_TSSSS__s9IndexablesGS3_TSSSS__s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSSS___GS6_GS3_TSSSS___s13GeneratorTypes_TSSSS__SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSSS___TSSSS__TSSSS____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5TSSSS____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSSS____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTRXFo_iT__iT__XFo__dT__ +flushPeopleQueue +requestNotAllowed +flushEventsQueue +flushQueue +_TFFC8Mixpanel16MixpanelInstance4timeFT5eventSS_T_U_FT_T_ +clearTimedEvents +clearSuperProperties +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg5countSi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage9removeAllfT12keepCapacitySb_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary9removeAllfT12keepCapacitySb_T_ +archiveProperties +registerSuperProperties +_TFFC8Mixpanel16MixpanelInstance23registerSuperPropertiesFGVs10DictionarySSPs9AnyObject__T_U_FT_T_ +registerSuperPropertiesOnce +unregisterSuperProperty +_TTSg5P____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_P____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_P____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5P____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSg5MO8Mixpanel13PropertyError___TFSSCurfT10reflectingx_SS +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffers5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TZFsoi2eeFTSSSS_Sb +unarchivePeople +_TTSg5GVs10DictionarySSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +unarchive +unarchiveEvents +_TTSg5Vs5UInt8___TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +init +_TMaCSo8UIDevice +_TMaPMP_ +_TMaGSqPMP__ +_TZFsoi2neFTGSqPMP__GSqPMP___Sb +_TTSg5Vs5UInt8___TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSaCfT_GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT_GS_xq__ +defaultDistinctId +_TTSg5Vs5UInt8___TFSa9_getCountfT_Si +_TTSg5Vs5UInt8___TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5Vs5UInt8___TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TFFC8Mixpanel16MixpanelInstanceW14loggingEnabledSbu0_KT_P_ +_TTSg5O8Mixpanel8LogLevel___TFSp4movefT_x +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5_prevfSiSi +_TTSg5O8Mixpanel8LogLevel___TTRGrXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TFZFCs21_NativeSetStorageImpl6createFSiGS_x_U_FGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8_S1_ +_TTSg5Vs29_HashedContainerStorageHeader_Vs5UInt8___TFZFCs13ManagedBuffer6createFTSi12initialValueFGCs18ManagedProtoBufferxq__x_GS_xq__U_FTPs9AnyObject_FPS1__Si_Q_ +_TTSg5O8Mixpanel8LogLevel___TZFCs21_NativeSetStorageImpl14bytesForBitMapfSiSi +_TTSg5O8Mixpanel8LogLevel___TZFCs21_NativeSetStorageImpl12bytesForKeysfSiSi +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage20isUniquelyReferencedfT_Sb +__swift_memmove_array32_4 +__swift_memcpy_array32_4 +__swift_copy_outline_pointer +_TwalVSC28_SwiftNSFastEnumerationState +_TwTkVSC28_SwiftNSFastEnumerationState +__swift_memcpy32_4 +_TwCpVSC28_SwiftNSFastEnumerationState +_TwdeVSC28_SwiftNSFastEnumerationState +_TwprVSC28_SwiftNSFastEnumerationState +_TwCPVSC28_SwiftNSFastEnumerationState +_TwXXVSC28_SwiftNSFastEnumerationState +_TMaGSqPs9AnyObject__ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorageg11_bucketMaskSi +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg5_keysGSpx_ +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorageCfT8capacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwnercfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFCs22_NativeSetStorageOwnerCfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevel___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5_nextfSiSi +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs15_NativeSetIndexCfT13nativeStorageGVs17_NativeSetStoragex_6offsetSi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage12unsafeAddNewfT3keyx_T_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage18isInitializedEntryfSiSb +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorageCfT15minimumCapacitySi_GS_x_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage6setKeyfTx2atSi_T_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage5keyAtfSix +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImpls6_countSi +_TTSg5O8Mixpanel8LogLevel___TFSp10initializefxT_ +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg21_maxLoadFactorInverseSd +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg6_countSi +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5O8Mixpanel8LogLevel___TFCs21_NativeSetStorageImplg9_capacitySi +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs17_NativeSetStorage7_bucketfxSi +_TFFC8Mixpanel16MixpanelInstanceW14loggingEnabledSbu_KT_P_ +_TTSg5CSo8NSObject___TFs25_isClassOrObjCExistentialurFMxSb +_TTSg5CSo8NSObject___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ +_TTSg5CSo8NSObject___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ +_TFFC8Mixpanel16MixpanelInstance21trackPushNotificationFTGVs10DictionaryCSo8NSObjectPs9AnyObject__5eventSS_T_u_KT_P_ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5CSo8NSObject_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeCft12arrayLiteralGSawx7Element__x +== +flush +updateNetworkActivityIndicator +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_8containsfxSb +contains +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType5unionfxx +union +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType9intersectfxx +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_S__Su___TFEsPs13OptionSetType11exclusiveOrfxx +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6insertfwxS0_T_ +insert +remove +_TTSg5VSC20NSJSONWritingOptionsS_s13OptionSetType10Foundation_Su___TFesRxs13OptionSetTypexzwx7ElementrS_6removefwxS0_GSqwxS0__ +unionInPlace +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType8subtractfxx +subtract +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType10isSubsetOffxSb +isSubsetOf +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType14isDisjointWithfxSb +isDisjointWith +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType12isSupersetOffxSb +intersect +isSupersetOf +_TTWSus9EquatablesZFS_oi2eefTxx_Sb +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraTypeg7isEmptySb +_TTWSus21BitwiseOperationsTypesZFS_g8allZerosx +isEmpty.get +_TTWSus21BitwiseOperationsTypesZFS_oi1xfTxx_x +_TTWSus21BitwiseOperationsTypesZFS_oi1afTxx_x +intersectInPlace +exclusiveOrInPlace +exclusiveOr +_TTSg5VSC20NSJSONWritingOptionsS_s14SetAlgebraType10Foundation_S____TFEsPs14SetAlgebraType15subtractInPlacefxT_ +subtractInPlace +element +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5VSC20NSJSONWritingOptions___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5VSC20NSJSONWritingOptions___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5VSC20NSJSONWritingOptions___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaGCs23_ContiguousArrayStorageVSC20NSJSONWritingOptions_ +_TTSg5VSC20NSJSONWritingOptions___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5Vs10_ArrayBody_VSC20NSJSONWritingOptions___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +rawValue.get +applicationDidBecomeActive +applicationWillResignActive +applicationDidEnterBackground +_TMaCSo13UIApplication +applicationWillEnterForeground +applicationWillTerminate +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_SS___TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5SSSSs8Hashables_SS___TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_SS___TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_SS___TFVs10Dictionaryg9subscriptFxGSqq__ +appLinksNotificationRaised +setCurrentRadio +_TFFC8Mixpanel16MixpanelInstance16trackIntegrationFT_T_U_FT_T_ +_TMaCSo14NSUserDefaults +trackIntegration +setupListeners +_TTSg5Ps9AnyObject____TFSp10initializefxT_ +_TTSg5Ps9AnyObject____TFSp4movefT_x +_TTSg5SS___TFSp10initializefxT_ +_TTSg5SS___TFSp4movefT_x +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5Ps9AnyObject____TFSp7destroyfT_T_ +_TTSg5SS___TFSp7destroyfT_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage5_prevfSiSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TMaPs17_NSStringCoreType_ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTWSSs8HashablesFS_g9hashValueSi +_TTSf4s___TFSSg9hashValueSi +_TTSg5SS___TFs19_bridgeToObjectiveCurFxGSqPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary17removeValueForKeyfxGSqq__ +_TTSg5SS___TFs32_bridgeToObjectiveCUnconditionalurFxPs9AnyObject_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage17removeValueForKeyfxGSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionarys9subscriptFxGSqq__ +_TFC8Mixpanel19AutomaticPropertiesau10propertiesGVs10DictionarySSPs9AnyObject__ +_TFSS9hasPrefixfSSSb +_TTSg5SSSSs9Equatables___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TFC8Mixpanel19AutomaticPropertiesau13telephonyInfoCSo22CTTelephonyNetworkInfo +getCurrentRadio +_TMaPSo17OS_dispatch_queue_ +_TMaGSQPSo17OS_dispatch_queue__ +_TMaGSaGVs10DictionarySSPs9AnyObject___ +_TMaGSQC8Mixpanel6People_ +_TMaP8Mixpanel16MixpanelDelegate_ +_TMaGSqP8Mixpanel16MixpanelDelegate__ +_TMaC8Mixpanel16MixpanelInstance +_TWaVSC20NSJSONWritingOptionss13OptionSetType10Foundation +_TWaVSC20NSJSONWritingOptionss16RawRepresentable10Foundation +_TWaVSC20NSJSONWritingOptionss14SetAlgebraType10Foundation +_TWaC8Mixpanel16MixpanelInstances28CustomDebugStringConvertibleS_ +_TWaVSC20NSJSONWritingOptionss9Equatable10Foundation +_TWaVSC20NSJSONWritingOptionss23ArrayLiteralConvertible10Foundation +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5TSSPs9AnyObject_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSPs9AnyObject_____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSPs9AnyObject__ +_TMaGCs23_ContiguousArrayStorageTSSPs9AnyObject___ +_TTSg5TSSPs9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.87 +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +_TTSg5Vs10_ArrayBody_TSSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg9subscriptFxGSqq__ +_TTSg5CSo8NSObjectS_s8Hashable10ObjectiveC_Ps9AnyObject____TFVs10Dictionaryg9subscriptFxGSqq__ +trackPushNotification +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.84 +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage11updateValuefTx6forKeyx_GSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3Set6insertfxT_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage17removeValueForKeyfxGSqx_ +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3Set6removefxGSqx_ +disableLevel +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.81 +enableLevel +info +loggingEnabled.didset +_TIZFC8Mixpanel8Mixpanel10initializeFT5tokenSS13launchOptionsGSqGVs10DictionaryCSo8NSObjectPs9AnyObject___13flushIntervalSd12instanceNameSS_CS_16MixpanelInstanceA2_ +Mixpanel.swift +_TIZFC8Mixpanel8Mixpanel10initializeFT5tokenSS13launchOptionsGSqGVs10DictionaryCSo8NSObjectPs9AnyObject___13flushIntervalSd12instanceNameSS_CS_16MixpanelInstanceA1_ +_TIZFC8Mixpanel8Mixpanel10initializeFT5tokenSS13launchOptionsGSqGVs10DictionaryCSo8NSObjectPs9AnyObject___13flushIntervalSd12instanceNameSS_CS_16MixpanelInstanceA0_ +hashValue.get +_TTSg5O8Mixpanel9FlushTypeS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_code.get +_domain.get +_TTSg5O8Mixpanel8LogLevelS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_TIFC8Mixpanel6People11trackChargeFT6amountSd10propertiesGSqGVs10DictionarySSPs9AnyObject____T_A0_ +People.swift +_TTSg5O8Mixpanel6MethodS0_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_TFSig9hashValueSi +_TTWSSs9EquatablesZFS_oi2eefTxx_Sb +_TTSg5OC8Mixpanel11Persistence11ArchiveTypeS1_s16RawRepresentableS__SSSSs9Equatables___TZFsoi2eeuRxs16RawRepresentablewx8RawValues9EquatablerFTxx_Sb +_TIFC8Mixpanel16MixpanelInstance27registerSuperPropertiesOnceFTGVs10DictionarySSPs9AnyObject__12defaultValueGSqPS2____T_A0_ +dispatchAndTrack +currentSuperProperties +time +_TIFC8Mixpanel16MixpanelInstance21trackPushNotificationFTGVs10DictionaryCSo8NSObjectPs9AnyObject__5eventSS_T_A0_ +_TIFC8Mixpanel16MixpanelInstance5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject____T_A0_ +reset +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.32 +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.29 +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSSS____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSSS____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5TSSSS____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSSS____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSSS____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSSS____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSSS_ +_TTSg5Vs10_ArrayBody_TSSSS____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5TSSSS____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TFFC8Mixpanel16MixpanelInstance11createAliasFTSS10distinctIdSS_T_u0_KT_P_ +_TFFC8Mixpanel16MixpanelInstance11createAliasFTSS10distinctIdSS_T_u_KT_P_ +createAlias +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorageg6nativeGVs17_NativeSetStoragex_ +_TTWSis14_IncrementablesFS_17_successorInPlacefT_T_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TMaP8Mixpanel7Logging_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5P8Mixpanel7Logging____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5P8Mixpanel7Logging____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5P8Mixpanel7Logging____TFSag9subscriptFSix +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5P8Mixpanel7Logging____TFSag8endIndexSi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_ +_TFC8Mixpanel6LoggerauP33_6BBD8F7A3C4520592F2A3564F6D31C9E7loggersGSaPS_7Logging__ +forwardLogMessage +_TTSg5SS___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5SS___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5SS___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5SS___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5SS___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5SS___TFSag9subscriptFSix +_TTWSis22BidirectionalIndexTypesFS_11predecessorfT_x +_TTSg5GSaSS_GSaSS_s14CollectionTypes_GVs17IndexingGeneratorGSaSS__GS0_GSaSS__s13GeneratorTypes_SS_SiSis22BidirectionalIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceSS_GS5_SS_s9IndexablesGS5_SS_s12SequenceTypes_GS0_GS5_SS__GS0_GS5_SS__S1_s_SS_SiSis16ForwardIndexTypes_SiSiS3_s_SiSiS4_s_Si_GS5_SS__SS_SS___TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_g4lastGSqWx9Generator7Element__ +_TTWSis9EquatablesZFS_oi2eefTxx_Sb +_TTSg5P____TFSSCurfxSS +_TTSg5P____TFSSCurfT26stringInterpolationSegmentx_SS +_TTSg5C8Mixpanel16MixpanelInstance___TFSSCurfxSS +_TTSg5C8Mixpanel16MixpanelInstance___TFSSCurfT26stringInterpolationSegmentx_SS +_TTSg5O8Mixpanel8LogLevelS0_s9EquatableS____TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFOs18_VariantSetStorage8maybeGetfxGSqx_ +_TFC8Mixpanel6LoggerauP33_6BBD8F7A3C4520592F2A3564F6D31C9E13enabledLevelsGVs3SetOS_8LogLevel_ +_TFSSCfT26_builtinUTF16StringLiteralBp17numberOfCodeUnitsBw_SS +_TTWVSS13CharacterViews9IndexablesFS0_g8endIndexwx5Index +_TTWVSS13CharacterViews9IndexablesFS0_g10startIndexwx5Index +_TFSSg10charactersVSS13CharacterView +_TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_ +_TTSg5GSaP8Mixpanel7Logging__GSaPS0___s12SequenceTypes_GVs17IndexingGeneratorGSaPS0____GS2_GSaPS0____s13GeneratorTypes_PS0___GVs10ArraySlicePS0______TFEsPs12SequenceType7forEachfzFzWx9Generator7Element_T_T_ +_TTSg5GSaP8Mixpanel7Logging__GSaPS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_PS0_____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5GSaP8Mixpanel7Logging__GSaPS0___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_PS0_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5SS___TFSag8endIndexSi +_TFFC8Mixpanel16MixpanelInstance8identifyFT10distinctIdSS_T_u_KT_P_ +error +_TTSg5O8Mixpanel8LogLevelS0_s9EquatableS____TZFsoi2neuRxs9EquatablerFTGSqx_GSqx__Sb +_TTSg5O8Mixpanel8LogLevelS0_s8HashableS____TFVs3Set8containsfxSb +_TTWVVSS13CharacterView5Indexs16ForwardIndexTypesFS1_10distanceTofxwx8Distance +_TTSg5VVSS13CharacterView5IndexS0_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFEsPs16ForwardIndexType10distanceTofxwx8Distance +identify +debugDescription.get +showNetworkActivityIndicator.materialize +showNetworkActivityIndicator.set +showNetworkActivityIndicator.get +people.materialize +people.set +distinctId.materialize +distinctId.set +delegate.materialize +delegate.set +delegate.get +track +archivePeople +archiveEvents +archive +_TIFC8Mixpanel16MixpanelInstance5flushFT10completionGSqFT_T___T_A_ +_TMaCSo20NSNotificationCenter +deinit +_TFSSCft19stringInterpolationGSaSS__SS +_TFSSCfT26stringInterpolationSegmentSi_SS +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag5countSi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5SS___TFSa9_getCountfT_Si +_TFSSCfT26stringInterpolationSegmentSS_SS +_TTSg5SS___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5SS___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +__swift_memmove_array12_4 +__swift_memcpy_array12_4 +__swift_memcpy12_4 +distinctId.get +people.get +_TTSg5SS___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5SS___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_SS___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TZFsoi1pFTSSSS_SS +_TTSg5SS___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSf4g_d___TFSSCft19stringInterpolationGSaSS__SS +_TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS +_TTSf4n_n_n_d___TFSSCfT21_builtinStringLiteralBp8byteSizeBw7isASCIIBi1__SS +_TTSg5Vs10_ArrayBody_SS___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +loggingEnabled.materialize +loggingEnabled.set +loggingEnabled.get +serverURL.materialize +serverURL.get +serverURL.set +_TFV8Mixpanel8BasePathau11MixpanelAPISS +useIPAddressForGeoLocation.materialize +useIPAddressForGeoLocation.get +useIPAddressForGeoLocation.set +flushOnBackground.materialize +flushOnBackground.get +flushOnBackground.set +flushInterval.materialize +flushInterval.get +$defer +startFlushTimer +stopFlushTimer +flushInterval.set +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/MixpanelInstance.swift +__swift_memcpy0_1 +__swift_memcpy_array0_1 +__swift_memmove_array0_1 +get_field_types_QueueConstants +get_field_types_APIConstants +_TMfV8Mixpanel14QueueConstants +_TMfV8Mixpanel12APIConstants +field_type_vector_APIConstants +field_type_vector_QueueConstants +_TMaV8Mixpanel12APIConstants +Constants.swift +_TMaV8Mixpanel14QueueConstants +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Constants.swift +_TWaC8Mixpanel5FlushS_12AppLifecycleS_ +_TToFC8Mixpanel5Flush13flushSelectorfT_T_ +_TFFC8Mixpanel5Flush19flushQueueInBatchesFTRGSaGVs10DictionarySSPs9AnyObject___4typeOS_9FlushType_T_U_FSbT_ +_TFC8Mixpanel5FlushD +get_field_types_Flush +_TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx8newCountSi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs12_SliceBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s9IndexablesGS_GS0_SSPS1____s12SequenceTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1______TFs34_copyCollectionToNativeArrayBufferuRxs14CollectionTyperFxGVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTSf4s_n_n___TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSf4g_n___TZFC8Mixpanel11JSONHandler13encodeAPIDatafPs9AnyObject_GSqSS_ +objectdestroy.1 +objectdestroy.3 +_TPA__TFFC8Mixpanel5Flush19flushQueueInBatchesFTRGSaGVs10DictionarySSPs9AnyObject___4typeOS_9FlushType_T_U_FSbT_ +_TTSf4gs_n_n_g_n___TFC8Mixpanel12FlushRequest11sendRequestfTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_ +_TTSf4s_n_d_n___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1____GVs15EmptyCollectionGS0_SSPS1____GS12_GS0_SSPS1____S9_s_GVs14EmptyGeneratorGS0_SSPS1____GS13_GS0_SSPS1____S4_s_SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GVs5SliceGS12_GS0_SSPS1_____GS14_GS12_GS0_SSPS1_____S10_sGS14_GS12_GS0_SSPS1_____S11_s_GS3_GS14_GS12_GS0_SSPS1______GS3_GS14_GS12_GS0_SSPS1______S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS14_GS12_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TFEsPs16_ArrayBufferType7replaceuRd__s14CollectionTypewx7ElementzWd__9Generator7Element_rfT8subRangeGVs5RangeSi_4withSi10elementsOfqd___T_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GVs31_InitializeMemoryFromCollectionGVs15EmptyCollectionGS0_SSPS1_____GS3_GS4_GS0_SSPS1_____s20_PointerFunctionTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS6_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS6_GS8_GS0_SSPS1_____GS6_GS8_GS0_SSPS1_____S7_s_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS6_GS8_GS0_SSPS1_____GS6_GS8_GS0_SSPS1_____S7_s_GS0_SSPS1____SiSiS10_s_SiSiS11_s_SiSiS12_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4n_s_d_n___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GVs15EmptyCollectionGS0_SSPS1____GS3_GS0_SSPS1____s14CollectionTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS5_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____GVs12_SliceBufferGS0_SSPS1____GS7_GS0_SSPS1____S4_s_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_GS0_SSPS1____GS7_GS0_SSPS1____s9IndexablesGS7_GS0_SSPS1____s12SequenceTypes_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS7_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1____GVs14EmptyGeneratorGS0_SSPS1____GS13_GS0_SSPS1____S6_s_SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GVs5SliceGS3_GS0_SSPS1_____GS14_GS3_GS0_SSPS1_____S11_sGS14_GS3_GS0_SSPS1_____S12_s_GS5_GS14_GS3_GS0_SSPS1______GS5_GS14_GS3_GS0_SSPS1______S6_s_GS0_SSPS1____SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS14_GS3_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TFs23_arrayOutOfPlaceReplaceu0_Rxs16_ArrayBufferType_s14CollectionTypewx5IndexzSiwx7ElementzW_9Generator7Element_WxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S5_18IntegerLiteralType_zSirFTRxGVs5RangeSi_q_Si_T_ +_TMaGCs23_ContiguousArrayStorageGVs10DictionarySSPs9AnyObject___ +_TWPC8Mixpanel5FlushS_12AppLifecycleS_ +L_selector_data(flushSelector) +_METACLASS_DATA__TtC8Mixpanel5Flush +_INSTANCE_METHODS__TtC8Mixpanel5Flush +_IVARS__TtC8Mixpanel5Flush +_DATA__TtC8Mixpanel5Flush +_TMfC8Mixpanel5Flush +got._TMp8Mixpanel12AppLifecycle +field_type_vector_Flush +_TMLGSqCSo7NSTimer_ +_TMLCSo7NSTimer +_TMLGSqP8Mixpanel13FlushDelegate__ +_TMLP8Mixpanel13FlushDelegate_ +metadata.2 +metadata.4 +_TMLGCs23_ContiguousArrayStorageGVs10DictionarySSPs9AnyObject___ +L_selector_data(invalidate) +L_selector(invalidate) +L_selector(flushSelector) +L_selector_data(scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:) +L_selector(scheduledTimerWithTimeInterval:target:selector:userInfo:repeats:) +Flush.swift +flushSelector +_TTSg5GVs12_SliceBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s9IndexablesGS_GS0_SSPS1____s12SequenceTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1______TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp9successorfT_GSpx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBuffer10getElementfSix +_TTWSis18_SignedIntegerTypesFS_8toIntMaxfT_Vs5Int64 +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index +_TTSg5GVs15EmptyCollectionGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs14EmptyGeneratorGS0_SSPS1____GS3_GS0_SSPS1____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS_GS0_SSPS1_____GS8_GS_GS0_SSPS1_____s9IndexablesGS8_GS_GS0_SSPS1_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS_GS0_SSPS1______GS11_GS8_GS_GS0_SSPS1______S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TTWuRxs14CollectionTyperGVs31_InitializeMemoryFromCollectionx_s20_PointerFunctionTypesFS1_4callfTGSpwx7Element_5countSi_T_ +_TTSg5GVs15EmptyCollectionGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s14CollectionTypes_GVs14EmptyGeneratorGS0_SSPS1____GS3_GS0_SSPS1____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS_GS0_SSPS1_____GS8_GS_GS0_SSPS1_____s9IndexablesGS8_GS_GS0_SSPS1_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS_GS0_SSPS1______GS11_GS8_GS_GS0_SSPS1______S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS_GS0_SSPS1______GS0_SSPS1____GS0_SSPS1______TFVs31_InitializeMemoryFromCollection4callfTGSpWx9Generator7Element__5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerlu5valuex +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp7destroyfSiT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_s5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp14moveAssignFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSp26moveInitializeBackwardFromfTGSpx_5countSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ +_TTWSis18_SignedIntegerTypesFS_CfVs5Int64x +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg10startIndexSi +_TTSg5GVs10DictionarySSPs9AnyObject___GVs15EmptyCollectionGS_SSPS0____GS1_GS_SSPS0____s14CollectionTypes_GVs14EmptyGeneratorGS_SSPS0____GS3_GS_SSPS0____s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS1_GS_SSPS0_____GS8_GS1_GS_SSPS0_____s9IndexablesGS8_GS1_GS_SSPS0_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS1_GS_SSPS0______GS11_GS8_GS1_GS_SSPS0______S4_s_GS_SSPS0____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS1_GS_SSPS0______GS_SSPS0____GS_SSPS0______TTWurGSax_s30RangeReplaceableCollectionTypesFS_12replaceRangeuRd__s14CollectionTypeWx9Generator7Element_zWd__S1_S2__rfTGVs5Rangewx5Index_4withqd___T_ +_TTSg5GVs10DictionarySSPs9AnyObject___GVs15EmptyCollectionGS_SSPS0____GS1_GS_SSPS0____s14CollectionTypes_GVs14EmptyGeneratorGS_SSPS0____GS3_GS_SSPS0____s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGS1_GS_SSPS0_____GS8_GS1_GS_SSPS0_____s9IndexablesGS8_GS1_GS_SSPS0_____s12SequenceTypes_GVs17IndexingGeneratorGS8_GS1_GS_SSPS0______GS11_GS8_GS1_GS_SSPS0______S4_s_GS_SSPS0____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS1_GS_SSPS0______GS_SSPS0____GS_SSPS0______TFSa12replaceRangeuRd__s14CollectionTypexzWd__9Generator7Element_rfTGVs5RangeSi_4withqd___T_ +_TTSg5GSaGVs10DictionarySSPs9AnyObject___GSaGS_SSPS0____s30RangeReplaceableCollectionTypes_GVs17IndexingGeneratorGSaGS_SSPS0_____GS2_GSaGS_SSPS0_____s13GeneratorTypes_GS_SSPS0____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceGS_SSPS0____GS7_GS_SSPS0____s9IndexablesGS7_GS_SSPS0____s12SequenceTypes_GS2_GS7_GS_SSPS0_____GS2_GS7_GS_SSPS0_____S3_s_GS_SSPS0____SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_GS_SSPS0_____GS_SSPS0____GS_SSPS0______TFEsPs30RangeReplaceableCollectionType11removeRangefGVs5Rangewx5Index_T_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg8endIndexSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject___GVs10ArraySliceGS_SSPS0____GS1_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS1_GS_SSPS0_____GS3_GS1_GS_SSPS0_____s13GeneratorTypes_GS1_GS_SSPS0_______TFSaCuRd__s12SequenceTypexzWd__9Generator7Element_rfqd__GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_GVs10DictionarySSPs9AnyObject_____TFVs20ManagedBufferPointerg6bufferPs9AnyObject_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs10ArraySlicex_s12SequenceTypesFS0_24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferWx9Generator7Element__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBuffer19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferx__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs10ArraySliceCfGVs12_SliceBufferx_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg16_hasNativeBufferSb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBuffer15_invariantCheckfT_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferCfT5ownerPs9AnyObject_20subscriptBaseAddressGSpx_7indicesGVs5RangeSi_15hasNativeBufferSb_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg9subscriptFGVs5RangeSi_GVs12_SliceBufferx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg9subscriptFGVs5RangeSi_GVs12_SliceBufferx_ +_TTWSis10ComparablesZFS_oi1lfTxx_Sb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa11_checkIndexfSiT_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSag9subscriptFGVs5RangeSi_GVs10ArraySlicex_ +FV8Mixpanel12APIConstantsG9batchSizeSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBufferg5countSi +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa9_getCountfT_Si +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs10ArraySlice24_copyToNativeArrayBufferfT_GVs22_ContiguousArrayBufferx_ +_TTSg5GVs12_SliceBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s14CollectionTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1____GS_GS0_SSPS1____s9IndexablesGS_GS0_SSPS1____s12SequenceTypes_GS3_GS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs33_extractOrCopyToNativeArrayBufferuRxs16_ArrayBufferTypewx7ElementzWx9Generator7Element_rFxGVs22_ContiguousArrayBufferWxS1_S2___ +_TTSg5GVs10DictionarySSPs9AnyObject_____TTWurGVs12_SliceBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_SliceBufferg12nativeBufferGVs22_ContiguousArrayBufferx_ +_TTSg5SiSis10Comparables___TFs3minuRxs10ComparablerFTxx_x +flushQueueInBatches +_TMaP8Mixpanel13FlushDelegate_ +_TMaGSqP8Mixpanel13FlushDelegate__ +_TMaCSo7NSTimer +_TMaGSqCSo7NSTimer_ +_TMaC8Mixpanel5Flush +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Flush.swift +_TwXXV8Mixpanel18ArchivedProperties +_TwCPV8Mixpanel18ArchivedProperties +_TwprV8Mixpanel18ArchivedProperties +_TwdeV8Mixpanel18ArchivedProperties +_TwxxV8Mixpanel18ArchivedProperties +_TwCpV8Mixpanel18ArchivedProperties +_TwcpV8Mixpanel18ArchivedProperties +_TwcaV8Mixpanel18ArchivedProperties +_TwTkV8Mixpanel18ArchivedProperties +__swift_memcpy40_4 +_TwtaV8Mixpanel18ArchivedProperties +_TwalV8Mixpanel18ArchivedProperties +_TwXxV8Mixpanel18ArchivedProperties +_TwCcV8Mixpanel18ArchivedProperties +__swift_memmove_array40_4 +get_field_types_ArchivedProperties +_TFC8Mixpanel11PersistenceD +get_field_types_Persistence +__swift_memcpy1_1 +__swift_memcpy_array1_1 +__swift_memmove_array1_1 +_TwxsOC8Mixpanel11Persistence11ArchiveType +_TwxgOC8Mixpanel11Persistence11ArchiveType +_TwugOC8Mixpanel11Persistence11ArchiveType +_TwupOC8Mixpanel11Persistence11ArchiveType +_TwuiOC8Mixpanel11Persistence11ArchiveType +get_field_types_ArchiveType +_TTSg5CSo5NSURL___TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ +_TTSf4gs_gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A11filePathForfTSS5tokenSS_GSqSS_ +_TTSf4gs_d___TZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A21unarchiveWithFilePathfSSGSqPs9AnyObject__ +objectdestroy.7 +objectdestroy.10 +_TMfV8Mixpanel18ArchivedProperties +_METACLASS_DATA__TtC8Mixpanel11Persistence +_DATA__TtC8Mixpanel11Persistence +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A11filePathForfTSS5tokenSS_GSqSS_ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFilefTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A21unarchiveWithFilePathfSSGSqPs9AnyObject__ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A15unarchiveEventsfT5tokenSS_GSaGVs10DictionarySSPs9AnyObject___ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A15unarchivePeoplefT5tokenSS_GSaGVs10DictionarySSPs9AnyObject___ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A19unarchivePropertiesfT5tokenSS_TGVs10DictionarySSPs9AnyObject__GS1_SSPS2___SSGSqSS_GSaGS1_SSPS2_____ +_TWoZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypefTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__ +_TMfC8Mixpanel11Persistence +_TMfOC8Mixpanel11Persistence11ArchiveType +got._TMps8Hashable +field_type_vector_ArchiveType +field_type_vector_Persistence +field_type_vector_ArchivedProperties +_TMLGSqSS_ +L_selector_data(unarchiveObjectWithFile:) +L_selector(unarchiveObjectWithFile:) +L_selector_data(defaultManager) +L_selector(defaultManager) +L_selector_data(removeItemAtPath:error:) +L_selector(removeItemAtPath:error:) +L_selector_data(URLsForDirectory:inDomains:) +L_selector(URLsForDirectory:inDomains:) +_TMLCSo5NSURL +L_selector_data(URLByAppendingPathComponent:) +L_selector(URLByAppendingPathComponent:) +L_selector_data(path) +L_selector(path) +L_selector_data(objectAtIndex:) +L_selector(objectAtIndex:) +metadata.8 +L_selector_data(archiveRootObject:toFile:) +L_selector(archiveRootObject:toFile:) +metadata.11 +Persistence.swift +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFileFTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_u_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.12 +_TMaCSo15NSKeyedArchiver +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.9 +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A13archiveToFileFTOS0_11ArchiveType6objectPs9AnyObject_5tokenSS_T_u0_KT_P_ +archiveToFile +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfT7storageGVs14_BridgeStorageCs27_ContiguousArrayStorageBasePs16_NSArrayCoreType___GS_x_ +_TTSg5CSo5NSURL_Ps9AnyObject____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5CSo5NSURL___TFs25_isClassOrObjCExistentialurFMxSb +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_CSo5NSURL___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_CSo5NSURL___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5CSo5NSURL___TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5CSo5NSURL___TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5CSo5NSURL___TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5CSo5NSURL___TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb +_TTSg5CSo5NSURL___TFSa29_hoistableIsNativeTypeCheckedfT_Sb +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg9_isNativeSb +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg5countSi +_TTSg5CSo5NSURL___TFSa9_getCountfT_Si +_TMaCSo5NSURL +_TTSg5CSo5NSURL___TFSag9subscriptFSix +_TTSg5CSo5NSURL___TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5GSaCSo5NSURL_GSaS__s14CollectionTypes_GVs17IndexingGeneratorGSaS___GS1_GSaS___s13GeneratorTypes_S__SiSis22BidirectionalIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceS__GS6_S__s9IndexablesGS6_S__s12SequenceTypes_GS1_GS6_S___GS1_GS6_S___S2_s_S__SiSis16ForwardIndexTypes_SiSiS4_s_SiSiS5_s_Si_GS6_S___S__S____TFesRxs14CollectionTypewx5Indexs22BidirectionalIndexTyperS_g4lastGSqWx9Generator7Element__ +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ +_TTSg5CSo5NSURL___TTWurGSax_s9IndexablesFS_g8endIndexwx5Index +_TTSg5CSo5NSURL___TFSag8endIndexSi +_TTSg5CSo5NSURL___TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +filePathFor +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypeFTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__u_KT_P_ +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A21unarchiveWithFilePathFSSGSqPs9AnyObject__u_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.6 +_TMaCSo13NSFileManager +_TTSg5Ps9AnyObject____TZFsoi2eeurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TMaCSo17NSKeyedUnarchiver +unarchiveWithFilePath +_TFZFC8Mixpanel11PersistenceP33_BEB75F64193BE534F968639AF04B308A17unarchiveWithTypeFTOS0_11ArchiveType5tokenSS_GSqPs9AnyObject__u0_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.3 +filePathWithType +unarchiveWithType +unarchiveProperties +_TMaGSqSS_ +_TMaOC8Mixpanel11Persistence11ArchiveType +_TMaC8Mixpanel11Persistence +_TMaV8Mixpanel18ArchivedProperties +_TWaOC8Mixpanel11Persistence11ArchiveTypes16RawRepresentableS_ +_TWaOC8Mixpanel11Persistence11ArchiveTypes8HashableS_ +_TWaOC8Mixpanel11Persistence11ArchiveTypes9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Persistence.swift +_TFC8Mixpanel12PrintLoggingD +_TTWC8Mixpanel12PrintLoggingS_7LoggingS_FS1_10addMessagefT7messageVS_10LogMessage_T_ +_TWaC8Mixpanel12PrintLoggingS_7LoggingS_ +_TTWC8Mixpanel17PrintDebugLoggingS_7LoggingS_FS1_10addMessagefT7messageVS_10LogMessage_T_ +_TWaC8Mixpanel17PrintDebugLoggingS_7LoggingS_ +get_field_types_PrintLogging +get_field_types_PrintDebugLogging +_TTSf4n_d___TFC8Mixpanel12PrintLogging10addMessagefT7messageVS_10LogMessage_T_ +_TTSf4n_d___TFC8Mixpanel17PrintDebugLogging10addMessagefT7messageVS_10LogMessage_T_ +_TFC8Mixpanel17PrintDebugLoggingD +_TWPC8Mixpanel12PrintLoggingS_7LoggingS_ +_TWPC8Mixpanel17PrintDebugLoggingS_7LoggingS_ +_METACLASS_DATA__TtC8Mixpanel12PrintLogging +_DATA__TtC8Mixpanel12PrintLogging +_TMfC8Mixpanel12PrintLogging +_METACLASS_DATA__TtC8Mixpanel17PrintDebugLogging +_DATA__TtC8Mixpanel17PrintDebugLogging +_TMfC8Mixpanel17PrintDebugLogging +got._TMp8Mixpanel7Logging +field_type_vector_PrintDebugLogging +field_type_vector_PrintLogging +switch.table.2 +switch.table.3 +PrintLogging.swift +addMessage +_TTSg5P____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5P____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5P____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5P____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5P____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5P____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5Vs10_ArrayBody_P____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_P____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TMaC8Mixpanel17PrintDebugLogging +_TMaC8Mixpanel12PrintLogging +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/PrintLogging.swift +get_field_types_BasePath +_TwxsO8Mixpanel6Method +_TwxgO8Mixpanel6Method +_TwugO8Mixpanel6Method +_TwupO8Mixpanel6Method +_TwuiO8Mixpanel6Method +get_field_types_Method +_TwXXV8Mixpanel8Resource +_TwCPV8Mixpanel8Resource +_TwprV8Mixpanel8Resource +_TwdeV8Mixpanel8Resource +_TwxxV8Mixpanel8Resource +_TwCpV8Mixpanel8Resource +_TwcpV8Mixpanel8Resource +_TwcaV8Mixpanel8Resource +_TwTkV8Mixpanel8Resource +_TwtaV8Mixpanel8Resource +_TwalV8Mixpanel8Resource +_TwXxV8Mixpanel8Resource +_TwCcV8Mixpanel8Resource +get_field_types_Resource +create_generic_metadata_Resource +_TwXXO8Mixpanel6Reason +_TwCPO8Mixpanel6Reason +_TwxxO8Mixpanel6Reason +_TwCpO8Mixpanel6Reason +_TwcpO8Mixpanel6Reason +_TwcaO8Mixpanel6Reason +__swift_memcpy5_4 +_TwtaO8Mixpanel6Reason +_TwXxO8Mixpanel6Reason +_TwCcO8Mixpanel6Reason +__swift_memmove_array8_4 +_TwugO8Mixpanel6Reason +_TwupO8Mixpanel6Reason +_TwuiO8Mixpanel6Reason +get_field_types_Reason +_TTSg5Si___TFZFC8Mixpanel7Network10apiRequesturFT4baseSS8resourceGVS_8Resourcex_7failureFTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_7successFTxGSqS4___T__T_U_FTGSqS3__GSqS4__GSqCSo7NSError__T_ +_TTRXFo_oGSqCSo6NSData_oGSqCSo13NSURLResponse_oGSqCSo7NSError__dT__XFdCb_dGSqS__dGSqS0__dGSqS1___dT__ +_TFSiCfTSS5radixSi_GSqSi_ +_TTSf3cpfr93_TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U_FCSo6NSDataGSqSi__n_n___TTRXFo_oCSo6NSData_dGSqSi__XFo_oS__iGSqSi__ +_TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U0_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U1_FTSiGSqCSo13NSURLResponse__T_ +_TTRXFo_dSioGSqCSo13NSURLResponse__dT__XFo_iSioGSqS___dT__ +_TFC8Mixpanel7NetworkD +get_field_types_Network +_TTSg5SSSSs8Hashables_SS___TFVs22_NativeDictionaryIndex9successorfT_GS_xq__ +_TTSf4gs_n_d___TTSg5Si___TZFC8Mixpanel7NetworkP33_A5066DE13777C552986D7397F9E123E115buildURLRequesturfTSS8resourceGVS_8Resourcex__GSqCSo12NSURLRequest_ +_TMaTPSo9NSCopying_Ps9AnyObject__ +_TPA__TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U0_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TPA__TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U1_FTSiGSqCSo13NSURLResponse__T_ +_TPA__TTRXFo_dSioGSqCSo13NSURLResponse__dT__XFo_iSioGSqS___dT__ +objectdestroy.5 +_TPA__TTSg5Si___TFZFC8Mixpanel7Network10apiRequesturFT4baseSS8resourceGVS_8Resourcex_7failureFTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_7successFTxGSqS4___T__T_U_FTGSqS3__GSqS4__GSqCSo7NSError__T_ +_TMfV8Mixpanel8BasePath +_TMfO8Mixpanel6Method +_TMfO8Mixpanel6Reason +_METACLASS_DATA__TtC8Mixpanel7Network +_DATA__TtC8Mixpanel7Network +_TWoZFC8Mixpanel7NetworkP33_A5066DE13777C552986D7397F9E123E115buildURLRequesturfTSS8resourceGVS_8Resourcex__GSqCSo12NSURLRequest_ +_TMfC8Mixpanel7Network +field_type_vector_Network +field_type_vector_Reason +_TMLT10statusCodeSi_ +_TMLCSo7NSError +_TMLGSqCSo6NSData_ +_TMLCSo6NSData +_TMLGVs10DictionarySSSS_ +field_type_vector_Method +field_type_vector_BasePath +L_selector_data(statusCode) +L_selector(statusCode) +L_selector_data(initWithString:) +L_selector(initWithString:) +L_selector_data(initWithURL:) +L_selector(initWithURL:) +L_selector_data(setHTTPMethod:) +L_selector(setHTTPMethod:) +L_selector_data(setHTTPBody:) +L_selector(setHTTPBody:) +L_selector_data(setValue:forHTTPHeaderField:) +L_selector(setValue:forHTTPHeaderField:) +_TMLGCs23_ContiguousArrayStorageCSo12NSDictionary_ +_TMLCSo12NSDictionary +_TMLGCs23_ContiguousArrayStorageTPSo9NSCopying_Ps9AnyObject___ +_TMLTPSo9NSCopying_Ps9AnyObject__ +_TMLPSo9NSCopying_ +_PROTOCOL_NSCopying +l_OBJC_LABEL_PROTOCOL_$_NSCopying +l_OBJC_PROTOCOL_REFERENCE_$_NSCopying +L_selector_data(sharedSession) +L_selector(sharedSession) +metadata.6 +L_selector_data(dataTaskWithRequest:completionHandler:) +L_selector(dataTaskWithRequest:completionHandler:) +L_selector_data(resume) +L_selector(resume) +_PROTOCOL_INSTANCE_METHODS_NSCopying +_PROTOCOL_METHOD_TYPES_NSCopying +Network.swift +_TIFSicFTSS5radixSi_GSqSi_A0_ +_TTSf4g___TFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U_FCSo6NSDataGSqSi_ +_TFFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U0_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_u_KT_P_ +_TPA__TFZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessageFVS_10LogMessageT_U_FPS_7Logging_T_.11 +_TFFZFC8Mixpanel7Network16trackIntegrationFT8apiTokenSS10completionFSbT__T_U1_FTSiGSqCSo13NSURLResponse__T_u_KT_P_ +debug +_TMaCSo12NSURLSession +buildResource +_TTSg5CSo12NSDictionary___TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaPSo9NSCopying_ +_TMaGCs23_ContiguousArrayStorageTPSo9NSCopying_Ps9AnyObject___ +_TTSg5TPSo9NSCopying_Ps9AnyObject_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5CSo12NSDictionary___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5CSo12NSDictionary___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5CSo12NSDictionary___TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5CSo12NSDictionary___TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5CSo12NSDictionary___TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TMaCSo12NSDictionary +_TMaGCs23_ContiguousArrayStorageCSo12NSDictionary_ +_TTSg5CSo12NSDictionary___TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +apiRequest +_TTSg5Vs10_ArrayBody_TPSo9NSCopying_Ps9AnyObject_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_CSo12NSDictionary___TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5SSSSs8Hashables_SS___TZFVs19DictionaryGenerator7_NativefT5startGVs22_NativeDictionaryIndexxq__3endGS0_xq__5ownerGCs29_NativeDictionaryStorageOwnerxq___GS_xq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg8endIndexGVs22_NativeDictionaryIndexxq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorageg10startIndexGVs22_NativeDictionaryIndexxq__ +_TTSg5SSSSs8Hashables_SS___TFVs24_NativeDictionaryStorage12assertingGetfGVs22_NativeDictionaryIndexxq__Txq__ +_TTSg5SSSSs8Hashables_SS___TZFsoi2eeu0_Rxs8HashablerFTGVs22_NativeDictionaryIndexxq__GS0_xq___Sb +_TTSg5SSSSs8Hashables_SS___TZFVs19DictionaryGenerator6_CocoafCs25_CocoaDictionaryGeneratorGS_xq__ +_TTSg5SSSSs8Hashables_SS___TFOs25_VariantDictionaryStorage8generatefT_GVs19DictionaryGeneratorxq__ +_TTSg5SSSSs8Hashables_SS___TFVs19DictionaryGenerator11_nativeNextfT_GSqTxq___ +_TTSg5SSSSs8Hashables_SS___TFVs10Dictionary8generatefT_GVs19DictionaryGeneratorxq__ +buildURL +buildURLRequest +_TMaGVs10DictionarySSSS_ +_TMaCSo6NSData +_TMaGSqCSo6NSData_ +_TMaCSo7NSError +_TMaT10statusCodeSi_ +_TMaC8Mixpanel7Network +_TMaO8Mixpanel6Reason +_TMaO8Mixpanel6Method +_TMaV8Mixpanel8BasePath +_TWaO8Mixpanel6Methods16RawRepresentableS_ +_TWaO8Mixpanel6Methods8HashableS_ +_TWaO8Mixpanel6Methods9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Network.swift +_TFC8Mixpanel11FileLoggingD +_TFC8Mixpanel11FileLogging10addMessagefT7messageVS_10LogMessage_T_ +_TTWC8Mixpanel11FileLoggingS_7LoggingS_FS1_10addMessagefT7messageVS_10LogMessage_T_ +_TWaC8Mixpanel11FileLoggingS_7LoggingS_ +get_field_types_FileLogging +_TWPC8Mixpanel11FileLoggingS_7LoggingS_ +_TWvdvC8Mixpanel11FileLoggingP33_BF2A7E889900C46805361CADEEB4175310fileHandleCSo12NSFileHandle +_METACLASS_DATA__TtC8Mixpanel11FileLogging +_IVARS__TtC8Mixpanel11FileLogging +_DATA__TtC8Mixpanel11FileLogging +_TMfC8Mixpanel11FileLogging +field_type_vector_FileLogging +_TMLCSo12NSFileHandle +L_selector_data(writeData:) +L_selector(writeData:) +L_selector_data(closeFile) +L_selector(closeFile) +switch.table +switch.table.1 +FileLogging.swift +_TMaCSo12NSFileHandle +_TMaC8Mixpanel11FileLogging +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FileLogging.swift +_TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_ +_TTSf3cpfr89_TFFC8Mixpanel6People9incrementFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb_n___TTRXFo_oPs9AnyObject__dSb_XFo_iPS___dSb_ +_TTSf3cpfr85_TFFC8Mixpanel6People5unionFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb_n___TTRXFo_oPs9AnyObject__dSb_XFo_iPS___dSb_ +globalinit_33_EA3BC46B13D3E888870212C59FEB66EA_func8 +_TFIZvC8Mixpanel19AutomaticProperties16peoplePropertiesGVs10DictionarySSPs9AnyObject__iU_FT_GS1_SSPS2___ +globalinit_33_DC679E1127B8EE4445673262459DB836_func11 +globalinit_33_DC679E1127B8EE4445673262459DB836_func12 +_TFIZvC8Mixpanel10Assertions18swiftAssertClosureFTSbSSVs12StaticStringSu_T_iU_FTSbSSS1_Su_T_ +_TMaGSaSS_ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndex9successorfT_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFFVs10Dictionaryg6valuesGVs17LazyMapCollectionGS_xq__q__U_FTQ_Q0__Q0_ +_TTSf3cpfr108_TTSg5SSSSs8Hashables_Ps9AnyObject____TFFVs10Dictionaryg6valuesGVs17LazyMapCollectionGS_xq__q__U_FTQ_Q0__Q0__n_n___TTSg5SSSSs8Hashables_Ps9AnyObject____TTRG0_Rxs8HashablerXFo_ixiq__iq__XFo_iTxq___iq__ +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS3_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferGS0_SSPS1____GS8_GS0_SSPS1____s14CollectionTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1____GS8_GS0_SSPS1____s9IndexablesGS8_GS0_SSPS1____s12SequenceTypes_GS3_GS8_GS0_SSPS1_____GS3_GS8_GS0_SSPS1_____S4_s_GS0_SSPS1____SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs15LazyFilterIndexGVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS2____GS_GS0_GS1_SSPS2___PS2____s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFEsPs16ForwardIndexType10distanceTofxwx8Distance +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage12assertingGetfGVs15DictionaryIndexxq__Txq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg10startIndexGVs15DictionaryIndexxq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorageg8endIndexGVs15DictionaryIndexxq__ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs15LazyFilterIndex9successorfT_GS_x_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s16_ArrayBufferTypes_GVs14_IgnorePointerGS0_SSPS1____GS3_GS0_SSPS1____s20_PointerFunctionTypes_GS0_SSPS1____GVs17IndexingGeneratorGS_GS0_SSPS1_____GS5_GS_GS0_SSPS1_____s13GeneratorTypes_GS0_SSPS1____GVs12_SliceBufferGS0_SSPS1____GS7_GS0_SSPS1____s14CollectionTypes_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_GS0_SSPS1____GS7_GS0_SSPS1____s9IndexablesGS7_GS0_SSPS1____s12SequenceTypes_GS5_GS7_GS0_SSPS1_____GS5_GS7_GS0_SSPS1_____S6_s_GS0_SSPS1____SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_GS0_SSPS1_____GS0_SSPS1____GS0_SSPS1____GS0_SSPS1______TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4n_d___TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_d___TTSg5SSSSs8Hashables_GSaSS____TZFVs24_NativeDictionaryStorage9fromArrayfGSaTxq___GS_xq__ +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_ +_TTSf4g___TFFC8Mixpanel6People9incrementFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +get_field_types_People +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.3 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.9 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.15 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.21 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.27 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.33 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.39 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.45 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.51 +_TPA__TFFC8Mixpanel6People32addPeopleRecordToQueueWithActionFTSS10propertiesGVs10DictionarySSPs9AnyObject___T_U_FT_T_.57 +block_destroy_helper.5 +block_destroy_helper.11 +block_destroy_helper.17 +block_destroy_helper.23 +block_destroy_helper.29 +block_destroy_helper.35 +block_destroy_helper.41 +block_destroy_helper.53 +block_destroy_helper.59 +block_copy_helper.4 +block_copy_helper.10 +block_copy_helper.16 +block_copy_helper.22 +block_copy_helper.28 +block_copy_helper.34 +block_copy_helper.40 +block_copy_helper.52 +block_copy_helper.58 +objectdestroy.13 +objectdestroy.19 +objectdestroy.25 +objectdestroy.31 +objectdestroy.37 +objectdestroy.43 +objectdestroy.55 +L_selector_data(bytes) +L_selector(bytes) +L_selector(length) +_TMLGCs23_ContiguousArrayStoragePs11CVarArgType__ +_TMLPs11CVarArgType_ +_TMLGCs23_ContiguousArrayStorageTSSGSaSS___ +_TMLTSSGSaSS__ +_TMLGSaSS_ +_TMLGCs29_NativeDictionaryStorageOwnerSSGSaSS__ +block_descriptor.6 +block_descriptor.12 +metadata.14 +block_descriptor.18 +_TMLGCs18_HeapBufferStorageSiPs9AnyObject__ +L_selector_data(getObjects:andKeys:) +L_selector(getObjects:andKeys:) +_TMLGSaPs9AnyObject__ +metadata.20 +block_descriptor.24 +metadata.26 +block_descriptor.30 +_TMLCSo7NSArray +metadata.32 +block_descriptor.36 +metadata.38 +block_descriptor.42 +metadata.44 +block_descriptor.54 +metadata.56 +block_descriptor.60 +_METACLASS_DATA__TtC8Mixpanel6People +_IVARS__TtC8Mixpanel6People +_DATA__TtC8Mixpanel6People +_TMfC8Mixpanel6People +field_type_vector_People +_TMLGCs28_NativeDictionaryStorageImplSSGSaSS__ +_TTSg5SS_GSaSS____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_GSaSS____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSGSaSS__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_GSaSS____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5GSaSS____TFSp10initializefxT_ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_GSaSS____TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSGSaSS_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSGSaSS_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSGSaSS_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSGSaSS___GSaTSSGSaSS___s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSGSaSS_____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSGSaSS_____TFSag8endIndexSi +_TTSg5TSSGSaSS_____TFSag10startIndexSi +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferg5countSi +_TTSg5TSSGSaSS_____TFSa9_getCountfT_Si +_TTSg5TSSGSaSS_____TFSag5countSi +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorage7_bucketfxSi +_TTSg5TSSGSaSS_____TFSag9subscriptFSix +_TTSg5GSaTSSGSaSS___GSaTSSGSaSS___s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSGSaSS___GS3_TSSGSaSS___s9IndexablesGS3_TSSGSaSS___s12SequenceTypes_GVs17IndexingGeneratorGS3_TSSGSaSS____GS6_GS3_TSSGSaSS____s13GeneratorTypes_TSSGSaSS___SiSiS0_s_SiSiS1_s_SiSiS2_s_Si_GS3_TSSGSaSS____TSSGSaSS___TSSGSaSS_____TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5SSSSs8Hashables_GSaSS____TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5TSSGSaSS_____TFSp7destroyfSiT_ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5TSSGSaSS_____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSg5TSSGSaSS_____TFCs23_ContiguousArrayStoraged +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5GVs10DictionarySSPs9AnyObject_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GVs10DictionarySSPs9AnyObject_____TFSa13removeAtIndexfSix +addPeopleObject +_TFV8Mixpanel14QueueConstantsau9queueSizeSi +_TFC8Mixpanel19AutomaticPropertiesau16peoplePropertiesGVs10DictionarySSPs9AnyObject__ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5TSSPs9AnyObject_____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5TSSPs9AnyObject_____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_TSSPS______TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5TSSPs9AnyObject_____TFSag8endIndexSi +_TTSg5TSSPs9AnyObject_____TFSag10startIndexSi +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg5countSi +_TTSg5TSSPs9AnyObject_____TFSa9_getCountfT_Si +_TTSg5TSSPs9AnyObject_____TFSag5countSi +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5TSSPs9AnyObject_____TFSag9subscriptFSix +_TTSg5GSaTSSPs9AnyObject___GSaTSSPS____s14CollectionTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySliceTSSPS____GS4_TSSPS____s9IndexablesGS4_TSSPS____s12SequenceTypes_GVs17IndexingGeneratorGS4_TSSPS_____GS7_GS4_TSSPS_____s13GeneratorTypes_TSSPS____SiSiS1_s_SiSiS2_s_SiSiS3_s_Si_GS4_TSSPS_____TSSPS____TSSPS______TFesRxs14CollectionTypewx9GeneratorzGVs17IndexingGeneratorx_wx8_ElementzWxS0_7Element_rS_8generatefT_GS1_x_ +_TTSg5TSSPs9AnyObject_____TFSp7destroyfSiT_ +_TTSg5TSSPs9AnyObject_____TFCs23_ContiguousArrayStorageg9__managerGVs20ManagedBufferPointerVs10_ArrayBodyx_ +_TTSf4g___TFFC8Mixpanel6People5unionFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg10startIndexGVs22_NativeDictionaryIndexxq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12assertingGetfGVs22_NativeDictionaryIndexxq__Txq__ +_TTSg5Ps9AnyObject____TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SS___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s9IndexablesFS1_g8endIndexwx5Index +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs15DictionaryIndexCfT6_valueGOs29DictionaryIndexRepresentationxq___GS_xq__ +_TTSg5GVs15DictionaryIndexSSPs9AnyObject__GS_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex____TFVs14RangeGenerator4nextfT_GSqx_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs15DictionaryIndexxq__s14_IncrementablesFS1_9successorfT_x +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TTWuRxs14CollectionTyperGVs15LazyFilterIndexx_s14_IncrementablesFS1_9successorfT_x +_TTSg5GVs15LazyFilterIndexGVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS2____GS_GS0_GS1_SSPS2___PS2____s14_Incrementables___TFEsPs14_Incrementable17_successorInPlacefT_T_ +_TTWSis22_IntegerArithmeticTypesZFS_15addWithOverflowfTxx_Tx8overflowSb_ +_TTWSis33_BuiltinIntegerLiteralConvertiblesFS_CfT22_builtinIntegerLiteralBi2048__x +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs15DictionaryIndexxq__s9EquatablesZFS1_oi2eefTxx_Sb +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TZFsoi2eeuRxs14CollectionTyperFTGVs15LazyFilterIndexx_GS0_x__Sb +_TFC8Mixpanel10Assertionsau18swiftAssertClosureFTSbSSVs12StaticStringSu_T_ +_TMaC8Mixpanel6People +_TFFC8Mixpanel6People9incrementFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +increment +ignoreTime.materialize +ignoreTime.set +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5TSSPs9AnyObject_____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBuffers5countSi +_TTSg5TSSPs9AnyObject_____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5TSSPs9AnyObject_____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5TSSPs9AnyObject_____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +deleteUser +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfCs27_ContiguousArrayStorageBaseGS_x_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffers5countSi +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5Ps9AnyObject____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5Ps9AnyObject____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5Ps9AnyObject____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TMaCSo7NSArray +clearCharges +append +trackCharge +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFsoi2eeu0_Rxs8HashablerFTGVs22_NativeDictionaryIndexxq__GS0_xq___Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorageg8endIndexGVs22_NativeDictionaryIndexxq__ +_TFC8Mixpanel10Assertionsau13assertClosureFTSbSSVs12StaticStringSu_T_ +MPAssert +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TTWuRxs14CollectionTyperGVs15LazyFilterIndexx_s16ForwardIndexTypesFS1_10distanceTofxwx8Distance +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs15LazyFilterIndexCfT13_baseElementsx4basewx5Index8_includeFWx9Generator7Element_Sb_GS_x_ +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_PS0___GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TTWu0_Rxs14CollectionTyperGVs17LazyMapCollectionxq__s9IndexablesFS1_g8endIndexwx5Index +_TTSg5GVs20LazyFilterCollectionGVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS2____GS_GS0_GS1_SSPS2___PS2____s14CollectionTypes_GVs19LazyFilterGeneratorGVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS2___PS2____GS4_GS5_GS6_SSPS2___PS2____s13GeneratorTypes_PS2___GVs15LazyFilterIndexGS0_GS1_SSPS2___PS2____GS8_GS0_GS1_SSPS2___PS2____s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_GS1_SSPS2___PS2_____GS13_GS_GS0_GS1_SSPS2___PS2_____s9IndexablesGS13_GS_GS0_GS1_SSPS2___PS2_____s12SequenceTypes_GVs17IndexingGeneratorGS13_GS_GS0_GS1_SSPS2___PS2______GS16_GS13_GS_GS0_GS1_SSPS2___PS2______S7_s_PS2___GS8_GS0_GS1_SSPS2___PS2____GS8_GS0_GS1_SSPS2___PS2____S9_s_SiSiS10_s_SiSiS11_s_S12__GS13_GS_GS0_GS1_SSPS2___PS2______PS2___PS2_____TFEsPs14CollectionTypeg5countWx5Index8Distance_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs15DictionaryIndex7_NativefGVs22_NativeDictionaryIndexxq__GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs15DictionaryIndex6_CocoafVs21_CocoaDictionaryIndexGS_xq__ +_TMaGSaPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTRG0_Rxs8HashablerXFo_ixiq__iq__XFo_iTxq___iq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg9subscriptFGVs15DictionaryIndexxq__Txq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypesFS1_g9subscriptFwx5IndexWx9Generator7Element_ +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_PS0___GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFVs17LazyMapCollectiong9subscriptFwx5Indexq_ +_TMaGCs18_HeapBufferStorageSiPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s9IndexablesFS1_g10startIndexwx5Index +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFEsPs14CollectionTypeg4lazyGVs14LazyCollectionx_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg10startIndexGVs15DictionaryIndexxq__ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs20LazyFilterCollectionCfTx20whereElementsSatisfyFWx9Generator7Element_Sb_GS_x_ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s18LazyCollectionTypes_GS_GS0_SSPS1___PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS4_GS5_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS7_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS12_GS_GS0_SSPS1___PS1____s9IndexablesGS12_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS12_GS_GS0_SSPS1___PS1_____GS15_GS12_GS_GS0_SSPS1___PS1_____S6_s_PS1___GS7_SSPS1___GS7_SSPS1___S8_s_SiSiS9_s_SiSiS10_s_S11__GS12_GS_GS0_SSPS1___PS1_____PS1___PS1___GS4_GS5_SSPS1___PS1___GS4_GS5_SSPS1___PS1___S6_s_PS1___GS7_SSPS1___GS7_SSPS1___S8_s_SiSiS9_s_SiSiS10_s_S11__GS12_GS_GS0_SSPS1___PS1____GS12_GS_GS0_SSPS1___PS1____S13_sGS12_GS_GS0_SSPS1___PS1____S14_s_GS15_GS12_GS_GS0_SSPS1___PS1_____GS15_GS12_GS_GS0_SSPS1___PS1_____S6_s_PS1___GS7_SSPS1___GS7_SSPS1___S8_s_SiSiS9_s_SiSiS10_s_S11__GS12_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFEsPs18LazyCollectionType6filterfFWx8Elements9Generator7Element_SbGVs20LazyFilterCollectionwxS0__ +_TTSg5GVs14LazyCollectionGVs10DictionarySSPs9AnyObject___GS_GS0_SSPS1____s18LazyCollectionTypes_GS0_SSPS1___GS0_SSPS1___s14CollectionTypes_GVs19DictionaryGeneratorSSPS1___GS4_SSPS1___s13GeneratorTypes_TSSPS1____GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS0_SSPS1____GS11_GS0_SSPS1____s9IndexablesGS11_GS0_SSPS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS0_SSPS1_____GS14_GS11_GS0_SSPS1_____S5_s_TSSPS1____GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS0_SSPS1_____TSSPS1____TSSPS1____GS4_SSPS1___GS4_SSPS1___S5_s_TSSPS1____GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS_GS11_GS0_SSPS1_____GS_GS11_GS0_SSPS1_____S12_sGS_GS11_GS0_SSPS1_____S13_s_GS14_GS11_GS0_SSPS1_____GS14_GS11_GS0_SSPS1_____S5_s_TSSPS1____GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS_GS11_GS11_GS0_SSPS1_______TSSPS1____TSSPS1____PS1_____TFEsPs18LazyCollectionType3mapurfFWx8Elements9Generator7Element_qd__GVs17LazyMapCollectionwxS0_qd___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg6valuesGVs17LazyMapCollectionGS_xq__q__ +_TTSf4s_s___TZFsoi2eeFTVs21_CocoaDictionaryIndexS__Sb +_TTSg5GVs15DictionaryIndexSSPs9AnyObject__GS_SSPS0___s14_Incrementables___TFEsPs14_Incrementable17_successorInPlacefT_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs15DictionaryIndex9successorfT_GS_xq__ +_TTRXFo_oPs9AnyObject__dSb_XFo_iPS___dSb_ +_TFFC8Mixpanel6People5unionFT10propertiesGVs10DictionarySSPs9AnyObject___T_U_FPS2__Sb +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_PS0___GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFVs17LazyMapCollectionCfTx9transformFWx9Generator7Element_q__GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFsoi2eeu0_Rxs8HashablerFTGVs15DictionaryIndexxq__GS0_xq___Sb +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionaryg8endIndexGVs15DictionaryIndexxq__ +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TTWuRxs14CollectionTyperGVs20LazyFilterCollectionx_s9IndexablesFS1_g10startIndexwx5Index +_TTSg5GVs17LazyMapCollectionGVs10DictionarySSPs9AnyObject__PS1___GS_GS0_SSPS1___PS1___s14CollectionTypes_GVs16LazyMapGeneratorGVs19DictionaryGeneratorSSPS1___PS1___GS3_GS4_SSPS1___PS1___s13GeneratorTypes_PS1___GVs15DictionaryIndexSSPS1___GS6_SSPS1___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_GS0_SSPS1___PS1____GS11_GS_GS0_SSPS1___PS1____s9IndexablesGS11_GS_GS0_SSPS1___PS1____s12SequenceTypes_GVs17IndexingGeneratorGS11_GS_GS0_SSPS1___PS1_____GS14_GS11_GS_GS0_SSPS1___PS1_____S5_s_PS1___GS6_SSPS1___GS6_SSPS1___S7_s_SiSiS8_s_SiSiS9_s_S10__GS11_GS_GS0_SSPS1___PS1_____PS1___PS1_____TFVs20LazyFilterCollectiong10startIndexGVs15LazyFilterIndexx_ +unset +setOnce +set +_TTSg5SSSSs8Hashables_GSaSS____TFCs29_NativeDictionaryStorageOwnercfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TMaGCs29_NativeDictionaryStorageOwnerSSGSaSS__ +_TTSg5SSSSs8Hashables_GSaSS____TFCs29_NativeDictionaryStorageOwnerCfT13nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs10DictionaryCfT14_nativeStorageGVs24_NativeDictionaryStoragexq___GS_xq__ +_TTSg5SSSSs8Hashables_GSaSS____TFVs10DictionaryCft17dictionaryLiteralGSaTxq____GS_xq__ +_TTSg5TSSGSaSS_____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5TSSGSaSS_____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5TSSGSaSS_____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5TSSGSaSS_____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaTSSGSaSS__ +_TMaGCs23_ContiguousArrayStorageTSSGSaSS___ +_TTSg5TSSGSaSS_____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5SS___TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5SS___TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5SS___TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Ps11CVarArgType____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Ps11CVarArgType____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5Ps11CVarArgType____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Ps11CVarArgType____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Ps11CVarArgType____TFVs22_ContiguousArrayBufferCfT5countSi7storageGCs23_ContiguousArrayStoragex__GS_x_ +_TTSg5Ps11CVarArgType____TZFSa13_adoptStoragefTPs9AnyObject_5countSi_TGSax_GSpx__ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TMaPs11CVarArgType_ +_TMaGCs23_ContiguousArrayStoragePs11CVarArgType__ +_TTSg5Ps11CVarArgType____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si___TFVs14RangeGenerator4nextfT_GSqx_ +ignoreTime.get +addPeopleRecordToQueueWithAction +_TTSg5Vs10_ArrayBody_TSSGSaSS_____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TZFsoi2peFTRSSSS_T_ +_TTSg5Vs10_ArrayBody_Ps11CVarArgType____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +addPushDeviceToken +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/People.swift +_TFSdCfSSGSqSd_ +_TFC8Mixpanel5TrackD +get_field_types_Track +_METACLASS_DATA__TtC8Mixpanel5Track +_IVARS__TtC8Mixpanel5Track +_DATA__TtC8Mixpanel5Track +_TMfC8Mixpanel5Track +field_type_vector_Track +_TMLPMPs9AnyObject_ +Track.swift +_TFFC8Mixpanel5Track5trackFT5eventGSqSS_10propertiesGSqGVs10DictionarySSPs9AnyObject___11eventsQueueRGSaGS1_SSPS2____11timedEventsRGS1_SSPS2___15superPropertiesGS1_SSPS2___10distinctIdSS13epochIntervalSd_T_u0_KT_P_ +_TFFC8Mixpanel5Track4timeFT5eventGSqSS_11timedEventsRGVs10DictionarySSPs9AnyObject__9startTimeSd_T_u_KT_P_ +_TTSg5Ps9AnyObject____TZFsoi2neurFTGSqx_Vs26_OptionalNilComparisonType_Sb +_TTSg5CSo8NSObjectS_s9Equatable10ObjectiveC___TZFsoi2eeuRxs9EquatablerFTGSqx_GSqx__Sb +_TMaPMPs9AnyObject_ +_TTSg5PMPs9AnyObject____TFSSCurfxSS +_TTSg5PMPs9AnyObject____TFSSCurfT26stringInterpolationSegmentx_SS +assertPropertyTypes +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs19DictionaryGenerator7_NativefT5startGVs22_NativeDictionaryIndexxq__3endGS0_xq__5ownerGCs29_NativeDictionaryStorageOwnerxq___GS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary11updateValuefTq_6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TZFVs19DictionaryGenerator6_CocoafCs25_CocoaDictionaryGeneratorGS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs10Dictionary8generatefT_GVs19DictionaryGeneratorxq__ +_TFCs25_CocoaDictionaryGenerator4nextfT_GSqTPs9AnyObject_PS0____ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs19DictionaryGenerator11_nativeNextfT_GSqTxq___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs19DictionaryGenerator4nextfT_GSqTxq___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage8generatefT_GVs19DictionaryGeneratorxq__ ++= +_TMaC8Mixpanel5Track +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Track.swift +_TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__U0_FTSSPS1___T_ +_TFC8Mixpanel11JSONHandlerD +get_field_types_JSONHandler +_TTSg5T____TFVs15ContiguousArray15reserveCapacityfSiT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray15reserveCapacityfSiT_ +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ +_TTSg5GVs22_ContiguousArrayBufferT__GS_T__s16_ArrayBufferTypes_T__GVs17IndexingGeneratorGS_T___GS1_GS_T___s13GeneratorTypes_T__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT__GS6_T__s14CollectionTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T__GS6_T__s9IndexablesGS6_T__s12SequenceTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T___T__T__T____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs22_ContiguousArrayBufferPs9AnyObject__GS_PS0___s16_ArrayBufferTypes_PS0___GVs17IndexingGeneratorGS_PS0____GS2_GS_PS0____s13GeneratorTypes_PS0___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS0___GS7_PS0___s14CollectionTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0___GS7_PS0___s9IndexablesGS7_PS0___s12SequenceTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0____PS0___PS0___PS0_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs22_ContiguousArrayBufferT__GS_T__s16_ArrayBufferTypes_T__GVs17IndexingGeneratorGS_T___GS1_GS_T___s13GeneratorTypes_T__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferT__GS6_T__s14CollectionTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T__GS6_T__s9IndexablesGS6_T__s12SequenceTypes_GS1_GS6_T___GS1_GS6_T___S2_s_T__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_T___T__T__T____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5GVs22_ContiguousArrayBufferPs9AnyObject__GS_PS0___s16_ArrayBufferTypes_PS0___GVs17IndexingGeneratorGS_PS0____GS2_GS_PS0____s13GeneratorTypes_PS0___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS0___GS7_PS0___s14CollectionTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0___GS7_PS0___s9IndexablesGS7_PS0___s12SequenceTypes_GS2_GS7_PS0____GS2_GS7_PS0____S3_s_PS0___SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_PS0____PS0___PS0___PS0_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffer19_getElementSlowPathfSiPs9AnyObject_ +_TTSg5T____TFVs15ContiguousArray16_copyToNewBufferfSiT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray16_copyToNewBufferfSiT_ +_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferPs9AnyObject__GS_PS0___s16_ArrayBufferTypes_GVs14_IgnorePointerPS0___GS2_PS0___s20_PointerFunctionTypes_PS0___GVs17IndexingGeneratorGS_PS0____GS4_GS_PS0____s13GeneratorTypes_PS0___GVs12_SliceBufferPS0___GS6_PS0___s14CollectionTypes_GS4_GS6_PS0____GS4_GS6_PS0____S5_s_PS0___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS6_PS0___GS6_PS0___s9IndexablesGS6_PS0___s12SequenceTypes_GS4_GS6_PS0____GS4_GS6_PS0____S5_s_PS0___SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS6_PS0____PS0___PS0___PS0_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferT__GS_T__s16_ArrayBufferTypes_GVs14_IgnorePointerT__GS1_T__s20_PointerFunctionTypes_T__GVs17IndexingGeneratorGS_T___GS3_GS_T___s13GeneratorTypes_T__GVs12_SliceBufferT__GS5_T__s14CollectionTypes_GS3_GS5_T___GS3_GS5_T___S4_s_T__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS5_T__GS5_T__s9IndexablesGS5_T__s12SequenceTypes_GS3_GS5_T___GS3_GS5_T___S4_s_T__SiSiS7_s_SiSiS8_s_SiSiS9_s_Si_GS5_T___T__T__T____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TTSf4g_n___TZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializablefPs9AnyObject_PS1__ +_TTSf4g_n___TZFC8Mixpanel11JSONHandler19serializeJSONObjectfPs9AnyObject_GSqCSo6NSData_ +objectdestroy.15 +_TPA__TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__U0_FTSSPS1___T_ +objectdestroy.17 +_METACLASS_DATA__TtC8Mixpanel11JSONHandler +_DATA__TtC8Mixpanel11JSONHandler +_TWoZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializablefPs9AnyObject_PS1__ +_TMfC8Mixpanel11JSONHandler +field_type_vector_JSONHandler +L_selector_data(base64EncodedStringWithOptions:) +L_selector(base64EncodedStringWithOptions:) +L_selector_data(URLQueryAllowedCharacterSet) +L_selector(URLQueryAllowedCharacterSet) +L_selector_data(isValidJSONObject:) +L_selector(isValidJSONObject:) +L_selector_data(dataWithJSONObject:options:error:) +L_selector(dataWithJSONObject:options:error:) +L_selector(description) +L_selector(respondsToSelector:) +L_selector_data(absoluteString) +L_selector(absoluteString) +L_selector_data(setDateFormat:) +L_selector(setDateFormat:) +L_selector_data(timeZoneWithAbbreviation:) +L_selector(timeZoneWithAbbreviation:) +L_selector_data(setTimeZone:) +L_selector(setTimeZone:) +L_selector_data(initWithLocaleIdentifier:) +L_selector(initWithLocaleIdentifier:) +L_selector_data(setLocale:) +L_selector(setLocale:) +L_selector_data(stringFromDate:) +L_selector(stringFromDate:) +metadata.16 +metadata.18 +_TMLGCs23_ContiguousArrayStoragePs9AnyObject__ +_TMLGCs23_ContiguousArrayStorageT__ +_TMLGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ +JSONHandler.swift +_TTSg5VSC20NSJSONWritingOptions___TFSag8endIndexSi +_TTSg5VSC20NSJSONWritingOptions___TFSag10startIndexSi +_TTSg5VSC20NSJSONWritingOptions___TTWurGSax_s12SequenceTypesFS_8generatefT_wx9Generator +_TTSg5GSaVSC20NSJSONWritingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TTWuRxs9IndexablerGVs17IndexingGeneratorx_s13GeneratorTypesFS1_4nextfT_GSqwx7Element_ +_TTSg5VSC20NSJSONWritingOptions___TFSag9subscriptFSix +_TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__u_KT_P_ +_TTSg5SS_Ps9AnyObject____TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_Ps9AnyObject____TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSPs9AnyObject__ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb +_TTSg5SS_Ps9AnyObject____TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd +_TTSg5T____TFVs15ContiguousArrayg5countSi +_TTSg5T____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageT__ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_T____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5T____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5T____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5T____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ +_TTSg5T____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5T____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5T____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ +_TTSg5T____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerlu5valuex +_TTSg5T____TFVs22_ContiguousArrayBufferg10startIndexSi +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ +_TTSg5T____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5T____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5T____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5T____TFVs12_ArrayBufferg19firstElementAddressGSpx_ +_TTSg5T____TFVs12_ArrayBuffers5countSi +_TTSg5T____TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5T____TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5T____TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TTSg5T____TFs27_allocateUninitializedArrayurFBwTGSax_Bp_ +_TTSg5T____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5T____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5T____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ +_TTSg5T____TFSp10initializefxT_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_T____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5T____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5T____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5T____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg13_valuePointerGSpx_ +_TTSg5Vs10_ArrayBody_T____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerg8_addressGSPVs5UInt8_ +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb +_TTSg5T____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5T____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5Vs10_ArrayBody_T____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5T____TFVs15ContiguousArrayCfT_GS_x_ +_TTSg5T____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5T____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5T____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5T____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5T____TFVs15ContiguousArray6appendfxT_ +_TTSg5GVs10DictionarySSPs9AnyObject__GS_SSPS0___s14CollectionTypes_GVs19DictionaryGeneratorSSPS0___GS2_SSPS0___s13GeneratorTypes_TSSPS0____GVs15DictionaryIndexSSPS0___GS4_SSPS0___s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__GVs5SliceGS_SSPS0____GS9_GS_SSPS0____s9IndexablesGS9_GS_SSPS0____s12SequenceTypes_GVs17IndexingGeneratorGS9_GS_SSPS0_____GS12_GS9_GS_SSPS0_____S3_s_TSSPS0____GS4_SSPS0___GS4_SSPS0___S5_s_SiSiS6_s_SiSiS7_s_S8__GS9_GS_SSPS0_____TSSPS0____TSSPS0______TFs10_expectEnduRxs14CollectionTyperFTwx5Indexx_T_ +_TTSg5SSSSs8Hashables_Ps9AnyObject____TTWu0_Rxs8HashablerGVs10Dictionaryxq__s14CollectionTypesFS1_g5countWx5Index8Distance_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArrayg5countSi +_TTSg5Ps9AnyObject__PS_____TFVs12_ArrayBuffer14castToBufferOfurfMqd__GS_qd___ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStoragePs9AnyObject__ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5Ps9AnyObject____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5Ps9AnyObject____TFSp7destroyfSiT_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfTGS_x_19shiftedToStartIndexSi_GS_x_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5Ps9AnyObject____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGS_x__ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerlu5valuex +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg10startIndexSi +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGS_wx7Element__ +_TTSg5Ps9AnyObject____TFSaCft12arrayLiteralGSax__GSax_ +_TTSg5Ps9AnyObject____TFSaCfGVs12_ArrayBufferx_GSax_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5Ps9AnyObject____TTWurGVs22_ContiguousArrayBufferx_s16_ArrayBufferTypesFS0_19requestNativeBufferfT_GSqGS_wx7Element__ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg9subscriptFSix +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg18_nativeTypeCheckedGVs22_ContiguousArrayBufferx_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferg5countSi +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffer10getElementfTSi20wasNativeTypeCheckedSb_x +_TTSg5Ps9AnyObject____TFSa15_checkSubscriptfTSi20wasNativeTypeCheckedSb_Vs16_DependenceToken +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerg15_elementPointerGSpq__ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TZFVs20ManagedBufferPointerg14_elementOffsetSi +_TTSg5Ps9AnyObject____TFVs15ContiguousArray37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointer20holdsUniqueReferencefT_Sb +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +_TTSg5Ps9AnyObject____TFVs12_ArrayBuffer37_checkInoutAndNativeTypeCheckedBoundsfTSi20wasNativeTypeCheckedSb_T_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg20_isNativeTypeCheckedSb +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg32arrayPropertyIsNativeTypeCheckedSb +_TTSg5Vs10_ArrayBody_Ps9AnyObject____TFVs20ManagedBufferPointerCfT28_uncheckedUnsafeBufferObjectPs9AnyObject__GS_xq__ +_TTSg5Ps9AnyObject____TFVs15ContiguousArrayCfT_GS_x_ +_TTSg5Ps9AnyObject____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5Ps9AnyObject____TTWurGSax_s14CollectionTypesFS_g5countWx5Index8Distance_ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg5countSi +_TTWSis14_IncrementablesFS_9successorfT_x +_TTSg5Ps9AnyObject____TFVs15ContiguousArray36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray6appendfxT_ +_TTSg5Ps9AnyObject____TFVs15ContiguousArray40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTRXFo_oPs9AnyObject__oPS__zoPs9ErrorType__XFo_iPS___iPS__zoPS0___ +_TFZFC8Mixpanel11JSONHandlerP33_A279D5B1A7A3E009BC16279D557F9D1A22makeObjectSerializableFPs9AnyObject_PS1__U_FPS1__PS1__ +_TTSg5Ps9AnyObject____TFSag9subscriptFSix +_TTSg5Ps9AnyObject____TFSa11_getElementfTSi20wasNativeTypeCheckedSb22matchingSubscriptCheckVs16_DependenceToken_x +_TTSg5GSaPs9AnyObject__GSaPS___s14CollectionTypes_GVs17IndexingGeneratorGSaPS____GS1_GSaPS____s13GeneratorTypes_PS___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs10ArraySlicePS___GS6_PS___s9IndexablesGS6_PS___s12SequenceTypes_GS1_GS6_PS____GS1_GS6_PS____S2_s_PS___SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_PS____PS___PS___PS_____TFEsPs14CollectionType3mapurfzFzWx9Generator7Element_qd__GSaqd___ +_TTSg5Ps9AnyObject____TFVs12_ArrayBufferg10_nonNativePs16_NSArrayCoreType_ +_TTSg5Ps9AnyObject____TFSag5countSi +makeObjectSerializable +_TFZFC8Mixpanel11JSONHandler19serializeJSONObjectFPs9AnyObject_GSqCSo6NSData_u_KT_P_ +_TTWSus21BitwiseOperationsTypesZFS_oi1ofTxx_x +_TFZFC8Mixpanel11JSONHandler19serializeJSONObjectFPs9AnyObject_GSqCSo6NSData_u0_KT_P_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffer10getElementfSix +_TTSg5GSaVSC20NSJSONWritingOptions_GSaS__s9Indexables_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_S____TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBufferg5countSi +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffers5countSi +_TTSg5VSC20NSJSONWritingOptions___TFVs12_ArrayBuffers5countSi +_TTSg5VSC20NSJSONWritingOptions___TFVs12_ArrayBufferCfT_GS_x_ +_TTSg5VSC20NSJSONWritingOptions___TFSaCfT19_uninitializedCountSi_GSax_ +_TTSg5VSC20NSJSONWritingOptions___TZFSa22_allocateUninitializedfSiTGSax_GSpx__ +_TMaCSo19NSJSONSerialization +_TTSg5VSC20NSJSONWritingOptions___TFVs22_ContiguousArrayBuffer20_checkValidSubscriptfSiT_ +serializeJSONObject +_TFZFC8Mixpanel11JSONHandler13encodeAPIDataFPs9AnyObject_GSqSS_u_KT_P_ +_TFZFC8Mixpanel11JSONHandler13encodeAPIDataFPs9AnyObject_GSqSS_u0_KT_P_ +_TMaCSo14NSCharacterSet +warn +encodeAPIData +_TMaC8Mixpanel11JSONHandler +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/JSONHandler.swift +_TFC8Mixpanel19AutomaticPropertiesD +get_field_types_AutomaticProperties +_TTSg5GVs28UnsafeBufferPointerGeneratorVs5UInt8_GS_S0__s13GeneratorTypes___TFVs4UTF86decodeuRxs13GeneratorTypewx7ElementzVs5UInt8rfRxOs21UnicodeDecodingResult +_TTSf4n_n_n_d___TFVs13_StringBufferCfT8capacitySi11initialSizeSi12elementWidthSi_S_ +_METACLASS_DATA__TtC8Mixpanel19AutomaticProperties +_DATA__TtC8Mixpanel19AutomaticProperties +_TMfC8Mixpanel19AutomaticProperties +field_type_vector_AutomaticProperties +L_selector_data(mainScreen) +L_selector(mainScreen) +L_selector_data(bounds) +L_selector(bounds) +L_selector_data(mainBundle) +L_selector(mainBundle) +L_selector_data(infoDictionary) +L_selector(infoDictionary) +L_selector_data(subscriberCellularProvider) +L_selector(subscriberCellularProvider) +L_selector_data(carrierName) +L_selector(carrierName) +L_selector_data(bundleForClass:) +L_selector(bundleForClass:) +L_selector_data(systemName) +L_selector(systemName) +L_selector_data(systemVersion) +L_selector(systemVersion) +_TMLGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ +AutomaticProperties.swift +_TTSf4n_d_d___TZFVs4UTF812_isValidUTF8fTVs6UInt3210validBytesVs5UInt8_Sb +_TTSf4n_n_d___TZFVs4UTF842_findMaximalSubpartOfIllFormedUTF8SequencefTVs6UInt3210validBytesVs5UInt8_S1_ +_TMaGCs18_HeapBufferStorageVs18_StringBufferIVarsVs6UInt16_ +_TZFSS11fromCStringfGSPVs4Int8_GSqSS_ +_TTRXFo_dGSpTVs4Int8S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S____oGSqSS_zoPs9ErrorType__XFo_dGSpTS_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S____iGSqSS_zoPS0___ +_TFZFC8Mixpanel19AutomaticProperties11deviceModelFT_SSU_FGSpTVs4Int8S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1_S1___GSqSS_ +_TTSg5TVs4Int8S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S_S___GSqSS____TFs24withUnsafeMutablePointeru0_rFzTRxFzGSpx_q__q_ +_TMaCSo8NSBundle +_TMaCSo8UIScreen +deviceModel +libVersion +_TMaC8Mixpanel19AutomaticProperties +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/AutomaticProperties.swift +_TwxsO8Mixpanel8LogLevel +_TwxgO8Mixpanel8LogLevel +_TwugO8Mixpanel8LogLevel +_TwupO8Mixpanel8LogLevel +_TwuiO8Mixpanel8LogLevel +get_field_types_LogLevel +_TwXXV8Mixpanel10LogMessage +_TwCPV8Mixpanel10LogMessage +_TwprV8Mixpanel10LogMessage +_TwdeV8Mixpanel10LogMessage +_TwxxV8Mixpanel10LogMessage +_TwCpV8Mixpanel10LogMessage +_TwcpV8Mixpanel10LogMessage +_TwcaV8Mixpanel10LogMessage +_TwTkV8Mixpanel10LogMessage +__swift_memcpy37_4 +_TwtaV8Mixpanel10LogMessage +_TwalV8Mixpanel10LogMessage +_TwXxV8Mixpanel10LogMessage +_TwCcV8Mixpanel10LogMessage +get_field_types_LogMessage +_TFC8Mixpanel6LoggerD +get_field_types_Logger +_TMfO8Mixpanel8LogLevel +_TMfV8Mixpanel10LogMessage +_METACLASS_DATA__TtC8Mixpanel6Logger +_DATA__TtC8Mixpanel6Logger +_TWoZFC8Mixpanel6LoggerP33_6BBD8F7A3C4520592F2A3564F6D31C9E17forwardLogMessagefVS_10LogMessageT_ +_TMfC8Mixpanel6Logger +field_type_vector_Logger +field_type_vector_LogMessage +field_type_vector_LogLevel +Logger.swift +_TMaC8Mixpanel6Logger +_TMaV8Mixpanel10LogMessage +_TMaO8Mixpanel8LogLevel +_TWaO8Mixpanel8LogLevels16RawRepresentableS_ +_TWaO8Mixpanel8LogLevels8HashableS_ +_TWaO8Mixpanel8LogLevels9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Logger.swift +_TwXXO8Mixpanel13PropertyError +_TwCPO8Mixpanel13PropertyError +_TwcpO8Mixpanel13PropertyError +_TwcaO8Mixpanel13PropertyError +_TwtaO8Mixpanel13PropertyError +_TwXxO8Mixpanel13PropertyError +_TwCcO8Mixpanel13PropertyError +_TwxsO8Mixpanel13PropertyError +_TwxgO8Mixpanel13PropertyError +_TwugO8Mixpanel13PropertyError +_TwupO8Mixpanel13PropertyError +_TwuiO8Mixpanel13PropertyError +get_field_types_PropertyError +_TFC8Mixpanel10AssertionsD +get_field_types_Assertions +get_field_types_ErrorHandler +_TFC8Mixpanel12ErrorHandlerD +_TwCpO8Mixpanel13PropertyError +_TwxxO8Mixpanel13PropertyError +_TMfO8Mixpanel13PropertyError +_METACLASS_DATA__TtC8Mixpanel10Assertions +_DATA__TtC8Mixpanel10Assertions +_TMfC8Mixpanel10Assertions +_METACLASS_DATA__TtC8Mixpanel12ErrorHandler +_DATA__TtC8Mixpanel12ErrorHandler +_TMfC8Mixpanel12ErrorHandler +got._TMps9ErrorType +field_type_vector_ErrorHandler +field_type_vector_Assertions +field_type_vector_PropertyError +_TMLT4typePs9AnyObject__ +Error.swift +_TMaT4typePs9AnyObject__ +_TMaC8Mixpanel12ErrorHandler +_TMaC8Mixpanel10Assertions +_TMaO8Mixpanel13PropertyError +_TWaO8Mixpanel13PropertyErrors9ErrorTypeS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Error.swift +_TTSf3cpfr110_TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U_FCSo6NSDataGSqSi__n_n___TTRXFo_oCSo6NSData_dGSqSi__XFo_oS__iGSqSi__ +_TwxsO8Mixpanel9FlushType +_TwxgO8Mixpanel9FlushType +_TwugO8Mixpanel9FlushType +_TwupO8Mixpanel9FlushType +_TwuiO8Mixpanel9FlushType +get_field_types_FlushType +_TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U0_FTSiGSqCSo13NSURLResponse__T_ +_TFC8Mixpanel12FlushRequestD +get_field_types_FlushRequest +_TTSg5GSRVs6UInt16_GSRS__s14CollectionTypes_GVs28UnsafeBufferPointerGeneratorS__GS1_S__s13GeneratorTypes_SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs5SliceGSRS___GS6_GSRS___s9IndexablesGS6_GSRS___s12SequenceTypes_GVs17IndexingGeneratorGS6_GSRS____GS9_GS6_GSRS____S2_s_S__SiSiS3_s_SiSiS4_s_SiSiS5_s_Si_GS6_GSRS____S__S____TFs25_transcodeSomeUTF16AsUTF8uRxs14CollectionTypeWx9Generator7Element_zVs6UInt16rFTxwx5Index_TwxS3_Vs6UInt64_ +_TTSf4n_s___TFVs11_StringCoreg9subscriptFSiVs6UInt16 +_TFFSdcFSSGSqSd_L_9parseNTBSFGSPVs4Int8_TSdSi_ +_TTSf4s___TFSSg17nulTerminatedUTF8GVs15ContiguousArrayVs5UInt8_ +_TTSg5Vs5UInt8_VSS8UTF8ViewS0_s14CollectionTypes_GVs17IndexingGeneratorS0__GS2_S0__s13GeneratorTypes_VS0_5IndexS4_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__S0_S0_s9IndexablesS0_s12SequenceTypes_GS2_S0__GS2_S0__S3_s_S__S4_S4_S5_s_SiSiS6_s_SiSiS7_s_S8__S0__S__S____TZFsoi2peu0_R_s14CollectionTypexzW_9Generator7Element_rFTRGVs15ContiguousArrayx_q__T_ +_TTSg5Vs5UInt8___TFVs15ContiguousArray16_copyToNewBufferfSiT_ +_TTSg5GVs22_ContiguousArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_S0__GVs17IndexingGeneratorGS_S0___GS2_GS_S0___s13GeneratorTypes_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferS0__GS7_S0__s14CollectionTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0__GS7_S0__s9IndexablesGS7_S0__s12SequenceTypes_GS2_GS7_S0___GS2_GS7_S0___S3_s_S0__SiSiS4_s_SiSiS5_s_SiSiS6_s_Si_GS7_S0___S0__S0__S0____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSf4n_n_n_n_d___TTSg5GVs22_ContiguousArrayBufferVs5UInt8_GS_S0__s16_ArrayBufferTypes_GVs14_IgnorePointerS0__GS2_S0__s20_PointerFunctionTypes_S0__GVs17IndexingGeneratorGS_S0___GS4_GS_S0___s13GeneratorTypes_S0__GVs12_SliceBufferS0__GS6_S0__s14CollectionTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS6_S0__GS6_S0__s9IndexablesGS6_S0__s12SequenceTypes_GS4_GS6_S0___GS4_GS6_S0___S5_s_S0__SiSiS8_s_SiSiS9_s_SiSiS10_s_Si_GS6_S0___S0__S0__S0____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_TPA__TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U0_FSbT_ +_TPA__TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U_FTOS_6ReasonGSqCSo6NSData_GSqCSo13NSURLResponse__T_ +_TPA__TFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U0_FTSiGSqCSo13NSURLResponse__T_ +_TTSf4g_n___TFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3716updateRetryDelayfGSqCSo13NSURLResponse_T_ +objectdestroy.11 +_TMfO8Mixpanel9FlushType +_METACLASS_DATA__TtC8Mixpanel12FlushRequest +_IVARS__TtC8Mixpanel12FlushRequest +_DATA__TtC8Mixpanel12FlushRequest +_TWoFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerfTSS8resourceGVS_8ResourceSi_10completionFSbT__T_ +_TWoFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3716updateRetryDelayfGSqCSo13NSURLResponse_T_ +_TWoFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3739retryBackOffTimeWithConsecutiveFailuresfSiSd +_TMfC8Mixpanel12FlushRequest +field_type_vector_FlushRequest +field_type_vector_FlushType +L_selector_data(initWithTimeIntervalSinceNow:) +L_selector(initWithTimeIntervalSinceNow:) +L_selector_data(allHeaderFields) +L_selector(allHeaderFields) +metadata.12 +_TMLGCs23_ContiguousArrayStorageVs5UInt8_ +FlushRequest.swift +_TTSf4g_n_n___TFs28_parseUnsignedAsciiAsUIntMaxFTVSS9UTF16ViewSiVs6UInt64_GSqS0__ +_TFVSS9UTF16Viewg9subscriptFVS_5IndexVs6UInt16 +_TTSf4g___TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U_FCSo6NSDataGSqSi_ +_TFFC8Mixpanel12FlushRequest11sendRequestFTSS4typeOS_9FlushType5useIPSb10completionFSbT__T_U0_FSbT_ +updateRetryDelay +_TTRXFo_dGSPVs4Int8__dTSdSi_zoPs9ErrorType__XFo_dGSPS___iTSdSi_zoPS0___ +_TMaGCs23_ContiguousArrayStorageVs5UInt8_ +_TTSf4n_s___TFVs11_StringCore15_encodeSomeUTF8fSiTSiVs6UInt64_ +_TTSg5VSS8UTF8ViewS_s9Indexables_VS_5IndexS1_s16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Vs20_DisabledRangeIndex__Vs5UInt8___TFVs17IndexingGenerator4nextfT_GSqwx8_Element_ +_TTSg5Vs6UInt16___TFSRg9subscriptFSix +_TTSf4n_s___TFVs11_StringCore32_encodeSomeContiguousUTF16AsUTF8fSiTSiVs6UInt64_ +_TTSf4n_s___TFVs11_StringCore35_encodeSomeNonContiguousUTF16AsUTF8fSiTSiVs6UInt64_ +_TTSg5Vs5UInt8___TFVs15ContiguousArray15reserveCapacityfSiT_ +_TTSg5TSdSi____TFFSS11withCStringurFzFzGSPVs4Int8_xxU_FzGSRVs5UInt8_Q_ +_TPA__TTRXFo_dGSPVs4Int8__dTSdSi_zoPs9ErrorType__XFo_dGSPS___iTSdSi_zoPS0___ +_TTSg5SdSds10Comparables___TFs3minuRxs10ComparablerFTxx_x +_TTWSds10ComparablesZFS_oi1lfTxx_Sb +retryBackOffTimeWithConsecutiveFailures +FV8Mixpanel12APIConstantsG19failuresTillBackoffSi +_TFFFC8Mixpanel12FlushRequestP33_5D4665A2F706796052BE918148DA9A3719flushRequestHandlerFTSS8resourceGVS_8ResourceSi_10completionFSbT__T_U0_FTSiGSqCSo13NSURLResponse__T_u_KT_P_ +_TTSg5SdSds10Comparables___TFs3maxuRxs10ComparablerFTxx_x +_TTWSds10ComparablesZFS_oi2gefTxx_Sb +FV8Mixpanel12APIConstantsG15maxRetryBackoffSd +flushRequestHandler +sendRequest +_TMaC8Mixpanel12FlushRequest +_TMaO8Mixpanel9FlushType +_TWaO8Mixpanel9FlushTypes16RawRepresentableS_ +_TWaO8Mixpanel9FlushTypes8HashableS_ +_TWaO8Mixpanel9FlushTypes9EquatableS_ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/FlushRequest.swift +globalinit_33_5BB93A66CA3F8035AFDFA4141CC75A3F_func13 +_TFC8Mixpanel15MixpanelManagerD +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage8maybeGetfxGSqq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TZFOs25_VariantDictionaryStorage24maybeGetFromCocoaStoragefTVs23_CocoaDictionaryStorage6forKeyx_GSqq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5_findfTxSi_T3posGVs22_NativeDictionaryIndexxq__5foundSb_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage17nativeUpdateValuefTq_6forKeyx_GSqq__ +_TTSg5P8Mixpanel7Logging____TFSa16_copyToNewBufferfSiT_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage24nativeRemoveObjectForKeyfxGSqq__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl6createfSiGS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage25ensureUniqueNativeStoragefSiT11reallocatedSb15capacityChangedSb_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage12unsafeAddNewfT3keyx5valueq__T_ +_TTSg5GVs12_ArrayBufferP8Mixpanel7Logging__GS_PS1___s16_ArrayBufferTypes_PS1___GVs17IndexingGeneratorGS_PS1____GS3_GS_PS1____s13GeneratorTypes_PS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS1___GS8_PS1___s14CollectionTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1___GS8_PS1___s9IndexablesGS8_PS1___s12SequenceTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1____PS1___PS1___PS1_____TFs31_forceCreateUniqueMutableBufferuRxs16_ArrayBufferTyperFTRx17countForNewBufferSi14minNewCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSf4n_d___TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorageCfT8capacitySi_GS_xq__ +_TTSf4g_n___TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage26migrateDataToNativeStoragefVs23_CocoaDictionaryStorageT_ +_TTSf4gs_n___TFC8Mixpanel15MixpanelManager11getInstancefT4nameSS_GSqCS_16MixpanelInstance_ +get_field_types_Mixpanel +get_field_types_MixpanelManager +_TTSf4g_n_n_d___TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage16nativeDeleteImplfTGVs24_NativeDictionaryStoragexq__11idealBucketSi6offsetSi_T_ +_TMaGCs29_NativeDictionaryStorageOwnerSSC8Mixpanel16MixpanelInstance_ +_TTSf4s_n_n___TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSf4n_n_n_n_d___TTSg5GVs12_ArrayBufferP8Mixpanel7Logging__GS_PS1___s16_ArrayBufferTypes_GVs14_IgnorePointerPS1___GS3_PS1___s20_PointerFunctionTypes_PS1___GVs17IndexingGeneratorGS_PS1____GS5_GS_PS1____s13GeneratorTypes_PS1___GVs12_SliceBufferPS1___GS7_PS1___s14CollectionTypes_GS5_GS7_PS1____GS5_GS7_PS1____S6_s_PS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GS7_PS1___GS7_PS1___s9IndexablesGS7_PS1___s12SequenceTypes_GS5_GS7_PS1____GS5_GS7_PS1____S6_s_PS1___SiSiS9_s_SiSiS10_s_SiSiS11_s_Si_GS7_PS1____PS1___PS1___PS1_____TFs22_arrayOutOfPlaceUpdateu0_Rxs16_ArrayBufferType_s20_PointerFunctionTypewx5IndexzSiwx7Elementzw_7ElementWxS1_8Distance_zSiWxS1_19_DisabledRangeIndex_zSiWxS1_S4_18IntegerLiteralType_zSirFTRxRGSqGVs22_ContiguousArrayBufferwxS2___SiSiq__T_ +_METACLASS_DATA__TtC8Mixpanel8Mixpanel +_DATA__TtC8Mixpanel8Mixpanel +_TMfC8Mixpanel8Mixpanel +_TWvdvC8Mixpanel15MixpanelManagerP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWvdvC8Mixpanel15MixpanelManagerP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_METACLASS_DATA__TtC8Mixpanel15MixpanelManager +_IVARS__TtC8Mixpanel15MixpanelManager +_DATA__TtC8Mixpanel15MixpanelManager +_TWoFC8Mixpanel15MixpanelManagergP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagersP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagermP33_5BB93A66CA3F8035AFDFA4141CC75A3F9instancesGVs10DictionarySSCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagergP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagersP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_TWoFC8Mixpanel15MixpanelManagermP33_5BB93A66CA3F8035AFDFA4141CC75A3F12mainInstanceGSqCS_16MixpanelInstance_ +_TMfC8Mixpanel15MixpanelManager +field_type_vector_MixpanelManager +_TMLGVs10DictionarySSC8Mixpanel16MixpanelInstance_ +_TMLGSqC8Mixpanel16MixpanelInstance_ +field_type_vector_Mixpanel +_TMLGCs29_NativeDictionaryStorageOwnerSSC8Mixpanel16MixpanelInstance_ +_TMLGCs28_NativeDictionaryStorageImplSSC8Mixpanel16MixpanelInstance_ +_TMLP8Mixpanel7Logging_ +_TMLGCs23_ContiguousArrayStorageP8Mixpanel7Logging__ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer18_initStorageHeaderfTSi8capacitySi_T_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg19_allocatedByteCountSi +_TMaGCs23_ContiguousArrayStorageP8Mixpanel7Logging__ +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g8capacitySi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerg21allocatedElementCountSi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerCfT21_uncheckedBufferClassPMPs9AnyObject_15minimumCapacitySi_GS_xq__ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TZFVs20ManagedBufferPointerg14_alignmentMaskSi +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferCfT_GS_x_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferCfT5countSi15minimumCapacitySi_GS_x_ +_TTSg5GVs12_ArrayBufferP8Mixpanel7Logging__GS_PS1___s16_ArrayBufferTypes_PS1___GVs17IndexingGeneratorGS_PS1____GS3_GS_PS1____s13GeneratorTypes_PS1___SiSis16ForwardIndexTypes_SiSis18_SignedIntegerTypes_SiSis33_BuiltinIntegerLiteralConvertibles_Si_GVs12_SliceBufferPS1___GS8_PS1___s14CollectionTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1___GS8_PS1___s9IndexablesGS8_PS1___s12SequenceTypes_GS3_GS8_PS1____GS3_GS8_PS1____S4_s_PS1___SiSiS5_s_SiSiS6_s_SiSiS7_s_Si_GS8_PS1____PS1___PS1___PS1_____TFs35_forceCreateUniqueMutableBufferImpluRxs16_ArrayBufferTyperFTRx14countForBufferSi14minNewCapacitySi16requiredCapacitySi_GVs22_ContiguousArrayBufferwx7Element_ +_TTSg5P8Mixpanel7Logging____TFSp14initializeFromfTGSpx_5countSi_T_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffer18_uninitializedCopyfTGVs5RangeSi_6targetGSpx__GSpx_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferg7_nativeGVs22_ContiguousArrayBufferx_ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferg9_isNativeSb +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer10_typeCheckfGVs5RangeSi_T_ +_TTSg5P8Mixpanel7Logging____TFSp18moveInitializeFromfTGSpx_5countSi_T_ +_TTSg5P8Mixpanel7Logging____TFSp7destroyfSiT_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg8_storageCs27_ContiguousArrayStorageBase +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferCfTGVs22_ContiguousArrayBufferx_19shiftedToStartIndexSi_GS_x_ +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s9IndexablesFS0_g8endIndexwx5Index +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_18_uninitializedCopyfTGVs5RangeSi_6targetGSpwx7Element__GSpwxS2__ +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBufferg10startIndexSi +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferx__ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg19firstElementAddressGSpx_ +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TFVs20ManagedBufferPointerlu5valuex +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_g19firstElementAddressGSpwx7Element_ +_TTSg5P8Mixpanel7Logging____TTWurGVs12_ArrayBufferx_s16_ArrayBufferTypesFS0_33requestUniqueMutableBackingBufferfSiGSqGVs22_ContiguousArrayBufferwx7Element__ +_TTSg5P8Mixpanel7Logging____TFSp10initializefxT_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBuffers5countSi +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffers5countSi +_TTSg5P8Mixpanel7Logging____TFSa37_appendElementAssumeUniqueAndCapacityfTSi10newElementx_T_ +_TTSg5P8Mixpanel7Logging____TFVs22_ContiguousArrayBufferg8capacitySi +_TTSg5Vs10_ArrayBody_P8Mixpanel7Logging____TZFVs20ManagedBufferPointerg12_valueOffsetSi +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer20isUniquelyReferencedfT_Sb +_TTSg5P8Mixpanel7Logging____TFVs12_ArrayBuffer30isMutableAndUniquelyReferencedfT_Sb +addLogging +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10DictionaryCfT15minimumCapacitySi_GS_xq__ +_TTSg5P8Mixpanel7Logging____TFSa36_reserveCapacityAssumingUniqueBufferfSiT_ +_TTSg5P8Mixpanel7Logging____TFSa6appendfxT_ +_TTSg5P8Mixpanel7Logging____TFSa40_makeUniqueAndReserveCapacityIfNotUniquefT_T_ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg21_maxLoadFactorInverseSd +_TFFC8Mixpanel15MixpanelManager11getInstanceFT4nameSS_GSqCS_16MixpanelInstance_u_KT_P_ +getInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs22_NativeDictionaryIndexCfT13nativeStorageGVs24_NativeDictionaryStoragexq__6offsetSi_GS_xq__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TTRG0_rXFo_oGCs18ManagedProtoBufferVs29_HashedContainerStorageHeaderVs5UInt8__dS0__XFo_oGS_S0_S1___iS0__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl14bytesForValuesfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl14bytesForBitMapfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TZFCs28_NativeDictionaryStorageImpl12bytesForKeysfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg7_valuesGSpq__ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg5_keysGSpx_ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg41_initializedHashtableEntriesBitMapStorageGSpSu_ +_TMaGCs28_NativeDictionaryStorageImplSSC8Mixpanel16MixpanelInstance_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwnerg21_heapBufferBridgedPtrGSpGSqPs9AnyObject___ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwner29deinitializeHeapBufferBridgedfT_T_ +_TTSg5C8Mixpanel16MixpanelInstance___TFs26_forceBridgeFromObjectiveCurFTPs9AnyObject_Mx_x +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwnercfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFCs29_NativeDictionaryStorageOwnerCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorageCfT15minimumCapacitySi_GS_xq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage20isUniquelyReferencedfT_Sb +_TTSg5C8Mixpanel16MixpanelInstance___TFSp10initializefxT_ +_TTSg5C8Mixpanel16MixpanelInstance___TFSp4movefT_x +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage18isInitializedEntryfSiSb +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorageg11_bucketMaskSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplau5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImpls6_countSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg6_countSi +_TTSg5C8Mixpanel16MixpanelInstance___TFSp7destroyfT_T_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5keyAtfSix +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5_nextfSiSi +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage5_prevfSiSi +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg6bufferGVs20ManagedBufferPointerVs29_HashedContainerStorageHeaderVs5UInt8_ +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImpllu5_bodyVs29_HashedContainerStorageHeader +_TTSg5SS_C8Mixpanel16MixpanelInstance___TFCs28_NativeDictionaryStorageImplg9_capacitySi +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs24_NativeDictionaryStorage7_bucketfxSi +_TMaGSqC8Mixpanel16MixpanelInstance_ +_TMaGVs10DictionarySSC8Mixpanel16MixpanelInstance_ +_TMaC8Mixpanel15MixpanelManager +_TMaC8Mixpanel8Mixpanel +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10Dictionary17removeValueForKeyfxGSqq__ +removeInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage17removeValueForKeyfxGSqq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorageg6nativeGVs24_NativeDictionaryStoragexq__ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage8maybeGetfxGSqq__ +setMainInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10Dictionaryg9subscriptFxGSqq__ +getMainInstance +mainInstance +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFVs10Dictionarys9subscriptFxGSqq__ +initialize +_TFC8Mixpanel15MixpanelManagerau14sharedInstanceS0_ +_TTSg5SSSSs8Hashables_C8Mixpanel16MixpanelInstance___TFOs25_VariantDictionaryStorage11updateValuefTq_6forKeyx_GSqq__ +/Users/yardeneitan/Development/mixpanel-swift/Mixpanel/Mixpanel.swift +/Users/yardeneitan/Development/mixpanel-swift/MixpanelDemo/Build/Intermediates/Mixpanel.build/Release-iphoneos/Mixpanel.build/DerivedSources/Mixpanel_vers.c diff --git a/MixpanelDemo/Build/Products/Release-iphoneos/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphoneos/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..bc2742d4 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphoneos/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework.dSYM/Contents/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework.dSYM/Contents/Info.plist new file mode 100644 index 00000000..57a84d30 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.com.mixpanel.Mixpanel + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework.dSYM/Contents/Resources/DWARF/Mixpanel b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework.dSYM/Contents/Resources/DWARF/Mixpanel new file mode 100644 index 00000000..43cbcd7c Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework.dSYM/Contents/Resources/DWARF/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h new file mode 100644 index 00000000..f6f83153 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel-Swift.h @@ -0,0 +1,99 @@ +// Generated by Apple Swift version 2.2 (swiftlang-703.0.18.8 clang-703.0.31) +#pragma clang diagnostic push + +#if defined(__has_include) && __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if defined(__has_include) && __has_include() +# include +# elif !defined(__cplusplus) || __cplusplus < 201103L +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif + +#if defined(__has_attribute) && __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if defined(__has_attribute) && __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if defined(__has_attribute) && __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if defined(__has_attribute) && __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type +# if defined(__has_feature) && __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name) +# endif +#endif +#if defined(__has_feature) && __has_feature(modules) +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#pragma clang diagnostic pop diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h new file mode 100644 index 00000000..e9eefef8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Headers/Mixpanel.h @@ -0,0 +1,19 @@ +// +// Mixpanel.h +// Mixpanel +// +// Created by Yarden Eitan on 6/1/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +#import + +//! Project version number for Mixpanel. +FOUNDATION_EXPORT double MixpanelVersionNumber; + +//! Project version string for Mixpanel. +FOUNDATION_EXPORT const unsigned char MixpanelVersionString[]; + +// In this header, you should import all the public headers of your framework using statements like #import + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..f82d30ea Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Mixpanel b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Mixpanel new file mode 100755 index 00000000..d724320a Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftdoc b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftdoc new file mode 100644 index 00000000..89daf5e6 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule new file mode 100644 index 00000000..768dc2ac Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/i386.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftdoc b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftdoc new file mode 100644 index 00000000..e1624d98 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule new file mode 100644 index 00000000..e505e676 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/Mixpanel.swiftmodule/x86_64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap new file mode 100644 index 00000000..d0de469b --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Mixpanel.framework/Modules/module.modulemap @@ -0,0 +1,10 @@ +framework module Mixpanel { + umbrella header "Mixpanel.h" + + export * + module * { export * } +} + +module Mixpanel.Swift { + header "Mixpanel-Swift.h" +} diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app.dSYM/Contents/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app.dSYM/Contents/Info.plist new file mode 100644 index 00000000..4430fcba --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.com.mixpanel.MixpanelDemo + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app.dSYM/Contents/Resources/DWARF/MixpanelDemo b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app.dSYM/Contents/Resources/DWARF/MixpanelDemo new file mode 100644 index 00000000..238451bd Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app.dSYM/Contents/Resources/DWARF/MixpanelDemo differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib new file mode 100644 index 00000000..e239d300 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/01J-lp-oVM-view-Ze5-6b-2t3.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist new file mode 100644 index 00000000..32288e88 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib new file mode 100644 index 00000000..3654cded Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Base.lproj/LaunchScreen.storyboardc/UIViewController-01J-lp-oVM.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection new file mode 100755 index 00000000..600a0bfe Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist new file mode 100644 index 00000000..3997f0e2 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..56259c7e --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + s8xzJx0p/OCl8VAr3/1cO4153Xg= + + version.plist + + hrLEt31x7WOsD3EiGTuti3IPJnw= + + + files2 + + version.plist + + hrLEt31x7WOsD3EiGTuti3IPJnw= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist new file mode 100644 index 00000000..3bdf5833 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/IDEBundleInjection.framework/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + IDEBundleInjection + BuildVersion + 18 + CFBundleShortVersionString + 5.0 + CFBundleVersion + 10004 + ProjectName + IDEBundleInjection_Sim + SourceVersion + 10004000000000000 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist new file mode 100644 index 00000000..f82d30ea Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel new file mode 100755 index 00000000..d724320a Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/Mixpanel.framework/Mixpanel differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h new file mode 100644 index 00000000..bb1b2dca --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCAbstractTest.h @@ -0,0 +1,113 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestRun; + +/*! + * @class XCTest + * + * An abstract base class for testing. XCTestCase and XCTestSuite extend XCTest to provide + * for creating, managing, and executing tests. Most developers will not need to subclass + * XCTest directly. + */ +@interface XCTest : NSObject { +#ifndef __OBJC2__ +@private + id _internal; +#endif +} + +/*! + * @property testCaseCount + * Number of test cases. Must be overridden by subclasses. + */ +@property (readonly) NSUInteger testCaseCount; + +/*! + * @property name + * Test's name. Must be overridden by subclasses. + */ +@property (readonly, copy, nullable) NSString *name; + +/*! + * @property testRunClass + * The XCTestRun subclass that will be instantiated when the test is run to hold + * the test's results. Must be overridden by subclasses. + */ +@property (readonly, nullable) Class testRunClass; + +/*! + * @property testRun + * The test run object that executed the test, an instance of testRunClass. If the test has not yet been run, this will be nil. + */ +#if XCT_NULLABLE_AVAILABLE +@property (readonly, nullable) XCTestRun *testRun; +#else +@property (readonly) XCTestRun *testRun; +#endif + +/*! + * @method -performTest: + * The method through which tests are executed. Must be overridden by subclasses. + */ +- (void)performTest:(XCTestRun *)run; + +/*! + * @method -run + * Deprecated: use -runTest instead. + */ +- (XCTestRun *)run DEPRECATED_ATTRIBUTE; + +/*! + * @method -runTest + * Creates an instance of the testRunClass and passes it as a parameter to -performTest:. + */ +- (void)runTest; + +/*! + * @method -setUp + * Setup method called before the invocation of each test method in the class. + */ +- (void)setUp; + +/*! + * @method -tearDown + * Teardown method called after the invocation of each test method in the class. + */ +- (void)tearDown; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h new file mode 100644 index 00000000..182218ad --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTest.h @@ -0,0 +1,59 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h new file mode 100644 index 00000000..1660e6ef --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertions.h @@ -0,0 +1,247 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +/*! + * @function XCTFail(...) + * Generates a failure unconditionally. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTFail(...) \ + _XCTPrimitiveFail(self, __VA_ARGS__) + +/*! + * @define XCTAssertNil(expression, ...) + * Generates a failure when ((\a expression) != nil). + * @param expression An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNil(expression, ...) \ + _XCTPrimitiveAssertNil(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertNotNil(expression, ...) + * Generates a failure when ((\a expression) == nil). + * @param expression An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotNil(expression, ...) \ + _XCTPrimitiveAssertNotNil(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssert(expression, ...) + * Generates a failure when ((\a expression) == false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssert(expression, ...) \ + _XCTPrimitiveAssertTrue(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertTrue(expression, ...) + * Generates a failure when ((\a expression) == false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertTrue(expression, ...) \ + _XCTPrimitiveAssertTrue(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertFalse(expression, ...) + * Generates a failure when ((\a expression) != false). + * @param expression An expression of boolean type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertFalse(expression, ...) \ + _XCTPrimitiveAssertFalse(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertEqualObjects(expression1, expression2, ...) + * Generates a failure when ((\a expression1) not equal to (\a expression2)). + * @param expression1 An expression of id type. + * @param expression2 An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqualObjects(expression1, expression2, ...) \ + _XCTPrimitiveAssertEqualObjects(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqualObjects(expression1, expression2, ...) + * Generates a failure when ((\a expression1) equal to (\a expression2)). + * @param expression1 An expression of id type. + * @param expression2 An expression of id type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqualObjects(expression1, expression2, ...) \ + _XCTPrimitiveAssertNotEqualObjects(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) != (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) == (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertNotEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertEqualWithAccuracy(expression1, expression2, accuracy, ...) + * Generates a failure when (difference between (\a expression1) and (\a expression2) is > (\a accuracy))). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param accuracy An expression of C scalar type describing the maximum difference between \a expression1 and \a expression2 for these values to be considered equal. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertEqualWithAccuracy(expression1, expression2, accuracy, ...) \ + _XCTPrimitiveAssertEqualWithAccuracy(self, expression1, @#expression1, expression2, @#expression2, accuracy, @#accuracy, __VA_ARGS__) + +/*! + * @define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...) + * Generates a failure when (difference between (\a expression1) and (\a expression2) is <= (\a accuracy)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param accuracy An expression of C scalar type describing the maximum difference between \a expression1 and \a expression2 for these values to be considered equal. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNotEqualWithAccuracy(expression1, expression2, accuracy, ...) \ + _XCTPrimitiveAssertNotEqualWithAccuracy(self, expression1, @#expression1, expression2, @#expression2, accuracy, @#accuracy, __VA_ARGS__) + +/*! + * @define XCTAssertGreaterThan(expression1, expression2, ...) + * Generates a failure when ((\a expression1) <= (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertGreaterThan(expression1, expression2, ...) \ + _XCTPrimitiveAssertGreaterThan(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertGreaterThanOrEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) < (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertGreaterThanOrEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertGreaterThanOrEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertLessThan(expression1, expression2, ...) + * Generates a failure when ((\a expression1) >= (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertLessThan(expression1, expression2, ...) \ + _XCTPrimitiveAssertLessThan(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertLessThanOrEqual(expression1, expression2, ...) + * Generates a failure when ((\a expression1) > (\a expression2)). + * @param expression1 An expression of C scalar type. + * @param expression2 An expression of C scalar type. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertLessThanOrEqual(expression1, expression2, ...) \ + _XCTPrimitiveAssertLessThanOrEqual(self, expression1, @#expression1, expression2, @#expression2, __VA_ARGS__) + +/*! + * @define XCTAssertThrows(expression, ...) + * Generates a failure when ((\a expression) does not throw). + * @param expression An expression. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrows(expression, ...) \ + _XCTPrimitiveAssertThrows(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertThrowsSpecific(expression, exception_class, ...) + * Generates a failure when ((\a expression) does not throw \a exception_class). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrowsSpecific(expression, exception_class, ...) \ + _XCTPrimitiveAssertThrowsSpecific(self, expression, @#expression, exception_class, __VA_ARGS__) + +/*! + * @define XCTAssertThrowsSpecificNamed(expression, exception_class, exception_name, ...) + * Generates a failure when ((\a expression) does not throw \a exception_class with \a exception_name). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param exception_name The name of the exception. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertThrowsSpecificNamed(expression, exception_class, exception_name, ...) \ + _XCTPrimitiveAssertThrowsSpecificNamed(self, expression, @#expression, exception_class, exception_name, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrow(expression, ...) + * Generates a failure when ((\a expression) throws). + * @param expression An expression. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrow(expression, ...) \ + _XCTPrimitiveAssertNoThrow(self, expression, @#expression, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrowSpecific(expression, exception_class, ...) + * Generates a failure when ((\a expression) throws \a exception_class). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrowSpecific(expression, exception_class, ...) \ + _XCTPrimitiveAssertNoThrowSpecific(self, expression, @#expression, exception_class, __VA_ARGS__) + +/*! + * @define XCTAssertNoThrowSpecificNamed(expression, exception_class, exception_name, ...) + * Generates a failure when ((\a expression) throws \a exception_class with \a exception_name). + * @param expression An expression. + * @param exception_class The class of the exception. Must be NSException, or a subclass of NSException. + * @param exception_name The name of the exception. + * @param ... An optional supplementary description of the failure. A literal NSString, optionally with string format specifiers. This parameter can be completely omitted. +*/ +#define XCTAssertNoThrowSpecificNamed(expression, exception_class, exception_name, ...) \ + _XCTPrimitiveAssertNoThrowSpecificNamed(self, expression, @#expression, exception_class, exception_name, __VA_ARGS__) diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h new file mode 100644 index 00000000..2758a05b --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestAssertionsImpl.h @@ -0,0 +1,475 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface _XCTestCaseInterruptionException : NSException +@end + +#if XCT_NULLABLE_AVAILABLE +XCT_EXPORT void _XCTFailureHandler(XCTestCase *test, BOOL expected, const char *filePath, NSUInteger lineNumber, NSString *condition, NSString * __nullable format, ...) NS_FORMAT_FUNCTION(6,7); +#else +XCT_EXPORT void _XCTFailureHandler(XCTestCase *test, BOOL expected, const char *filePath, NSUInteger lineNumber, NSString *condition, NSString *format, ...) NS_FORMAT_FUNCTION(6,7); +#endif + +XCT_EXPORT void _XCTPreformattedFailureHandler(XCTestCase *test, BOOL expected, NSString *filePath, NSUInteger lineNumber, NSString *condition, NSString *message); + +#define _XCTRegisterFailure(test, condition, ...) \ +({ \ + _XCTFailureHandler(test, YES, __FILE__, __LINE__, condition, @"" __VA_ARGS__); \ +}) + +#define _XCTRegisterUnexpectedFailure(test, condition, ...) \ +({ \ +_XCTFailureHandler(test, NO, __FILE__, __LINE__, condition, @"" __VA_ARGS__); \ +}) + +#pragma mark - + +typedef NS_ENUM(NSUInteger, _XCTAssertionType) { + _XCTAssertion_Fail, + _XCTAssertion_Nil, + _XCTAssertion_NotNil, + _XCTAssertion_EqualObjects, + _XCTAssertion_NotEqualObjects, + _XCTAssertion_Equal, + _XCTAssertion_NotEqual, + _XCTAssertion_EqualWithAccuracy, + _XCTAssertion_NotEqualWithAccuracy, + _XCTAssertion_GreaterThan, + _XCTAssertion_GreaterThanOrEqual, + _XCTAssertion_LessThan, + _XCTAssertion_LessThanOrEqual, + _XCTAssertion_True, + _XCTAssertion_False, + _XCTAssertion_Throws, + _XCTAssertion_ThrowsSpecific, + _XCTAssertion_ThrowsSpecificNamed, + _XCTAssertion_NoThrow, + _XCTAssertion_NoThrowSpecific, + _XCTAssertion_NoThrowSpecificNamed, +}; + +XCT_EXPORT NSString * _XCTFailureFormat (_XCTAssertionType assertionType, NSUInteger formatIndex); + +#define _XCTFailureDescription(assertion_type, format_index, ...) \ +({ \ + _Pragma("clang diagnostic push") \ + _Pragma("clang diagnostic ignored \"-Wformat-nonliteral\"") \ + [NSString stringWithFormat:_XCTFailureFormat(assertion_type, format_index), @"" __VA_ARGS__]; \ + _Pragma("clang diagnostic pop") \ +}) + +#pragma mark - + +XCT_EXPORT NSString * _XCTDescriptionForValue (NSValue *value); + +NS_ASSUME_NONNULL_END + +#pragma mark - + +#define _XCTPrimitiveFail(test, ...) \ +({ \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Fail, 0), __VA_ARGS__); \ +}) + +#define _XCTPrimitiveAssertNil(test, expression, expressionStr, ...) \ +({ \ + @try { \ + id expressionValue = (expression); \ + if (expressionValue != nil) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 0, expressionStr, expressionValue), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Nil, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotNil(test, expression, expressionStr, ...) \ +({ \ + @try { \ + id expressionValue = (expression); \ + if (expressionValue == nil) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotNil, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertTrue(test, expression, expressionStr, ...) \ +({ \ + @try { \ + BOOL expressionValue = !!(expression); \ + if (!expressionValue) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_True, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_True, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_True, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertFalse(test, expression, expressionStr, ...) \ +({ \ + @try { \ + BOOL expressionValue = !!(expression); \ + if (expressionValue) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_False, 0, expressionStr), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_False, 1, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_False, 2, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqualObjects(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + id expressionValue1 = (expression1); \ + id expressionValue2 = (expression2); \ + if ((expressionValue1 != expressionValue2) && ![expressionValue1 isEqual:expressionValue2]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 0, expressionStr1, expressionStr2, expressionValue1, expressionValue2), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualObjects, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqualObjects(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + id expressionValue1 = (expression1); \ + id expressionValue2 = (expression2); \ + if ((expressionValue1 == expressionValue2) || [expressionValue1 isEqual:expressionValue2]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 0, expressionStr1, expressionStr2, expressionValue1, expressionValue2), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualObjects, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 != expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_Equal, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 == expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertEqualWithAccuracy(test, expression1, expressionStr1, expression2, expressionStr2, accuracy, accuracyStr, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + __typeof__(accuracy) accuracyValue = (accuracy); \ + if (isnan(expressionValue1) || isnan(expressionValue2) || ((MAX(expressionValue1, expressionValue2) - MIN(expressionValue1, expressionValue2)) > accuracyValue)) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + NSValue *accuracyBox = [NSValue value:&accuracyValue withObjCType:@encode(__typeof__(accuracy))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 0, expressionStr1, expressionStr2, accuracyStr, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2), _XCTDescriptionForValue(accuracyBox)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 1, expressionStr1, expressionStr2, accuracyStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_EqualWithAccuracy, 2, expressionStr1, expressionStr2, accuracyStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNotEqualWithAccuracy(test, expression1, expressionStr1, expression2, expressionStr2, accuracy, accuracyStr, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + __typeof__(accuracy) accuracyValue = (accuracy); \ + if (!isnan(expressionValue1) && !isnan(expressionValue2) && ((MAX(expressionValue1, expressionValue2) - MIN(expressionValue1, expressionValue2)) <= accuracyValue)) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + NSValue *accuracyBox = [NSValue value:&accuracyValue withObjCType:@encode(__typeof__(accuracy))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 0, expressionStr1, expressionStr2, accuracyStr, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2), _XCTDescriptionForValue(accuracyBox)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 1, expressionStr1, expressionStr2, accuracyStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_NotEqualWithAccuracy, 2, expressionStr1, expressionStr2, accuracyStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertGreaterThan(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 <= expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThan, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertGreaterThanOrEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 < expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_GreaterThanOrEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertLessThan(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 >= expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThan, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertLessThanOrEqual(test, expression1, expressionStr1, expression2, expressionStr2, ...) \ +({ \ + @try { \ + __typeof__(expression1) expressionValue1 = (expression1); \ + __typeof__(expression2) expressionValue2 = (expression2); \ + if (expressionValue1 > expressionValue2) { \ + NSValue *expressionBox1 = [NSValue value:&expressionValue1 withObjCType:@encode(__typeof__(expression1))]; \ + NSValue *expressionBox2 = [NSValue value:&expressionValue2 withObjCType:@encode(__typeof__(expression2))]; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 0, expressionStr1, expressionStr2, _XCTDescriptionForValue(expressionBox1), _XCTDescriptionForValue(expressionBox2)), __VA_ARGS__); \ + } \ + } \ + @catch (_XCTestCaseInterruptionException *interruption) { [interruption raise]; } \ + @catch (NSException *exception) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 1, expressionStr1, expressionStr2, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterUnexpectedFailure(test, _XCTFailureDescription(_XCTAssertion_LessThanOrEqual, 2, expressionStr1, expressionStr2), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrows(test, expression, expressionStr, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_Throws, 0, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrowsSpecific(test, expression, expressionStr, exception_class, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + __didThrow = YES; \ + } \ + @catch (NSException *exception) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 0, expressionStr, @#exception_class, [exception class], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 1, expressionStr, @#exception_class), __VA_ARGS__); \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecific, 2, expressionStr, @#exception_class), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertThrowsSpecificNamed(test, expression, expressionStr, exception_class, exception_name, ...) \ +({ \ + BOOL __didThrow = NO; \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + __didThrow = YES; \ + if (![exception_name isEqualToString:[exception name]]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 0, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + } \ + @catch (NSException *exception) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 1, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + __didThrow = YES; \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 2, expressionStr, @#exception_class, exception_name), __VA_ARGS__); \ + } \ + if (!__didThrow) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_ThrowsSpecificNamed, 3, expressionStr, @#exception_class, exception_name), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrow(test, expression, expressionStr, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (NSException *exception) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrow, 0, expressionStr, [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrow, 1, expressionStr), __VA_ARGS__); \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrowSpecific(test, expression, expressionStr, exception_class, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrowSpecific, 0, expressionStr, @#exception_class, [exception class], [exception reason]), __VA_ARGS__); \ + } \ + @catch (...) { \ + ; \ + } \ +}) + +#define _XCTPrimitiveAssertNoThrowSpecificNamed(test, expression, expressionStr, exception_class, exception_name, ...) \ +({ \ + @try { \ + (void)(expression); \ + } \ + @catch (exception_class *exception) { \ + if ([exception_name isEqualToString:[exception name]]) { \ + _XCTRegisterFailure(test, _XCTFailureDescription(_XCTAssertion_NoThrowSpecificNamed, 0, expressionStr, @#exception_class, exception_name, [exception class], [exception name], [exception reason]), __VA_ARGS__); \ + } \ + } \ + @catch (...) { \ + ; \ + } \ +}) diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h new file mode 100644 index 00000000..e4b36c3a --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase+AsynchronousTesting.h @@ -0,0 +1,231 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestExpectation + * + * @discussion + * Expectations represent specific conditions in asynchronous testing. + */ +@interface XCTestExpectation : NSObject { +#ifndef __OBJC2__ + id _internalImplementation; +#endif +} + +/*! + * @method -fulfill + * + * @discussion + * Call -fulfill to mark an expectation as having been met. It's an error to call + * -fulfill on an expectation that has already been fulfilled or when the test case + * that vended the expectation has already completed. + */ +- (void)fulfill; + +@end + +/*! + * @category AsynchronousTesting + * + * @discussion + * This category introduces support for asynchronous testing in XCTestCase. The mechanism + * allows you to specify one or more "expectations" that will occur asynchronously + * as a result of actions in the test. Once all expectations have been set, a "wait" + * API is called that will block execution of subsequent test code until all expected + * conditions have been fulfilled or a timeout occurs. + */ +@interface XCTestCase (AsynchronousTesting) + +/*! + * @method -expectationWithDescription: + * + * @param description + * This string will be displayed in the test log to help diagnose failures. + * + * @discussion + * Creates and returns an expectation associated with the test case. + */ +- (XCTestExpectation *)expectationWithDescription:(NSString *)description; + +/*! + * @typedef XCWaitCompletionHandler + * A block to be invoked when a call to -waitForExpectationsWithTimeout:handler: times out or has + * had all associated expectations fulfilled. + * + * @param error + * If the wait timed out or a failure was raised while waiting, the error's code + * will specify the type of failure. Otherwise error will be nil. + */ +#if XCT_NULLABLE_AVAILABLE +typedef void (^XCWaitCompletionHandler)(NSError * __nullable error); +#else +typedef void (^XCWaitCompletionHandler)(NSError *error); +#endif + +/*! + * @method -waitForExpectationsWithTimeout:handler: + * + * @param timeout + * The amount of time within which all expectations must be fulfilled. + * + * @param handler + * If provided, the handler will be invoked both on timeout or fulfillment of all + * expectations. Timeout is always treated as a test failure. + * + * @discussion + * -waitForExpectationsWithTimeout:handler: creates a point of synchronization in the flow of a + * test. Only one -waitForExpectationsWithTimeout:handler: can be active at any given time, but + * multiple discrete sequences of { expectations -> wait } can be chained together. + * + * -waitForExpectationsWithTimeout:handler: runs the run loop while handling events until all expectations + * are fulfilled or the timeout is reached. Clients should not manipulate the run + * loop while using this API. + */ +#if XCT_NULLABLE_AVAILABLE +- (void)waitForExpectationsWithTimeout:(NSTimeInterval)timeout handler:(nullable XCWaitCompletionHandler)handler; +#else +- (void)waitForExpectationsWithTimeout:(NSTimeInterval)timeout handler:(XCWaitCompletionHandler)handler; +#endif + +#pragma mark Convenience APIs + +/*! + * @method -keyValueObservingExpectationForObject:keyPath:expectedValue: + * + * @discussion + * A convenience method for asynchronous tests that use Key Value Observing to detect changes + * to values on an object. This variant takes an expected value and observes changes on the object + * until the keyPath's value matches the expected value using -[NSObject isEqual:]. If + * other comparisions are needed, use the variant below that takes a handler block. + * + * @param objectToObserve + * The object to observe. + * + * @param keyPath + * The key path to observe. + * + * @param expectedValue + * Expected value of the keyPath for the object. The expectation will fulfill itself when the + * keyPath is equal, as tested using -[NSObject isEqual:]. If nil, the expectation will be + * fulfilled by the first change to the key path of the observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath expectedValue:(nullable id)expectedValue; +#else +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath expectedValue:(id)expectedValue; +#endif + +/*! + * @typedef + * A block to be invoked when a change is observed for the keyPath of the observed object. + * + * @param observedObject + * The observed object, provided to avoid block capture issues. + * + * @param change + * The KVO change dictionary. + * + * @return + * Return YES if the expectation is fulfilled, NO if it is not. + */ +typedef BOOL (^XCKeyValueObservingExpectationHandler)(id observedObject, NSDictionary *change); + +/*! + * @method -keyValueObservingExpectationForObject:keyPath:handler: + * + * @discussion + * Variant of the convenience for tests that use Key Value Observing. Takes a handler + * block instead of an expected value. Every KVO change will run the handler block until + * it returns YES (or the wait times out). Returning YES from the block will fulfill the + * expectation. XCTAssert and related APIs can be used in the block to report a failure. + * + * @param objectToObserve + * The object to observe. + * + * @param keyPath + * The key path to observe. + * + * @param handler + * Optional handler, /see XCKeyValueObservingExpectationHandler. If not provided, the expectation will + * be fulfilled by the first change to the key path of the observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath handler:(nullable XCKeyValueObservingExpectationHandler)handler; +#else +- (XCTestExpectation *)keyValueObservingExpectationForObject:(id)objectToObserve keyPath:(NSString *)keyPath handler:(XCKeyValueObservingExpectationHandler)handler; +#endif + +/*! + * @typedef + * A block to be invoked when a notification matching the specified name is observed + * from the object. + * + * @param notification + * The notification object. + * + * @return + * Return YES if the expectation is fulfilled, NO if it is not. + */ +typedef BOOL (^XCNotificationExpectationHandler)(NSNotification *notification); + +/*! + * @method -expectationForNotification:object:handler: + * + * @discussion + * A convenience method for asynchronous tests that observe NSNotifications. + * + * @param notificationName + * The notification to register for. + * + * @param objectToObserve + * The object to observe. + * + * @param handler + * Optional handler, /see XCNotificationExpectationHandler. If not provided, the expectation + * will be fulfilled by the first notification matching the specified name from the + * observed object. + * + * @return + * Creates and returns an expectation associated with the test case. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)expectationForNotification:(NSString *)notificationName object:(nullable id)objectToObserve handler:(nullable XCNotificationExpectationHandler)handler; +#else +- (XCTestExpectation *)expectationForNotification:(NSString *)notificationName object:(id)objectToObserve handler:(XCNotificationExpectationHandler)handler; +#endif + +/*! + * @typedef + * Handler called when evaluating the predicate against the object returns true. If the handler is not + * provided the first successful evaluation will fulfill the expectation. If provided, the handler can + * override that behavior which leaves the caller responsible for fulfilling the expectation. + */ +typedef BOOL (^XCPredicateExpectationHandler)(); + +/*! + * @method -expectationForPredicate:evaluatedWithObject:handler: + * Creates an expectation that is fulfilled if the predicate returns true when evaluated with the given + * object. The expectation periodically evaluates the predicate and also may use notifications or other + * events to optimistically re-evaluate. + */ +#if XCT_NULLABLE_AVAILABLE +- (XCTestExpectation *)expectationForPredicate:(NSPredicate *)predicate evaluatedWithObject:(id)object handler:(nullable XCPredicateExpectationHandler)handler; +#else +- (XCTestExpectation *)expectationForPredicate:(NSPredicate *)predicate evaluatedWithObject:(id)object handler:(XCPredicateExpectationHandler)handler; +#endif + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h new file mode 100644 index 00000000..b8b8cf9d --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCase.h @@ -0,0 +1,317 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestSuite; +@class XCTestCaseRun; + +#if XCT_UI_TESTING_AVAILABLE +@class XCUIElement; +#endif + +/*! + * @class XCTestCase + * XCTestCase is a concrete subclass of XCTest that should be the override point for + * most developers creating tests for their projects. A test case subclass can have + * multiple test methods and supports setup and tear down that executes for every test + * method as well as class level setup and tear down. + * + * To define a test case: + * + * • Create a subclass of XCTestCase. + * • Implement -test methods. + * • Optionally define instance variables or properties that store the state of the test. + * • Optionally initialize state by overriding -setUp + * • Optionally clean-up after a test by overriding -tearDown. + * + * Test methods are instance methods meeting these requirements: + * • accepting no parameters + * • returning no value + * • prefixed with 'test' + * + * For example: + + - (void)testSomething; + + * Test methods are automatically recognized as test cases by the XCTest framework. + * Each XCTestCase subclass's defaultTestSuite is a XCTestSuite which includes these + * tests. Test method implementations usually contain assertions that must be verified + * for the test to pass, for example: + + @interface MathTest : XCTestCase { + @private + float f1; + float f2; + } + + - (void)testAddition; + + @end + + @implementation MathTest + + - (void)setUp + { + f1 = 2.0; + f2 = 3.0; + } + + - (void)testAddition + { + XCTAssertTrue (f1 + f2 == 5.0); + } + @end + */ +@interface XCTestCase : XCTest { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + +/*! + * @method +testCaseWithInvocation: + */ +#if XCT_NULLABLE_AVAILABLE ++ (instancetype)testCaseWithInvocation:(nullable NSInvocation *)invocation; +#else ++ (instancetype)testCaseWithInvocation:(NSInvocation *)invocation; +#endif + +/*! + * @method -initWithInvocation: + */ +#if XCT_NULLABLE_AVAILABLE +- (instancetype)initWithInvocation:(nullable NSInvocation *)invocation; +#else +- (instancetype)initWithInvocation:(NSInvocation *)invocation; +#endif + +/*! + * @method +testCaseWithSelector: + */ ++ (instancetype)testCaseWithSelector:(SEL)selector; + +/*! + * @method -initWithSelector: + */ +- (instancetype)initWithSelector:(SEL)selector; + +/*! + * @property invocation + * The invocation used when this test is run. + */ +#if XCT_NULLABLE_AVAILABLE +@property (strong, nullable) NSInvocation *invocation; +#else +@property (strong) NSInvocation *invocation; +#endif + +/*! + * @method -invokeTest + * Invoking a test performs its setUp, invocation, and tearDown. In general this + * should not be called directly. + */ +- (void)invokeTest; + +/*! + * @property continueAfterFailure + * The test case behavior after a failure. Defaults to YES. + */ +@property BOOL continueAfterFailure; + +/*! + * @method -recordFailureWithDescription:inFile:atLine:expected: + * Records a failure in the execution of the test and is used by all test assertions. + * + * @param description The description of the failure being reported. + * + * @param filePath The file path to the source file where the failure being reported + * was encountered. + * + * @param lineNumber The line number in the source file at filePath where the + * failure being reported was encountered. + * + * @param expected YES if the failure being reported was the result of a failed assertion, + * NO if it was the result of an uncaught exception. + * + */ +- (void)recordFailureWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; + +/*! + * @method +testInvocations + * Invocations for each test method in the test case. + */ +#if XCT_GENERICS_AVAILABLE ++ (NSArray *)testInvocations; +#else ++ (NSArray *)testInvocations; +#endif + +#pragma mark - Measuring Performance Metrics + +/*! + * @const XCTPerformanceMetric_WallClockTime + * Records wall clock time in seconds between startMeasuring/stopMeasuring. + */ +XCT_EXPORT NSString * const XCTPerformanceMetric_WallClockTime; + +/*! + * @method +defaultPerformanceMetrics + * The names of the performance metrics to measure when invoking -measureBlock:. Returns XCTPerformanceMetric_WallClockTime by default. Subclasses can override this to change the behavior of -measureBlock: + */ +#if XCT_GENERICS_AVAILABLE ++ (NSArray *)defaultPerformanceMetrics; +#else ++ (NSArray *)defaultPerformanceMetrics; +#endif + +/*! + * @method -measureBlock: + * + * Call from a test method to measure resources (+defaultPerformanceMetrics) used by the + * block in the current process. + + - (void)testPerformanceOfMyFunction { + + [self measureBlock:^{ + // Do that thing you want to measure. + MyFunction(); + }]; + } + + * @param block A block whose performance to measure. + */ +- (void)measureBlock:(void (^)(void))block; + +/*! + * @method -measureMetrics:automaticallyStartMeasuring:forBlock: + * + * Call from a test method to measure resources (XCTPerformanceMetrics) used by the + * block in the current process. Each metric will be measured across calls to the block. + * The number of times the block will be called is undefined and may change in the + * future. For one example of why, as long as the requested performance metrics do + * not interfere with each other the API will measure all metrics across the same + * calls to the block. If the performance metrics may interfere the API will measure + * them separately. + + - (void)testMyFunction2_WallClockTime { + [self measureMetrics:[[self class] defaultPerformanceMetrics] automaticallyStartMeasuring:NO forBlock:^{ + + // Do setup work that needs to be done for every iteration but you don't want to measure before the call to -startMeasuring + SetupSomething(); + [self startMeasuring]; + + // Do that thing you want to measure. + MyFunction(); + [self stopMeasuring]; + + // Do teardown work that needs to be done for every iteration but you don't want to measure after the call to -stopMeasuring + TeardownSomething(); + }]; + } + + * Caveats: + * • If YES was passed for automaticallyStartMeasuring and -startMeasuring is called + * anyway, the test will fail. + * • If NO was passed for automaticallyStartMeasuring then -startMeasuring must be + * called once and only once before the end of the block or the test will fail. + * • If -stopMeasuring is called multiple times during the block the test will fail. + * + * @param metrics An array of NSStrings (XCTPerformanceMetrics) to measure. Providing an unrecognized string is a test failure. + * + * @param automaticallyStartMeasuring If NO, XCTestCase will not take any measurements until -startMeasuring is called. + * + * @param block A block whose performance to measure. + */ +#if XCT_GENERICS_AVAILABLE +- (void)measureMetrics:(NSArray *)metrics automaticallyStartMeasuring:(BOOL)automaticallyStartMeasuring forBlock:(void (^)(void))block; +#else +- (void)measureMetrics:(NSArray *)metrics automaticallyStartMeasuring:(BOOL)automaticallyStartMeasuring forBlock:(void (^)(void))block; +#endif + +/*! + * @method -startMeasuring + * Call this from within a measure block to set the beginning of the critical section. + * Measurement of metrics will start at this point. + */ +- (void)startMeasuring; + +/*! + * @method -stopMeasuring + * Call this from within a measure block to set the ending of the critical section. + * Measurement of metrics will stop at this point. + */ +- (void)stopMeasuring; + +#pragma mark - UI Testing Support +#if XCT_UI_TESTING_AVAILABLE + +/*! Adds a handler to the current context. Returns a token that can be used to unregister the handler. Handlers are invoked in the reverse order in which they are added until one of the handlers returns true, indicating that it has handled the alert. + @param handlerDescription Explanation of the behavior and purpose of this handler, mainly used for debugging and analysis. + @param handler Handler block for asynchronous UI such as alerts and other dialogs. Handlers should return true if they handled the UI, false if they did not. The handler is passed an XCUIElement representing the top level UI element for the alert. + */ +- (id )addUIInterruptionMonitorWithDescription:(NSString *)handlerDescription handler:(BOOL (^)(XCUIElement *interruptingElement))handler; + +/*! Removes a handler using the token provided when it was added. */ +- (void)removeUIInterruptionMonitor:(id )monitor; + +#endif + +@end + +@interface XCTestCase (XCTestSuiteExtensions) + +/*! + * @method +defaultTestSuite + * Returns a test suite containing test cases for all of the tests in the class. + */ ++ (XCTestSuite *)defaultTestSuite; + +/*! + * @method +setUp + * Setup method called before the invocation of any test method in the class. + */ ++ (void)setUp; + +/*! + * @method +testDown + * Teardown method called after the invocation of every test method in the class. + */ ++ (void)tearDown; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h new file mode 100644 index 00000000..b530349f --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestCaseRun.h @@ -0,0 +1,44 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestCase; + +@interface XCTestCaseRun : XCTestRun + +- (void)recordFailureInTest:(XCTestCase *)testCase withDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected DEPRECATED_ATTRIBUTE; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h new file mode 100644 index 00000000..d6b8b96a --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestDefines.h @@ -0,0 +1,70 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +#if defined(__cplusplus) + #define XCT_EXPORT extern "C" +#else + #define XCT_EXPORT extern +#endif + +#if __has_feature(objc_generics) +#define XCT_GENERICS_AVAILABLE 1 +#endif + +#if __has_feature(nullability) +#define XCT_NULLABLE_AVAILABLE 1 +#endif + +#if (!defined(__OBJC_GC__) || (defined(__OBJC_GC__) && ! __OBJC_GC__)) && (defined(__OBJC2__) && __OBJC2__) && (!defined (TARGET_OS_WATCH) || (defined(TARGET_OS_WATCH) && ! TARGET_OS_WATCH)) +#ifndef XCT_UI_TESTING_AVAILABLE +#define XCT_UI_TESTING_AVAILABLE 1 +#endif +#endif + +#ifndef XCT_NULLABLE_AVAILABLE +#define XCT_NULLABLE_AVAILABLE 0 +#endif + +#ifndef XCT_GENERICS_AVAILABLE +#define XCT_GENERICS_AVAILABLE 0 +#endif + +#ifndef XCT_UI_TESTING_AVAILABLE +#define XCT_UI_TESTING_AVAILABLE 0 +#endif + +#if TARGET_OS_SIMULATOR +#define XCTEST_SIMULATOR_UNAVAILABLE(_msg) __attribute__((availability(ios,unavailable,message=_msg))) +#else +#define XCTEST_SIMULATOR_UNAVAILABLE(_msg) +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h new file mode 100644 index 00000000..f1dc3981 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestErrors.h @@ -0,0 +1,24 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +/*! + * @const XCTestErrorDomain + * Domain for errors provided by the XCTest framework. + */ +XCT_EXPORT NSString *const XCTestErrorDomain; + +/*! + * @typedef XCTestErrorCode + * Error codes used with errors in the XCTestErrorDomain. + * + * @constant XCTestErrorCodeTimeoutWhileWaiting Indicates that a call to -waitForExpectationsWithTimeout:handler: timed out. + * @constant XCTestErrorCodeFailureWhileWaiting Indicates that a failure assertion was raised while waiting in -waitForExpectationsWithTimeout:handler:. + */ +typedef NS_ENUM(NSInteger, XCTestErrorCode) { + XCTestErrorCodeTimeoutWhileWaiting, + XCTestErrorCodeFailureWhileWaiting, +}; + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h new file mode 100644 index 00000000..226a96f1 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestLog.h @@ -0,0 +1,49 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +/*! + * XCTestLog is deprecated. + */ + +DEPRECATED_ATTRIBUTE +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wdeprecated-declarations" +@interface XCTestLog : XCTestObserver +#pragma clang diagnostic pop + +@property (readonly, strong) NSFileHandle *logFileHandle; +- (void)testLogWithFormat:(NSString *)format, ... NS_FORMAT_FUNCTION(1,2); +- (void)testLogWithFormat:(NSString *)format arguments:(va_list)arguments NS_FORMAT_FUNCTION(1,0); + +@end + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h new file mode 100644 index 00000000..127daa05 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservation.h @@ -0,0 +1,122 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +NS_ASSUME_NONNULL_BEGIN + +@class XCTestSuite, XCTestCase; + +/*! + * @protocol XCTestObservation + * + * Objects conforming to XCTestObservation can register to be notified of the progress of test runs. See XCTestObservationCenter + * for details on registration. + * + * Progress events are delivered in the following sequence: + * + * -testBundleWillStart: // exactly once per test bundle + * -testSuiteWillStart: // exactly once per test suite + * -testCaseWillStart: // exactly once per test case + * -testCase:didFailWithDescription:... // zero or more times per test case, any time between test case start and finish + * -testCaseDidFinish: // exactly once per test case + * -testSuite:didFailWithDescription:... // zero or more times per test suite, any time between test suite start and finish + * -testSuiteDidFinish: // exactly once per test suite + * -testBundleDidFinish: // exactly once per test bundle + */ +@protocol XCTestObservation +@optional + +/*! + * @method -testBundleWillStart: + * + * Sent immediately before tests begin as a hook for any pre-testing setup. + * + * @param testBundle The bundle containing the tests that were executed. + */ +- (void)testBundleWillStart:(NSBundle *)testBundle; + +/*! + * @method -testBundleDidFinish: + * + * Sent immediately after all tests have finished as a hook for any post-testing activity. The test process will generally + * exit after this method returns, so if there is long running and/or asynchronous work to be done after testing, be sure + * to implement this method in a way that it blocks until all such activity is complete. + * + * @param testBundle The bundle containing the tests that were executed. + */ +- (void)testBundleDidFinish:(NSBundle *)testBundle; + +/*! + * @method -testSuiteWillStart: + * + * Sent when a test suite starts executing. + * + * @param testSuite The test suite that started. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testSuiteWillStart:(XCTestSuite *)testSuite; + +/*! + * @method -testSuiteDidFail:withDescription:inFile:atLine: + * + * Sent when a test suite reports a failure. Suite failures are most commonly reported during suite-level setup and teardown + * whereas failures during tests are reported for the test case alone and are not reported as suite failures. + * + * @param testSuite The test suite that failed. Additional information can be retrieved from the associated XCTestRun. + * @param description A textual description of the failure. + * @param filePath The path of file where the failure occurred, nil if unknown. + * @param lineNumber The line where the failure was reported. + */ +#if XCT_NULLABLE_AVAILABLE +- (void)testSuite:(XCTestSuite *)testSuite didFailWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber; +#else +- (void)testSuite:(XCTestSuite *)testSuite didFailWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; +#endif + +/*! + * @method -testSuiteDidFinish: + * + * Sent when a test suite finishes executing. + * + * @param testSuite The test suite that finished. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testSuiteDidFinish:(XCTestSuite *)testSuite; + +/*! + * @method -testCaseWillStart: + * + * Sent when a test case starts executing. + * + * @param testCase The test case that started. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testCaseWillStart:(XCTestCase *)testCase; + +/*! + * @method -testCaseDidFail:withDescription:inFile:atLine: + * + * Sent when a test case reports a failure. + * + * @param testCase The test case that failed. Additional information can be retrieved from the associated XCTestRun. + * @param description A textual description of the failure. + * @param filePath The path of file where the failure occurred, nil if unknown. + * @param lineNumber The line where the failure was reported. + */ +#if XCT_NULLABLE_AVAILABLE +- (void)testCase:(XCTestCase *)testCase didFailWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber; +#else +- (void)testCase:(XCTestCase *)testCase didFailWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; +#endif + +/*! + * @method -testCaseDidFinish: + * + * Sent when a test case finishes executing. + * + * @param testCase The test case that finished. Additional information can be retrieved from the associated XCTestRun. + */ +- (void)testCaseDidFinish:(XCTestCase *)testCase; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h new file mode 100644 index 00000000..961bf06d --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObservationCenter.h @@ -0,0 +1,59 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// + +#import + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestObservationCenter + * + * The XCTestObservationCenter distributes information about the progress of test runs to registered + * observers. Observers can be any object conforming to the XCTestObservation protocol. + * + * If an NSPrincipalClass is declared in the test bundle's Info.plist, XCTest automatically creates a + * single instance of that class when the test bundle is loaded. This instance provides a means to register + * observers or do other pretesting global set up. + * + * Observers must be registered manually. The NSPrincipalClass instance is not automatically + * registered as an observer even if the class conforms to . + */ +@interface XCTestObservationCenter : NSObject { +#ifndef __OBJC2__ +@private + id _internalImplementation; +#endif +} + +/*! + * @method +sharedTestObservationCenter + * + * @return The shared XCTestObservationCenter singleton instance. + */ ++ (XCTestObservationCenter *)sharedTestObservationCenter; + +/*! + * @method -addTestObserver: + * + * Register an object conforming to XCTestObservation as an observer for the current test session. Observers may be added + * at any time, but will not receive events that occurred before they were registered. The observation center maintains a strong + * reference to observers. + * + * Events may be delivered to observers in any order - given observers A and B, A may be notified of a test failure before + * or after B. Any ordering dependencies or serialization requirements must be managed by clients. + */ +- (void)addTestObserver:(id )testObserver; + +/*! + * @method -removeTestObserver: + * + * Unregister an object conforming to XCTestObservation as an observer for the current test session. + */ +- (void)removeTestObserver:(id )testObserver; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h new file mode 100644 index 00000000..839c5775 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestObserver.h @@ -0,0 +1,55 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +@class XCTestRun; + +/*! + * XCTestObserver is deprecated. + */ +DEPRECATED_ATTRIBUTE +@interface XCTestObserver : NSObject + +- (void)startObserving; +- (void)stopObserving; +- (void)testSuiteDidStart:(XCTestRun *)testRun; +- (void)testSuiteDidStop:(XCTestRun *)testRun; +- (void)testCaseDidStart:(XCTestRun *)testRun; +- (void)testCaseDidStop:(XCTestRun *)testRun; +- (void)testCaseDidFail:(XCTestRun *)testRun withDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber; + +@end + +/*! + * XCTestObserverClassKey is deprecated. + */ +XCT_EXPORT NSString * const XCTestObserverClassKey DEPRECATED_ATTRIBUTE; diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h new file mode 100644 index 00000000..1f5455ed --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestProbe.h @@ -0,0 +1,50 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +#import + +XCT_EXPORT int XCTSelfTestMain(void) DEPRECATED_ATTRIBUTE; + +DEPRECATED_ATTRIBUTE +@interface XCTestProbe : NSObject + ++ (BOOL)isTesting; + +@end + +XCT_EXPORT NSString * const XCTestedUnitPath DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeKey DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeAll DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeNone DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestScopeSelf DEPRECATED_ATTRIBUTE; +XCT_EXPORT NSString * const XCTestToolKey DEPRECATED_ATTRIBUTE; diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h new file mode 100644 index 00000000..7e22b4fd --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestRun.h @@ -0,0 +1,180 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestRun + * A test run collects information about the execution of a test. Failures in explicit + * test assertions are classified as "expected", while failures from unrelated or + * uncaught exceptions are classified as "unexpected". + */ +@interface XCTestRun : NSObject { +#ifndef __OBJC2__ +@private + id _internalTestRun; +#endif +} + +/*! + * @method +testRunWithTest: + * Class factory method for the XCTestRun class. + * + * @param test An XCTest instance. + * + * @return A test run for the provided test. + */ ++ (instancetype)testRunWithTest:(XCTest *)test; + +/*! + * @method -initWithTest: + * Designated initializer for the XCTestRun class. + * + * @param test An XCTest instance. + * + * @return A test run for the provided test. + */ +- (instancetype)initWithTest:(XCTest *)test NS_DESIGNATED_INITIALIZER; + +/*! + * @property test + * The test instance provided when the test run was initialized. + */ +@property (readonly, strong) XCTest *test; + +/*! + * @method -start + * Start a test run. Must not be called more than once. + */ +- (void)start; + +/*! + * @method -stop + * Stop a test run. Must not be called unless the run has been started. Must not be called more than once. + */ +- (void)stop; + +/*! + * @property startDate + * The time at which the test run was started, or nil. + */ +#if XCT_NULLABLE_AVAILABLE +@property (readonly, copy, nullable) NSDate *startDate; +#else +@property (readonly, copy) NSDate *startDate; +#endif + +/*! + * @property stopDate + * The time at which the test run was stopped, or nil. + */ +#if XCT_NULLABLE_AVAILABLE +@property (readonly, copy, nullable) NSDate *stopDate; +#else +@property (readonly, copy) NSDate *stopDate; +#endif + +/*! + * @property totalDuration + * The number of seconds that elapsed between when the run was started and when it was stopped. + */ +@property (readonly) NSTimeInterval totalDuration; + +/*! + * @property testDuration + * The number of seconds that elapsed between when the run was started and when it was stopped. + */ +@property (readonly) NSTimeInterval testDuration; + +/*! + * @property testCaseCount + * The number of tests in the run. + */ +@property (readonly) NSUInteger testCaseCount; + +/*! + * @property executionCount + * The number of test executions recorded during the run. + */ +@property (readonly) NSUInteger executionCount; + +/*! + * @property failureCount + * The number of test failures recorded during the run. + */ +@property (readonly) NSUInteger failureCount; + +/*! + * @property unexpectedExceptionCount + * The number of uncaught exceptions recorded during the run. + */ +@property (readonly) NSUInteger unexpectedExceptionCount; + +/*! + * @property totalFailureCount + * The total number of test failures and uncaught exceptions recorded during the run. + */ +@property (readonly) NSUInteger totalFailureCount; + +/*! + * @property hasSucceeded + * YES if all tests in the run completed their execution without recording any failures, otherwise NO. + */ +@property (readonly) BOOL hasSucceeded; + +/*! + * @method -recordFailureWithDescription:inFile:atLine:expected: + * Records a failure in the execution of the test for this test run. Must not be called + * unless the run has been started. Must not be called if the test run has been stopped. + * + * @param description The description of the failure being reported. + * + * @param filePath The file path to the source file where the failure being reported + * was encountered or nil if unknown. + * + * @param lineNumber The line number in the source file at filePath where the + * failure being reported was encountered. + * + * @param expected YES if the failure being reported was the result of a failed assertion, + * NO if it was the result of an uncaught exception. + * + */ +#if XCT_NULLABLE_AVAILABLE +- (void)recordFailureWithDescription:(NSString *)description inFile:(nullable NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; +#else +- (void)recordFailureWithDescription:(NSString *)description inFile:(NSString *)filePath atLine:(NSUInteger)lineNumber expected:(BOOL)expected; +#endif + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h new file mode 100644 index 00000000..6d95c4ba --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuite.h @@ -0,0 +1,90 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @class XCTestSuite + * A concrete subclass of XCTest, XCTestSuite is a collection of test cases. Suites + * are usually managed by the IDE, but XCTestSuite also provides API for dynamic test + * and suite management: + + XCTestSuite *suite = [XCTestSuite testSuiteWithName:@"My tests"]; + [suite addTest:[MathTest testCaseWithSelector:@selector(testAdd)]]; + [suite addTest:[MathTest testCaseWithSelector:@selector(testDivideByZero)]]; + + * Alternatively, a test suite can extract the tests to be run automatically. To do so, + * pass the class of your test case class to the suite's constructor: + + XCTestSuite *suite = [XCTestSuite testSuiteForTestCaseClass:[MathTest class]]; + + * This creates a suite with all the methods starting with "test" that take no arguments. + * Also, a test suite of all the test cases found in the runtime can be created automatically: + + XCTestSuite *suite = [XCTestSuite defaultTestSuite]; + + * This creates a suite of suites with all the XCTestCase subclasses methods that start + * with "test" and take no arguments. + */ +@interface XCTestSuite : XCTest { +#ifndef __OBJC2__ +@private + NSString *_name; +#if XCT_GENERICS_AVAILABLE + NSMutableArray <__kindof XCTest *> *_tests; +#else + NSMutableArray *_tests; +#endif +#endif +} + ++ (instancetype)defaultTestSuite; ++ (instancetype)testSuiteForBundlePath:(NSString *)bundlePath; ++ (instancetype)testSuiteForTestCaseWithName:(NSString *)name; ++ (instancetype)testSuiteForTestCaseClass:(Class)testCaseClass; + ++ (instancetype)testSuiteWithName:(NSString *)name; +- (instancetype)initWithName:(NSString *)name; + +- (void)addTest:(XCTest *)test; + +#if XCT_GENERICS_AVAILABLE +@property (readonly, copy) NSArray <__kindof XCTest *> *tests; +#else +@property (readonly, copy) NSArray *tests; +#endif + +@end + +NS_ASSUME_NONNULL_END + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h new file mode 100644 index 00000000..22b4a397 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCTestSuiteRun.h @@ -0,0 +1,57 @@ +// +// Copyright (c) 2013-2015 Apple Inc. All rights reserved. +// +// Copyright (c) 1997-2005, Sen:te (Sente SA). All rights reserved. +// +// Use of this source code is governed by the following license: +// +// Redistribution and use in source and binary forms, with or without modification, +// are permitted provided that the following conditions are met: +// +// (1) Redistributions of source code must retain the above copyright notice, +// this list of conditions and the following disclaimer. +// +// (2) Redistributions in binary form must reproduce the above copyright notice, +// this list of conditions and the following disclaimer in the documentation +// and/or other materials provided with the distribution. +// +// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS'' +// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED +// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. +// IN NO EVENT SHALL Sente SA OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, +// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT +// OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +// HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +// OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, +// EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. +// +// Note: this license is equivalent to the FreeBSD license. +// +// This notice may not be removed from this file. + +#import + +NS_ASSUME_NONNULL_BEGIN + +@interface XCTestSuiteRun : XCTestRun { +#ifndef __OBJC2__ +@private +#if XCT_GENERICS_AVAILABLE + NSMutableArray *_testRuns; +#else + NSMutableArray *_testRuns; +#endif +#endif +} + +#if XCT_GENERICS_AVAILABLE +@property (readonly, copy) NSArray *testRuns; +#else +@property (readonly, copy) NSArray *testRuns; +#endif + +- (void)addTestRun:(XCTestRun *)testRun; + +@end + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h new file mode 100644 index 00000000..0b3b67cc --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIApplication.h @@ -0,0 +1,54 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +NS_CLASS_AVAILABLE(10_11, 9_0) + +/*! Proxy for an application. The information identifying the application is specified in the Xcode target settings as the "Target Application". */ +@interface XCUIApplication : XCUIElement + +/*! + * Launches the application. This call is synchronous and when it returns the application is launched + * and ready to handle user events. Any failure in the launch sequence is reported as a test failure + * and halts the test at this point. If the application is already running, this call will first + * terminate the existing instance to ensure clean state of the launched instance. + */ +- (void)launch; + +/*! + * Terminates any running instance of the application. If the application has an existing debug session + * via Xcode, the termination is implemented as a halt via that debug connection. Otherwise, a SIGKILL + * is sent to the process. + */ +- (void)terminate; + +/*! + * The arguments that will be passed to the application on launch. If not modified, these are the + * arguments that Xcode will pass on launch. Those arguments can be changed, added to, or removed. + * Unlike NSTask, it is legal to modify these arguments after the application has been launched. These + * changes will not affect the current launch session, but will take effect the next time the application + * is launched. + */ +@property (nonatomic, copy) NSArray *launchArguments; + +/*! + * The environment that will be passed to the application on launch. If not modified, this is the + * environment that Xcode will pass on launch. Those variables can be changed, added to, or removed. + * Unlike NSTask, it is legal to modify the environment after the application has been launched. These + * changes will not affect the current launch session, but will take effect the next time the application + * is launched. + */ +@property (nonatomic, copy) NSDictionary *launchEnvironment; + +@end + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h new file mode 100644 index 00000000..c7f7584b --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUICoordinate.h @@ -0,0 +1,55 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if TARGET_OS_IPHONE +#import +#else +#import +#endif + + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE && !TARGET_OS_TV + +@class XCUIElement; + +NS_CLASS_AVAILABLE(10_11, 9_0) + +/*! A coordinate represents a location on screen, relative to some element. Coordinates are dynamic, just like the elements to which they refer, and may compute different screen locations at different times, or be invalid if the referenced element does not exist. */ +@interface XCUICoordinate : NSObject + +/*! Coordinates are never instantiated directly. Instead, they are created by elements or by other coordinates. */ +- (instancetype)init NS_UNAVAILABLE; + +/*! The element that the coordinate is based on, either directly or via the coordinate from which it was derived. */ +@property (readonly) XCUIElement *referencedElement; + +/*! The dynamically computed value of the coordinate's location on screen. Note that this value is dependent on the current frame of the referenced element; if the element's frame changes, so will the value returned by this property. If the referenced element does exist when this is called, it will fail the test; check the referenced element's exists property if the element may not be present. */ +@property (readonly) CGPoint screenPoint; + +/*! Creates a new coordinate with an absolute offset in points from the original coordinate. */ +- (XCUICoordinate *)coordinateWithOffset:(CGVector)offsetVector; + +#if TARGET_OS_IPHONE +- (void)tap; +- (void)doubleTap; +- (void)pressForDuration:(NSTimeInterval)duration; +- (void)pressForDuration:(NSTimeInterval)duration thenDragToCoordinate:(XCUICoordinate *)otherCoordinate; +#else +- (void)hover; +- (void)click; +- (void)doubleClick; +- (void)rightClick; +- (void)clickForDuration:(NSTimeInterval)duration thenDragToCoordinate:(XCUICoordinate *)otherCoordinate; +- (void)scrollByDeltaX:(CGFloat)deltaX deltaY:(CGFloat)deltaY; +#endif + +@end + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h new file mode 100644 index 00000000..00585f25 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIDevice.h @@ -0,0 +1,57 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +#if TARGET_OS_IPHONE + +#import + +NS_ASSUME_NONNULL_BEGIN + +/*! + * @enum XCUIDeviceButton + * + * Represents a physical button on a device. + * + * @note Some buttons are not available in the Simulator, and should not be used in your tests. + * You can use a block like this: + * + * #if !TARGET_OS_SIMULATOR + * // test code that depends on buttons not available in the Simulator + * #endif + * + * in your test code to ensure it does not call unavailable APIs. + */ +typedef NS_ENUM(NSInteger, XCUIDeviceButton) { + XCUIDeviceButtonHome = 1, + XCUIDeviceButtonVolumeUp XCTEST_SIMULATOR_UNAVAILABLE("This API is not available in the Simulator, see the XCUIDeviceButton documentation for details.") = 2, + XCUIDeviceButtonVolumeDown XCTEST_SIMULATOR_UNAVAILABLE("This API is not available in the Simulator, see the XCUIDeviceButton documentation for details.") = 3 +}; + +/*! Represents a device, providing an interface for simulating events involving physical buttons and device state. */ +NS_CLASS_AVAILABLE(NA, 9_0) +@interface XCUIDevice : NSObject + +/*! The current device. */ ++ (XCUIDevice *)sharedDevice; + +#if TARGET_OS_IOS +/*! The orientation of the device. */ +@property (nonatomic) UIDeviceOrientation orientation; +#endif + +/*! Simulates the user pressing a physical button. */ +- (void)pressButton:(XCUIDeviceButton)button; + +@end + +NS_ASSUME_NONNULL_END + +#endif + +#endif + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h new file mode 100644 index 00000000..ddd48af4 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElement.h @@ -0,0 +1,261 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import + +#if TARGET_OS_IPHONE +#import +#else +#import +#endif + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +NS_ENUM_AVAILABLE(10_11, 9_0) +typedef NS_OPTIONS(NSUInteger, XCUIKeyModifierFlags) { + XCUIKeyModifierNone = 0, + XCUIKeyModifierAlphaShift = (1UL << 0), + XCUIKeyModifierShift = (1UL << 1), + XCUIKeyModifierControl = (1UL << 2), + XCUIKeyModifierAlternate = (1UL << 3), + XCUIKeyModifierOption = XCUIKeyModifierAlternate, + XCUIKeyModifierCommand = (1UL << 4), +}; + +@class XCUIElementQuery; +@class XCUICoordinate; + +/*! + * @class XCUIElement (/seealso XCUIElementAttributes) + * Elements are objects encapsulating the information needed to dynamically locate a user interface + * element in an application. Elements are described in terms of queries /seealso XCUIElementQuery. + */ +NS_CLASS_AVAILABLE(10_11, 9_0) +@interface XCUIElement : NSObject + +/*! Test to determine if the element exists. */ +@property (readonly) BOOL exists; + +/*! Whether or not a hit point can be computed for the element for the purpose of synthesizing events. */ +@property (readonly, getter = isHittable) BOOL hittable; + +/*! Returns a query for all descendants of the element matching the specified type. */ +- (XCUIElementQuery *)descendantsMatchingType:(XCUIElementType)type; + +/*! Returns a query for direct children of the element matching the specified type. */ +- (XCUIElementQuery *)childrenMatchingType:(XCUIElementType)type; + +#if !TARGET_OS_TV +/*! Creates and returns a new coordinate that will compute its screen point by adding the offset multiplied by the size of the element’s frame to the origin of the element’s frame. */ +- (XCUICoordinate *)coordinateWithNormalizedOffset:(CGVector)normalizedOffset; +#endif + +/*! + @discussion + Provides debugging information about the element. The data in the string will vary based on the + time at which it is captured, but it may include any of the following as well as additional data: + • Values for the elements attributes. + • The entire tree of descendants rooted at the element. + • The element's query. + This data should be used for debugging only - depending on any of the data as part of a test is unsupported. + */ +@property (readonly, copy) NSString *debugDescription; + +@end + +#pragma mark - Event Synthesis + +/*! + * @category Events + * Events that can be synthesized relative to an XCUIElement object. When an event API is called, the element + * will be resolved. If zero or multiple matches are found, an error will be raised. + */ +@interface XCUIElement (XCUIElementEventSynthesis) + +/*! + * Types a string into the element. The element or a descendant must have keyboard focus; otherwise an + * error is raised. + * + * This API discards any modifiers set in the current context by +performWithKeyModifiers:block: so that + * it strictly interprets the provided text. To input keys with modifier flags, use -typeKey:modifierFlags:. + */ +- (void)typeText:(NSString *)text; + +#if TARGET_OS_TV +#elif TARGET_OS_IOS + +/*! + * Sends a tap event to a hittable point computed for the element. + */ +- (void)tap; + +/*! + * Sends a double tap event to a hittable point computed for the element. + */ +- (void)doubleTap; + +/*! + * Sends a two finger tap event to a hittable point computed for the element. + */ +- (void)twoFingerTap; + +/*! + * Sends one or more taps with one of more touch points. + * + * @param numberOfTaps + * The number of taps. + * + * @param numberOfTouches + * The number of touch points. + */ +- (void)tapWithNumberOfTaps:(NSUInteger)numberOfTaps numberOfTouches:(NSUInteger)numberOfTouches; + +/*! + * Sends a long press gesture to a hittable point computed for the element, holding for the specified duration. + * + * @param duration + * Duration in seconds. + */ +- (void)pressForDuration:(NSTimeInterval)duration; + +/*! + * Initiates a press-and-hold gesture that then drags to another element, suitable for table cell reordering and similar operations. + * @param duration + * Duration of the initial press-and-hold. + * @param otherElement + * The element to finish the drag gesture over. In the example of table cell reordering, this would be the reorder element of the destination row. + */ +- (void)pressForDuration:(NSTimeInterval)duration thenDragToElement:(XCUIElement *)otherElement; + +/*! + * Sends a swipe-up gesture. + */ +- (void)swipeUp; + +/*! + * Sends a swipe-down gesture. + */ +- (void)swipeDown; + +/*! + * Sends a swipe-left gesture. + */ +- (void)swipeLeft; + +/*! + * Sends a swipe-right gesture. + */ +- (void)swipeRight; + +/*! + * Sends a pinching gesture with two touches. + * + * The system makes a best effort to synthesize the requested scale and velocity: absolute accuracy is not guaranteed. + * Some values may not be possible based on the size of the element's frame - these will result in test failures. + * + * @param scale + * The scale of the pinch gesture. Use a scale between 0 and 1 to "pinch close" or zoom out and a scale greater than 1 to "pinch open" or zoom in. + * + * @param velocity + * The velocity of the pinch in scale factor per second. + */ +- (void)pinchWithScale:(CGFloat)scale velocity:(CGFloat)velocity; + +/*! + * Sends a rotation gesture with two touches. + * + * The system makes a best effort to synthesize the requested rotation and velocity: absolute accuracy is not guaranteed. + * Some values may not be possible based on the size of the element's frame - these will result in test failures. + * + * @param rotation + * The rotation of the gesture in radians. + * + * @param velocity + * The velocity of the rotation gesture in radians per second. + */ +- (void)rotate:(CGFloat)rotation withVelocity:(CGFloat)velocity; + +#elif TARGET_OS_MAC + +/*! + * Moves the cursor over the element. + */ +- (void)hover; + +/*! + * Sends a click event to a hittable point computed for the element. + */ +- (void)click; + +/*! + * Sends a double click event to a hittable point computed for the element. + */ +- (void)doubleClick; + +/*! + * Sends a right click event to a hittable point computed for the element. + */ +- (void)rightClick; + +/*! + * Clicks and holds for a specified duration (generally long enough to start a drag operation) then drags + * to the other element. + */ +- (void)clickForDuration:(NSTimeInterval)duration thenDragToElement:(XCUIElement *)otherElement; + +/*! + * Hold modifier keys while the given block runs. This method pushes and pops the modifiers as global state + * without need for reference to a particular element. Inside the block, elements can be clicked on, dragged + * from, typed into, etc. + */ ++ (void)performWithKeyModifiers:(XCUIKeyModifierFlags)flags block:(void (^)(void))block; + +/*! + * Types a single key with the specified modifier flags. Although `key` is a string, it must represent + * a single key on a physical keyboard; strings that resolve to multiple keys will raise an error at runtime. + * In addition to literal string key representations like "a", "6", and "[", keys such as the arrow keys, + * command, control, option, and function keys can be typed using constants defined for them in XCUIKeyboardKeys.h + */ +- (void)typeKey:(NSString *)key modifierFlags:(XCUIKeyModifierFlags)flags; + +/*! + * Scroll the view the specified pixels, x and y. + */ +- (void)scrollByDeltaX:(CGFloat)deltaX deltaY:(CGFloat)deltaY; + +#endif + +@end + +/*! This category on XCUIElement provides functionality for automating UISlider and NSSlider. */ +@interface XCUIElement (XCUIElementTypeSlider) + +/*! Manipulates the UI to change the displayed value of the slider to one based on a normalized position. 0 corresponds to the minimum value of the slider, 1 corresponds to its maximum value. The adjustment is a "best effort" to move the indicator to the desired position; absolute fidelity is not guaranteed. */ +- (void)adjustToNormalizedSliderPosition:(CGFloat)normalizedSliderPosition; + +/*! Returns the position of the slider's indicator as a normalized value where 0 corresponds to the minimum value of the slider and 1 corresponds to its maximum value. */ +@property (readonly) CGFloat normalizedSliderPosition; + +@end + +#if TARGET_OS_IOS + +/*! This category on XCUIElement provides functionality for automating the picker wheels of UIPickerViews and UIDatePickers. */ +@interface XCUIElement (XCUIElementTypePickerWheel) + +/*! Changes the displayed value for the picker wheel. Will generate a test failure if the specified value is not available. */ +- (void)adjustToPickerWheelValue:(NSString *)pickerWheelValue; + +@end + +#endif + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h new file mode 100644 index 00000000..39b7818d --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementAttributes.h @@ -0,0 +1,77 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import +#import + +#if XCT_UI_TESTING_AVAILABLE + +#if TARGET_OS_IPHONE + +#import + +typedef NS_ENUM(NSInteger, XCUIUserInterfaceSizeClass) { + XCUIUserInterfaceSizeClassUnspecified = UIUserInterfaceSizeClassUnspecified, + XCUIUserInterfaceSizeClassCompact = UIUserInterfaceSizeClassCompact, + XCUIUserInterfaceSizeClassRegular = UIUserInterfaceSizeClassRegular, +}; + +#else + +#import + +typedef NS_ENUM(NSInteger, XCUIUserInterfaceSizeClass) { + XCUIUserInterfaceSizeClassUnspecified = 0, +}; + +#endif + +NS_ASSUME_NONNULL_BEGIN + +/*! Protocol describing the attributes exposed on user interface elements and available during query matching. These attributes represent data exposed to the Accessibility system. */ +@protocol XCUIElementAttributes + +/*! The accessibility identifier. */ +@property (readonly) NSString *identifier; + +/*! The frame of the element in the screen coordinate space. */ +@property (readonly) CGRect frame; + +/*! The raw value attribute of the element. Depending on the element, the actual type can vary. */ +@property (readonly, nullable) id value; + +/*! The title attribute of the element. */ +@property (readonly, copy) NSString *title; + +/*! The label attribute of the element. */ +@property (readonly, copy) NSString *label; + +/*! The type of the element. /seealso XCUIElementType. */ +@property (readonly) XCUIElementType elementType; + +/*! Whether or not the element is enabled for user interaction. */ +@property (readonly, getter = isEnabled) BOOL enabled; + +/*! The horizontal size class of the element. */ +@property (readonly) XCUIUserInterfaceSizeClass horizontalSizeClass; + +/*! The vertical size class of the element. */ +@property (readonly) XCUIUserInterfaceSizeClass verticalSizeClass; + +/*! The value that is displayed when the element has no value. */ +@property (readonly, nullable) NSString *placeholderValue; + +/*! Whether or not the element is selected. */ +@property (readonly, getter = isSelected) BOOL selected; + +#if TARGET_OS_TV +/*! Whether or not the elment has UI focus. */ +@property (readonly) BOOL hasFocus; +#endif + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h new file mode 100644 index 00000000..bbc7f8d8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementQuery.h @@ -0,0 +1,81 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +XCT_EXPORT NSString *XCUIIdentifierCloseWindow; +XCT_EXPORT NSString *XCUIIdentifierMinimizeWindow; +XCT_EXPORT NSString *XCUIIdentifierZoomWindow; +XCT_EXPORT NSString *XCUIIdentifierFullScreenWindow; + +@class XCUIElement; + +/*! Object for locating elements that can be chained with other queries. */ +NS_CLASS_AVAILABLE(10_11, 9_0) +@interface XCUIElementQuery : NSObject + +/*! Returns an element that will use the query for resolution. */ +@property (readonly) XCUIElement *element; + +/*! Evaluates the query at the time it is called and returns the number of matches found. */ +@property (readonly) NSUInteger count; + +/*! Returns an element that will resolve to the index into the query's result set. */ +- (XCUIElement *)elementAtIndex:(NSUInteger)index NS_DEPRECATED(10_11, 10_11, 9_0, 9_0, "Use elementBoundByIndex instead."); + +/*! Returns an element that will use the index into the query's results to determine which underlying accessibility element it is matched with. */ +- (XCUIElement *)elementBoundByIndex:(NSUInteger)index; + +/*! Returns an element that matches the predicate. The predicate will be evaluated against objects of type id. */ +- (XCUIElement *)elementMatchingPredicate:(NSPredicate *)predicate; + +/*! Returns an element that matches the type and identifier. */ +- (XCUIElement *)elementMatchingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; + +/*! Keyed subscripting is implemented as a shortcut for matching an identifier only. For example, app.descendants["Foo"] -> XCUIElement. */ +- (XCUIElement *)objectForKeyedSubscript:(NSString *)key; + +/*! Immediately evaluates the query and returns an array of elements bound to the resulting accessibility elements. */ +@property (readonly, copy) NSArray *allElementsBoundByAccessibilityElement; + +/*! Immediately evaluates the query and returns an array of elements bound by the index of each result. */ +@property (readonly, copy) NSArray *allElementsBoundByIndex; + +/*! Returns a new query that finds the descendants of all the elements found by the receiver. */ +- (XCUIElementQuery *)descendantsMatchingType:(XCUIElementType)type; + +/*! Returns a new query that finds the direct children of all the elements found by the receiver. */ +- (XCUIElementQuery *)childrenMatchingType:(XCUIElementType)type; + +/*! Returns a new query that applies the specified attributes or predicate to the receiver. The predicate will be evaluated against objects of type id. */ +- (XCUIElementQuery *)matchingPredicate:(NSPredicate *)predicate; +- (XCUIElementQuery *)matchingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; +- (XCUIElementQuery *)matchingIdentifier:(NSString *)identifier; + +/*! Returns a new query for finding elements that contain a descendant matching the specification. The predicate will be evaluated against objects of type id. */ +- (XCUIElementQuery *)containingPredicate:(NSPredicate *)predicate; +- (XCUIElementQuery *)containingType:(XCUIElementType)elementType identifier:(nullable NSString *)identifier; + +/*! + @discussion + Provides debugging information about the query. The data in the string will vary based on the time + at which it is captured, but it may include any of the following as well as additional data: + • A description of each step of the query. + • Information about the inputs and matched outputs of each step of the query. + This data should be used for debugging only - depending on any of the data as part of a test is unsupported. + */ +@property (readonly, copy) NSString *debugDescription; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h new file mode 100644 index 00000000..6df4fd2e --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypeQueryProvider.h @@ -0,0 +1,99 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +NS_ASSUME_NONNULL_BEGIN + +@class XCUIElementQuery; + +@protocol XCUIElementTypeQueryProvider + +@property (readonly, copy) XCUIElementQuery *groups; +@property (readonly, copy) XCUIElementQuery *windows; +@property (readonly, copy) XCUIElementQuery *sheets; +@property (readonly, copy) XCUIElementQuery *drawers; +@property (readonly, copy) XCUIElementQuery *alerts; +@property (readonly, copy) XCUIElementQuery *dialogs; +@property (readonly, copy) XCUIElementQuery *buttons; +@property (readonly, copy) XCUIElementQuery *radioButtons; +@property (readonly, copy) XCUIElementQuery *radioGroups; +@property (readonly, copy) XCUIElementQuery *checkBoxes; +@property (readonly, copy) XCUIElementQuery *disclosureTriangles; +@property (readonly, copy) XCUIElementQuery *popUpButtons; +@property (readonly, copy) XCUIElementQuery *comboBoxes; +@property (readonly, copy) XCUIElementQuery *menuButtons; +@property (readonly, copy) XCUIElementQuery *toolbarButtons; +@property (readonly, copy) XCUIElementQuery *popovers; +@property (readonly, copy) XCUIElementQuery *keyboards; +@property (readonly, copy) XCUIElementQuery *keys; +@property (readonly, copy) XCUIElementQuery *navigationBars; +@property (readonly, copy) XCUIElementQuery *tabBars; +@property (readonly, copy) XCUIElementQuery *tabGroups; +@property (readonly, copy) XCUIElementQuery *toolbars; +@property (readonly, copy) XCUIElementQuery *statusBars; +@property (readonly, copy) XCUIElementQuery *tables; +@property (readonly, copy) XCUIElementQuery *tableRows; +@property (readonly, copy) XCUIElementQuery *tableColumns; +@property (readonly, copy) XCUIElementQuery *outlines; +@property (readonly, copy) XCUIElementQuery *outlineRows; +@property (readonly, copy) XCUIElementQuery *browsers; +@property (readonly, copy) XCUIElementQuery *collectionViews; +@property (readonly, copy) XCUIElementQuery *sliders; +@property (readonly, copy) XCUIElementQuery *pageIndicators; +@property (readonly, copy) XCUIElementQuery *progressIndicators; +@property (readonly, copy) XCUIElementQuery *activityIndicators; +@property (readonly, copy) XCUIElementQuery *segmentedControls; +@property (readonly, copy) XCUIElementQuery *pickers; +@property (readonly, copy) XCUIElementQuery *pickerWheels; +@property (readonly, copy) XCUIElementQuery *switches; +@property (readonly, copy) XCUIElementQuery *toggles; +@property (readonly, copy) XCUIElementQuery *links; +@property (readonly, copy) XCUIElementQuery *images; +@property (readonly, copy) XCUIElementQuery *icons; +@property (readonly, copy) XCUIElementQuery *searchFields; +@property (readonly, copy) XCUIElementQuery *scrollViews; +@property (readonly, copy) XCUIElementQuery *scrollBars; +@property (readonly, copy) XCUIElementQuery *staticTexts; +@property (readonly, copy) XCUIElementQuery *textFields; +@property (readonly, copy) XCUIElementQuery *secureTextFields; +@property (readonly, copy) XCUIElementQuery *datePickers; +@property (readonly, copy) XCUIElementQuery *textViews; +@property (readonly, copy) XCUIElementQuery *menus; +@property (readonly, copy) XCUIElementQuery *menuItems; +@property (readonly, copy) XCUIElementQuery *menuBars; +@property (readonly, copy) XCUIElementQuery *menuBarItems; +@property (readonly, copy) XCUIElementQuery *maps; +@property (readonly, copy) XCUIElementQuery *webViews; +@property (readonly, copy) XCUIElementQuery *steppers; +@property (readonly, copy) XCUIElementQuery *incrementArrows; +@property (readonly, copy) XCUIElementQuery *decrementArrows; +@property (readonly, copy) XCUIElementQuery *tabs; +@property (readonly, copy) XCUIElementQuery *timelines; +@property (readonly, copy) XCUIElementQuery *ratingIndicators; +@property (readonly, copy) XCUIElementQuery *valueIndicators; +@property (readonly, copy) XCUIElementQuery *splitGroups; +@property (readonly, copy) XCUIElementQuery *splitters; +@property (readonly, copy) XCUIElementQuery *relevanceIndicators; +@property (readonly, copy) XCUIElementQuery *colorWells; +@property (readonly, copy) XCUIElementQuery *helpTags; +@property (readonly, copy) XCUIElementQuery *mattes; +@property (readonly, copy) XCUIElementQuery *dockItems; +@property (readonly, copy) XCUIElementQuery *rulers; +@property (readonly, copy) XCUIElementQuery *rulerMarkers; +@property (readonly, copy) XCUIElementQuery *grids; +@property (readonly, copy) XCUIElementQuery *levelIndicators; +@property (readonly, copy) XCUIElementQuery *cells; +@property (readonly, copy) XCUIElementQuery *layoutAreas; +@property (readonly, copy) XCUIElementQuery *layoutItems; +@property (readonly, copy) XCUIElementQuery *handles; +@property (readonly, copy) XCUIElementQuery *otherElements; + +@end + +NS_ASSUME_NONNULL_END + +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h new file mode 100644 index 00000000..3f303a09 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIElementTypes.h @@ -0,0 +1,94 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import + +#if XCT_UI_TESTING_AVAILABLE + +NS_ENUM_AVAILABLE(10_11, 9_0) +typedef NS_ENUM(NSUInteger, XCUIElementType) { + XCUIElementTypeAny = 0, + XCUIElementTypeOther = 1, + XCUIElementTypeApplication = 2, + XCUIElementTypeGroup = 3, + XCUIElementTypeWindow = 4, + XCUIElementTypeSheet = 5, + XCUIElementTypeDrawer = 6, + XCUIElementTypeAlert = 7, + XCUIElementTypeDialog = 8, + XCUIElementTypeButton = 9, + XCUIElementTypeRadioButton = 10, + XCUIElementTypeRadioGroup = 11, + XCUIElementTypeCheckBox = 12, + XCUIElementTypeDisclosureTriangle = 13, + XCUIElementTypePopUpButton = 14, + XCUIElementTypeComboBox = 15, + XCUIElementTypeMenuButton = 16, + XCUIElementTypeToolbarButton = 17, + XCUIElementTypePopover = 18, + XCUIElementTypeKeyboard = 19, + XCUIElementTypeKey = 20, + XCUIElementTypeNavigationBar = 21, + XCUIElementTypeTabBar = 22, + XCUIElementTypeTabGroup = 23, + XCUIElementTypeToolbar = 24, + XCUIElementTypeStatusBar = 25, + XCUIElementTypeTable = 26, + XCUIElementTypeTableRow = 27, + XCUIElementTypeTableColumn = 28, + XCUIElementTypeOutline = 29, + XCUIElementTypeOutlineRow = 30, + XCUIElementTypeBrowser = 31, + XCUIElementTypeCollectionView = 32, + XCUIElementTypeSlider = 33, + XCUIElementTypePageIndicator = 34, + XCUIElementTypeProgressIndicator = 35, + XCUIElementTypeActivityIndicator = 36, + XCUIElementTypeSegmentedControl = 37, + XCUIElementTypePicker = 38, + XCUIElementTypePickerWheel = 39, + XCUIElementTypeSwitch = 40, + XCUIElementTypeToggle = 41, + XCUIElementTypeLink = 42, + XCUIElementTypeImage = 43, + XCUIElementTypeIcon = 44, + XCUIElementTypeSearchField = 45, + XCUIElementTypeScrollView = 46, + XCUIElementTypeScrollBar = 47, + XCUIElementTypeStaticText = 48, + XCUIElementTypeTextField = 49, + XCUIElementTypeSecureTextField = 50, + XCUIElementTypeDatePicker = 51, + XCUIElementTypeTextView = 52, + XCUIElementTypeMenu = 53, + XCUIElementTypeMenuItem = 54, + XCUIElementTypeMenuBar = 55, + XCUIElementTypeMenuBarItem = 56, + XCUIElementTypeMap = 57, + XCUIElementTypeWebView = 58, + XCUIElementTypeIncrementArrow = 59, + XCUIElementTypeDecrementArrow = 60, + XCUIElementTypeTimeline = 61, + XCUIElementTypeRatingIndicator = 62, + XCUIElementTypeValueIndicator = 63, + XCUIElementTypeSplitGroup = 64, + XCUIElementTypeSplitter = 65, + XCUIElementTypeRelevanceIndicator = 66, + XCUIElementTypeColorWell = 67, + XCUIElementTypeHelpTag = 68, + XCUIElementTypeMatte = 69, + XCUIElementTypeDockItem = 70, + XCUIElementTypeRuler = 71, + XCUIElementTypeRulerMarker = 72, + XCUIElementTypeGrid = 73, + XCUIElementTypeLevelIndicator = 74, + XCUIElementTypeCell = 75, + XCUIElementTypeLayoutArea = 76, + XCUIElementTypeLayoutItem = 77, + XCUIElementTypeHandle = 78, + XCUIElementTypeStepper = 79, + XCUIElementTypeTab = 80, +}; + +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h new file mode 100644 index 00000000..37d4ee68 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIKeyboardKeys.h @@ -0,0 +1,67 @@ +// +// Copyright (c) 2015 Apple Inc. All rights reserved. +// + +#import +#import + +#if XCT_UI_TESTING_AVAILABLE + +/*! + Constants for use with -[XCUIElement typeKey:modifierFlags:], + representing keys that have no textual representation. These comprise + the set of control, function, and modifier keys found on most keyboards. +*/ + +extern NSString *const XCUIKeyboardKeyDelete; +extern NSString *const XCUIKeyboardKeyReturn; +extern NSString *const XCUIKeyboardKeyEnter; +extern NSString *const XCUIKeyboardKeyTab; +extern NSString *const XCUIKeyboardKeySpace; +extern NSString *const XCUIKeyboardKeyEscape; + +extern NSString *const XCUIKeyboardKeyUpArrow; +extern NSString *const XCUIKeyboardKeyDownArrow; +extern NSString *const XCUIKeyboardKeyLeftArrow; +extern NSString *const XCUIKeyboardKeyRightArrow; + +extern NSString *const XCUIKeyboardKeyF1; +extern NSString *const XCUIKeyboardKeyF2; +extern NSString *const XCUIKeyboardKeyF3; +extern NSString *const XCUIKeyboardKeyF4; +extern NSString *const XCUIKeyboardKeyF5; +extern NSString *const XCUIKeyboardKeyF6; +extern NSString *const XCUIKeyboardKeyF7; +extern NSString *const XCUIKeyboardKeyF8; +extern NSString *const XCUIKeyboardKeyF9; +extern NSString *const XCUIKeyboardKeyF10; +extern NSString *const XCUIKeyboardKeyF11; +extern NSString *const XCUIKeyboardKeyF12; +extern NSString *const XCUIKeyboardKeyF13; +extern NSString *const XCUIKeyboardKeyF14; +extern NSString *const XCUIKeyboardKeyF15; +extern NSString *const XCUIKeyboardKeyF16; +extern NSString *const XCUIKeyboardKeyF17; +extern NSString *const XCUIKeyboardKeyF18; +extern NSString *const XCUIKeyboardKeyF19; + +extern NSString *const XCUIKeyboardKeyForwardDelete; +extern NSString *const XCUIKeyboardKeyHome; +extern NSString *const XCUIKeyboardKeyEnd; +extern NSString *const XCUIKeyboardKeyPageUp; +extern NSString *const XCUIKeyboardKeyPageDown; +extern NSString *const XCUIKeyboardKeyClear; +extern NSString *const XCUIKeyboardKeyHelp; + +extern NSString *const XCUIKeyboardKeyCapsLock; +extern NSString *const XCUIKeyboardKeyShift; +extern NSString *const XCUIKeyboardKeyControl; +extern NSString *const XCUIKeyboardKeyOption; +extern NSString *const XCUIKeyboardKeyCommand; +extern NSString *const XCUIKeyboardKeyRightShift; +extern NSString *const XCUIKeyboardKeyRightControl; +extern NSString *const XCUIKeyboardKeyRightOption; +extern NSString *const XCUIKeyboardKeyRightCommand; +extern NSString *const XCUIKeyboardKeySecondaryFn; + +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h new file mode 100644 index 00000000..6aba68c8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Headers/XCUIRemote.h @@ -0,0 +1,68 @@ +// +// Copyright (c) 2014-2015 Apple Inc. All rights reserved. +// + +#import +#import + +NS_ASSUME_NONNULL_BEGIN + +#if XCT_UI_TESTING_AVAILABLE + +/*! + * @enum XCUIRemoteButton + * + * A button on a physical remote control. + */ +typedef NS_ENUM(NSUInteger, XCUIRemoteButton) { + XCUIRemoteButtonUp = 0, + XCUIRemoteButtonDown = 1, + XCUIRemoteButtonLeft = 2, + XCUIRemoteButtonRight = 3, + + XCUIRemoteButtonSelect = 4, + XCUIRemoteButtonMenu = 5, + XCUIRemoteButtonPlayPause = 6, +}; + +#if TARGET_OS_TV + +/*! + * @class XCUIRemote + * + * Simulates interaction with a physical remote control. + */ +NS_CLASS_AVAILABLE_IOS(9_0) +@interface XCUIRemote : NSObject + +/*! + * The simulated physical remote control. + */ ++ (instancetype)sharedRemote; + +/*! + * Sends a momentary press of a button on a physical remote control. + * + * @param remoteButton + * The button on the physical remote control for which to synthesize a press. + */ +- (void)pressButton:(XCUIRemoteButton)remoteButton; + +/*! + * Sends a press and hold of a button on a physical remote control, holding for the specified duration. + * + * @param remoteButton + * The button on the physical remote control for which to synthesize a press. + * + * @param duration + * Duration in seconds. + */ +- (void)pressButton:(XCUIRemoteButton)remoteButton forDuration:(NSTimeInterval)duration; + +@end + +#endif + +#endif + +NS_ASSUME_NONNULL_END diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist new file mode 100644 index 00000000..c41a0c3a Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap new file mode 100644 index 00000000..d5d16b0f --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/Modules/module.modulemap @@ -0,0 +1,5 @@ +framework module XCTest { + umbrella header "XCTest.h" + requires objc + export * +} diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest new file mode 100755 index 00000000..9c4c41bc Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XCTest differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist new file mode 100644 index 00000000..14e5d3c9 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService new file mode 100755 index 00000000..23d95757 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/XCUIRecorderService differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources new file mode 100644 index 00000000..7289397d --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + Ra1OAR8JJfekaIhcLE/zFw79MYs= + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + files2 + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist new file mode 100644 index 00000000..e5b2660f --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/XCUIRecorderService.xpc/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 1 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + ProjectName + XCTest_Sim + SourceVersion + 10112000000000000 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist new file mode 100644 index 00000000..b68f0f2a Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources new file mode 100644 index 00000000..8181534a --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources @@ -0,0 +1,119 @@ + + + + + files + + Info.plist + + G/SYWALY85QBHvRY+oF2avX64nk= + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + files2 + + version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist new file mode 100644 index 00000000..e5b2660f --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 1 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 1 + ProjectName + XCTest_Sim + SourceVersion + 10112000000000000 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator new file mode 100755 index 00000000..eb8f3dc4 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/XPCServices/xctestSymbolicator.xpc/xctestSymbolicator differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources new file mode 100644 index 00000000..c71bb841 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/_CodeSignature/CodeResources @@ -0,0 +1,425 @@ + + + + + files + + Headers/XCAbstractTest.h + + 5uVAxKt54MLW6NC721Ou4E5VdbA= + + Headers/XCTest.h + + J/40JIWasorAJl8ehqWsKDIRe8s= + + Headers/XCTestAssertions.h + + t430vwqgq3wiAocVV386i0N+lOY= + + Headers/XCTestAssertionsImpl.h + + HE6AZsSiKafvCZwy1E+Nz9eZ1AY= + + Headers/XCTestCase+AsynchronousTesting.h + + szAnsvd6a5FmJK3Rd7GHUE+zD6Q= + + Headers/XCTestCase.h + + a+X7pEiPweigSlO/04evCASEVqA= + + Headers/XCTestCaseRun.h + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + Headers/XCTestDefines.h + + prtDP44JOQFIOtGvonzIO4tX34E= + + Headers/XCTestErrors.h + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + Headers/XCTestLog.h + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + Headers/XCTestObservation.h + + bxfVjwijO6HVQKKnzhFvQQa76dU= + + Headers/XCTestObservationCenter.h + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + Headers/XCTestObserver.h + + D2bzqa/eakvQSHJORM15iHntXxI= + + Headers/XCTestProbe.h + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + Headers/XCTestRun.h + + cjg6r+NJy2z/IjyKJPGmIDBFm68= + + Headers/XCTestSuite.h + + 0MZwfzMWlLFnYzNrPr2MS6bPTfA= + + Headers/XCTestSuiteRun.h + + yTc+L3PJ+wxS4wyorpMQd7kNJvQ= + + Headers/XCUIApplication.h + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + Headers/XCUICoordinate.h + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + Headers/XCUIDevice.h + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + Headers/XCUIElement.h + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + Headers/XCUIElementAttributes.h + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + Headers/XCUIElementQuery.h + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + Headers/XCUIElementTypeQueryProvider.h + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + Headers/XCUIElementTypes.h + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + Headers/XCUIKeyboardKeys.h + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + Headers/XCUIRemote.h + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + Info.plist + + gP0ZTwBfw/8qxea3ADZsO58qdC4= + + Modules/module.modulemap + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + XPCServices/XCUIRecorderService.xpc/Info.plist + + Ra1OAR8JJfekaIhcLE/zFw79MYs= + + XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + dNCg/464I5J6zw4R8tZT1r0RzJ0= + + XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + i0U858e/zTOCwD3yw7lKJtyISlc= + + XPCServices/XCUIRecorderService.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/Info.plist + + G/SYWALY85QBHvRY+oF2avX64nk= + + XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + ac1OISk4seEdGGW1r3kTNNJXJ/A= + + XPCServices/xctestSymbolicator.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + QpmtVhl9xnftpLUcVwKzSS8WQTU= + + en.lproj/InfoPlist.strings + + hash + + TuBj57ZP6zBqcL9HttO2Rucaw9E= + + optional + + + version.plist + + rWsOVM/FcCyTHZaNQcsjyYoN0yo= + + + files2 + + Headers/XCAbstractTest.h + + 5uVAxKt54MLW6NC721Ou4E5VdbA= + + Headers/XCTest.h + + J/40JIWasorAJl8ehqWsKDIRe8s= + + Headers/XCTestAssertions.h + + t430vwqgq3wiAocVV386i0N+lOY= + + Headers/XCTestAssertionsImpl.h + + HE6AZsSiKafvCZwy1E+Nz9eZ1AY= + + Headers/XCTestCase+AsynchronousTesting.h + + szAnsvd6a5FmJK3Rd7GHUE+zD6Q= + + Headers/XCTestCase.h + + a+X7pEiPweigSlO/04evCASEVqA= + + Headers/XCTestCaseRun.h + + /XUqDHA/BFdQDUxQU8Ft5LXo/Ps= + + Headers/XCTestDefines.h + + prtDP44JOQFIOtGvonzIO4tX34E= + + Headers/XCTestErrors.h + + oZFqJmcKHuKZIgeKOwsFDxhfEEc= + + Headers/XCTestLog.h + + 9BU/gwbaKcfn2L9dfo2dHRFN6Bc= + + Headers/XCTestObservation.h + + bxfVjwijO6HVQKKnzhFvQQa76dU= + + Headers/XCTestObservationCenter.h + + 0rP5BQIIjFP/HdaM97/A9mUteRg= + + Headers/XCTestObserver.h + + D2bzqa/eakvQSHJORM15iHntXxI= + + Headers/XCTestProbe.h + + fIVR0xRsxMAabrJmeGX3hPDwL0Y= + + Headers/XCTestRun.h + + cjg6r+NJy2z/IjyKJPGmIDBFm68= + + Headers/XCTestSuite.h + + 0MZwfzMWlLFnYzNrPr2MS6bPTfA= + + Headers/XCTestSuiteRun.h + + yTc+L3PJ+wxS4wyorpMQd7kNJvQ= + + Headers/XCUIApplication.h + + Dck9MbhtVGBeWIgQiEVEpTDtrTw= + + Headers/XCUICoordinate.h + + rWeryK2BMCp9F3/mp9BKm7kg/1Q= + + Headers/XCUIDevice.h + + 9pxehhPyrWb03igVA7PwEtgkzLM= + + Headers/XCUIElement.h + + uzgoVBBig+CJOMv+jyGE6Ou4lx0= + + Headers/XCUIElementAttributes.h + + kWitRD0ClLa1hUvctZ6Jw2DmOW8= + + Headers/XCUIElementQuery.h + + owQe3VU8ucSdoJ7QiOvOS/rHAww= + + Headers/XCUIElementTypeQueryProvider.h + + DEWr4Nmwz7JAy6EydZYQIYgpTlE= + + Headers/XCUIElementTypes.h + + KfkqELrdD/Tb6UOCWX6a7rizJmE= + + Headers/XCUIKeyboardKeys.h + + RE/yMpRDrcsUljcKW/YgNGkt5Oc= + + Headers/XCUIRemote.h + + GuQMu1KdZMJO3/yRBQHEbrVVv38= + + Modules/module.modulemap + + 0hPLcrGRiL8HEYGWbYL+qhcqBZI= + + XPCServices/XCUIRecorderService.xpc/Info.plist + + Ra1OAR8JJfekaIhcLE/zFw79MYs= + + XPCServices/XCUIRecorderService.xpc/XCUIRecorderService + + dNCg/464I5J6zw4R8tZT1r0RzJ0= + + XPCServices/XCUIRecorderService.xpc/_CodeSignature/CodeResources + + i0U858e/zTOCwD3yw7lKJtyISlc= + + XPCServices/XCUIRecorderService.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/Info.plist + + G/SYWALY85QBHvRY+oF2avX64nk= + + XPCServices/xctestSymbolicator.xpc/_CodeSignature/CodeResources + + ac1OISk4seEdGGW1r3kTNNJXJ/A= + + XPCServices/xctestSymbolicator.xpc/version.plist + + 7ye08hZmOweIgwoTW4QZ4TWF+5U= + + XPCServices/xctestSymbolicator.xpc/xctestSymbolicator + + QpmtVhl9xnftpLUcVwKzSS8WQTU= + + en.lproj/InfoPlist.strings + + hash + + TuBj57ZP6zBqcL9HttO2Rucaw9E= + + optional + + + version.plist + + rWsOVM/FcCyTHZaNQcsjyYoN0yo= + + + rules + + ^ + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^version.plist$ + + + rules2 + + .*\.dSYM($|/) + + weight + 11 + + ^ + + weight + 20 + + ^(.*/)?\.DS_Store$ + + omit + + weight + 2000 + + ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ + + nested + + weight + 10 + + ^.* + + ^.*\.lproj/ + + optional + + weight + 1000 + + ^.*\.lproj/locversion.plist$ + + omit + + weight + 1100 + + ^Info\.plist$ + + omit + + weight + 20 + + ^PkgInfo$ + + omit + + weight + 20 + + ^[^/]+$ + + nested + + weight + 10 + + ^embedded\.provisionprofile$ + + weight + 20 + + ^version\.plist$ + + weight + 20 + + + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings new file mode 100644 index 00000000..d6446876 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist new file mode 100644 index 00000000..6a4d61a5 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/XCTest.framework/version.plist @@ -0,0 +1,18 @@ + + + + + BuildAliasOf + XCTest + BuildVersion + 1 + CFBundleShortVersionString + 1.0 + CFBundleVersion + 10112 + ProjectName + XCTest_Sim + SourceVersion + 10112000000000000 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftContacts.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftContacts.dylib new file mode 100755 index 00000000..2ac0f6b8 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftContacts.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCore.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCore.dylib new file mode 100755 index 00000000..77aab7fa Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCore.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib new file mode 100755 index 00000000..adda2f49 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreGraphics.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib new file mode 100755 index 00000000..8e19621c Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftCoreImage.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib new file mode 100755 index 00000000..a098473c Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDarwin.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib new file mode 100755 index 00000000..1c552ad5 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftDispatch.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib new file mode 100755 index 00000000..4715e961 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftFoundation.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib new file mode 100755 index 00000000..56b4a20f Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftObjectiveC.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib new file mode 100755 index 00000000..78515f4f Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Frameworks/libswiftUIKit.dylib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Info.plist new file mode 100644 index 00000000..3b47b917 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib new file mode 100644 index 00000000..25e56422 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/7Gy-11-CCV-view-ssl-x4-7sF.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/ActionCompleteViewController.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/ActionCompleteViewController.nib new file mode 100644 index 00000000..cd226513 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/ActionCompleteViewController.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Info.plist new file mode 100644 index 00000000..ccc75e07 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib new file mode 100644 index 00000000..216857d3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/KA9-NP-RUo-view-ZU1-0B-OSt.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib new file mode 100644 index 00000000..85f999fc Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIM-Ox-Qjq-view-E9n-sC-qZI.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib new file mode 100644 index 00000000..884a3da6 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UINavigationController-Rfy-7q-D8i.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-7Gy-11-CCV.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-7Gy-11-CCV.nib new file mode 100644 index 00000000..b6e4496c Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-7Gy-11-CCV.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib new file mode 100644 index 00000000..dd404333 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-UIM-Ox-Qjq.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib new file mode 100644 index 00000000..2d75e930 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/UIViewController-Ykd-V3-DUE.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib new file mode 100644 index 00000000..f1b7c700 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Ykd-V3-DUE-view-iEg-gQ-46B.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib new file mode 100644 index 00000000..1f8630c3 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/Main.storyboardc/Zy4-GH-heM-view-4bd-7E-0KN.nib differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/MixpanelDemo b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/MixpanelDemo new file mode 100755 index 00000000..11827daa Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/MixpanelDemo differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/MixpanelDemo.entitlements b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/MixpanelDemo.entitlements new file mode 100755 index 00000000..903def2a --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/MixpanelDemo.entitlements @@ -0,0 +1,8 @@ + + + + + aps-environment + development + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/PkgInfo b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/PkgInfo new file mode 100644 index 00000000..bd04210f --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/PkgInfo @@ -0,0 +1 @@ +APPL???? \ No newline at end of file diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist new file mode 100644 index 00000000..df7b325a Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.app/PlugIns/MixpanelDemoTests.xctest/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftdoc b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftdoc new file mode 100644 index 00000000..914e539b Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftmodule b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftmodule new file mode 100644 index 00000000..20b26023 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/i386.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftdoc b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftdoc new file mode 100644 index 00000000..3e7a9ebf Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftdoc differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule new file mode 100644 index 00000000..e4c95dc4 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/MixpanelDemo.swiftmodule/x86_64.swiftmodule differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework.dSYM/Contents/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework.dSYM/Contents/Info.plist new file mode 100644 index 00000000..baae8689 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework.dSYM/Contents/Info.plist @@ -0,0 +1,20 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleIdentifier + com.apple.xcode.dsym.org.cocoapods.Nocilla + CFBundleInfoDictionaryVersion + 6.0 + CFBundlePackageType + dSYM + CFBundleSignature + ???? + CFBundleShortVersionString + 0.10.0 + CFBundleVersion + 1 + + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework.dSYM/Contents/Resources/DWARF/Nocilla b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework.dSYM/Contents/Resources/DWARF/Nocilla new file mode 100644 index 00000000..2adb76d7 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework.dSYM/Contents/Resources/DWARF/Nocilla differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h new file mode 100644 index 00000000..8c26687f --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSHTTPBody.h @@ -0,0 +1,5 @@ +#import + +@protocol LSHTTPBody +- (NSData *)data; +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h new file mode 100644 index 00000000..db14c6cb --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSMatcheable.h @@ -0,0 +1,9 @@ +#import + +@class LSMatcher; + +@protocol LSMatcheable + +- (LSMatcher *)matcher; + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h new file mode 100644 index 00000000..aa85901e --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSNocilla.h @@ -0,0 +1,25 @@ +#import +#import "Nocilla.h" + +@class LSStubRequest; +@class LSStubResponse; +@class LSHTTPClientHook; +@protocol LSHTTPRequest; + +extern NSString * const LSUnexpectedRequest; + +@interface LSNocilla : NSObject ++ (LSNocilla *)sharedInstance; + +@property (nonatomic, strong, readonly) NSArray *stubbedRequests; +@property (nonatomic, assign, readonly, getter = isStarted) BOOL started; + +- (void)start; +- (void)stop; +- (void)addStubbedRequest:(LSStubRequest *)request; +- (void)clearStubs; + +- (void)registerHook:(LSHTTPClientHook *)hook; + +- (LSStubResponse *)responseForRequest:(id)request; +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h new file mode 100644 index 00000000..d7df7430 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubRequestDSL.h @@ -0,0 +1,39 @@ +#import +#import "NSString+Matcheable.h" +#import "NSRegularExpression+Matcheable.h" +#import "NSData+Matcheable.h" + +@class LSStubRequestDSL; +@class LSStubResponseDSL; +@class LSStubRequest; + +@protocol LSHTTPBody; + +typedef LSStubRequestDSL *(^WithHeaderMethod)(NSString *, NSString *); +typedef LSStubRequestDSL *(^WithHeadersMethod)(NSDictionary *); +typedef LSStubRequestDSL *(^AndBodyMethod)(id); +typedef LSStubResponseDSL *(^AndReturnMethod)(NSInteger); +typedef LSStubResponseDSL *(^AndReturnRawResponseMethod)(NSData *rawResponseData); +typedef void (^AndFailWithErrorMethod)(NSError *error); + +@interface LSStubRequestDSL : NSObject +- (id)initWithRequest:(LSStubRequest *)request; + +@property (nonatomic, strong, readonly) WithHeaderMethod withHeader; +@property (nonatomic, strong, readonly) WithHeadersMethod withHeaders; +@property (nonatomic, strong, readonly) AndBodyMethod withBody; +@property (nonatomic, strong, readonly) AndReturnMethod andReturn; +@property (nonatomic, strong, readonly) AndReturnRawResponseMethod andReturnRawResponse; +@property (nonatomic, strong, readonly) AndFailWithErrorMethod andFailWithError; + +@end + +#ifdef __cplusplus +extern "C" { +#endif + +LSStubRequestDSL * stubRequest(NSString *method, id url); + +#ifdef __cplusplus +} +#endif diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h new file mode 100644 index 00000000..2ba6b663 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/LSStubResponseDSL.h @@ -0,0 +1,19 @@ +#import + +@class LSStubResponse; +@class LSStubResponseDSL; + +@protocol LSHTTPBody; + +typedef LSStubResponseDSL *(^ResponseWithBodyMethod)(id); +typedef LSStubResponseDSL *(^ResponseWithHeaderMethod)(NSString *, NSString *); +typedef LSStubResponseDSL *(^ResponseWithHeadersMethod)(NSDictionary *); + +@interface LSStubResponseDSL : NSObject +- (id)initWithResponse:(LSStubResponse *)response; + +@property (nonatomic, strong, readonly) ResponseWithHeaderMethod withHeader; +@property (nonatomic, strong, readonly) ResponseWithHeadersMethod withHeaders; +@property (nonatomic, strong, readonly) ResponseWithBodyMethod withBody; + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h new file mode 100644 index 00000000..c3dfef94 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Matcheable.h @@ -0,0 +1,14 @@ +// +// NSData+Matcheable.h +// Nocilla +// +// Created by Luis Solano Bonet on 09/11/14. +// Copyright (c) 2014 Luis Solano Bonet. All rights reserved. +// + +#import +#import "LSMatcheable.h" + +@interface NSData (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h new file mode 100644 index 00000000..92ebbc75 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSData+Nocilla.h @@ -0,0 +1,6 @@ +#import +#import "LSHTTPBody.h" + +@interface NSData (Nocilla) + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h new file mode 100644 index 00000000..9d9717f8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSRegularExpression+Matcheable.h @@ -0,0 +1,6 @@ +#import +#import "LSMatcheable.h" + +@interface NSRegularExpression (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h new file mode 100644 index 00000000..ca63ec73 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Matcheable.h @@ -0,0 +1,6 @@ +#import +#import "LSMatcheable.h" + +@interface NSString (Matcheable) + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h new file mode 100644 index 00000000..cc0df6d8 --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/NSString+Nocilla.h @@ -0,0 +1,8 @@ +#import +#import "LSHTTPBody.h" + +@interface NSString (Nocilla) + +- (NSRegularExpression *)regex; + +@end diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h new file mode 100644 index 00000000..f9bc72cb --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla-umbrella.h @@ -0,0 +1,17 @@ +#import + +#import "NSData+Nocilla.h" +#import "NSString+Nocilla.h" +#import "LSStubRequestDSL.h" +#import "LSStubResponseDSL.h" +#import "LSNocilla.h" +#import "LSMatcheable.h" +#import "NSData+Matcheable.h" +#import "NSRegularExpression+Matcheable.h" +#import "NSString+Matcheable.h" +#import "LSHTTPBody.h" +#import "Nocilla.h" + +FOUNDATION_EXPORT double NocillaVersionNumber; +FOUNDATION_EXPORT const unsigned char NocillaVersionString[]; + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h new file mode 100644 index 00000000..e86b640a --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Headers/Nocilla.h @@ -0,0 +1,26 @@ +// +// Nocilla.h +// Nocilla +// +// Created by Robert Böhnke on 26/03/15. +// Copyright (c) 2015 Luis Solano Bonet. All rights reserved. +// + +#import + +//! Project version number for Nocilla. +FOUNDATION_EXPORT double NocillaVersionNumber; + +//! Project version string for Nocilla. +FOUNDATION_EXPORT const unsigned char NocillaVersionString[]; + +#import +#import +#import +#import +#import +#import +#import +#import +#import +#import diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Info.plist new file mode 100644 index 00000000..ff8c179e Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap new file mode 100644 index 00000000..01df4e2e --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Nocilla { + umbrella header "Nocilla-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Nocilla b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Nocilla new file mode 100755 index 00000000..157f8639 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Nocilla/Nocilla.framework/Nocilla differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h new file mode 100644 index 00000000..9d49c62b --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Headers/Pods-MixpanelDemoTests-umbrella.h @@ -0,0 +1,6 @@ +#import + + +FOUNDATION_EXPORT double Pods_MixpanelDemoTestsVersionNumber; +FOUNDATION_EXPORT const unsigned char Pods_MixpanelDemoTestsVersionString[]; + diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Info.plist b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Info.plist new file mode 100644 index 00000000..428e8851 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Info.plist differ diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules/module.modulemap b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules/module.modulemap new file mode 100644 index 00000000..e291a44a --- /dev/null +++ b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Modules/module.modulemap @@ -0,0 +1,6 @@ +framework module Pods_MixpanelDemoTests { + umbrella header "Pods-MixpanelDemoTests-umbrella.h" + + export * + module * { export * } +} diff --git a/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests new file mode 100644 index 00000000..33be6325 Binary files /dev/null and b/MixpanelDemo/Build/Products/Release-iphonesimulator/Pods_MixpanelDemoTests.framework/Pods_MixpanelDemoTests differ diff --git a/MixpanelDemo/MixpanelDemo.xcodeproj/project.pbxproj b/MixpanelDemo/MixpanelDemo.xcodeproj/project.pbxproj new file mode 100644 index 00000000..4b44f827 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo.xcodeproj/project.pbxproj @@ -0,0 +1,629 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 46; + objects = { + +/* Begin PBXBuildFile section */ + 021F142821B8EA1313088AB6 /* Pods_MixpanelDemoTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37433CF0620BC6A0A5EFC541 /* Pods_MixpanelDemoTests.framework */; }; + 51DD568A1D3077390045D3DB /* LoggerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 51DD56891D3077390045D3DB /* LoggerTests.swift */; }; + E1016E361D3D46DF00075BB7 /* ActionCompleteViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1016E351D3D46DF00075BB7 /* ActionCompleteViewController.swift */; }; + E12406201D249B2500383635 /* MixpanelBaseTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E124061F1D249B2500383635 /* MixpanelBaseTests.swift */; }; + E146F1941D398D0A00D75B49 /* TrackingViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E146F1931D398D0A00D75B49 /* TrackingViewController.swift */; }; + E146F1961D398D1600D75B49 /* PeopleViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E146F1951D398D1600D75B49 /* PeopleViewController.swift */; }; + E146F19A1D399AF300D75B49 /* UtilityViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = E146F1991D399AF300D75B49 /* UtilityViewController.swift */; }; + E15FF7D71D0461130076CDE3 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = E15FF7D61D0461130076CDE3 /* AppDelegate.swift */; }; + E15FF7DC1D0461130076CDE3 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E15FF7DA1D0461130076CDE3 /* Main.storyboard */; }; + E15FF7DE1D0461130076CDE3 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = E15FF7DD1D0461130076CDE3 /* Assets.xcassets */; }; + E15FF7E11D0461130076CDE3 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = E15FF7DF1D0461130076CDE3 /* LaunchScreen.storyboard */; }; + E15FF7EC1D0461130076CDE3 /* MixpanelDemoTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E15FF7EB1D0461130076CDE3 /* MixpanelDemoTests.swift */; }; + E15FF7FC1D0461D70076CDE3 /* Mixpanel.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = E15FF7FB1D0461BC0076CDE3 /* Mixpanel.framework */; }; + E15FF7FD1D0461D70076CDE3 /* Mixpanel.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = E15FF7FB1D0461BC0076CDE3 /* Mixpanel.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; + E1C61EBA1D22F6470056C56C /* MixpanelPeopleTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C61EB91D22F6470056C56C /* MixpanelPeopleTests.swift */; }; + E1C61EBE1D22F9F60056C56C /* TestConstants.swift in Sources */ = {isa = PBXBuildFile; fileRef = E1C61EBD1D22F9F60056C56C /* TestConstants.swift */; }; +/* End PBXBuildFile section */ + +/* Begin PBXContainerItemProxy section */ + E15FF7E81D0461130076CDE3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E15FF7CB1D0461130076CDE3 /* Project object */; + proxyType = 1; + remoteGlobalIDString = E15FF7D21D0461130076CDE3; + remoteInfo = MixpanelDemo; + }; + E15FF7FA1D0461BC0076CDE3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E15FF7F61D0461BC0076CDE3 /* Mixpanel.xcodeproj */; + proxyType = 2; + remoteGlobalIDString = E115947D1CFF1491007F8B4F; + remoteInfo = Mixpanel; + }; + E15FF7FE1D0461D70076CDE3 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = E15FF7F61D0461BC0076CDE3 /* Mixpanel.xcodeproj */; + proxyType = 1; + remoteGlobalIDString = E115947C1CFF1491007F8B4F; + remoteInfo = Mixpanel; + }; +/* End PBXContainerItemProxy section */ + +/* Begin PBXCopyFilesBuildPhase section */ + E15FF8001D0461D70076CDE3 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + E15FF7FD1D0461D70076CDE3 /* Mixpanel.framework in Embed Frameworks */, + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 37433CF0620BC6A0A5EFC541 /* Pods_MixpanelDemoTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_MixpanelDemoTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; + 51DD56891D3077390045D3DB /* LoggerTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = LoggerTests.swift; sourceTree = ""; }; + 5609994314AFCE2B8FF1705B /* Pods-MixpanelDemoTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemoTests.release.xcconfig"; path = "Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests.release.xcconfig"; sourceTree = ""; }; + 9233A000BB35A654EEC9A9D6 /* Pods-MixpanelDemoTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-MixpanelDemoTests.debug.xcconfig"; path = "Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests.debug.xcconfig"; sourceTree = ""; }; + E1016E351D3D46DF00075BB7 /* ActionCompleteViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ActionCompleteViewController.swift; sourceTree = ""; }; + E124061F1D249B2500383635 /* MixpanelBaseTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MixpanelBaseTests.swift; sourceTree = ""; }; + E146F1931D398D0A00D75B49 /* TrackingViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TrackingViewController.swift; sourceTree = ""; }; + E146F1951D398D1600D75B49 /* PeopleViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = PeopleViewController.swift; sourceTree = ""; }; + E146F1991D399AF300D75B49 /* UtilityViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = UtilityViewController.swift; sourceTree = ""; }; + E15FF7D31D0461130076CDE3 /* MixpanelDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = MixpanelDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; + E15FF7D61D0461130076CDE3 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + E15FF7DB1D0461130076CDE3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + E15FF7DD1D0461130076CDE3 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + E15FF7E01D0461130076CDE3 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + E15FF7E21D0461130076CDE3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E15FF7E71D0461130076CDE3 /* MixpanelDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = MixpanelDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; + E15FF7EB1D0461130076CDE3 /* MixpanelDemoTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MixpanelDemoTests.swift; sourceTree = ""; }; + E15FF7ED1D0461130076CDE3 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; + E15FF7F61D0461BC0076CDE3 /* Mixpanel.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = Mixpanel.xcodeproj; path = ../Mixpanel.xcodeproj; sourceTree = ""; }; + E16BAEB41D3DB4FC00C442CE /* MixpanelDemo.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = MixpanelDemo.entitlements; sourceTree = ""; }; + E1C61EB91D22F6470056C56C /* MixpanelPeopleTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = MixpanelPeopleTests.swift; sourceTree = ""; }; + E1C61EBD1D22F9F60056C56C /* TestConstants.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TestConstants.swift; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + E15FF7D01D0461130076CDE3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + E15FF7FC1D0461D70076CDE3 /* Mixpanel.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E15FF7E41D0461130076CDE3 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 021F142821B8EA1313088AB6 /* Pods_MixpanelDemoTests.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 28127E0746D6CC818BA7B834 /* Pods */ = { + isa = PBXGroup; + children = ( + 9233A000BB35A654EEC9A9D6 /* Pods-MixpanelDemoTests.debug.xcconfig */, + 5609994314AFCE2B8FF1705B /* Pods-MixpanelDemoTests.release.xcconfig */, + ); + name = Pods; + sourceTree = ""; + }; + 773080F90ECB3A0D67A6E636 /* Frameworks */ = { + isa = PBXGroup; + children = ( + 37433CF0620BC6A0A5EFC541 /* Pods_MixpanelDemoTests.framework */, + ); + name = Frameworks; + sourceTree = ""; + }; + E146F1971D398D2D00D75B49 /* Supporting Files */ = { + isa = PBXGroup; + children = ( + E15FF7DD1D0461130076CDE3 /* Assets.xcassets */, + E15FF7DF1D0461130076CDE3 /* LaunchScreen.storyboard */, + E15FF7E21D0461130076CDE3 /* Info.plist */, + ); + name = "Supporting Files"; + sourceTree = ""; + }; + E15FF7CA1D0461130076CDE3 = { + isa = PBXGroup; + children = ( + E15FF7F61D0461BC0076CDE3 /* Mixpanel.xcodeproj */, + E15FF7D51D0461130076CDE3 /* MixpanelDemo */, + E15FF7EA1D0461130076CDE3 /* MixpanelDemoTests */, + E15FF7D41D0461130076CDE3 /* Products */, + 28127E0746D6CC818BA7B834 /* Pods */, + 773080F90ECB3A0D67A6E636 /* Frameworks */, + ); + sourceTree = ""; + }; + E15FF7D41D0461130076CDE3 /* Products */ = { + isa = PBXGroup; + children = ( + E15FF7D31D0461130076CDE3 /* MixpanelDemo.app */, + E15FF7E71D0461130076CDE3 /* MixpanelDemoTests.xctest */, + ); + name = Products; + sourceTree = ""; + }; + E15FF7D51D0461130076CDE3 /* MixpanelDemo */ = { + isa = PBXGroup; + children = ( + E16BAEB41D3DB4FC00C442CE /* MixpanelDemo.entitlements */, + E15FF7DA1D0461130076CDE3 /* Main.storyboard */, + E15FF7D61D0461130076CDE3 /* AppDelegate.swift */, + E146F1931D398D0A00D75B49 /* TrackingViewController.swift */, + E146F1951D398D1600D75B49 /* PeopleViewController.swift */, + E146F1991D399AF300D75B49 /* UtilityViewController.swift */, + E1016E351D3D46DF00075BB7 /* ActionCompleteViewController.swift */, + E146F1971D398D2D00D75B49 /* Supporting Files */, + ); + path = MixpanelDemo; + sourceTree = ""; + }; + E15FF7EA1D0461130076CDE3 /* MixpanelDemoTests */ = { + isa = PBXGroup; + children = ( + E124061F1D249B2500383635 /* MixpanelBaseTests.swift */, + E15FF7EB1D0461130076CDE3 /* MixpanelDemoTests.swift */, + E1C61EB91D22F6470056C56C /* MixpanelPeopleTests.swift */, + E1C61EBD1D22F9F60056C56C /* TestConstants.swift */, + 51DD56891D3077390045D3DB /* LoggerTests.swift */, + E15FF7ED1D0461130076CDE3 /* Info.plist */, + ); + path = MixpanelDemoTests; + sourceTree = ""; + }; + E15FF7F71D0461BC0076CDE3 /* Products */ = { + isa = PBXGroup; + children = ( + E15FF7FB1D0461BC0076CDE3 /* Mixpanel.framework */, + ); + name = Products; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + E15FF7D21D0461130076CDE3 /* MixpanelDemo */ = { + isa = PBXNativeTarget; + buildConfigurationList = E15FF7F01D0461130076CDE3 /* Build configuration list for PBXNativeTarget "MixpanelDemo" */; + buildPhases = ( + E15FF7CF1D0461130076CDE3 /* Sources */, + E15FF7D01D0461130076CDE3 /* Frameworks */, + E15FF7D11D0461130076CDE3 /* Resources */, + E15FF8001D0461D70076CDE3 /* Embed Frameworks */, + ); + buildRules = ( + ); + dependencies = ( + E15FF7FF1D0461D70076CDE3 /* PBXTargetDependency */, + ); + name = MixpanelDemo; + productName = MixpanelDemo; + productReference = E15FF7D31D0461130076CDE3 /* MixpanelDemo.app */; + productType = "com.apple.product-type.application"; + }; + E15FF7E61D0461130076CDE3 /* MixpanelDemoTests */ = { + isa = PBXNativeTarget; + buildConfigurationList = E15FF7F31D0461130076CDE3 /* Build configuration list for PBXNativeTarget "MixpanelDemoTests" */; + buildPhases = ( + 122455B428AF758CAE10EE5F /* [CP] Check Pods Manifest.lock */, + E15FF7E31D0461130076CDE3 /* Sources */, + E15FF7E41D0461130076CDE3 /* Frameworks */, + E15FF7E51D0461130076CDE3 /* Resources */, + 23A073632FB9DC26C9B98ABF /* [CP] Embed Pods Frameworks */, + 14A6BFB53FD8FB99E2B3D2F6 /* [CP] Copy Pods Resources */, + ); + buildRules = ( + ); + dependencies = ( + E15FF7E91D0461130076CDE3 /* PBXTargetDependency */, + ); + name = MixpanelDemoTests; + productName = MixpanelDemoTests; + productReference = E15FF7E71D0461130076CDE3 /* MixpanelDemoTests.xctest */; + productType = "com.apple.product-type.bundle.unit-test"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + E15FF7CB1D0461130076CDE3 /* Project object */ = { + isa = PBXProject; + attributes = { + LastSwiftUpdateCheck = 0730; + LastUpgradeCheck = 0800; + ORGANIZATIONNAME = Mixpanel; + TargetAttributes = { + E15FF7D21D0461130076CDE3 = { + CreatedOnToolsVersion = 7.3.1; + DevelopmentTeam = E8FVX7QLET; + DevelopmentTeamName = "Mixpanel, Inc."; + LastSwiftMigration = 0800; + ProvisioningStyle = Manual; + SystemCapabilities = { + com.apple.Push = { + enabled = 1; + }; + }; + }; + E15FF7E61D0461130076CDE3 = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 0800; + TestTargetID = E15FF7D21D0461130076CDE3; + }; + }; + }; + buildConfigurationList = E15FF7CE1D0461130076CDE3 /* Build configuration list for PBXProject "MixpanelDemo" */; + compatibilityVersion = "Xcode 3.2"; + developmentRegion = English; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = E15FF7CA1D0461130076CDE3; + productRefGroup = E15FF7D41D0461130076CDE3 /* Products */; + projectDirPath = ""; + projectReferences = ( + { + ProductGroup = E15FF7F71D0461BC0076CDE3 /* Products */; + ProjectRef = E15FF7F61D0461BC0076CDE3 /* Mixpanel.xcodeproj */; + }, + ); + projectRoot = ""; + targets = ( + E15FF7D21D0461130076CDE3 /* MixpanelDemo */, + E15FF7E61D0461130076CDE3 /* MixpanelDemoTests */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXReferenceProxy section */ + E15FF7FB1D0461BC0076CDE3 /* Mixpanel.framework */ = { + isa = PBXReferenceProxy; + fileType = wrapper.framework; + path = Mixpanel.framework; + remoteRef = E15FF7FA1D0461BC0076CDE3 /* PBXContainerItemProxy */; + sourceTree = BUILT_PRODUCTS_DIR; + }; +/* End PBXReferenceProxy section */ + +/* Begin PBXResourcesBuildPhase section */ + E15FF7D11D0461130076CDE3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E15FF7E11D0461130076CDE3 /* LaunchScreen.storyboard in Resources */, + E15FF7DE1D0461130076CDE3 /* Assets.xcassets in Resources */, + E15FF7DC1D0461130076CDE3 /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E15FF7E51D0461130076CDE3 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 122455B428AF758CAE10EE5F /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Check Pods Manifest.lock"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n"; + showEnvVarsInLog = 0; + }; + 14A6BFB53FD8FB99E2B3D2F6 /* [CP] Copy Pods Resources */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Copy Pods Resources"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-resources.sh\"\n"; + showEnvVarsInLog = 0; + }; + 23A073632FB9DC26C9B98ABF /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "[CP] Embed Pods Frameworks"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-MixpanelDemoTests/Pods-MixpanelDemoTests-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + E15FF7CF1D0461130076CDE3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + E146F1941D398D0A00D75B49 /* TrackingViewController.swift in Sources */, + E146F1961D398D1600D75B49 /* PeopleViewController.swift in Sources */, + E146F19A1D399AF300D75B49 /* UtilityViewController.swift in Sources */, + E15FF7D71D0461130076CDE3 /* AppDelegate.swift in Sources */, + E1016E361D3D46DF00075BB7 /* ActionCompleteViewController.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; + E15FF7E31D0461130076CDE3 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 51DD568A1D3077390045D3DB /* LoggerTests.swift in Sources */, + E1C61EBA1D22F6470056C56C /* MixpanelPeopleTests.swift in Sources */, + E1C61EBE1D22F9F60056C56C /* TestConstants.swift in Sources */, + E12406201D249B2500383635 /* MixpanelBaseTests.swift in Sources */, + E15FF7EC1D0461130076CDE3 /* MixpanelDemoTests.swift in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXTargetDependency section */ + E15FF7E91D0461130076CDE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + target = E15FF7D21D0461130076CDE3 /* MixpanelDemo */; + targetProxy = E15FF7E81D0461130076CDE3 /* PBXContainerItemProxy */; + }; + E15FF7FF1D0461D70076CDE3 /* PBXTargetDependency */ = { + isa = PBXTargetDependency; + name = Mixpanel; + targetProxy = E15FF7FE1D0461D70076CDE3 /* PBXContainerItemProxy */; + }; +/* End PBXTargetDependency section */ + +/* Begin PBXVariantGroup section */ + E15FF7DA1D0461130076CDE3 /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + E15FF7DB1D0461130076CDE3 /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + E15FF7DF1D0461130076CDE3 /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + E15FF7E01D0461130076CDE3 /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + E15FF7EE1D0461130076CDE3 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + DEFINES_MODULE = YES; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 9.3; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + E15FF7EF1D0461130076CDE3 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + DEFINES_MODULE = YES; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + 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 = 9.3; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + E15FF7F11D0461130076CDE3 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = MixpanelDemo/MixpanelDemo.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + DEFINES_MODULE = YES; + INFOPLIST_FILE = MixpanelDemo/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../Mixpanel"; + PRODUCT_BUNDLE_IDENTIFIER = com.mixpanel.swiftdemo; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE = "88d41d51-9b2f-4efc-aa57-83fb1297bb4b"; + PROVISIONING_PROFILE_SPECIFIER = "E8FVX7QLET/Swift SDK Demo"; + SWIFT_VERSION = 3.0; + }; + name = Debug; + }; + E15FF7F21D0461130076CDE3 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CODE_SIGN_ENTITLEMENTS = MixpanelDemo/MixpanelDemo.entitlements; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + DEFINES_MODULE = YES; + INFOPLIST_FILE = MixpanelDemo/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 8.0; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../Mixpanel"; + PRODUCT_BUNDLE_IDENTIFIER = com.mixpanel.swiftdemo; + PRODUCT_NAME = "$(TARGET_NAME)"; + PROVISIONING_PROFILE = "88d41d51-9b2f-4efc-aa57-83fb1297bb4b"; + PROVISIONING_PROFILE_SPECIFIER = "E8FVX7QLET/Swift SDK Demo"; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + }; + name = Release; + }; + E15FF7F41D0461130076CDE3 /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9233A000BB35A654EEC9A9D6 /* Pods-MixpanelDemoTests.debug.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CLANG_ENABLE_MODULES = YES; + INFOPLIST_FILE = MixpanelDemoTests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../Mixpanel"; + PRODUCT_BUNDLE_IDENTIFIER = com.mixpanel.MixpanelDemoTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 3.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MixpanelDemo.app/MixpanelDemo"; + }; + name = Debug; + }; + E15FF7F51D0461130076CDE3 /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 5609994314AFCE2B8FF1705B /* Pods-MixpanelDemoTests.release.xcconfig */; + buildSettings = { + ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES; + BUNDLE_LOADER = "$(TEST_HOST)"; + CLANG_ENABLE_MODULES = YES; + INFOPLIST_FILE = MixpanelDemoTests/Info.plist; + LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LIBRARY_SEARCH_PATHS = "$(SRCROOT)/../Mixpanel"; + PRODUCT_BUNDLE_IDENTIFIER = com.mixpanel.MixpanelDemoTests; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = ""; + SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule"; + SWIFT_VERSION = 3.0; + TEST_HOST = "$(BUILT_PRODUCTS_DIR)/MixpanelDemo.app/MixpanelDemo"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + E15FF7CE1D0461130076CDE3 /* Build configuration list for PBXProject "MixpanelDemo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E15FF7EE1D0461130076CDE3 /* Debug */, + E15FF7EF1D0461130076CDE3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E15FF7F01D0461130076CDE3 /* Build configuration list for PBXNativeTarget "MixpanelDemo" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E15FF7F11D0461130076CDE3 /* Debug */, + E15FF7F21D0461130076CDE3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + E15FF7F31D0461130076CDE3 /* Build configuration list for PBXNativeTarget "MixpanelDemoTests" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + E15FF7F41D0461130076CDE3 /* Debug */, + E15FF7F51D0461130076CDE3 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = E15FF7CB1D0461130076CDE3 /* Project object */; +} diff --git a/MixpanelDemo/MixpanelDemo.xcodeproj/xcshareddata/xcschemes/MixpanelDemo.xcscheme b/MixpanelDemo/MixpanelDemo.xcodeproj/xcshareddata/xcschemes/MixpanelDemo.xcscheme new file mode 100644 index 00000000..256edc35 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo.xcodeproj/xcshareddata/xcschemes/MixpanelDemo.xcscheme @@ -0,0 +1,101 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MixpanelDemo/MixpanelDemo.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcschemes/xcschememanagement.plist b/MixpanelDemo/MixpanelDemo.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcschemes/xcschememanagement.plist new file mode 100644 index 00000000..6bc96711 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo.xcodeproj/xcuserdata/yardeneitan.xcuserdatad/xcschemes/xcschememanagement.plist @@ -0,0 +1,19 @@ + + + + + SuppressBuildableAutocreation + + E15FF7D21D0461130076CDE3 + + primary + + + E15FF7E61D0461130076CDE3 + + primary + + + + + diff --git a/MixpanelDemo/MixpanelDemo.xcworkspace/contents.xcworkspacedata b/MixpanelDemo/MixpanelDemo.xcworkspace/contents.xcworkspacedata new file mode 100644 index 00000000..5732c0be --- /dev/null +++ b/MixpanelDemo/MixpanelDemo.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,10 @@ + + + + + + + diff --git a/MixpanelDemo/MixpanelDemo.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/UserInterfaceState.xcuserstate b/MixpanelDemo/MixpanelDemo.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/UserInterfaceState.xcuserstate new file mode 100644 index 00000000..8d8ea323 Binary files /dev/null and b/MixpanelDemo/MixpanelDemo.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/MixpanelDemo/MixpanelDemo.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist b/MixpanelDemo/MixpanelDemo.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist new file mode 100644 index 00000000..b6c4a40b --- /dev/null +++ b/MixpanelDemo/MixpanelDemo.xcworkspace/xcuserdata/yardeneitan.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist @@ -0,0 +1,17 @@ + + + + + + + + + diff --git a/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift b/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift new file mode 100644 index 00000000..8983eb70 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/ActionCompleteViewController.swift @@ -0,0 +1,41 @@ +// +// ActionCompleteViewController.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 7/18/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import UIKit + +class ActionCompleteViewController: UIViewController { + @IBOutlet weak var popupView: UIView! + @IBOutlet weak var actionLabel: UILabel! + @IBOutlet weak var descLabel: UILabel! + var actionStr: String? + var descStr: String? + + override func viewDidLoad() { + super.viewDidLoad() + + popupView.clipsToBounds = true + popupView.layer.cornerRadius = 6 + + let tap = UITapGestureRecognizer(target: self, action: #selector(handleTap)) + view.addGestureRecognizer(tap) + + actionLabel.text = actionStr + descLabel.text = descStr + } + + override func viewDidAppear(_ animated: Bool) { + DispatchQueue.main.after(when: .now() + 5) { + self.dismiss(animated: true, completion: nil) + } + } + + func handleTap(gesture: UITapGestureRecognizer) { + self.dismiss(animated: true, completion: nil) + } + +} diff --git a/MixpanelDemo/MixpanelDemo/AppDelegate.swift b/MixpanelDemo/MixpanelDemo/AppDelegate.swift new file mode 100644 index 00000000..821b4128 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/AppDelegate.swift @@ -0,0 +1,64 @@ +// +// AppDelegate.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 6/5/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import UIKit +import Mixpanel + +@UIApplicationMain +class AppDelegate: UIResponder, UIApplicationDelegate { + + var window: UIWindow? + + func application(_ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { + + var ADD_YOUR_MIXPANEL_TOKEN_BELOW_🛠🛠🛠🛠🛠🛠: String + Mixpanel.initialize(token: "MIXPANEL_TOKEN") + Mixpanel.mainInstance().loggingEnabled = true + Mixpanel.mainInstance().flushInterval = 5 + + let settings = UIUserNotificationSettings(types: [.alert, .badge, .sound], categories: nil) + UIApplication.shared().registerUserNotificationSettings(settings) + UIApplication.shared().registerForRemoteNotifications() + + Mixpanel.mainInstance().identify( + distinctId: Mixpanel.mainInstance().distinctId) + Mixpanel.mainInstance().people.set(properties: ["$name": "Max Panelle"]) + + return true + } + + func applicationDidBecomeActive(_ application: UIApplication) { + Mixpanel.mainInstance().time(event: "session length") + } + + func applicationWillTerminate(_ application: UIApplication) { + Mixpanel.mainInstance().track(event: "session length") + } + + func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) { + debugPrint("did register for remote notification with token") + Mixpanel.mainInstance().people.addPushDeviceToken(deviceToken) + } + + func application(_ application: UIApplication, didFailToRegisterForRemoteNotificationsWithError error: NSError) { + debugPrint(error) + } + + func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [NSObject : AnyObject]) { + debugPrint("did receive remote notificaiton") + if let message = userInfo["aps"]?["alert"] as? String { + let alert = UIAlertController(title: "", message: message, preferredStyle: .alert) + alert.addAction(UIAlertAction(title: "Okay", style: .default, handler: nil)) + window?.rootViewController?.present(alert, animated: true, completion: nil) + } + + Mixpanel.mainInstance().trackPushNotification(userInfo) + } + +} diff --git a/MixpanelDemo/MixpanelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json b/MixpanelDemo/MixpanelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 00000000..eeea76c2 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,73 @@ +{ + "images" : [ + { + "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" : "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" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} \ No newline at end of file diff --git a/MixpanelDemo/MixpanelDemo/Base.lproj/LaunchScreen.storyboard b/MixpanelDemo/MixpanelDemo/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 00000000..2e721e18 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MixpanelDemo/MixpanelDemo/Base.lproj/Main.storyboard b/MixpanelDemo/MixpanelDemo/Base.lproj/Main.storyboard new file mode 100644 index 00000000..c0d7abb1 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/Base.lproj/Main.storyboard @@ -0,0 +1,306 @@ + + + + + + + + + + .SFUIText + .SFUIText_Semibold + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MixpanelDemo/MixpanelDemo/Info.plist b/MixpanelDemo/MixpanelDemo/Info.plist new file mode 100644 index 00000000..028efc39 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/Info.plist @@ -0,0 +1,52 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + APPL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + LSRequiresIPhoneOS + + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UIRequiredDeviceCapabilities + + armv7 + + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + + diff --git a/MixpanelDemo/MixpanelDemo/MixpanelDemo.entitlements b/MixpanelDemo/MixpanelDemo/MixpanelDemo.entitlements new file mode 100644 index 00000000..903def2a --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/MixpanelDemo.entitlements @@ -0,0 +1,8 @@ + + + + + aps-environment + development + + diff --git a/MixpanelDemo/MixpanelDemo/PeopleViewController.swift b/MixpanelDemo/MixpanelDemo/PeopleViewController.swift new file mode 100644 index 00000000..e640b906 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/PeopleViewController.swift @@ -0,0 +1,112 @@ +// +// PeopleViewController.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 7/15/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import UIKit +import Mixpanel + +class PeopleViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { + + @IBOutlet weak var tableView: UITableView! + var tableViewItems = ["Set Properties", + "Set One Property", + "Set Properties Once", + "Unset Properties", + "Incremet Properties", + "Increment Property", + "Append Properties", + "Union Properties", + "Track Charge w/o Properties", + "Track Charge w Properties", + "Clear Charges", + "Delete User"] + + override func viewDidLoad() { + tableView.delegate = self + tableView.dataSource = self + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = self.tableView.dequeueReusableCell(withIdentifier: "cell")! as UITableViewCell + cell.textLabel?.text = tableViewItems[indexPath.item] + cell.textLabel?.textColor = #colorLiteral(red: 0.200000003, green: 0.200000003, blue: 0.200000003, alpha: 1) + return cell + } + + func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + tableView.deselectRow(at: indexPath, animated: true) + + let actionStr = tableViewItems[indexPath.item] + var descStr = "" + + switch indexPath.item { + case 0: + let p: Properties = ["a": 1, + "b": 2.3, + "c": ["4", 5], + "d": URL(string:"https://mixpanel.com")!, + "e": NSNull(), + "f": Date()] + Mixpanel.mainInstance().people.set(properties: p) + descStr = "Properties: \(p)" + case 1: + Mixpanel.mainInstance().people.set(property: "g", to: "yo") + descStr = "Property key: g, value: yo" + case 2: + let p = ["h": "just once"] + Mixpanel.mainInstance().people.setOnce(properties: p) + descStr = "Properties: \(p)" + case 3: + let p = ["b", "h"] + Mixpanel.mainInstance().people.unset(properties: p) + descStr = "Unset Properties: \(p)" + case 4: + let p = ["a": 1.2, "b": 3] + Mixpanel.mainInstance().people.increment(properties: p) + descStr = "Properties: \(p)" + case 5: + Mixpanel.mainInstance().people.increment(property: "b", by: 2.3) + descStr = "Property key: b, value increment: 2.3" + case 6: + let p = ["c": "hello", "d": "goodbye"] + Mixpanel.mainInstance().people.append(properties: p) + descStr = "Properties: \(p)" + case 7: + let p = ["c": ["goodbye", "hi"], "d": ["hello"]] + Mixpanel.mainInstance().people.union(properties: p) + descStr = "Properties: \(p)" + case 8: + Mixpanel.mainInstance().people.trackCharge(amount: 20.5) + descStr = "Amount: 20.5" + case 9: + let p = ["sandwich": 1] + Mixpanel.mainInstance().people.trackCharge(amount: 12.8, properties: p) + descStr = "Amount: 12.8, Properties: \(p)" + case 10: + Mixpanel.mainInstance().people.clearCharges() + descStr = "Cleared Charges" + case 11: + Mixpanel.mainInstance().people.deleteUser() + descStr = "Deleted User" + default: + break + } + + let vc = self.storyboard!.instantiateViewController(withIdentifier: "ActionCompleteViewController") as! ActionCompleteViewController + vc.actionStr = actionStr + vc.descStr = descStr + vc.modalTransitionStyle = UIModalTransitionStyle.crossDissolve + vc.modalPresentationStyle = UIModalPresentationStyle.overFullScreen + self.present(vc, animated: true, completion: nil) + + } + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return tableViewItems.count + } + +} diff --git a/MixpanelDemo/MixpanelDemo/TrackingViewController.swift b/MixpanelDemo/MixpanelDemo/TrackingViewController.swift new file mode 100644 index 00000000..213aa2a7 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/TrackingViewController.swift @@ -0,0 +1,108 @@ +// +// TrackingViewController.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 7/15/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import UIKit +import Mixpanel + +class TrackingViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { + + @IBOutlet weak var tableView: UITableView! + var tableViewItems = ["Track w/o Properties", + "Track w Properties", + "Time Event 5secs", + "Clear Timed Events", + "Get Current SuperProperties", + "Clear SuperProperties", + "Register SuperProperties", + "Register SuperProperties Once", + "Register SP Once w Default Value", + "Unregister SuperProperty"] + + override func viewDidLoad() { + tableView.delegate = self + tableView.dataSource = self + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = self.tableView.dequeueReusableCell(withIdentifier: "cell")! as UITableViewCell + cell.textLabel?.text = tableViewItems[indexPath.item] + cell.textLabel?.textColor = #colorLiteral(red: 0.200000003, green: 0.200000003, blue: 0.200000003, alpha: 1) + return cell + } + + func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + tableView.deselectRow(at: indexPath, animated: true) + + let actionStr = tableViewItems[indexPath.item] + var descStr = "" + + switch indexPath.item { + case 0: + let ev = "Track Event!" + Mixpanel.mainInstance().track(event: ev) + descStr = "Event: \"\(ev)\"" + case 1: + let ev = "Track Event With Properties!" + let p = ["Cool Property": "Property Value"] + Mixpanel.mainInstance().track(event: ev, properties: p) + descStr = "Event: \"\(ev)\"\n Properties: \(p)" + case 2: + let ev = "Timed Event" + Mixpanel.mainInstance().time(event: ev) + DispatchQueue.main.after(when: .now() + 5) { + Mixpanel.mainInstance().track(event: ev) + } + descStr = "Timed Event: \"\(ev)\"" + case 3: + Mixpanel.mainInstance().clearTimedEvents() + descStr = "Timed Events Cleared" + case 4: + descStr = "Super Properties:\n" + descStr += "\(Mixpanel.mainInstance().currentSuperProperties())" + case 5: + Mixpanel.mainInstance().clearSuperProperties() + descStr = "Cleared Super Properties" + case 6: + let p = ["Super Property 1": 1, + "Super Property 2": "p2", + "Super Property 3": NSDate(), + "Super Property 4": ["a":"b"], + "Super Property 5": [3, "a", NSDate()], + "Super Property 6": + URL(string: "https://mixpanel.com")!, + "Super Property 7": NSNull()] + Mixpanel.mainInstance().registerSuperProperties(p) + descStr = "Properties: \(p)" + case 7: + let p = ["Super Property 1": 2.3] + Mixpanel.mainInstance().registerSuperPropertiesOnce(p) + descStr = "Properties: \(p)" + case 8: + let p = ["Super Property 1": 1.2] + Mixpanel.mainInstance().registerSuperPropertiesOnce(p, defaultValue: 2.3) + descStr = "Properties: \(p) with Default Value: 2.3" + case 9: + let p = "Super Property 2" + Mixpanel.mainInstance().unregisterSuperProperty(p) + descStr = "Properties: \(p)" + default: + break + } + + let vc = self.storyboard!.instantiateViewController(withIdentifier: "ActionCompleteViewController") as! ActionCompleteViewController + vc.actionStr = actionStr + vc.descStr = descStr + vc.modalTransitionStyle = UIModalTransitionStyle.crossDissolve + vc.modalPresentationStyle = UIModalPresentationStyle.overFullScreen + self.present(vc, animated: true, completion: nil) + } + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return tableViewItems.count + } +} diff --git a/MixpanelDemo/MixpanelDemo/UtilityViewController.swift b/MixpanelDemo/MixpanelDemo/UtilityViewController.swift new file mode 100644 index 00000000..12590fa4 --- /dev/null +++ b/MixpanelDemo/MixpanelDemo/UtilityViewController.swift @@ -0,0 +1,67 @@ +// +// UtilityViewController.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 7/15/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import UIKit +import Mixpanel + +class UtilityViewController: UIViewController, UITableViewDelegate, UITableViewDataSource { + + @IBOutlet weak var tableView: UITableView! + var tableViewItems = ["Create Alias", + "Reset", + "Archive", + "Flush"] + + override func viewDidLoad() { + tableView.delegate = self + tableView.dataSource = self + } + + func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell { + let cell = self.tableView.dequeueReusableCell(withIdentifier: "cell")! as UITableViewCell + cell.textLabel?.text = tableViewItems[indexPath.item] + cell.textLabel?.textColor = #colorLiteral(red: 0.200000003, green: 0.200000003, blue: 0.200000003, alpha: 1) + return cell + } + + func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) { + tableView.deselectRow(at: indexPath, animated: true) + + let actionStr = tableViewItems[indexPath.item] + var descStr = "" + + switch indexPath.item { + case 0: + Mixpanel.mainInstance().createAlias("New Alias", distinctId: Mixpanel.mainInstance().distinctId) + descStr = "Alias: New Alias, from: \(Mixpanel.mainInstance().distinctId)" + case 1: + Mixpanel.mainInstance().reset() + descStr = "Reset Instance" + case 2: + Mixpanel.mainInstance().archive() + descStr = "Archived Data" + case 3: + Mixpanel.mainInstance().flush() + descStr = "Flushed Data" + default: + break + } + + let vc = self.storyboard!.instantiateViewController(withIdentifier: "ActionCompleteViewController") as! ActionCompleteViewController + vc.actionStr = actionStr + vc.descStr = descStr + vc.modalTransitionStyle = UIModalTransitionStyle.crossDissolve + vc.modalPresentationStyle = UIModalPresentationStyle.overFullScreen + self.present(vc, animated: true, completion: nil) + } + + func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int { + return tableViewItems.count + } + +} diff --git a/MixpanelDemo/MixpanelDemoTests/Info.plist b/MixpanelDemo/MixpanelDemoTests/Info.plist new file mode 100644 index 00000000..2ad2daf3 --- /dev/null +++ b/MixpanelDemo/MixpanelDemoTests/Info.plist @@ -0,0 +1,29 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + $(PRODUCT_NAME) + CFBundlePackageType + BNDL + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1 + NSAppTransportSecurity + + NSAllowsArbitraryLoads + + + + diff --git a/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift b/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift new file mode 100644 index 00000000..2f3f49d7 --- /dev/null +++ b/MixpanelDemo/MixpanelDemoTests/LoggerTests.swift @@ -0,0 +1,77 @@ +// +// LoggerTests.swift +// MixpanelDemo +// +// Created by Sam Green on 7/8/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Foundation +import XCTest +@testable import Mixpanel + +class LoggerTests: XCTestCase { + var counter: CounterLogging! + + override func setUp() { + super.setUp() + + counter = CounterLogging() + Logger.addLogging(counter) + } + + func testEnableDebug() { + Logger.enableLevel(.Debug) + + Logger.debug(message: "logged") + XCTAssertEqual(1, counter.count) + } + + func testEnableInfo() { + Logger.enableLevel(.Info) + + Logger.info(message: "logged") + XCTAssertEqual(1, counter.count) + } + + func testEnableWarning() { + Logger.enableLevel(.Warning) + + Logger.warn(message: "logged") + XCTAssertEqual(1, counter.count) + } + + func testEnableError() { + Logger.enableLevel(.Error) + + Logger.error(message: "logged") + XCTAssertEqual(1, counter.count) + } + + func testDisabledLogging() { + Logger.disableLevel(.Debug) + Logger.debug(message: "not logged") + XCTAssertEqual(0, counter.count) + + Logger.disableLevel(.Error) + Logger.error(message: "not logged") + XCTAssertEqual(0, counter.count) + + Logger.disableLevel(.Info) + Logger.info(message: "not logged") + XCTAssertEqual(0, counter.count) + + Logger.disableLevel(.Warning) + Logger.warn(message: "not logged") + XCTAssertEqual(0, counter.count) + } +} + +/// This is a stub that implements `Logging` to be passed to our `Logger` instance for testing +class CounterLogging: Logging { + var count = 0 + + func addMessage(message: LogMessage) { + count = count + 1 + } +} diff --git a/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift b/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift new file mode 100644 index 00000000..e1752a59 --- /dev/null +++ b/MixpanelDemo/MixpanelDemoTests/MixpanelBaseTests.swift @@ -0,0 +1,81 @@ +// +// MixpanelBaseTests.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 6/29/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import XCTest +import Nocilla + +@testable import Mixpanel +@testable import MixpanelDemo + +class MixpanelBaseTests: XCTestCase, MixpanelDelegate { + var mixpanel: MixpanelInstance! + var mixpanelWillFlush: Bool! + static var requestCount = 0 + + override func setUp() { + NSLog("starting test setup...") + super.setUp() + + LSNocilla.sharedInstance().start() + stubTrack() + mixpanelWillFlush = false + mixpanel = Mixpanel.initialize(token: kTestToken, launchOptions: nil, flushInterval: 0) + mixpanel.reset() + waitForSerialQueue() + LSNocilla.sharedInstance().clearStubs() + NSLog("finished test setup") + } + + override func tearDown() { + super.tearDown() + LSNocilla.sharedInstance().stop() + LSNocilla.sharedInstance().clearStubs() + + mixpanel = nil + } + + func mixpanelWillFlush(_ mixpanel: MixpanelInstance) -> Bool { + return mixpanelWillFlush + } + + func waitForSerialQueue() { + mixpanel.serialQueue.sync() { + return + } + } + + func flushAndWaitForSerialQueue() { + mixpanel.flush() + waitForSerialQueue() + } + + func assertDefaultPeopleProperties(_ properties: Properties) { + XCTAssertNotNil(properties["$ios_device_model"], "missing $ios_device_model property") + XCTAssertNotNil(properties["$ios_lib_version"], "missing $ios_lib_version property") + XCTAssertNotNil(properties["$ios_version"], "missing $ios_version property") + XCTAssertNotNil(properties["$ios_app_version"], "missing $ios_app_version property") + XCTAssertNotNil(properties["$ios_app_release"], "missing $ios_app_release property") + } + + func allPropertyTypes() -> Properties { + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss zzz" + let date = dateFormatter.date(from: "2012-09-28 19:14:36 PDT") + let nested = ["p1": ["p2": ["p3": ["bottom"]]]] + return ["string": "yello", + "number": 3, + "date": date!, + "dictionary": ["k": "v"], + "array": ["1"], + "null": NSNull(), + "nested": nested, + "url": URL(string: "https://mixpanel.com/")!, + "float": 1.3] + } + +} diff --git a/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift b/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift new file mode 100644 index 00000000..adaa071e --- /dev/null +++ b/MixpanelDemo/MixpanelDemoTests/MixpanelDemoTests.swift @@ -0,0 +1,581 @@ +// +// MixpanelDemoTests.swift +// MixpanelDemoTests +// +// Created by Yarden Eitan on 6/5/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import XCTest +import Nocilla + +@testable import Mixpanel +@testable import MixpanelDemo + +class MixpanelDemoTests: MixpanelBaseTests { + + func test5XXResponse() { + _ = stubTrack().andReturn(503) + + mixpanel.track(event: "Fake Event") + + mixpanel.flush() + waitForSerialQueue() + + mixpanel.flush() + waitForSerialQueue() + + // Failure count should be 3 + let waitTime = + mixpanel.flushInstance.flushRequest.networkRequestsAllowedAfterTime - Date().timeIntervalSince1970 + print("Delta wait time is \(waitTime)") + XCTAssert(waitTime >= 110, "Network backoff time is less than 2 minutes.") + XCTAssert(mixpanel.flushInstance.flushRequest.networkConsecutiveFailures == 2, + "Network failures did not equal 2") + XCTAssert(mixpanel.eventsQueue.count == 1, + "Removed an event from the queue that was not sent") + } + + func testRetryAfterHTTPHeader() { + _ = stubTrack().andReturn(200)?.withHeader("Retry-After", "60") + + mixpanel.track(event: "Fake Event") + + mixpanel.flush() + waitForSerialQueue() + + mixpanel.flush() + waitForSerialQueue() + + // Failure count should be 3 + let waitTime = + mixpanel.flushInstance.flushRequest.networkRequestsAllowedAfterTime - Date().timeIntervalSince1970 + print("Delta wait time is \(waitTime)") + XCTAssert(fabs(60 - waitTime) < 5, "Mixpanel did not respect 'Retry-After' HTTP header") + XCTAssert(mixpanel.flushInstance.flushRequest.networkConsecutiveFailures == 0, + "Network failures did not equal 0") + } + + func testFlushEvents() { + stubTrack() + + mixpanel.identify(distinctId: "d1") + for i in 0..<50 { + mixpanel.track(event: "event \(i)") + } + + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "events should have been flushed") + + for i in 0..<60 { + mixpanel.track(event: "evemt \(i)") + } + + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "events should have been flushed") + } + + + func testFlushPeople() { + stubEngage() + + mixpanel.identify(distinctId: "d1") + for i in 0..<50 { + mixpanel.people.set(property: "p1", to: "\(i)") + } + + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, "people should have been flushed") + for i in 0..<60 { + mixpanel.people.set(property: "p1", to: "\(i)") + } + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, "people should have been flushed") + } + + func testFlushNetworkFailure() { + stubTrack().andFailWithError( + NSError(domain: "com.mixpanel.sdk.testing", code: 1, userInfo: nil)) + mixpanel.identify(distinctId: "d1") + for i in 0..<50 { + mixpanel.track(event: "event \(UInt(i))") + } + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 50, "50 events should be queued up") + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 50, + "events should still be in the queue if flush fails") + } + + func testAddingEventsAfterFlush() { + stubTrack() + mixpanel.identify(distinctId: "d1") + for i in 0..<10 { + mixpanel.track(event: "event \(UInt(i))") + } + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 10, "10 events should be queued up") + mixpanel.flush() + for i in 0..<5 { + mixpanel.track(event: "event \(UInt(i))") + } + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 5, "5 more events should be queued up") + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, "events should have been flushed") + } + + func testDropEvents() { + mixpanel.delegate = self + var events = Queue() + for i in 0..<5000 { + events.append(["i": i]) + } + mixpanel.eventsQueue = events + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 5000) + for i in 0..<5 { + mixpanel.track(event: "event", properties: ["i": 5000 + i]) + } + waitForSerialQueue() + var e: Properties = mixpanel.eventsQueue.last! + XCTAssertTrue(mixpanel.eventsQueue.count == 5000) + XCTAssertEqual(e["properties"]?["i"], 5004) + } + + func testIdentify() { + for _ in 0..<2 { + // run this twice to test reset works correctly wrt to distinct ids + let distinctId: String = "d1" + // try this for ODIN and nil + XCTAssertEqual(mixpanel.distinctId, + mixpanel.defaultDistinctId(), + "mixpanel identify failed to set default distinct id") + XCTAssertNil(mixpanel.people.distinctId, + "mixpanel people distinct id should default to nil") + mixpanel.track(event: "e1") + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 1, + "events should be sent right away with default distinct id") + XCTAssertEqual(mixpanel.eventsQueue.last?["properties"]?["distinct_id"], + mixpanel.defaultDistinctId(), + "events should use default distinct id if none set") + mixpanel.people.set(property: "p1", to: "a") + waitForSerialQueue() + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, + "people records should go to unidentified queue before identify:") + XCTAssertTrue(mixpanel.people.unidentifiedQueue.count == 1, + "unidentified people records not queued") + XCTAssertEqual(mixpanel.people.unidentifiedQueue.last?["$token"] as? String, + kTestToken, + "incorrect project token in people record") + mixpanel.identify(distinctId: distinctId) + waitForSerialQueue() + XCTAssertEqual(mixpanel.distinctId, distinctId, + "mixpanel identify failed to set distinct id") + XCTAssertEqual(mixpanel.people.distinctId, distinctId, + "mixpanel identify failed to set people distinct id") + XCTAssertTrue(mixpanel.people.unidentifiedQueue.isEmpty, + "identify: should move records from unidentified queue") + XCTAssertTrue(mixpanel.people.peopleQueue.count == 1, + "identify: should move records to main people queue") + XCTAssertEqual(mixpanel.people.peopleQueue.last?["$token"] as? String, + kTestToken, "incorrect project token in people record") + XCTAssertEqual(mixpanel.people.peopleQueue.last?["$distinct_id"] as? String, + distinctId, "distinct id not set properly on unidentified people record") + var p: Properties = mixpanel.people.peopleQueue.last?["$set"] as! Properties + XCTAssertEqual(p["p1"] as? String, "a", "custom people property not queued") + assertDefaultPeopleProperties(p) + mixpanel.people.set(property: "p1", to: "a") + waitForSerialQueue() + XCTAssertTrue(mixpanel.people.unidentifiedQueue.isEmpty, + "once idenitfy: is called, unidentified queue should be skipped") + XCTAssertTrue(mixpanel.people.peopleQueue.count == 2, + "once identify: is called, records should go straight to main queue") + mixpanel.track(event: "e2") + waitForSerialQueue() + let newDistinctId = mixpanel.eventsQueue.last?["properties"]?["distinct_id"] + XCTAssertEqual(newDistinctId, distinctId, + "events should use new distinct id after identify:") + mixpanel.reset() + waitForSerialQueue() + } + } + func testTrackWithDefaultProperties() { + mixpanel.track(event: "Something Happened") + waitForSerialQueue() + var e: Properties = mixpanel.eventsQueue.last! + XCTAssertEqual(e["event"] as? String, "Something Happened", "incorrect event name") + var p: Properties = e["properties"] as! Properties + XCTAssertNotNil(p["$app_build_number"], "$app_build_number not set") + XCTAssertNotNil(p["$app_version_string"], "$app_version_string not set") + XCTAssertNotNil(p["$lib_version"], "$lib_version not set") + XCTAssertNotNil(p["$model"], "$model not set") + XCTAssertNotNil(p["$os"], "$os not set") + XCTAssertNotNil(p["$os_version"], "$os_version not set") + XCTAssertNotNil(p["$screen_height"], "$screen_height not set") + XCTAssertNotNil(p["$screen_width"], "$screen_width not set") + XCTAssertNotNil(p["distinct_id"], "distinct_id not set") + XCTAssertNotNil(p["time"], "time not set") + XCTAssertEqual(p["$manufacturer"] as? String, "Apple", "incorrect $manufacturer") + XCTAssertEqual(p["mp_lib"] as? String, "swift", "incorrect mp_lib") + XCTAssertEqual(p["token"] as? String, kTestToken, "incorrect token") + } + + func testTrackWithCustomProperties() { + let now = Date() + let p: Properties = ["string": "yello", + "number": 3, + "date": now, + "$app_version": "override"] + mixpanel.track(event: "Something Happened", properties: p) + waitForSerialQueue() + var props: Properties = mixpanel.eventsQueue.last?["properties"] as! Properties + XCTAssertEqual(props["string"] as? String, "yello") + XCTAssertEqual(props["number"] as? Int, 3) + XCTAssertEqual(props["date"] as? Date, now) + XCTAssertEqual(props["$app_version"] as? String, "override", + "reserved property override failed") + } + + func testTrackWithCustomDistinctIdAndToken() { + let p: Properties = ["token": "t1", "distinct_id": "d1"] + mixpanel.track(event: "e1", properties: p) + waitForSerialQueue() + let trackToken = mixpanel.eventsQueue.last?["properties"]?["token"]! + let trackDistinctId = mixpanel.eventsQueue.last?["properties"]?["distinct_id"]! + XCTAssertEqual(trackToken, "t1", "user-defined distinct id not used in track.") + XCTAssertEqual(trackDistinctId, "d1", "user-defined distinct id not used in track.") + } + + func testRegisterSuperProperties() { + var p: Properties = ["p1": "a", "p2": 3, "p3": Date()] + mixpanel.registerSuperProperties(p) + waitForSerialQueue() + XCTAssertEqual(NSDictionary(dictionary: mixpanel.currentSuperProperties()), + NSDictionary(dictionary: p), + "register super properties failed") + p = ["p1": "b"] + mixpanel.registerSuperProperties(p) + waitForSerialQueue() + XCTAssertEqual(mixpanel.currentSuperProperties()["p1"] as? String, "b", + "register super properties failed to overwrite existing value") + p = ["p4": "a"] + mixpanel.registerSuperPropertiesOnce(p) + waitForSerialQueue() + XCTAssertEqual(mixpanel.currentSuperProperties()["p4"] as? String, "a", + "register super properties once failed first time") + p = ["p4": "b"] + mixpanel.registerSuperPropertiesOnce(p) + waitForSerialQueue() + XCTAssertEqual(mixpanel.currentSuperProperties()["p4"] as? String, "a", + "register super properties once failed second time") + p = ["p4": "c"] + mixpanel.registerSuperPropertiesOnce(p, defaultValue: "d") + waitForSerialQueue() + XCTAssertEqual(mixpanel.currentSuperProperties()["p4"] as? String, "a", + "register super properties once with default value failed when no match") + mixpanel.registerSuperPropertiesOnce(p, defaultValue: "a") + waitForSerialQueue() + XCTAssertEqual(mixpanel.currentSuperProperties()["p4"] as? String, "c", + "register super properties once with default value failed when match") + mixpanel.unregisterSuperProperty("a") + waitForSerialQueue() + XCTAssertNil(mixpanel.currentSuperProperties()["a"], + "unregister super property failed") + // unregister non-existent super property should not throw + mixpanel.unregisterSuperProperty("a") + mixpanel.clearSuperProperties() + waitForSerialQueue() + XCTAssertTrue(mixpanel.currentSuperProperties().isEmpty, + "clear super properties failed") + } + + func testInvalidPropertiesTrack() { + let p: Properties = ["data": Data()] + XCTExpectAssert("property type should not be allowed") { + mixpanel.track(event: "e1", properties: p) + } + } + + func testInvalidSuperProperties() { + let p: Properties = ["data": Data()] + XCTExpectAssert("property type should not be allowed") { + mixpanel.registerSuperProperties(p) + } + XCTExpectAssert("property type should not be allowed") { + mixpanel.registerSuperPropertiesOnce(p) + } + XCTExpectAssert("property type should not be allowed") { + mixpanel.registerSuperPropertiesOnce(p, defaultValue: "v") + } + } + + func testValidPropertiesTrack() { + let p: Properties = allPropertyTypes() + mixpanel.track(event: "e1", properties: p) + } + + func testValidSuperProperties() { + let p: Properties = allPropertyTypes() + mixpanel.registerSuperProperties(p) + mixpanel.registerSuperPropertiesOnce(p) + mixpanel.registerSuperPropertiesOnce(p, defaultValue: "v") + } + + func testTrackLaunchOptions() { + let launchOptions: Properties = [UIApplicationLaunchOptionsRemoteNotificationKey: ["mp": + ["m": "the_message_id", "c": "the_campaign_id"]]] + mixpanel = Mixpanel.initialize(token: kTestToken, + launchOptions: launchOptions, + flushInterval: 60) + waitForSerialQueue() + var e: Properties = mixpanel.eventsQueue.last! + XCTAssertEqual(e["event"] as? String, "$app_open", "incorrect event name") + var p: Properties = e["properties"] as! Properties + XCTAssertEqual(p["campaign_id"] as? String, "the_campaign_id", "campaign_id not equal") + XCTAssertEqual(p["message_id"] as? String, "the_message_id", "message_id not equal") + XCTAssertEqual(p["message_type"] as? String, "push", "type does not equal inapp") + } + + func testTrackPushNotification() { + mixpanel.trackPushNotification(["mp": ["m": "the_message_id", "c": "the_campaign_id"]]) + waitForSerialQueue() + var e: Properties = mixpanel.eventsQueue.last! + XCTAssertEqual(e["event"] as? String, "$campaign_received", "incorrect event name") + var p: Properties = e["properties"] as! Properties + XCTAssertEqual(p["campaign_id"] as? String, "the_campaign_id", "campaign_id not equal") + XCTAssertEqual(p["message_id"] as? String, "the_message_id", "message_id not equal") + XCTAssertEqual(p["message_type"] as? String, "push", "type does not equal inapp") + } + + func testTrackPushNotificationMalformed() { + mixpanel.trackPushNotification(["mp": + ["m": "the_message_id", "cid": "the_campaign_id"]]) + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "Invalid push notification was incorrectly queued.") + mixpanel.trackPushNotification(["mp": 1]) + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "Invalid push notification was incorrectly queued.") + mixpanel.trackPushNotification([:]) + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "Invalid push notification was incorrectly queued.") + mixpanel.trackPushNotification(["mp": "bad value"]) + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "Invalid push notification was incorrectly queued.") + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "Invalid push notification was incorrectly queued.") + } + + func testReset() { + mixpanel.identify(distinctId: "d1") + mixpanel.track(event: "e1") + let p: Properties = ["p1": "a"] + mixpanel.registerSuperProperties(p) + mixpanel.people.set(properties: p) + mixpanel.archive() + mixpanel.reset() + waitForSerialQueue() + XCTAssertEqual(mixpanel.distinctId, + mixpanel.defaultDistinctId(), + "distinct id failed to reset") + XCTAssertNil(mixpanel.people.distinctId, "people distinct id failed to reset") + XCTAssertTrue(mixpanel.currentSuperProperties().isEmpty, + "super properties failed to reset") + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, "events queue failed to reset") + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, "people queue failed to reset") + mixpanel = Mixpanel.initialize(token: kTestToken, launchOptions: nil, flushInterval: 60) + waitForSerialQueue() + XCTAssertEqual(mixpanel.distinctId, mixpanel.defaultDistinctId(), + "distinct id failed to reset after archive") + XCTAssertNil(mixpanel.people.distinctId, + "people distinct id failed to reset after archive") + XCTAssertTrue(mixpanel.currentSuperProperties().isEmpty, + "super properties failed to reset after archive") + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "events queue failed to reset after archive") + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, + "people queue failed to reset after archive") + } + + func testArchive() { + mixpanel.archive() + mixpanel = Mixpanel.initialize(token: kTestToken, launchOptions: nil, flushInterval: 60) + XCTAssertEqual(mixpanel.distinctId, mixpanel.defaultDistinctId(), + "default distinct id archive failed") + XCTAssertTrue(mixpanel.currentSuperProperties().isEmpty, + "default super properties archive failed") + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, "default events queue archive failed") + XCTAssertNil(mixpanel.people.distinctId, "default people distinct id archive failed") + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, "default people queue archive failed") + let p: Properties = ["p1": "a"] + mixpanel.identify(distinctId: "d1") + mixpanel.registerSuperProperties(p) + mixpanel.track(event: "e1") + mixpanel.people.set(properties: p) + mixpanel.timedEvents["e2"] = 5.0 + waitForSerialQueue() + mixpanel.archive() + mixpanel = Mixpanel.initialize(token: kTestToken, launchOptions: nil, flushInterval: 60) + waitForSerialQueue() + XCTAssertEqual(mixpanel.distinctId, "d1", "custom distinct archive failed") + XCTAssertTrue(mixpanel.currentSuperProperties().count == 1, + "custom super properties archive failed") + XCTAssertEqual(mixpanel.eventsQueue.last?["event"] as? String, "e1", + "event was not successfully archived/unarchived") + XCTAssertEqual(mixpanel.people.distinctId, "d1", + "custom people distinct id archive failed") + XCTAssertTrue(mixpanel.people.peopleQueue.count == 1, "pending people queue archive failed") + XCTAssertEqual(mixpanel.timedEvents["e2"] as? Double, 5.0, + "timedEvents archive failed") + let fileManager = FileManager.default + XCTAssertTrue(fileManager.fileExists( + atPath: Persistence.filePathWithType(.Events, token: kTestToken)!), + "events archive file not removed") + XCTAssertTrue(fileManager.fileExists( + atPath: Persistence.filePathWithType(.People, token: kTestToken)!), + "people archive file not removed") + XCTAssertTrue(fileManager.fileExists( + atPath: Persistence.filePathWithType(.Properties, token: kTestToken)!), + "properties archive file not removed") + mixpanel = Mixpanel.initialize(token: kTestToken, launchOptions: nil, flushInterval: 60) + XCTAssertEqual(mixpanel.distinctId, "d1", "expecting d1 as distinct id as initialised") + XCTAssertTrue(mixpanel.currentSuperProperties().count == 1, + "default super properties expected to have 1 item") + XCTAssertNotNil(mixpanel.eventsQueue, "default events queue from no file is nil") + XCTAssertTrue(mixpanel.eventsQueue.count == 1, "default events queue expecting 1 item") + XCTAssertNotNil(mixpanel.people.distinctId, + "default people distinct id from no file failed") + XCTAssertNotNil(mixpanel.people.peopleQueue, "default people queue from no file is nil") + XCTAssertTrue(mixpanel.people.peopleQueue.count == 1, "default people queue expecting 1 item") + XCTAssertTrue(mixpanel.timedEvents.count == 1, "timedEvents expecting 1 item") + // corrupt file + let garbage = "garbage".data(using: String.Encoding.utf8)! + do { + try garbage.write(to: URL( + fileURLWithPath: Persistence.filePathWithType(.Events, token: kTestToken)!), + options: []) + try garbage.write(to: URL( + fileURLWithPath: Persistence.filePathWithType(.People, token: kTestToken)!), + options: []) + try garbage.write(to: URL( + fileURLWithPath: Persistence.filePathWithType(.Properties, token: kTestToken)!), + options: []) + } catch { + print("couldn't write data") + } + XCTAssertTrue(fileManager.fileExists( + atPath: Persistence.filePathWithType(.Events, token: kTestToken)!), + "events archive file not removed") + XCTAssertTrue(fileManager.fileExists( + atPath: Persistence.filePathWithType(.People, token: kTestToken)!), + "people archive file not removed") + XCTAssertTrue(fileManager.fileExists( + atPath: Persistence.filePathWithType(.Properties, token: kTestToken)!), + "properties archive file not removed") + mixpanel = Mixpanel.initialize(token: kTestToken, launchOptions: nil, flushInterval: 60) + waitForSerialQueue() + XCTAssertEqual(mixpanel.distinctId, mixpanel.defaultDistinctId(), + "default distinct id from garbage failed") + XCTAssertTrue(mixpanel.currentSuperProperties().isEmpty, + "default super properties from garbage failed") + XCTAssertNotNil(mixpanel.eventsQueue, "default events queue from garbage is nil") + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, + "default events queue from garbage not empty") + XCTAssertNil(mixpanel.people.distinctId, + "default people distinct id from garbage failed") + XCTAssertNotNil(mixpanel.people.peopleQueue, + "default people queue from garbage is nil") + XCTAssertTrue(mixpanel.people.peopleQueue.isEmpty, + "default people queue from garbage not empty") + XCTAssertTrue(mixpanel.timedEvents.isEmpty, + "timedEvents is not empty") + } + + func testMixpanelDelegate() { + mixpanel.delegate = self + mixpanel.identify(distinctId: "d1") + mixpanel.track(event: "e1") + mixpanel.people.set(property: "p1", to: "a") + mixpanel.flush() + waitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 1, "delegate should have stopped flush") + XCTAssertTrue(mixpanel.people.peopleQueue.count == 1, "delegate should have stopped flush") + } + + func testEventTiming() { + mixpanel.track(event: "Something Happened") + waitForSerialQueue() + var e: Properties = mixpanel.eventsQueue.last! + var p = e["properties"] as! Properties + XCTAssertNil(p["$duration"], "New events should not be timed.") + mixpanel.time(event: "400 Meters") + mixpanel.track(event: "500 Meters") + waitForSerialQueue() + e = mixpanel.eventsQueue.last! + p = e["properties"] as! Properties + XCTAssertNil(p["$duration"], "The exact same event name is required for timing.") + mixpanel.track(event: "400 Meters") + waitForSerialQueue() + e = mixpanel.eventsQueue.last! + p = e["properties"] as! Properties + XCTAssertNotNil(p["$duration"], "This event should be timed.") + mixpanel.track(event: "400 Meters") + waitForSerialQueue() + e = mixpanel.eventsQueue.last! + p = e["properties"] as! Properties + XCTAssertNil(p["$duration"], + "Tracking the same event should require a second call to timeEvent.") + } + + func testNetworkingWithStress() { + _ = stubTrack().andReturn(503) + for _ in 0..<500 { + mixpanel.track(event: "Track Call") + } + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.count == 500, "none supposed to be flushed") + LSNocilla.sharedInstance().clearStubs() + _ = stubTrack().andReturn(200) + mixpanel.flushInstance.flushRequest.networkRequestsAllowedAfterTime = 0 + flushAndWaitForSerialQueue() + XCTAssertTrue(mixpanel.eventsQueue.isEmpty, "supposed to all be flushed") + } + + func testTelephonyInfoInitialized() { + XCTAssertNotNil(AutomaticProperties.telephonyInfo, "telephonyInfo wasn't initialized") + } + + func testNestedUnsupportedTypes() { + stubTrack() + stubEngage() + let p = ["property": ["p": [Data()]]] + mixpanel.track(event: "test", properties: p) + mixpanel.identify(distinctId: "1234") + mixpanel.people.set(properties: p) + flushAndWaitForSerialQueue() + } + + func testUnexpectedBeahviours() { + stubEngage() + mixpanel.identify(distinctId: "1234") + mixpanel.people.set(properties: ["p1": "string type"]) + flushAndWaitForSerialQueue() + + mixpanel.people.increment(property: "p1", by: 2.3) + flushAndWaitForSerialQueue() + + mixpanel.people.union(properties: ["p1": ["unioned item"]]) + flushAndWaitForSerialQueue() + + mixpanel.people.append(properties: ["p1": "appended item"]) + flushAndWaitForSerialQueue() + } +} diff --git a/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift b/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift new file mode 100644 index 00000000..8f931f70 --- /dev/null +++ b/MixpanelDemo/MixpanelDemoTests/MixpanelPeopleTests.swift @@ -0,0 +1,205 @@ +// +// MixpanelPeopleTests.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 6/28/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import XCTest +import Nocilla + +@testable import Mixpanel +@testable import MixpanelDemo + +class MixpanelPeopleTests: MixpanelBaseTests { + + func testPeopleSet() { + mixpanel.identify(distinctId: "d1") + var p: Properties = ["p1": "a"] + mixpanel.people.set(properties: p) + waitForSerialQueue() + p = mixpanel.people.peopleQueue.last!["$set"] as! Properties + XCTAssertEqual(p["p1"] as? String, "a", "custom people property not queued") + assertDefaultPeopleProperties(p) + } + + func testPeopleSetOnce() { + mixpanel.identify(distinctId: "d1") + var p: Properties = ["p1": "a"] + mixpanel.people.setOnce(properties: p) + waitForSerialQueue() + p = mixpanel.people.peopleQueue.last!["$set_once"] as! Properties + XCTAssertEqual(p["p1"] as? String, "a", "custom people property not queued") + assertDefaultPeopleProperties(p) + } + + func testPeopleSetReservedProperty() { + mixpanel.identify(distinctId: "d1") + var p: Properties = ["$ios_app_version": "override"] + mixpanel.people.set(properties: p) + waitForSerialQueue() + p = mixpanel.people.peopleQueue.last!["$set"] as! Properties + XCTAssertEqual(p["$ios_app_version"] as? String, + "override", + "reserved property override failed") + assertDefaultPeopleProperties(p) + } + + func testPeopleSetTo() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.set(property: "p1", to: "a") + waitForSerialQueue() + var p: Properties = mixpanel.people.peopleQueue.last!["$set"] as! Properties + XCTAssertEqual(p["p1"] as? String, "a", "custom people property not queued") + assertDefaultPeopleProperties(p) + } + + func testDropUnidentifiedPeopleRecords() { + QueueConstants.queueSize = 500 + for i in 0..<505 { + mixpanel.people.set(property: "i", to: i) + } + waitForSerialQueue() + XCTAssertTrue(mixpanel.people.unidentifiedQueue.count == 500) + var r: Properties = mixpanel.people.unidentifiedQueue.first! + XCTAssertEqual(r["$set"]?["i"], 5) + r = mixpanel.people.unidentifiedQueue.last! + XCTAssertEqual(r["$set"]?["i"], 504) + } + + func testDropPeopleRecords() { + QueueConstants.queueSize = 500 + mixpanel.identify(distinctId: "d1") + for i in 0..<505 { + mixpanel.people.set(property: "i", to: i) + } + waitForSerialQueue() + XCTAssertTrue(mixpanel.people.peopleQueue.count == 500) + var r: Properties = mixpanel.people.peopleQueue.first! + XCTAssertEqual(r["$set"]?["i"], 5) + r = mixpanel.people.peopleQueue.last! + XCTAssertEqual(r["$set"]?["i"], 504) + } + + func testPeopleAssertPropertyTypes() { + var p: Properties = ["URL": Data()] + XCTExpectAssert("unsupported property type was allowed") { + mixpanel.people.set(properties: p) + } + XCTExpectAssert("unsupported property type was allowed") { + mixpanel.people.set(property: "p1", to: Data()) + } + p = ["p1": "a"] + // increment should require a number + XCTExpectAssert("unsupported property type was allowed") { + mixpanel.people.increment(properties: p) + } + } + + func testPeopleAddPushDeviceToken() { + mixpanel.identify(distinctId: "d1") + let token: Data = "0123456789abcdef".data(using: String.Encoding.utf8)! + mixpanel.people.addPushDeviceToken(token) + waitForSerialQueue() + XCTAssertTrue(mixpanel.people.peopleQueue.count == 1, "people records not queued") + var p: Properties = mixpanel.people.peopleQueue.last!["$union"] as! Properties + XCTAssertTrue(p.count == 1, "incorrect people properties: \(p)") + let a: [AnyObject] = p["$ios_devices"] as! [AnyObject] + XCTAssertTrue(a.count == 1, "device token array not set") + XCTAssertEqual(a.last as? String, + "30313233343536373839616263646566", + "device token not encoded properly") + } + + func testPeopleIncrement() { + mixpanel.identify(distinctId: "d1") + var p: Properties = ["p1": 3] + mixpanel.people.increment(properties: p) + waitForSerialQueue() + p = mixpanel.people.peopleQueue.last!["$add"] as! Properties + XCTAssertTrue(p.count == 1, "incorrect people properties: \(p)") + XCTAssertEqual(p["p1"] as? Int, 3, "custom people property not queued") + } + + func testPeopleIncrementBy() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.increment(property: "p1", by: 3) + waitForSerialQueue() + var p: Properties = mixpanel.people.peopleQueue.last!["$add"] as! Properties + XCTAssertTrue(p.count == 1, "incorrect people properties: \(p)") + XCTAssertEqual(p["p1"] as? Int, 3, "custom people property not queued") + } + + func testPeopleDeleteUser() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.deleteUser() + waitForSerialQueue() + let p: Properties = mixpanel.people.peopleQueue.last!["$delete"] as! Properties + XCTAssertTrue(p.isEmpty, "incorrect people properties: \(p)") + } + + + func testPeopleTrackChargeDecimal() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.trackCharge(amount: 25.34) + waitForSerialQueue() + var r: Properties = mixpanel.people.peopleQueue.last! + let prop = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$amount"] as? Double + let prop2 = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$time"] + XCTAssertEqual(prop, 25.34) + XCTAssertNotNil(prop2) + } + + func testPeopleTrackChargeZero() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.trackCharge(amount: 0) + waitForSerialQueue() + var r: Properties = mixpanel.people.peopleQueue.last! + let prop = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$amount"] as? Double + let prop2 = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$time"] + XCTAssertEqual(prop, 0) + XCTAssertNotNil(prop2) + } + func testPeopleTrackChargeWithTime() { + mixpanel.identify(distinctId: "d1") + var p: Properties = allPropertyTypes() + mixpanel.people.trackCharge(amount: 25, properties: ["$time": p["date"]!]) + waitForSerialQueue() + var r: Properties = mixpanel.people.peopleQueue.last! + let prop = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$amount"] as? Double + let prop2 = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$time"] + XCTAssertEqual(prop, 25) + XCTAssertEqual(prop2 as? Date, p["date"] as? Date) + } + + func testPeopleTrackChargeWithProperties() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.trackCharge(amount: 25, properties: ["p1": "a"]) + waitForSerialQueue() + var r: Properties = mixpanel.people.peopleQueue.last! + let prop = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$amount"] as? Double + let prop2 = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["p1"] + XCTAssertEqual(prop, 25) + XCTAssertEqual(prop2 as? String, "a") + } + + func testPeopleTrackCharge() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.trackCharge(amount: 25) + waitForSerialQueue() + var r: Properties = mixpanel.people.peopleQueue.last! + let prop = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$amount"] as? Double + let prop2 = ((r["$append"] as? Properties)?["$transactions"] as? Properties)?["$time"] + XCTAssertEqual(prop, 25) + XCTAssertNotNil(prop2) + } + + func testPeopleClearCharges() { + mixpanel.identify(distinctId: "d1") + mixpanel.people.clearCharges() + waitForSerialQueue() + var r: Properties = mixpanel.people.peopleQueue.last! + XCTAssertEqual(r["$set"]?["$transactions"], []) + } +} diff --git a/MixpanelDemo/MixpanelDemoTests/TestConstants.swift b/MixpanelDemo/MixpanelDemoTests/TestConstants.swift new file mode 100644 index 00000000..71a63253 --- /dev/null +++ b/MixpanelDemo/MixpanelDemoTests/TestConstants.swift @@ -0,0 +1,46 @@ +// +// TestConstants.swift +// MixpanelDemo +// +// Created by Yarden Eitan on 6/28/16. +// Copyright © 2016 Mixpanel. All rights reserved. +// + +import Nocilla +import XCTest + +@testable import Mixpanel + +let kTestToken = "abc123" +let kDefaultServerString = "https://api.mixpanel.com" +let kDefaultServerTrackString = "https://api.mixpanel.com/track/" +let kDefaultServerEngageString = "https://api.mixpanel.com/engage/" + +@discardableResult func stubEngage() -> LSStubRequestDSL { + return stubRequest("POST", kDefaultServerEngageString).withHeader("Accept-Encoding", "gzip")! +} + +@discardableResult func stubTrack() -> LSStubRequestDSL { + return stubRequest("POST", kDefaultServerTrackString).withHeader("Accept-Encoding", "gzip")! +} + + +extension XCTestCase { + + func XCTExpectAssert(_ expectedMessage: String, file: StaticString = #file, line: UInt = #line, block: @noescape() -> ()) { + let exp = expectation(description: expectedMessage) + + Assertions.assertClosure = { + (condition, message, file, line) in + if !condition { + exp.fulfill() + } + } + + // Call code. + block() + waitForExpectations(timeout: 0.5, handler: nil) + Assertions.assertClosure = Assertions.swiftAssertClosure + } + +} diff --git a/MixpanelDemo/Podfile b/MixpanelDemo/Podfile new file mode 100644 index 00000000..f38abcf6 --- /dev/null +++ b/MixpanelDemo/Podfile @@ -0,0 +1,5 @@ +use_frameworks! + +target 'MixpanelDemoTests' do + pod 'Nocilla' +end diff --git a/README.md b/README.md new file mode 100644 index 00000000..fe1018b2 --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +[![Build Status](https://travis-ci.org/mixpanel/mixpanel-swift-private.svg?branch=yolo-travis-ci)](https://travis-ci.org/mixpanel/mixpanel-swift-private) +[![Average time to resolve an issue](http://isitmaintained.com/badge/resolution/mixpanel/mixpanel-swift-private.svg)](http://isitmaintained.com/project/mixpanel/mixpanel-swift-private "Average time to resolve an issue") +[![Percentage of issues still open](http://isitmaintained.com/badge/open/mixpanel/mixpanel-swift-private.svg)](http://isitmaintained.com/project/mixpanel/mixpanel-swift-private "Percentage of issues still open") +[![CocoaPods Version](http://img.shields.io/cocoapods/v/Mixpanel.svg?style=flat)](https://mixpanel.com) +[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage) +[![Apache License](http://img.shields.io/cocoapods/l/Mixpanel.svg?style=flat)](https://mixpanel.com) + +**Want to Contribute?** + +The Mixpanel Swift library for iOS is an open source project, and we'd love to see your contributions! We'd also love for you to come and work with us! Check out http://boards.greenhouse.io/mixpanel/jobs/25226#.U_4JXEhORKU for details. + +# Painless Installation (CocoaPods) + +Mixpanel supports `CocoaPods` for easy installation. +To Install, see our **[full documentation »](https://mixpanel.com/help/reference/swift)** + +`pod 'Mixpanel-swift'` + +# Carthage + +Mixpanel also supports `Carthage` to package your dependencies as a framework. +Check out the **[Carthage docs »](https://github.com/Carthage/Carthage#if-youre-building-for-ios-tvos-or-watchos)** for more info. + +# Manual Installation + +To help users stay up to date with the latests version of our iOS SDK, we always recommend integrating our SDK via CocoaPods, which simplifies version updates and dependency management. However, there are cases where users can't use CocoaPods. Not to worry, just follow these manual installation steps and you'll be all set. + +##Step 1: Add as a Submodule + +Add Mixpanel as a submodule to your local git repo like so: + +``` +git submodule add git@github.com:mixpanel/mixpanel-swift-private.git +``` + +Now the Mixpanel project and its files should be in your project folder! + +##Step 2: Drag Mixpanel to your project + +Drag the Mixpanel.xcodeproj inside your sample project under the main sample project file: + +![alt text](http://images.mxpnl.com/docs/2016-07-19%2023:34:02.724663-Screen%20Shot%202016-07-19%20at%204.33.34%20PM.png) + +##Step 3: Embed the framework + +Select your app .xcodeproj file. Under "General", add the Mixpanel framework as an embedded binary: + +![alt text](http://images.mxpnl.com/docs/2016-07-19%2023:31:29.237158-add_framework.png) + +## Step 4: Integrate! + +Import Mixpanel into AppDelegate.swift, and initialize Mixpanel within `application:didFinishLaunchingWithOptions:` +![alt text](http://images.mxpnl.com/docs/2016-07-19%2023:27:03.724972-Screen%20Shot%202016-07-18%20at%207.16.51%20PM.png) + +``` +func application(_ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { + Mixpanel.initialize(token: MIXPANEL_TOKEN) +} +``` + +## Start tracking + +You're done! You've successfully integrated the Mixpanel SDK into your app. To stay up to speed on important SDK releases and updates, star or watch our repository on [Github](https://github.com/mixpanel/mixpanel-swift-private). + +Have any questions? Reach out to [support@mixpanel.com](mailto:support@mixpanel.com) to speak to someone smart, quickly. diff --git a/generate_docs.sh b/generate_docs.sh new file mode 100755 index 00000000..2870630c --- /dev/null +++ b/generate_docs.sh @@ -0,0 +1,8 @@ +jazzy \ +--clean \ +-a Mixpanel \ +-u http://mixpanel.com \ +--github_url https://github.com/mixpanel/mixpanel-swift \ +--module-version 1.0.0 \ +--framework-root . \ +--module Mixpanel