From 70d5490013c86526936edbaed8745a51de9fc49f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tibor=20B=C3=B6decs?= Date: Mon, 21 Jan 2019 16:41:36 +0100 Subject: [PATCH] Initial release --- .gitignore | 4 + Dockerfile | 5 + LICENSE | 17 + Package.swift | 17 + README.md | 28 + Sources/Testify/Extensions/String+Regex.swift | 42 + .../Testify/Extensions/TestSuite+Parse.swift | 108 + Sources/Testify/Models/TestCase.swift | 32 + Sources/Testify/Models/TestFailureInfo.swift | 21 + Sources/Testify/Models/TestOutcome.swift | 13 + Sources/Testify/Models/TestSuite.swift | 35 + Tests/Assets/Alamofire.json | 4028 + Tests/Assets/Alamofire.tests | 1123 + Tests/Assets/Kitura-coverage.json | 246456 +++++++++++++++ Tests/Assets/Kitura.json | 2009 + Tests/Assets/Kitura.tests | 566 + Tests/Assets/Promise.tests | 164 + Tests/Assets/PromiseFailure.json | 600 + Tests/Assets/PromiseFailure.tests | 166 + Tests/Assets/PromiseUnexpectedFailure.json | 48 + Tests/Assets/PromiseUnexpectedFailure.tests | 13 + Tests/Assets/Shell-coverage.json | 1938 + Tests/Assets/Shell.json | 78 + Tests/Assets/Shell.tests | 21 + Tests/Assets/ShellFailure.json | 100 + Tests/Assets/ShellFailure.tests | 26 + Tests/Assets/ShellOutFailure.json | 149 + Tests/Assets/ShellOutFailure.tests | 42 + Tests/LinuxMain.swift | 7 + Tests/TestifyTests/TestifyTests.swift | 59 + Tests/TestifyTests/XCTestManifests.swift | 9 + 31 files changed, 257924 insertions(+) create mode 100644 .gitignore create mode 100755 Dockerfile create mode 100755 LICENSE create mode 100644 Package.swift create mode 100755 README.md create mode 100644 Sources/Testify/Extensions/String+Regex.swift create mode 100644 Sources/Testify/Extensions/TestSuite+Parse.swift create mode 100644 Sources/Testify/Models/TestCase.swift create mode 100644 Sources/Testify/Models/TestFailureInfo.swift create mode 100644 Sources/Testify/Models/TestOutcome.swift create mode 100644 Sources/Testify/Models/TestSuite.swift create mode 100644 Tests/Assets/Alamofire.json create mode 100644 Tests/Assets/Alamofire.tests create mode 100644 Tests/Assets/Kitura-coverage.json create mode 100644 Tests/Assets/Kitura.json create mode 100644 Tests/Assets/Kitura.tests create mode 100644 Tests/Assets/Promise.tests create mode 100644 Tests/Assets/PromiseFailure.json create mode 100644 Tests/Assets/PromiseFailure.tests create mode 100644 Tests/Assets/PromiseUnexpectedFailure.json create mode 100644 Tests/Assets/PromiseUnexpectedFailure.tests create mode 100644 Tests/Assets/Shell-coverage.json create mode 100644 Tests/Assets/Shell.json create mode 100644 Tests/Assets/Shell.tests create mode 100644 Tests/Assets/ShellFailure.json create mode 100644 Tests/Assets/ShellFailure.tests create mode 100644 Tests/Assets/ShellOutFailure.json create mode 100644 Tests/Assets/ShellOutFailure.tests create mode 100644 Tests/LinuxMain.swift create mode 100644 Tests/TestifyTests/TestifyTests.swift create mode 100644 Tests/TestifyTests/XCTestManifests.swift diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..02c0875 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/.build +/Packages +/*.xcodeproj diff --git a/Dockerfile b/Dockerfile new file mode 100755 index 0000000..76166bd --- /dev/null +++ b/Dockerfile @@ -0,0 +1,5 @@ +FROM swift +WORKDIR /app +COPY . ./ +CMD swift package clean +CMD swift test --parallel diff --git a/LICENSE b/LICENSE new file mode 100755 index 0000000..5735690 --- /dev/null +++ b/LICENSE @@ -0,0 +1,17 @@ + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + Version 2, December 2004 + +Copyright (C) 2018-2019 Binary Birds + +Authors: + + Tibor Bodecs + +Everyone is permitted to copy and distribute verbatim or modified +copies of this license document, and changing it is allowed as long +as the name is changed. + + DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. You just DO WHAT THE FUCK YOU WANT TO. diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..6743b50 --- /dev/null +++ b/Package.swift @@ -0,0 +1,17 @@ +// swift-tools-version:4.2 +import PackageDescription + +let package = Package( + name: "Testify", + products: [ + .library(name: "Testify", targets: ["Testify"]), + ], + targets: [ + .target( + name: "Testify", + dependencies: []), + .testTarget( + name: "TestifyTests", + dependencies: ["Testify"]), + ] +) diff --git a/README.md b/README.md new file mode 100755 index 0000000..27334f5 --- /dev/null +++ b/README.md @@ -0,0 +1,28 @@ +# Testify (✅) + +Testify converts XCTest output into a proper structure (JSON), or it'll miserably fail. 😉 + +## Usage + + +```swift +import Testify + +let suite = TestSuite.parse("test-output-string") +``` + +## Install + +Just use the [Swift Package Manager](https://theswiftdev.com/2017/11/09/swift-package-manager-tutorial/) as usual: + +```swift +.package(url: "https://github.com/binarybirds/testify", from: "1.0.0"), +``` + +⚠️ Don't forget to add "Testify" to your target as a dependency! + + + +## License + +[WTFPL](LICENSE) - Do what the fuck you want to. diff --git a/Sources/Testify/Extensions/String+Regex.swift b/Sources/Testify/Extensions/String+Regex.swift new file mode 100644 index 0000000..afd5c47 --- /dev/null +++ b/Sources/Testify/Extensions/String+Regex.swift @@ -0,0 +1,42 @@ +// +// String+Regex.swift +// Testify +// +// Created by Tibor Bödecs on 2019. 01. 17.. +// + +import Foundation + +extension String { + + func match(regex pattern: String) -> String? { + let regex = try! NSRegularExpression(pattern: pattern) + let matches = regex.matches(in: self, range: NSRange(location: 0, length: self.count)) + guard + let match = matches.first, + let range = Range(match.range, in: self) + else { + return nil + } + return String(self[range]) + } + + var matchedTestName: String? { + guard let match = self.match(regex: "(\\'.+\\')") else { + return nil + } + return String(match.dropFirst().dropLast()) + } + + var matchedDate: String? { + return self.match(regex: "(\\d{4}-\\d{2}-\\d{2}\\s\\d{2}\\:\\d{2}\\:\\d{2}\\.\\d{3})") + } + + var matchedSeconds: String? { + return self.match(regex: "(\\d+\\.\\d+)") + } + + var matchedUnexpected: String? { + return String(self.match(regex: "\\((\\d+)")!.dropFirst()) + } +} diff --git a/Sources/Testify/Extensions/TestSuite+Parse.swift b/Sources/Testify/Extensions/TestSuite+Parse.swift new file mode 100644 index 0000000..fc93c87 --- /dev/null +++ b/Sources/Testify/Extensions/TestSuite+Parse.swift @@ -0,0 +1,108 @@ +// +// TestSuite+Parse.swift +// Testify +// +// Created by Tibor Bödecs on 2019. 01. 20.. +// + +import Foundation + +public extension TestSuite { + + public static func parse(_ output: String) -> TestSuite { + + let dateFormatter = DateFormatter() + dateFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss.SSS" + + var suites: [TestSuite] = [] + var currentCaseName: String? + var testCaseOutput: String! + var gatherTestCaseOutput = false + + let lines = output.split(separator: "\n").map({ String($0) }) + for (index, line) in lines.enumerated() { + // start or end test suite + if line.contains("Test Suite") { + if line.contains("started") { + let name = line.matchedTestName! + let date = dateFormatter.date(from: line.matchedDate!)! + + suites.append(TestSuite(name: name, + startDate: date, + endDate: date, + unexpected: 0, + outcome: .failure)) + continue; + } + else { + var suite = suites.last! + suites = Array(suites.dropLast()) + + suite.outcome = line.contains("passed") ? .success : .failure + suite.endDate = dateFormatter.date(from: line.matchedDate!)! + + if index+1 < lines.count { + let nextLine = lines[index+1] + if nextLine.contains("Executed") { + suite.unexpected = Int(nextLine.matchedUnexpected!)! + } + } + + if suites.isEmpty { + suites.append(suite) + } + else { + var parentSuite = suites.last! + suites = Array(suites.dropLast()) + parentSuite.children.append(suite) + suites.append(parentSuite) + } + continue; + } + } + if line.contains("Test Case") { + if line.contains("started") { + testCaseOutput = "" + gatherTestCaseOutput = true + currentCaseName = line.matchedTestName + continue; + } + else { + gatherTestCaseOutput = false + var suite = suites.last! + suites = Array(suites.dropLast()) + let outcome: TestOutcome = line.contains("passed") ? .success : .failure + let caseName = currentCaseName!.dropFirst(2).dropLast() + let firstSplit = caseName.split(separator: ".") + let secondSplit = firstSplit[1].split(separator: " ") + + var failureInfo: TestFailureInfo? = nil + if outcome == .failure { + let outputSplit = testCaseOutput.split(separator: ":") + let file = String(outputSplit[0]) + let line = Int(outputSplit[1])! + let reason = String(outputSplit.dropFirst(4) + .joined(separator: ":") + .trimmingCharacters(in: CharacterSet(charactersIn: "-").union(.whitespaces))) + failureInfo = TestFailureInfo(file: file, line: line, reason: reason) + } + + let testCase = TestCase(moduleName: String(firstSplit[0]), + className: String(secondSplit[0]), + testName: String(secondSplit[1]), + duration: TimeInterval(line.matchedSeconds!)!, + outcome: outcome, + failureInfo: failureInfo) + suite.cases.append(testCase) + suites.append(suite) + currentCaseName = nil + continue; + } + } + if gatherTestCaseOutput { + testCaseOutput += line + } + } + return suites.first! + } +} diff --git a/Sources/Testify/Models/TestCase.swift b/Sources/Testify/Models/TestCase.swift new file mode 100644 index 0000000..888dee2 --- /dev/null +++ b/Sources/Testify/Models/TestCase.swift @@ -0,0 +1,32 @@ +// +// TestCase.swift +// Testify +// +// Created by Tibor Bödecs on 2019. 01. 17.. +// + +import Foundation + +public struct TestCase: Codable { + + public var moduleName: String + public var className: String + public var testName: String + public var duration: TimeInterval + public var outcome: TestOutcome + public var failureInfo: TestFailureInfo? + + public init(moduleName: String, + className: String, + testName: String, + duration: TimeInterval, + outcome: TestOutcome, + failureInfo: TestFailureInfo? = nil) { + self.moduleName = moduleName + self.className = className + self.testName = testName + self.duration = duration + self.outcome = outcome + self.failureInfo = failureInfo + } +} diff --git a/Sources/Testify/Models/TestFailureInfo.swift b/Sources/Testify/Models/TestFailureInfo.swift new file mode 100644 index 0000000..59b5bfe --- /dev/null +++ b/Sources/Testify/Models/TestFailureInfo.swift @@ -0,0 +1,21 @@ +// +// TestFailureInfo.swift +// Testify +// +// Created by Tibor Bödecs on 2019. 01. 19.. +// + +import Foundation + +public struct TestFailureInfo: Codable { + + public var file: String + public var line: Int + public var reason: String + + public init(file: String, line: Int, reason: String) { + self.file = file + self.line = line + self.reason = reason + } +} diff --git a/Sources/Testify/Models/TestOutcome.swift b/Sources/Testify/Models/TestOutcome.swift new file mode 100644 index 0000000..0277d15 --- /dev/null +++ b/Sources/Testify/Models/TestOutcome.swift @@ -0,0 +1,13 @@ +// +// TestOutcome.swift +// Testify +// +// Created by Tibor Bödecs on 2019. 01. 18.. +// + +import Foundation + +public enum TestOutcome: String, Codable { + case success + case failure +} diff --git a/Sources/Testify/Models/TestSuite.swift b/Sources/Testify/Models/TestSuite.swift new file mode 100644 index 0000000..944d8fc --- /dev/null +++ b/Sources/Testify/Models/TestSuite.swift @@ -0,0 +1,35 @@ +// +// TestSuite.swift +// Testify +// +// Created by Tibor Bödecs on 2019. 01. 17.. +// + +import Foundation + +public struct TestSuite: Codable { + + public var name: String + public var startDate: Date + public var endDate: Date + public var unexpected: Int + public var outcome: TestOutcome + public var cases: [TestCase] + public var children: [TestSuite] + + public init(name: String, + startDate: Date, + endDate: Date, + unexpected: Int, + outcome: TestOutcome, + cases: [TestCase] = [], + children: [TestSuite] = []) { + self.name = name + self.startDate = startDate + self.endDate = endDate + self.unexpected = unexpected + self.outcome = outcome + self.cases = cases + self.children = children + } +} diff --git a/Tests/Assets/Alamofire.json b/Tests/Assets/Alamofire.json new file mode 100644 index 0000000..a8b55f2 --- /dev/null +++ b/Tests/Assets/Alamofire.json @@ -0,0 +1,4028 @@ +{ + "endDate" : 1547853870.7030001, + "children" : [ + { + "endDate" : 1547853870.6900001, + "children" : [ + { + "endDate" : 1547853802.276, + "children" : [ + + ], + "startDate" : 1547853800.767, + "cases" : [ + { + "outcome" : "success", + "className" : "AutomaticValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableComplexContentTypeResponseSucceeds", + "duration" : 0.78600000000000003 + }, + { + "outcome" : "success", + "className" : "AutomaticValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds", + "duration" : 0.17799999999999999 + }, + { + "outcome" : "success", + "className" : "AutomaticValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds", + "duration" : 0.17899999999999999 + }, + { + "outcome" : "success", + "className" : "AutomaticValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithUnacceptableContentTypeResponseFails", + "duration" : 0.17999999999999999 + }, + { + "outcome" : "success", + "className" : "AutomaticValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithUnacceptableStatusCodeResponseFails", + "duration" : 0.17899999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "AutomaticValidationTestCase" + }, + { + "endDate" : 1547853804.651, + "children" : [ + + ], + "startDate" : 1547853802.277, + "cases" : [ + { + "outcome" : "success", + "className" : "BasicAuthenticationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHiddenHTTPBasicAuthentication", + "duration" : 0.34799999999999998 + }, + { + "outcome" : "success", + "className" : "BasicAuthenticationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHTTPBasicAuthenticationWithInvalidCredentials", + "duration" : 1.0660000000000001 + }, + { + "outcome" : "success", + "className" : "BasicAuthenticationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHTTPBasicAuthenticationWithValidCredentials", + "duration" : 0.95399999999999996 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "BasicAuthenticationTestCase" + }, + { + "endDate" : 1547853818.164, + "children" : [ + + ], + "startDate" : 1547853804.652, + "cases" : [ + { + "outcome" : "success", + "className" : "CacheTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDefaultCachePolicy", + "duration" : 3.2349999999999999 + }, + { + "outcome" : "success", + "className" : "CacheTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testIgnoreLocalCacheDataPolicy", + "duration" : 3.2210000000000001 + }, + { + "outcome" : "success", + "className" : "CacheTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLCacheContainsCachedResponsesForAllRequests", + "duration" : 2.298 + }, + { + "outcome" : "success", + "className" : "CacheTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUseLocalCacheDataAndDontLoadFromNetworkPolicy", + "duration" : 2.3639999999999999 + }, + { + "outcome" : "success", + "className" : "CacheTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUseLocalCacheDataIfExistsOtherwiseLoadFromNetworkPolicy", + "duration" : 2.3839999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "CacheTestCase" + }, + { + "endDate" : 1547853819.7809999, + "children" : [ + + ], + "startDate" : 1547853818.1659999, + "cases" : [ + { + "outcome" : "success", + "className" : "ContentTypeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableContentTypeResponseSucceeds", + "duration" : 0.184 + }, + { + "outcome" : "success", + "className" : "ContentTypeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds", + "duration" : 0.182 + }, + { + "outcome" : "success", + "className" : "ContentTypeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceedsWhenResponseIsNil", + "duration" : 0.67900000000000005 + }, + { + "outcome" : "success", + "className" : "ContentTypeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithNoAcceptableContentTypeResponseFails", + "duration" : 0.183 + }, + { + "outcome" : "success", + "className" : "ContentTypeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithNoAcceptableContentTypeResponseSucceedsWhenNoDataIsReturned", + "duration" : 0.185 + }, + { + "outcome" : "success", + "className" : "ContentTypeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithUnacceptableContentTypeResponseFails", + "duration" : 0.192 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ContentTypeValidationTestCase" + }, + { + "endDate" : 1547853819.971, + "children" : [ + + ], + "startDate" : 1547853819.7820001, + "cases" : [ + { + "outcome" : "success", + "className" : "CustomResponseSerializerTestCases", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCustomResponseSerializersCanBeWrittenWithoutCompilerIssues", + "duration" : 0.187 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "CustomResponseSerializerTestCases" + }, + { + "endDate" : 1547853820.7079999, + "children" : [ + + ], + "startDate" : 1547853819.9719999, + "cases" : [ + { + "outcome" : "success", + "className" : "CustomValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCustomValidationCanThrowCustomError", + "duration" : 0.193 + }, + { + "outcome" : "success", + "className" : "CustomValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCustomValidationClosureHasAccessToServerResponseData", + "duration" : 0.17899999999999999 + }, + { + "outcome" : "success", + "className" : "CustomValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationExtensionCanThrowCustomError", + "duration" : 0.17699999999999999 + }, + { + "outcome" : "success", + "className" : "CustomValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationExtensionHasAccessToServerResponseData", + "duration" : 0.18099999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "CustomValidationTestCase" + }, + { + "endDate" : 1547853820.7969999, + "children" : [ + + ], + "startDate" : 1547853820.71, + "cases" : [ + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenDataIsNil", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerSucceedsWhenDataIsNotNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenDataIsEmpty", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenDataIsInvalidJSON", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenDataIsNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerSucceedsWhenDataIsValidJSON", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenDataIsEmpty", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenDataIsNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ProvidedEncoding", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ResponseEncoding", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWithUTF8DataAndNoProvidedEncoding", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWithUTF8DataAndUTF8ProvidedEncoding", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DataResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWithUTF8DataUsingResponseTextEncodingName", + "duration" : 0.0030000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DataResponseSerializationTestCase" + }, + { + "endDate" : 1547853820.8310001, + "children" : [ + + ], + "startDate" : 1547853820.8, + "cases" : [ + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerFailsWhenDataIsEmpty", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerFailsWhenDataIsInvalidRepresentation", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerFailsWhenDataIsNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DecodableResponseSerializerTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDecodableResponseSerializerSucceedsWhenDataIsValidJSON", + "duration" : 0.0030000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DecodableResponseSerializerTests" + }, + { + "endDate" : 1547853821.1730001, + "children" : [ + + ], + "startDate" : 1547853820.8329999, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDownloadClassMethodWithMethodURLAndDestination", + "duration" : 0.16900000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDownloadClassMethodWithMethodURLHeadersAndDestination", + "duration" : 0.16600000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadInitializationTestCase" + }, + { + "endDate" : 1547853824.2839999, + "children" : [ + + ], + "startDate" : 1547853821.175, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResponseFlatMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapErrorCatchesTransformationError", + "duration" : 2.919 + }, + { + "outcome" : "success", + "className" : "DownloadResponseFlatMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapErrorPreservesSuccessValue", + "duration" : 0.17599999999999999 + }, + { + "outcome" : "success", + "className" : "DownloadResponseFlatMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapErrorTransformsError", + "duration" : 0.01 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResponseFlatMapErrorTestCase" + }, + { + "endDate" : 1547853824.6600001, + "children" : [ + + ], + "startDate" : 1547853824.286, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResponseFlatMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapCatchesTransformationError", + "duration" : 0.189 + }, + { + "outcome" : "success", + "className" : "DownloadResponseFlatMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapPreservesFailureError", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "DownloadResponseFlatMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapTransformsSuccessValue", + "duration" : 0.17299999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResponseFlatMapTestCase" + }, + { + "endDate" : 1547853824.846, + "children" : [ + + ], + "startDate" : 1547853824.6619999, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResponseMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapErrorPreservesSuccessValue", + "duration" : 0.17199999999999999 + }, + { + "outcome" : "success", + "className" : "DownloadResponseMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapErrorTransformsFailureValue", + "duration" : 0.0080000000000000002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResponseMapErrorTestCase" + }, + { + "endDate" : 1547853825.0339999, + "children" : [ + + ], + "startDate" : 1547853824.8469999, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResponseMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapPreservesFailureError", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "DownloadResponseMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapTransformsSuccessValue", + "duration" : 0.17399999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResponseMapTestCase" + }, + { + "endDate" : 1547853825.1500001, + "children" : [ + + ], + "startDate" : 1547853825.0350001, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenFileDataIsEmpty", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenFileURLIsInvalid", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenFileURLIsNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerFailsWhenFileURLIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataResponseSerializerSucceedsWhenFileDataIsNotNil", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenDataIsInvalidJSON", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenFileDataIsEmpty", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenFileURLIsInvalid", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerFailsWhenFileURLIsNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONResponseSerializerSucceedsWhenDataIsValidJSON", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenErrorIsNotNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenFileDataIsEmpty", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenFileURLIsInvalid", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWhenFileURLIsNil", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ProvidedEncoding", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ResponseEncoding", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWithUTF8DataAndNoProvidedEncoding", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWithUTF8DataAndUTF8ProvidedEncoding", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseSerializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatStringResponseSerializerSucceedsWithUTF8DataUsingResponseTextEncodingName", + "duration" : 0.0040000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResponseSerializationTestCase" + }, + { + "endDate" : 1547853827.3050001, + "children" : [ + + ], + "startDate" : 1547853825.1530001, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testCancelledDownloadRequest", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDownloadRequest", + "duration" : 0.32900000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDownloadRequestWithHeaders", + "duration" : 0.16900000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDownloadRequestWithParameters", + "duration" : 0.17499999999999999 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDownloadRequestWithProgress", + "duration" : 0.69599999999999995 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDownloadingFileAndMovingToDestinationThatIsOccupiedThrowsError", + "duration" : 0.20200000000000001 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDownloadingFileAndMovingToDirectoryThatDoesNotExistThrowsError", + "duration" : 0.184 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDownloadOptionsCanCreateIntermediateDirectoriesPriorToMovingFile", + "duration" : 0.192 + }, + { + "outcome" : "success", + "className" : "DownloadResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDownloadOptionsCanRemovePreviousFilePriorToMovingFile", + "duration" : 0.186 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResponseTestCase" + }, + { + "endDate" : 1547853832.3900001, + "children" : [ + + ], + "startDate" : 1547853827.3069999, + "cases" : [ + { + "outcome" : "success", + "className" : "DownloadResumeDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCancelledDownloadCanBeResumedWithResumeData", + "duration" : 4.0140000000000002 + }, + { + "outcome" : "success", + "className" : "DownloadResumeDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCancelledDownloadResponseDataMatchesResumeData", + "duration" : 0.54600000000000004 + }, + { + "outcome" : "success", + "className" : "DownloadResumeDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCancelledDownloadResumeDataIsAvailableWithJSONResponseSerializer", + "duration" : 0.51900000000000002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "DownloadResumeDataTestCase" + }, + { + "endDate" : 1547853834.3110001, + "children" : [ + + ], + "startDate" : 1547853832.392, + "cases" : [ + { + "outcome" : "success", + "className" : "HTTPDigestAuthenticationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHTTPDigestAuthenticationWithInvalidCredentials", + "duration" : 1.0569999999999999 + }, + { + "outcome" : "success", + "className" : "HTTPDigestAuthenticationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHTTPDigestAuthenticationWithValidCredentials", + "duration" : 0.85799999999999998 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "HTTPDigestAuthenticationTestCase" + }, + { + "endDate" : 1547853834.3329999, + "children" : [ + + ], + "startDate" : 1547853834.313, + "cases" : [ + { + "outcome" : "success", + "className" : "HTTPHeadersTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHeadersAreStoreUniquelyByCaseInsensitiveName", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "HTTPHeadersTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHeadersCanBeProperlySortedByName", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "HTTPHeadersTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHeadersCanInsensitivelyGetAndSetThroughSubscript", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "HTTPHeadersTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHeadersHaveUnsortedDescription", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "HTTPHeadersTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHeadersPreserveLastFormAndValueOfAName", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "HTTPHeadersTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testHeadersPreserveOrderOfInsertion", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "HTTPHeadersTests" + }, + { + "endDate" : 1547853834.3540001, + "children" : [ + + ], + "startDate" : 1547853834.3340001, + "cases" : [ + { + "outcome" : "success", + "className" : "JSONParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataIsProperlyEncodedAndProperContentTypeIsSet", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataIsProperlyEncodedButContentTypeIsNotSetIfRequestAlreadyHasAContentType", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONEncoderCanBeCustomized", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONEncoderDefaultWorks", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatJSONEncoderPrettyPrintedPrintsPretty", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "JSONParameterEncoderTests" + }, + { + "endDate" : 1547853834.3710001, + "children" : [ + + ], + "startDate" : 1547853834.3559999, + "cases" : [ + { + "outcome" : "success", + "className" : "JSONParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testJSONParameterEncodeArray", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testJSONParameterEncodeComplexParameters", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testJSONParameterEncodeNilParameters", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "JSONParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testJSONParameterEncodeParametersRetainsCustomContentType", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "JSONParameterEncodingTestCase" + }, + { + "endDate" : 1547853834.4330001, + "children" : [ + + ], + "startDate" : 1547853834.372, + "cases" : [ + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingDataBodyPart", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingFileBodyPart", + "duration" : 0.021000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingMultipleBodyPartsWithVaryingTypes", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingMultipleDataBodyParts", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingMultipleFileBodyParts", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingMultipleStreamBodyParts", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncodingStreamBodyPart", + "duration" : 0.0040000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "MultipartFormDataEncodingTestCase" + }, + { + "endDate" : 1547853834.464, + "children" : [ + + ], + "startDate" : 1547853834.4349999, + "cases" : [ + { + "outcome" : "success", + "className" : "MultipartFormDataFailureTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAppendingFileBodyPartThatIsDirectoryReturnsError", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataFailureTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAppendingFileBodyPartThatIsNotFileURLReturnsError", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataFailureTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAppendingFileBodyPartThatIsNotReachableReturnsError", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataFailureTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAppendingFileBodyPartWithInvalidLastPathComponentReturnsError", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataFailureTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatWritingEncodedDataToBadURLFails", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataFailureTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatWritingEncodedDataToExistingFileURLFails", + "duration" : 0.0050000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "MultipartFormDataFailureTestCase" + }, + { + "endDate" : 1547853834.4749999, + "children" : [ + + ], + "startDate" : 1547853834.4660001, + "cases" : [ + { + "outcome" : "success", + "className" : "MultipartFormDataPropertiesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatContentLengthMatchesTotalBodyPartSize", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataPropertiesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatContentTypeContainsBoundary", + "duration" : 0.0030000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "MultipartFormDataPropertiesTestCase" + }, + { + "endDate" : 1547853834.526, + "children" : [ + + ], + "startDate" : 1547853834.4760001, + "cases" : [ + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingEncodedDataBodyPartToDisk", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingEncodedFileBodyPartToDisk", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingEncodedStreamBodyPartToDisk", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingMultipleEncodedBodyPartsWithVaryingTypesToDisk", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingMultipleEncodedDataBodyPartsToDisk", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingMultipleEncodedFileBodyPartsToDisk", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "MultipartFormDataWriteEncodedDataToDiskTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWritingMultipleEncodedStreamBodyPartsToDisk", + "duration" : 0.0050000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "MultipartFormDataWriteEncodedDataToDiskTestCase" + }, + { + "endDate" : 1547853835.0769999, + "children" : [ + + ], + "startDate" : 1547853834.5280001, + "cases" : [ + { + "outcome" : "success", + "className" : "MultipleValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds", + "duration" : 0.17799999999999999 + }, + { + "outcome" : "success", + "className" : "MultipleValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithContentTypeError", + "duration" : 0.18099999999999999 + }, + { + "outcome" : "success", + "className" : "MultipleValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithStatusCodeError", + "duration" : 0.184 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "MultipleValidationTestCase" + }, + { + "endDate" : 1547853835.1589999, + "children" : [ + + ], + "startDate" : 1547853835.079, + "cases" : [ + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAddressManagerCanBeDeinitialized", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAddressManagerIsNotifiedWhenStartListeningIsCalled", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAddressManagerStartsWithReachableStatus", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatHostManagerCanBeDeinitialized", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatHostManagerIsNotifiedWhenStartListeningIsCalled", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatHostManagerIsReachableOnWiFi", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatHostManagerStartsWithReachableStatus", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerCanBeInitializedFromAddress", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerCanBeInitializedFromHost", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsNotReachableOnWWANStatusWhenIsWWANAndConnectionIsRequired", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsNotReachableStatusWhenConnectionIsRequired", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsNotReachableStatusWhenInterventionIsRequired", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsNotReachableStatusWhenReachableFlagIsAbsent", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsNotRequired", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnDemand", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnTraffic", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "NetworkReachabilityManagerTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManagerReturnsReachableOnWWANStatusWhenIsWWAN", + "duration" : 0.0030000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "NetworkReachabilityManagerTestCase" + }, + { + "endDate" : 1547853839.701, + "children" : [ + + ], + "startDate" : 1547853835.161, + "cases" : [ + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testGETRequestDebugDescription", + "duration" : 0.64600000000000002 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testGETRequestWithDuplicateHeadersDebugDescription", + "duration" : 0.65800000000000003 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testGETRequestWithJSONHeaderDebugDescription", + "duration" : 0.65200000000000002 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testMultipartFormDataRequestWithDuplicateHeadersDebugDescription", + "duration" : 0.59899999999999998 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testPOSTRequestDebugDescription", + "duration" : 0.60499999999999998 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testPOSTRequestWithCookieDebugDescription", + "duration" : 0.68200000000000005 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testPOSTRequestWithCookiesDisabledDebugDescription", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testPOSTRequestWithJSONParametersDebugDescription", + "duration" : 0.66600000000000004 + }, + { + "outcome" : "success", + "className" : "RequestDebugDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestWithInvalidURLDebugDescription", + "duration" : 0.012 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "RequestDebugDescriptionTestCase" + }, + { + "endDate" : 1547853840.4389999, + "children" : [ + + ], + "startDate" : 1547853839.7030001, + "cases" : [ + { + "outcome" : "success", + "className" : "RequestDescriptionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testRequestDescription", + "duration" : 0.73299999999999998 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "RequestDescriptionTestCase" + }, + { + "endDate" : 1547853843.714, + "children" : [ + + ], + "startDate" : 1547853840.441, + "cases" : [ + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testPOSTRequestWithBase64EncodedImages", + "duration" : 1.1339999999999999 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testPOSTRequestWithUnicodeParameters", + "duration" : 0.188 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testRequestResponse", + "duration" : 0.191 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testRequestResponseWithProgress", + "duration" : 0.57799999999999996 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestsCanPassEncodableParametersAsAURLQuery", + "duration" : 0.184 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestsCanPassEncodableParametersAsJSONBodyData", + "duration" : 0.184 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestsCanPassEncodableParametersAsURLEncodedBodyData", + "duration" : 0.188 + }, + { + "outcome" : "success", + "className" : "RequestResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseSerializationWorksWithSerializationQueue", + "duration" : 0.61299999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "RequestResponseTestCase" + }, + { + "endDate" : 1547853843.911, + "children" : [ + + ], + "startDate" : 1547853843.717, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseDataReturnsFailureResultWithOptionalDataAndError", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ResponseDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseDataReturnsSuccessResultWithValidData", + "duration" : 0.17999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseDataTestCase" + }, + { + "endDate" : 1547853844.119, + "children" : [ + + ], + "startDate" : 1547853843.9119999, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseFlatMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapErrorCatchesTransformationError", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ResponseFlatMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapErrorPreservesSuccessValue", + "duration" : 0.182 + }, + { + "outcome" : "success", + "className" : "ResponseFlatMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapErrorTransformsError", + "duration" : 0.01 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseFlatMapErrorTestCase" + }, + { + "endDate" : 1547853844.507, + "children" : [ + + ], + "startDate" : 1547853844.1199999, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseFlatMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapCatchesTransformationError", + "duration" : 0.182 + }, + { + "outcome" : "success", + "className" : "ResponseFlatMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapPreservesFailureError", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ResponseFlatMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapTransformsSuccessValue", + "duration" : 0.187 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseFlatMapTestCase" + }, + { + "endDate" : 1547853844.7049999, + "children" : [ + + ], + "startDate" : 1547853844.5090001, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseJSONDecodableTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseJSONReturnsSuccessResultWithValidJSON", + "duration" : 0.182 + }, + { + "outcome" : "success", + "className" : "ResponseJSONDecodableTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseStringReturnsFailureResultWithOptionalDataAndError", + "duration" : 0.01 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseJSONDecodableTestCase" + }, + { + "endDate" : 1547853845.2780001, + "children" : [ + + ], + "startDate" : 1547853844.707, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseJSONTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseJSONReturnsSuccessResultForGETRequest", + "duration" : 0.186 + }, + { + "outcome" : "success", + "className" : "ResponseJSONTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseJSONReturnsSuccessResultForPOSTRequest", + "duration" : 0.17999999999999999 + }, + { + "outcome" : "success", + "className" : "ResponseJSONTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseJSONReturnsSuccessResultWithValidJSON", + "duration" : 0.187 + }, + { + "outcome" : "success", + "className" : "ResponseJSONTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseStringReturnsFailureResultWithOptionalDataAndError", + "duration" : 0.010999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseJSONTestCase" + }, + { + "endDate" : 1547853845.477, + "children" : [ + + ], + "startDate" : 1547853845.28, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapErrorPreservesSuccessValue", + "duration" : 0.183 + }, + { + "outcome" : "success", + "className" : "ResponseMapErrorTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapErrorTransformsFailureValue", + "duration" : 0.01 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseMapErrorTestCase" + }, + { + "endDate" : 1547853845.701, + "children" : [ + + ], + "startDate" : 1547853845.4790001, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapPreservesFailureError", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "ResponseMapTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapTransformsSuccessValue", + "duration" : 0.20599999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseMapTestCase" + }, + { + "endDate" : 1547853845.901, + "children" : [ + + ], + "startDate" : 1547853845.7030001, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseStringTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseStringReturnsFailureResultWithOptionalDataAndError", + "duration" : 0.012999999999999999 + }, + { + "outcome" : "success", + "className" : "ResponseStringTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseStringReturnsSuccessResultWithValidString", + "duration" : 0.17999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseStringTestCase" + }, + { + "endDate" : 1547853846.105, + "children" : [ + + ], + "startDate" : 1547853845.902, + "cases" : [ + { + "outcome" : "success", + "className" : "ResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseReturnsFailureResultWithOptionalDataAndError", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ResponseTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatResponseReturnsSuccessResultWithValidData", + "duration" : 0.189 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResponseTestCase" + }, + { + "endDate" : 1547853846.25, + "children" : [ + + ], + "startDate" : 1547853846.1059999, + "cases" : [ + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testFlatMapErrorCapturesThrownError", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testFlatMapErrorTransformsErrorValue", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testFunctionalMethodsCanBeChained", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testIfFailureDoesNotExecuteWhenSuccess", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testIfFailureExecutesWhenFailure", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testIfSuccessDoesNotExecutesWhenFailure", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testIfSuccessExecutesWhenSuccess", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testMapErrorPreservesSuccessError", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testMapErrorTransformsErrorValue", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDebugDescriptionStringMatchesExpectedValueForFailureCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDebugDescriptionStringMatchesExpectedValueForSuccessCase", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDescriptionStringMatchesExpectedValueForFailureCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDescriptionStringMatchesExpectedValueForSuccessCase", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatErrorPropertyReturnsErrorForFailureCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatErrorPropertyReturnsNilForSuccessCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapCatchesTransformationError", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapPreservesFailureError", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatFlatMapTransformsSuccessValue", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatInitializerFromThrowingClosureCatchesErrorAsAFailure", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatInitializerFromThrowingClosureStoresResultAsASuccess", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatIsFailurePropertyReturnsFalseForSuccessCase", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatIsFailurePropertyReturnsTrueForFailureCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatIsSuccessPropertyReturnsFalseForFailureCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatIsSuccessPropertyReturnsTrueForSuccessCase", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapPreservesFailureError", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMapTransformsSuccessValue", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUnwrapReturnsSuccessValue", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUnwrapThrowsFailureError", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValuePropertyReturnsNilForFailureCase", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValuePropertyReturnsValueForSuccessCase", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWithErrorDoesNotExecuteWhenSuccess", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWithErrorExecutesWhenFailure", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWithValueDoesNotExecutesWhenFailure", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ResultTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testWithValueExecutesWhenSuccess", + "duration" : 0.0030000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ResultTestCase" + }, + { + "endDate" : 1547853846.2739999, + "children" : [ + + ], + "startDate" : 1547853846.253, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyCertificatesInBundleTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testOnlyValidCertificatesAreDetected", + "duration" : 0.019 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyCertificatesInBundleTestCase" + }, + { + "endDate" : 1547853846.3210001, + "children" : [ + + ], + "startDate" : 1547853846.2750001, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyCompositeTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredLeafCertificateFailsDefaultAndRevocationComposite", + "duration" : 0.017000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyCompositeTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyCompositeTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidCertificateChainPassesDefaultAndRevocationCompositeChecks", + "duration" : 0.014999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyCompositeTestCase" + }, + { + "endDate" : 1547853846.332, + "children" : [ + + ], + "startDate" : 1547853846.323, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyDisableEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCertificateChainMissingIntermediateCertificatePassesEvaluation", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyDisableEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredLeafCertificatePassesEvaluation", + "duration" : 0.0030000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyDisableEvaluationTestCase" + }, + { + "endDate" : 1547853846.3710001, + "children" : [ + + ], + "startDate" : 1547853846.3340001, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAnchoredRootCertificatePassesBasicX509ValidationWithoutRootInTrust", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAnchoredRootCertificatePassesBasicX509ValidationWithRootInTrust", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCertificateMissingDNSNamePassesBasicX509Validation", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateFailsBasicX509Validation", + "duration" : 0.01 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase" + }, + { + "endDate" : 1547853846.4530001, + "children" : [ + + ], + "startDate" : 1547853846.3729999, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAnchoredRootCertificatePassesSSLValidationWithoutRootInTrust", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAnchoredRootCertificatePassesSSLValidationWithRootInTrust", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatCertificateMissingDNSNameFailsSSLValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDNSNameCertificatePassesSSLValidation", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateFailsSSLValidation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMultipleDNSNamesCertificatePassesSSLValidationForAllEntries", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPassingNilForHostParameterAllowsCertificateMissingDNSNameToPassSSLValidation", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatURICertificateFailsSSLValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatWildcardCertificatePassesSSLValidation", + "duration" : 0.012 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyExplorationSSLPolicyValidationTestCase" + }, + { + "endDate" : 1547853846.569, + "children" : [ + + ], + "startDate" : 1547853846.4549999, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidCertificateChainPassesEvaluationWithHostValidation", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidCertificateChainPassesEvaluationWithoutHostValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformDefaultEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation", + "duration" : 0.012 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyPerformDefaultEvaluationTestCase" + }, + { + "endDate" : 1547853846.7079999, + "children" : [ + + ], + "startDate" : 1547853846.5710001, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation", + "duration" : 0.014 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidCertificateChainPassesEvaluationWithHostValidation", + "duration" : 0.017999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidCertificateChainPassesEvaluationWithoutHostValidation", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPerformRevokedEvaluationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation", + "duration" : 0.014999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyPerformRevokedEvaluationTestCase" + }, + { + "endDate" : 1547853846.9809999, + "children" : [ + + ], + "startDate" : 1547853846.71, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedIntermediateCertificatePassesEvaluationWithoutHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedIntermediateCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation", + "duration" : 0.014 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedIntermediateCertificateWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedLeafCertificatePassesEvaluationWithoutHostValidation", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedLeafCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedLeafCertificateWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedRootCertificatePassesEvaluationWithoutHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedRootCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinnedRootCertificateWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningExpiredLeafCertificateFailsEvaluationWithHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningExpiredLeafCertificateFailsEvaluationWithoutHostValidation", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithHostValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithoutHostValidation", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation", + "duration" : 0.012999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningMultipleCertificatesWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinCertificatesTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningRootCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation", + "duration" : 0.0089999999999999993 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyPinCertificatesTestCase" + }, + { + "endDate" : 1547853847.1530001, + "children" : [ + + ], + "startDate" : 1547853846.983, + "cases" : [ + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningBackupKeyPassesEvaluationWithHostValidation", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningBackupKeyPassesEvaluationWithoutHostValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateKeyPassesEvaluationWithHostValidation", + "duration" : 0.01 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateKeyPassesEvaluationWithoutHostValidation", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningIntermediateKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningKeyNotInCertificateChainFailsEvaluationWithHostValidation", + "duration" : 0.012999999999999999 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningKeyNotInCertificateChainFailsEvaluationWithoutHostValidation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafKeyPassesEvaluationWithHostValidation", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafKeyPassesEvaluationWithoutHostValidation", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate", + "duration" : 0.0089999999999999993 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithIncorrectIntermediateCertificate", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithMissingIntermediateCertificate", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningRootKeyPassesEvaluationWithHostValidation", + "duration" : 0.014 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningRootKeyPassesEvaluationWithoutHostValidation", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningRootKeyWithoutCertificateChainValidationFailsEvaluationWithMissingIntermediateCertificate", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "ServerTrustPolicyPinPublicKeysTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPinningRootKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate", + "duration" : 0.010999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ServerTrustPolicyPinPublicKeysTestCase" + }, + { + "endDate" : 1547853850.7449999, + "children" : [ + + ], + "startDate" : 1547853847.155, + "cases" : [ + { + "outcome" : "success", + "className" : "SessionDelegateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAppropriateNotificationsAreCalledWithRequestForDataRequest", + "duration" : 0.73499999999999999 + }, + { + "outcome" : "success", + "className" : "SessionDelegateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDidCompleteNotificationIsCalledWithRequestForDownloadRequests", + "duration" : 0.63100000000000001 + }, + { + "outcome" : "success", + "className" : "SessionDelegateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestWillPerformHTTPRedirectionByDefault", + "duration" : 0.84999999999999998 + }, + { + "outcome" : "success", + "className" : "SessionDelegateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestWillPerformRedirectionMultipleTimesByDefault", + "duration" : 1.367 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "SessionDelegateTestCase" + }, + { + "endDate" : 1547853852.0380001, + "children" : [ + + ], + "startDate" : 1547853850.7460001, + "cases" : [ + { + "outcome" : "success", + "className" : "SessionManagerConfigurationHeadersTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDefaultConfigurationHeadersAreSentWithRequest", + "duration" : 0.60899999999999999 + }, + { + "outcome" : "success", + "className" : "SessionManagerConfigurationHeadersTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatEphemeralConfigurationHeadersAreSentWithRequest", + "duration" : 0.67800000000000005 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "SessionManagerConfigurationHeadersTestCase" + }, + { + "endDate" : 1547853858.4790001, + "children" : [ + + ], + "startDate" : 1547853852.039, + "cases" : [ + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDefaultAcceptEncodingSupportsAppropriateEncodingsOnAppropriateSystems", + "duration" : 0.72199999999999998 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testDefaultUserAgentHeader", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testInitializerWithDefaultArguments", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testInitializerWithSpecifiedArguments", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testReleasingManagerWithPendingCanceledRequestDeinitializesSuccessfully", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testReleasingManagerWithPendingRequestDeinitializesSuccessfully", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testSetStartRequestsImmediatelyToFalseAndCancelledCallsResponseHandlers", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testSetStartRequestsImmediatelyToFalseAndCancelThenResumeRequestDoesntCreateTaskAndStaysCancelled", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testSetStartRequestsImmediatelyToFalseAndResumeRequest", + "duration" : 0.63600000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testSetStartRequestsImmediatelyToFalseAndResumeThenCancelRequestHasCorrectOutput", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDataRequestWithInvalidURLStringThrowsResponseHandlerError", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatDownloadRequestWithInvalidURLStringThrowsResponseHandlerError", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestAdapterErrorThrowsResponseHandlerError", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRequestAdapterErrorThrowsResponseHandlerErrorWhenRequestIsRetried", + "duration" : 0.89600000000000002 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionInitializerSucceedsWithDefaultArguments", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionInitializerSucceedsWithSpecifiedArguments", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsAdapterWhenRequestIsRetried", + "duration" : 0.997 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestAdapterWhenCreatingDataRequest", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestAdapterWhenCreatingDownloadRequest", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithData", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithFile", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithInputStream", + "duration" : 0.0060000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestRetrierWhenDownloadInitiallyEncountersAdaptError", + "duration" : 0.629 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestRetrierWhenRequestEncountersError", + "duration" : 1.097 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestRetrierWhenRequestInitiallyEncountersAdaptError", + "duration" : 0.68600000000000005 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSessionManagerCallsRequestRetrierWhenUploadInitiallyEncountersAdaptError", + "duration" : 0.629 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadDataRequestWithInvalidURLStringThrowsResponseHandlerError", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadFileRequestWithInvalidURLStringThrowsResponseHandlerError", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "SessionTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadStreamRequestWithInvalidURLStringThrowsResponseHandlerError", + "duration" : 0.0050000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "SessionTestCase" + }, + { + "endDate" : 1547853858.4879999, + "children" : [ + + ], + "startDate" : 1547853858.4820001, + "cases" : [ + { + "outcome" : "success", + "className" : "SortedKeysJSONParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testTestJSONEncoderSortedKeysHasSortedKeys", + "duration" : 0.0040000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "SortedKeysJSONParameterEncoderTests" + }, + { + "endDate" : 1547853859.0339999, + "children" : [ + + ], + "startDate" : 1547853858.49, + "cases" : [ + { + "outcome" : "success", + "className" : "StatusCodeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithAcceptableStatusCodeResponseSucceeds", + "duration" : 0.17999999999999999 + }, + { + "outcome" : "success", + "className" : "StatusCodeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithNoAcceptableStatusCodesFails", + "duration" : 0.17999999999999999 + }, + { + "outcome" : "success", + "className" : "StatusCodeValidationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatValidationForRequestWithUnacceptableStatusCodeResponseFails", + "duration" : 0.17899999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "StatusCodeValidationTestCase" + }, + { + "endDate" : 1547853865.7279999, + "children" : [ + + ], + "startDate" : 1547853859.036, + "cases" : [ + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestFailsWhenPinningAllCertificatesWithCertificateChainValidation", + "duration" : 0.57999999999999996 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestFailsWhenPinningLeafCertificateWithCertificateChainValidation", + "duration" : 0.32300000000000001 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestFailsWhenPinningLeafPublicKeyWithCertificateChainValidation", + "duration" : 0.318 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestFailsWithDefaultServerTrustPolicy", + "duration" : 0.32200000000000001 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestFailsWithNoServerTrustPolicy", + "duration" : 0.32900000000000001 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestFailsWithRevokedServerTrustPolicy", + "duration" : 0.31900000000000001 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenDisablingEvaluation", + "duration" : 0.63100000000000001 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCACertificateWithoutCertificateChainOrHostValidation", + "duration" : 0.627 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCAPublicKeyWithoutCertificateChainOrHostValidation", + "duration" : 0.626 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenPinningLeafCertificateWithoutCertificateChainOrHostValidation", + "duration" : 0.68600000000000005 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenPinningLeafPublicKeyWithoutCertificateChainOrHostValidation", + "duration" : 0.626 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenPinningRootCACertificateWithoutCertificateChainValidation", + "duration" : 0.33500000000000002 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatExpiredCertificateRequestSucceedsWhenPinningRootCAPublicKeyWithoutCertificateChainValidation", + "duration" : 0.32500000000000001 + }, + { + "outcome" : "success", + "className" : "TLSEvaluationExpiredLeafCertificateTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatRevokedCertificateRequestFailsWithRevokedServerTrustPolicy", + "duration" : 0.622 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TLSEvaluationExpiredLeafCertificateTestCase" + }, + { + "endDate" : 1547853865.9130001, + "children" : [ + + ], + "startDate" : 1547853865.73, + "cases" : [ + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeDictionary", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeDouble", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeFloat", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeInt16", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeInt32", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeInt64", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeInt8", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeUInt", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeUInt16", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeUInt32", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeUInt64", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderCanEncodeUInt8", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderThrowsErrorWhenAttemptingToEncodeNilInKeyedContainer", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testEncoderThrowsErrorWhenAttemptingToEncodeNilInUnkeyedContainer", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testStringWithThousandsOfChineseCharactersIsPercentEscaped", + "duration" : 0.010999999999999999 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatAmpersandsInKeysAndValuesArePercentEscaped", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatARootArrayCannotBeEncoded", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatARootValueCannotBeEncoded", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatArraysCanBeEncodedWithoutBrackets", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatBoolsCanBeLiteralEncoded", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatEncodableClassWithNoInheritanceCanBeEncoded", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatEncodableStructCanBeEncoded", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatEncodableSubclassCanBeEncoded", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatEscapedCharactersCanBeCustomized", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatIllegalASCIICharactersArePercentEscaped", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManuallyEncodableStructCanBeEncoded", + "duration" : 0.0050000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatManuallyEncodableSubclassCanBeEncoded", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNestedDictionariesHaveBracketedKeys", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatNonLatinCharactersArePercentEscaped", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatOptionalValuesCannotBeEncoded", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPercentsInKeysAndValuesArePercentEscaped", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatPlusesInKeysAndValuesArePercentEscaped", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatQuestionMarksInKeysAndValuesAreNotPercentEscaped", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatReseredCharactersArePercentEscaped", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSlashesInKeysAndValuesAreNotPercentEscaped", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSpacesCanBeEncodedAsPluses", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatSpacesInKeysAndValuesArePercentEscaped", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUnreservedCharactersAreNotPercentEscaped", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "URLEncodedFormEncoderTests" + }, + { + "endDate" : 1547853865.9319999, + "children" : [ + + ], + "startDate" : 1547853865.915, + "cases" : [ + { + "outcome" : "success", + "className" : "URLEncodedFormParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatEncoderCanBeCustomized", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatQueryIsBodyEncodedAndProperContentTypeIsSetForPOSTRequest", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatQueryIsBodyEncodedButContentTypeIsNotSetWhenRequestAlreadyHasContentType", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLEncodedFormParameterEncoderTests", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatQueryIsInURLWhenDestinationIsURLAndMethodIsPOST", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "URLEncodedFormParameterEncoderTests" + }, + { + "endDate" : 1547853866.1029999, + "children" : [ + + ], + "startDate" : 1547853865.9330001, + "cases" : [ + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatIllegalASCIICharactersArePercentEscaped", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatReservedCharactersArePercentEscapedMinusQuestionMarkAndForwardSlash", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatReservedCharactersQuestionMarkAndForwardSlashAreNotPercentEscaped", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUnreservedLowercaseCharactersAreNotPercentEscaped", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUnreservedNumericCharactersAreNotPercentEscaped", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUnreservedUppercaseCharactersAreNotPercentEscaped", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatURLEncodedInURLParameterEncodingEncodesPOSTParametersInURL", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatURLParameterEncodingEncodesGETParametersInURL", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatURLParameterEncodingEncodesPOSTParametersInHTTPBody", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeEmptyDictionaryParameter", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeNilParameters", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeOneStringKeyStringValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeOneStringKeyStringValueParameterAppendedToQuery", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringForRequestWithPrecomposedQuery", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyArrayValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyArrayValueParameterWithoutBrackets", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyBoolValueParameter", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyDictionaryValueParameter", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyDoubleValueParameter", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyIntegerValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameterWithoutBrackets", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyNestedDictionaryValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyNonLatinStringValueParameter", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyNSNumberBoolValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyNSNumberIntegerValueParameter", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringKeyPercentEncodedStringValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithAmpersandKeyStringWithAmpersandValueParameter", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameterForRequestWithPrecomposedQuery", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithQuestionMarkKeyStringWithQuestionMarkValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithSpaceKeyStringWithSpaceValueParameter", + "duration" : 0.0030000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeStringWithThousandsOfChineseCharacters", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterEncodeTwoStringKeyStringValueParameters", + "duration" : 0.0040000000000000001 + }, + { + "outcome" : "success", + "className" : "URLParameterEncodingTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testURLParameterLiteralBoolEncodingWorksAndDoesNotAffectNumbers", + "duration" : 0.0040000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "URLParameterEncodingTestCase" + }, + { + "endDate" : 1547853866.744, + "children" : [ + + ], + "startDate" : 1547853866.1059999, + "cases" : [ + { + "outcome" : "success", + "className" : "URLProtocolTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatURLProtocolReceivesRequestHeadersAndSessionConfigurationHeaders", + "duration" : 0.63600000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "URLProtocolTestCase" + }, + { + "endDate" : 1547853867.1099999, + "children" : [ + + ], + "startDate" : 1547853866.7460001, + "cases" : [ + { + "outcome" : "success", + "className" : "UploadDataInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadClassMethodWithMethodURLAndData", + "duration" : 0.18099999999999999 + }, + { + "outcome" : "success", + "className" : "UploadDataInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadClassMethodWithMethodURLHeadersAndData", + "duration" : 0.17999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "UploadDataInitializationTestCase" + }, + { + "endDate" : 1547853867.52, + "children" : [ + + ], + "startDate" : 1547853867.112, + "cases" : [ + { + "outcome" : "success", + "className" : "UploadDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadDataRequest", + "duration" : 0.183 + }, + { + "outcome" : "success", + "className" : "UploadDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadDataRequestWithProgress", + "duration" : 0.222 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "UploadDataTestCase" + }, + { + "endDate" : 1547853868.006, + "children" : [ + + ], + "startDate" : 1547853867.5220001, + "cases" : [ + { + "outcome" : "success", + "className" : "UploadFileInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadClassMethodWithMethodURLAndFile", + "duration" : 0.23699999999999999 + }, + { + "outcome" : "success", + "className" : "UploadFileInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadClassMethodWithMethodURLHeadersAndFile", + "duration" : 0.24199999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "UploadFileInitializationTestCase" + }, + { + "endDate" : 1547853870.0309999, + "children" : [ + + ], + "startDate" : 1547853868.007, + "cases" : [ + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataAboveMemoryThresholdSetsContentTypeHeader", + "duration" : 0.19600000000000001 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataAboveMemoryThresholdStreamsFromDisk", + "duration" : 0.183 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataBelowMemoryThresholdSetsContentTypeHeader", + "duration" : 0.183 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataBelowMemoryThresholdStreamsFromMemory", + "duration" : 0.224 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataSetsContentTypeHeader", + "duration" : 0.28599999999999998 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataSucceedsWithDefaultParameters", + "duration" : 0.28000000000000003 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataWhileStreamingFromDiskMonitorsProgress", + "duration" : 0.32000000000000001 + }, + { + "outcome" : "success", + "className" : "UploadMultipartFormDataTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testThatUploadingMultipartFormDataWhileStreamingFromMemoryMonitorsProgress", + "duration" : 0.34000000000000002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "UploadMultipartFormDataTestCase" + }, + { + "endDate" : 1547853870.6889999, + "children" : [ + + ], + "startDate" : 1547853870.033, + "cases" : [ + { + "outcome" : "success", + "className" : "UploadStreamInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadClassMethodWithMethodURLAndStream", + "duration" : 0.34599999999999997 + }, + { + "outcome" : "success", + "className" : "UploadStreamInitializationTestCase", + "moduleName" : "Alamofire_iOS_Tests", + "testName" : "testUploadClassMethodWithMethodURLHeadersAndStream", + "duration" : 0.307 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "UploadStreamInitializationTestCase" + } + ], + "startDate" : 1547853800.7650001, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "Alamofire iOS Tests.xctest" + } + ], + "startDate" : 1547853800.763, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "All tests" +} \ No newline at end of file diff --git a/Tests/Assets/Alamofire.tests b/Tests/Assets/Alamofire.tests new file mode 100644 index 0000000..c395379 --- /dev/null +++ b/Tests/Assets/Alamofire.tests @@ -0,0 +1,1123 @@ +Test Suite 'All tests' started at 2019-01-19 00:23:20.763 +Test Suite 'Alamofire iOS Tests.xctest' started at 2019-01-19 00:23:20.765 +Test Suite 'AutomaticValidationTestCase' started at 2019-01-19 00:23:20.767 +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithAcceptableComplexContentTypeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithAcceptableComplexContentTypeResponseSucceeds]' passed (0.786 seconds). +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds]' passed (0.178 seconds). +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds]' passed (0.179 seconds). +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithUnacceptableContentTypeResponseFails]' started. +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithUnacceptableContentTypeResponseFails]' passed (0.180 seconds). +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeResponseFails]' started. +Test Case '-[Alamofire_iOS_Tests.AutomaticValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeResponseFails]' passed (0.179 seconds). +Test Suite 'AutomaticValidationTestCase' passed at 2019-01-19 00:23:22.276. + Executed 5 tests, with 0 failures (0 unexpected) in 1.502 (1.509) seconds +Test Suite 'BasicAuthenticationTestCase' started at 2019-01-19 00:23:22.277 +Test Case '-[Alamofire_iOS_Tests.BasicAuthenticationTestCase testHiddenHTTPBasicAuthentication]' started. +Test Case '-[Alamofire_iOS_Tests.BasicAuthenticationTestCase testHiddenHTTPBasicAuthentication]' passed (0.348 seconds). +Test Case '-[Alamofire_iOS_Tests.BasicAuthenticationTestCase testHTTPBasicAuthenticationWithInvalidCredentials]' started. +Test Case '-[Alamofire_iOS_Tests.BasicAuthenticationTestCase testHTTPBasicAuthenticationWithInvalidCredentials]' passed (1.066 seconds). +Test Case '-[Alamofire_iOS_Tests.BasicAuthenticationTestCase testHTTPBasicAuthenticationWithValidCredentials]' started. +Test Case '-[Alamofire_iOS_Tests.BasicAuthenticationTestCase testHTTPBasicAuthenticationWithValidCredentials]' passed (0.954 seconds). +Test Suite 'BasicAuthenticationTestCase' passed at 2019-01-19 00:23:24.651. + Executed 3 tests, with 0 failures (0 unexpected) in 2.369 (2.373) seconds +Test Suite 'CacheTestCase' started at 2019-01-19 00:23:24.652 +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testDefaultCachePolicy]' started. +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testDefaultCachePolicy]' passed (3.235 seconds). +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testIgnoreLocalCacheDataPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testIgnoreLocalCacheDataPolicy]' passed (3.221 seconds). +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testURLCacheContainsCachedResponsesForAllRequests]' started. +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testURLCacheContainsCachedResponsesForAllRequests]' passed (2.298 seconds). +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testUseLocalCacheDataAndDontLoadFromNetworkPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testUseLocalCacheDataAndDontLoadFromNetworkPolicy]' passed (2.364 seconds). +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testUseLocalCacheDataIfExistsOtherwiseLoadFromNetworkPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.CacheTestCase testUseLocalCacheDataIfExistsOtherwiseLoadFromNetworkPolicy]' passed (2.384 seconds). +Test Suite 'CacheTestCase' passed at 2019-01-19 00:23:38.164. + Executed 5 tests, with 0 failures (0 unexpected) in 13.503 (13.512) seconds +Test Suite 'ContentTypeValidationTestCase' started at 2019-01-19 00:23:38.166 +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithAcceptableContentTypeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithAcceptableContentTypeResponseSucceeds]' passed (0.184 seconds). +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceeds]' passed (0.182 seconds). +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceedsWhenResponseIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithAcceptableWildcardContentTypeResponseSucceedsWhenResponseIsNil]' passed (0.679 seconds). +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithNoAcceptableContentTypeResponseFails]' started. +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithNoAcceptableContentTypeResponseFails]' passed (0.183 seconds). +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithNoAcceptableContentTypeResponseSucceedsWhenNoDataIsReturned]' started. +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithNoAcceptableContentTypeResponseSucceedsWhenNoDataIsReturned]' passed (0.185 seconds). +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithUnacceptableContentTypeResponseFails]' started. +Test Case '-[Alamofire_iOS_Tests.ContentTypeValidationTestCase testThatValidationForRequestWithUnacceptableContentTypeResponseFails]' passed (0.192 seconds). +Test Suite 'ContentTypeValidationTestCase' passed at 2019-01-19 00:23:39.781. + Executed 6 tests, with 0 failures (0 unexpected) in 1.606 (1.615) seconds +Test Suite 'CustomResponseSerializerTestCases' started at 2019-01-19 00:23:39.782 +Test Case '-[Alamofire_iOS_Tests.CustomResponseSerializerTestCases testThatCustomResponseSerializersCanBeWrittenWithoutCompilerIssues]' started. +Test Case '-[Alamofire_iOS_Tests.CustomResponseSerializerTestCases testThatCustomResponseSerializersCanBeWrittenWithoutCompilerIssues]' passed (0.187 seconds). +Test Suite 'CustomResponseSerializerTestCases' passed at 2019-01-19 00:23:39.971. + Executed 1 test, with 0 failures (0 unexpected) in 0.187 (0.189) seconds +Test Suite 'CustomValidationTestCase' started at 2019-01-19 00:23:39.972 +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatCustomValidationCanThrowCustomError]' started. +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatCustomValidationCanThrowCustomError]' passed (0.193 seconds). +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatCustomValidationClosureHasAccessToServerResponseData]' started. +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatCustomValidationClosureHasAccessToServerResponseData]' passed (0.179 seconds). +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatValidationExtensionCanThrowCustomError]' started. +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatValidationExtensionCanThrowCustomError]' passed (0.177 seconds). +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatValidationExtensionHasAccessToServerResponseData]' started. +Test Case '-[Alamofire_iOS_Tests.CustomValidationTestCase testThatValidationExtensionHasAccessToServerResponseData]' passed (0.181 seconds). +Test Suite 'CustomValidationTestCase' passed at 2019-01-19 00:23:40.708. + Executed 4 tests, with 0 failures (0 unexpected) in 0.729 (0.736) seconds +Test Suite 'DataResponseSerializationTestCase' started at 2019-01-19 00:23:40.710 +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerFailsWhenDataIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerFailsWhenDataIsNil]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerFailsWhenErrorIsNotNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenDataIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenDataIsNotNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsEmpty]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsEmpty]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsInvalidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsInvalidJSON]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenErrorIsNotNil]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsValidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsValidJSON]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsEmpty]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsEmpty]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWhenErrorIsNotNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ProvidedEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ProvidedEncoding]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ResponseEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ResponseEncoding]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndNoProvidedEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndNoProvidedEncoding]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndUTF8ProvidedEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndUTF8ProvidedEncoding]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataUsingResponseTextEncodingName]' started. +Test Case '-[Alamofire_iOS_Tests.DataResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataUsingResponseTextEncodingName]' passed (0.003 seconds). +Test Suite 'DataResponseSerializationTestCase' passed at 2019-01-19 00:23:40.797. + Executed 22 tests, with 0 failures (0 unexpected) in 0.059 (0.087) seconds +Test Suite 'DecodableResponseSerializerTests' started at 2019-01-19 00:23:40.800 +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsEmpty]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsEmpty]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsInvalidRepresentation]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsInvalidRepresentation]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerFailsWhenErrorIsNotNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerSucceedsWhenDataIsValidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.DecodableResponseSerializerTests testThatDecodableResponseSerializerSucceedsWhenDataIsValidJSON]' passed (0.003 seconds). +Test Suite 'DecodableResponseSerializerTests' passed at 2019-01-19 00:23:40.831. + Executed 7 tests, with 0 failures (0 unexpected) in 0.020 (0.031) seconds +Test Suite 'DownloadInitializationTestCase' started at 2019-01-19 00:23:40.833 +Test Case '-[Alamofire_iOS_Tests.DownloadInitializationTestCase testDownloadClassMethodWithMethodURLAndDestination]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadInitializationTestCase testDownloadClassMethodWithMethodURLAndDestination]' passed (0.169 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadInitializationTestCase testDownloadClassMethodWithMethodURLHeadersAndDestination]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadInitializationTestCase testDownloadClassMethodWithMethodURLHeadersAndDestination]' passed (0.166 seconds). +Test Suite 'DownloadInitializationTestCase' passed at 2019-01-19 00:23:41.173. + Executed 2 tests, with 0 failures (0 unexpected) in 0.336 (0.340) seconds +Test Suite 'DownloadResponseFlatMapErrorTestCase' started at 2019-01-19 00:23:41.175 +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapErrorTestCase testThatFlatMapErrorCatchesTransformationError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapErrorTestCase testThatFlatMapErrorCatchesTransformationError]' passed (2.919 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapErrorTestCase testThatFlatMapErrorPreservesSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapErrorTestCase testThatFlatMapErrorPreservesSuccessValue]' passed (0.176 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapErrorTestCase testThatFlatMapErrorTransformsError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapErrorTestCase testThatFlatMapErrorTransformsError]' passed (0.010 seconds). +Test Suite 'DownloadResponseFlatMapErrorTestCase' passed at 2019-01-19 00:23:44.284. + Executed 3 tests, with 0 failures (0 unexpected) in 3.104 (3.109) seconds +Test Suite 'DownloadResponseFlatMapTestCase' started at 2019-01-19 00:23:44.286 +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapTestCase testThatFlatMapCatchesTransformationError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapTestCase testThatFlatMapCatchesTransformationError]' passed (0.189 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapTestCase testThatFlatMapPreservesFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapTestCase testThatFlatMapPreservesFailureError]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapTestCase testThatFlatMapTransformsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseFlatMapTestCase testThatFlatMapTransformsSuccessValue]' passed (0.173 seconds). +Test Suite 'DownloadResponseFlatMapTestCase' passed at 2019-01-19 00:23:44.660. + Executed 3 tests, with 0 failures (0 unexpected) in 0.370 (0.375) seconds +Test Suite 'DownloadResponseMapErrorTestCase' started at 2019-01-19 00:23:44.662 +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapErrorTestCase testThatMapErrorPreservesSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapErrorTestCase testThatMapErrorPreservesSuccessValue]' passed (0.172 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapErrorTestCase testThatMapErrorTransformsFailureValue]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapErrorTestCase testThatMapErrorTransformsFailureValue]' passed (0.008 seconds). +Test Suite 'DownloadResponseMapErrorTestCase' passed at 2019-01-19 00:23:44.846. + Executed 2 tests, with 0 failures (0 unexpected) in 0.181 (0.184) seconds +Test Suite 'DownloadResponseMapTestCase' started at 2019-01-19 00:23:44.847 +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapTestCase testThatMapPreservesFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapTestCase testThatMapPreservesFailureError]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapTestCase testThatMapTransformsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseMapTestCase testThatMapTransformsSuccessValue]' passed (0.174 seconds). +Test Suite 'DownloadResponseMapTestCase' passed at 2019-01-19 00:23:45.034. + Executed 2 tests, with 0 failures (0 unexpected) in 0.183 (0.187) seconds +Test Suite 'DownloadResponseSerializationTestCase' started at 2019-01-19 00:23:45.035 +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenErrorIsNotNil]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileDataIsEmpty]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileDataIsEmpty]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileURLIsInvalid]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileURLIsInvalid]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileURLIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileURLIsNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileURLIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerFailsWhenFileURLIsNilWithNonEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenFileDataIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatDataResponseSerializerSucceedsWhenFileDataIsNotNil]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsInvalidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsInvalidJSON]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenErrorIsNotNil]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenFileDataIsEmpty]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenFileDataIsEmpty]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenFileURLIsInvalid]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenFileURLIsInvalid]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenFileURLIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerFailsWhenFileURLIsNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsValidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatJSONResponseSerializerSucceedsWhenDataIsValidJSON]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenDataIsNilWithNonEmptyResponseStatusCode]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenErrorIsNotNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenErrorIsNotNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenFileDataIsEmpty]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenFileDataIsEmpty]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenFileURLIsInvalid]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenFileURLIsInvalid]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenFileURLIsNil]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWhenFileURLIsNil]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ProvidedEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ProvidedEncoding]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ResponseEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerFailsWithUTF32DataAndUTF8ResponseEncoding]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWhenDataIsNilWithEmptyResponseStatusCode]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndNoProvidedEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndNoProvidedEncoding]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndUTF8ProvidedEncoding]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataAndUTF8ProvidedEncoding]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataUsingResponseTextEncodingName]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseSerializationTestCase testThatStringResponseSerializerSucceedsWithUTF8DataUsingResponseTextEncodingName]' passed (0.004 seconds). +Test Suite 'DownloadResponseSerializationTestCase' passed at 2019-01-19 00:23:45.150. + Executed 26 tests, with 0 failures (0 unexpected) in 0.075 (0.115) seconds +Test Suite 'DownloadResponseTestCase' started at 2019-01-19 00:23:45.153 +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testCancelledDownloadRequest]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testCancelledDownloadRequest]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequest]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequest]' passed (0.329 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequestWithHeaders]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequestWithHeaders]' passed (0.169 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequestWithParameters]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequestWithParameters]' passed (0.175 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequestWithProgress]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testDownloadRequestWithProgress]' passed (0.696 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadingFileAndMovingToDestinationThatIsOccupiedThrowsError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadingFileAndMovingToDestinationThatIsOccupiedThrowsError]' passed (0.202 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadingFileAndMovingToDirectoryThatDoesNotExistThrowsError]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadingFileAndMovingToDirectoryThatDoesNotExistThrowsError]' passed (0.184 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadOptionsCanCreateIntermediateDirectoriesPriorToMovingFile]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadOptionsCanCreateIntermediateDirectoriesPriorToMovingFile]' passed (0.192 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadOptionsCanRemovePreviousFilePriorToMovingFile]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResponseTestCase testThatDownloadOptionsCanRemovePreviousFilePriorToMovingFile]' passed (0.186 seconds). +Test Suite 'DownloadResponseTestCase' passed at 2019-01-19 00:23:47.305. + Executed 9 tests, with 0 failures (0 unexpected) in 2.139 (2.152) seconds +Test Suite 'DownloadResumeDataTestCase' started at 2019-01-19 00:23:47.307 +Test Case '-[Alamofire_iOS_Tests.DownloadResumeDataTestCase testThatCancelledDownloadCanBeResumedWithResumeData]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResumeDataTestCase testThatCancelledDownloadCanBeResumedWithResumeData]' passed (4.014 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResumeDataTestCase testThatCancelledDownloadResponseDataMatchesResumeData]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResumeDataTestCase testThatCancelledDownloadResponseDataMatchesResumeData]' passed (0.546 seconds). +Test Case '-[Alamofire_iOS_Tests.DownloadResumeDataTestCase testThatCancelledDownloadResumeDataIsAvailableWithJSONResponseSerializer]' started. +Test Case '-[Alamofire_iOS_Tests.DownloadResumeDataTestCase testThatCancelledDownloadResumeDataIsAvailableWithJSONResponseSerializer]' passed (0.519 seconds). +Test Suite 'DownloadResumeDataTestCase' passed at 2019-01-19 00:23:52.390. + Executed 3 tests, with 0 failures (0 unexpected) in 5.079 (5.084) seconds +Test Suite 'HTTPDigestAuthenticationTestCase' started at 2019-01-19 00:23:52.392 +Test Case '-[Alamofire_iOS_Tests.HTTPDigestAuthenticationTestCase testHTTPDigestAuthenticationWithInvalidCredentials]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPDigestAuthenticationTestCase testHTTPDigestAuthenticationWithInvalidCredentials]' passed (1.057 seconds). +Test Case '-[Alamofire_iOS_Tests.HTTPDigestAuthenticationTestCase testHTTPDigestAuthenticationWithValidCredentials]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPDigestAuthenticationTestCase testHTTPDigestAuthenticationWithValidCredentials]' passed (0.858 seconds). +Test Suite 'HTTPDigestAuthenticationTestCase' passed at 2019-01-19 00:23:54.311. + Executed 2 tests, with 0 failures (0 unexpected) in 1.915 (1.919) seconds +Test Suite 'HTTPHeadersTests' started at 2019-01-19 00:23:54.313 +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersAreStoreUniquelyByCaseInsensitiveName]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersAreStoreUniquelyByCaseInsensitiveName]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersCanBeProperlySortedByName]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersCanBeProperlySortedByName]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersCanInsensitivelyGetAndSetThroughSubscript]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersCanInsensitivelyGetAndSetThroughSubscript]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersHaveUnsortedDescription]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersHaveUnsortedDescription]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersPreserveLastFormAndValueOfAName]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersPreserveLastFormAndValueOfAName]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersPreserveOrderOfInsertion]' started. +Test Case '-[Alamofire_iOS_Tests.HTTPHeadersTests testHeadersPreserveOrderOfInsertion]' passed (0.002 seconds). +Test Suite 'HTTPHeadersTests' passed at 2019-01-19 00:23:54.333. + Executed 6 tests, with 0 failures (0 unexpected) in 0.012 (0.020) seconds +Test Suite 'JSONParameterEncoderTests' started at 2019-01-19 00:23:54.334 +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatDataIsProperlyEncodedAndProperContentTypeIsSet]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatDataIsProperlyEncodedAndProperContentTypeIsSet]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatDataIsProperlyEncodedButContentTypeIsNotSetIfRequestAlreadyHasAContentType]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatDataIsProperlyEncodedButContentTypeIsNotSetIfRequestAlreadyHasAContentType]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatJSONEncoderCanBeCustomized]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatJSONEncoderCanBeCustomized]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatJSONEncoderDefaultWorks]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatJSONEncoderDefaultWorks]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatJSONEncoderPrettyPrintedPrintsPretty]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncoderTests testThatJSONEncoderPrettyPrintedPrintsPretty]' passed (0.002 seconds). +Test Suite 'JSONParameterEncoderTests' passed at 2019-01-19 00:23:54.354. + Executed 5 tests, with 0 failures (0 unexpected) in 0.013 (0.020) seconds +Test Suite 'JSONParameterEncodingTestCase' started at 2019-01-19 00:23:54.356 +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeArray]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeArray]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeComplexParameters]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeComplexParameters]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeNilParameters]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeNilParameters]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeParametersRetainsCustomContentType]' started. +Test Case '-[Alamofire_iOS_Tests.JSONParameterEncodingTestCase testJSONParameterEncodeParametersRetainsCustomContentType]' passed (0.002 seconds). +Test Suite 'JSONParameterEncodingTestCase' passed at 2019-01-19 00:23:54.371. + Executed 4 tests, with 0 failures (0 unexpected) in 0.009 (0.015) seconds +Test Suite 'MultipartFormDataEncodingTestCase' started at 2019-01-19 00:23:54.372 +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingDataBodyPart]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingDataBodyPart]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingFileBodyPart]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingFileBodyPart]' passed (0.021 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleBodyPartsWithVaryingTypes]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleBodyPartsWithVaryingTypes]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleDataBodyParts]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleDataBodyParts]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleFileBodyParts]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleFileBodyParts]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleStreamBodyParts]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingMultipleStreamBodyParts]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingStreamBodyPart]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataEncodingTestCase testEncodingStreamBodyPart]' passed (0.004 seconds). +Test Suite 'MultipartFormDataEncodingTestCase' passed at 2019-01-19 00:23:54.433. + Executed 7 tests, with 0 failures (0 unexpected) in 0.049 (0.061) seconds +Test Suite 'MultipartFormDataFailureTestCase' started at 2019-01-19 00:23:54.435 +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartThatIsDirectoryReturnsError]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartThatIsDirectoryReturnsError]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartThatIsNotFileURLReturnsError]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartThatIsNotFileURLReturnsError]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartThatIsNotReachableReturnsError]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartThatIsNotReachableReturnsError]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartWithInvalidLastPathComponentReturnsError]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatAppendingFileBodyPartWithInvalidLastPathComponentReturnsError]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatWritingEncodedDataToBadURLFails]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatWritingEncodedDataToBadURLFails]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatWritingEncodedDataToExistingFileURLFails]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataFailureTestCase testThatWritingEncodedDataToExistingFileURLFails]' passed (0.005 seconds). +Test Suite 'MultipartFormDataFailureTestCase' passed at 2019-01-19 00:23:54.464. + Executed 6 tests, with 0 failures (0 unexpected) in 0.021 (0.030) seconds +Test Suite 'MultipartFormDataPropertiesTestCase' started at 2019-01-19 00:23:54.466 +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataPropertiesTestCase testThatContentLengthMatchesTotalBodyPartSize]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataPropertiesTestCase testThatContentLengthMatchesTotalBodyPartSize]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataPropertiesTestCase testThatContentTypeContainsBoundary]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataPropertiesTestCase testThatContentTypeContainsBoundary]' passed (0.003 seconds). +Test Suite 'MultipartFormDataPropertiesTestCase' passed at 2019-01-19 00:23:54.475. + Executed 2 tests, with 0 failures (0 unexpected) in 0.005 (0.009) seconds +Test Suite 'MultipartFormDataWriteEncodedDataToDiskTestCase' started at 2019-01-19 00:23:54.476 +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingEncodedDataBodyPartToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingEncodedDataBodyPartToDisk]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingEncodedFileBodyPartToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingEncodedFileBodyPartToDisk]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingEncodedStreamBodyPartToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingEncodedStreamBodyPartToDisk]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedBodyPartsWithVaryingTypesToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedBodyPartsWithVaryingTypesToDisk]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedDataBodyPartsToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedDataBodyPartsToDisk]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedFileBodyPartsToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedFileBodyPartsToDisk]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedStreamBodyPartsToDisk]' started. +Test Case '-[Alamofire_iOS_Tests.MultipartFormDataWriteEncodedDataToDiskTestCase testWritingMultipleEncodedStreamBodyPartsToDisk]' passed (0.005 seconds). +Test Suite 'MultipartFormDataWriteEncodedDataToDiskTestCase' passed at 2019-01-19 00:23:54.526. + Executed 7 tests, with 0 failures (0 unexpected) in 0.041 (0.051) seconds +Test Suite 'MultipleValidationTestCase' started at 2019-01-19 00:23:54.528 +Test Case '-[Alamofire_iOS_Tests.MultipleValidationTestCase testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.MultipleValidationTestCase testThatValidationForRequestWithAcceptableStatusCodeAndContentTypeResponseSucceeds]' passed (0.178 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipleValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithContentTypeError]' started. +Test Case '-[Alamofire_iOS_Tests.MultipleValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithContentTypeError]' passed (0.181 seconds). +Test Case '-[Alamofire_iOS_Tests.MultipleValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithStatusCodeError]' started. +Test Case '-[Alamofire_iOS_Tests.MultipleValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeAndContentTypeResponseFailsWithStatusCodeError]' passed (0.184 seconds). +Test Suite 'MultipleValidationTestCase' passed at 2019-01-19 00:23:55.077. + Executed 3 tests, with 0 failures (0 unexpected) in 0.543 (0.548) seconds +Test Suite 'NetworkReachabilityManagerTestCase' started at 2019-01-19 00:23:55.079 +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatAddressManagerCanBeDeinitialized]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatAddressManagerCanBeDeinitialized]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatAddressManagerIsNotifiedWhenStartListeningIsCalled]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatAddressManagerIsNotifiedWhenStartListeningIsCalled]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatAddressManagerStartsWithReachableStatus]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatAddressManagerStartsWithReachableStatus]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerCanBeDeinitialized]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerCanBeDeinitialized]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerIsNotifiedWhenStartListeningIsCalled]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerIsNotifiedWhenStartListeningIsCalled]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerIsReachableOnWiFi]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerIsReachableOnWiFi]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerStartsWithReachableStatus]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatHostManagerStartsWithReachableStatus]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerCanBeInitializedFromAddress]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerCanBeInitializedFromAddress]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerCanBeInitializedFromHost]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerCanBeInitializedFromHost]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableOnWWANStatusWhenIsWWANAndConnectionIsRequired]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableOnWWANStatusWhenIsWWANAndConnectionIsRequired]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableStatusWhenConnectionIsRequired]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableStatusWhenConnectionIsRequired]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableStatusWhenInterventionIsRequired]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableStatusWhenInterventionIsRequired]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableStatusWhenReachableFlagIsAbsent]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsNotReachableStatusWhenReachableFlagIsAbsent]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsNotRequired]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsNotRequired]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnDemand]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnDemand]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnTraffic]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWiFiStatusWhenConnectionIsOnTraffic]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWWANStatusWhenIsWWAN]' started. +Test Case '-[Alamofire_iOS_Tests.NetworkReachabilityManagerTestCase testThatManagerReturnsReachableOnWWANStatusWhenIsWWAN]' passed (0.003 seconds). +Test Suite 'NetworkReachabilityManagerTestCase' passed at 2019-01-19 00:23:55.159. + Executed 17 tests, with 0 failures (0 unexpected) in 0.053 (0.080) seconds +Test Suite 'RequestDebugDescriptionTestCase' started at 2019-01-19 00:23:55.161 +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testGETRequestDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testGETRequestDebugDescription]' passed (0.646 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testGETRequestWithDuplicateHeadersDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testGETRequestWithDuplicateHeadersDebugDescription]' passed (0.658 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testGETRequestWithJSONHeaderDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testGETRequestWithJSONHeaderDebugDescription]' passed (0.652 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testMultipartFormDataRequestWithDuplicateHeadersDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testMultipartFormDataRequestWithDuplicateHeadersDebugDescription]' passed (0.599 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestDebugDescription]' passed (0.605 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestWithCookieDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestWithCookieDebugDescription]' passed (0.682 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestWithCookiesDisabledDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestWithCookiesDisabledDebugDescription]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestWithJSONParametersDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testPOSTRequestWithJSONParametersDebugDescription]' passed (0.666 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testThatRequestWithInvalidURLDebugDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDebugDescriptionTestCase testThatRequestWithInvalidURLDebugDescription]' passed (0.012 seconds). +Test Suite 'RequestDebugDescriptionTestCase' passed at 2019-01-19 00:23:59.701. + Executed 9 tests, with 0 failures (0 unexpected) in 4.525 (4.540) seconds +Test Suite 'RequestDescriptionTestCase' started at 2019-01-19 00:23:59.703 +Test Case '-[Alamofire_iOS_Tests.RequestDescriptionTestCase testRequestDescription]' started. +Test Case '-[Alamofire_iOS_Tests.RequestDescriptionTestCase testRequestDescription]' passed (0.733 seconds). +Test Suite 'RequestDescriptionTestCase' passed at 2019-01-19 00:24:00.439. + Executed 1 test, with 0 failures (0 unexpected) in 0.733 (0.736) seconds +Test Suite 'RequestResponseTestCase' started at 2019-01-19 00:24:00.441 +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testPOSTRequestWithBase64EncodedImages]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testPOSTRequestWithBase64EncodedImages]' passed (1.134 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testPOSTRequestWithUnicodeParameters]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testPOSTRequestWithUnicodeParameters]' passed (0.188 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testRequestResponse]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testRequestResponse]' passed (0.191 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testRequestResponseWithProgress]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testRequestResponseWithProgress]' passed (0.578 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatRequestsCanPassEncodableParametersAsAURLQuery]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatRequestsCanPassEncodableParametersAsAURLQuery]' passed (0.184 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatRequestsCanPassEncodableParametersAsJSONBodyData]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatRequestsCanPassEncodableParametersAsJSONBodyData]' passed (0.184 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatRequestsCanPassEncodableParametersAsURLEncodedBodyData]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatRequestsCanPassEncodableParametersAsURLEncodedBodyData]' passed (0.188 seconds). +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatResponseSerializationWorksWithSerializationQueue]' started. +Test Case '-[Alamofire_iOS_Tests.RequestResponseTestCase testThatResponseSerializationWorksWithSerializationQueue]' passed (0.613 seconds). +Test Suite 'RequestResponseTestCase' passed at 2019-01-19 00:24:03.714. + Executed 8 tests, with 0 failures (0 unexpected) in 3.259 (3.273) seconds +Test Suite 'ResponseDataTestCase' started at 2019-01-19 00:24:03.717 +Test Case '-[Alamofire_iOS_Tests.ResponseDataTestCase testThatResponseDataReturnsFailureResultWithOptionalDataAndError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseDataTestCase testThatResponseDataReturnsFailureResultWithOptionalDataAndError]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseDataTestCase testThatResponseDataReturnsSuccessResultWithValidData]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseDataTestCase testThatResponseDataReturnsSuccessResultWithValidData]' passed (0.180 seconds). +Test Suite 'ResponseDataTestCase' passed at 2019-01-19 00:24:03.911. + Executed 2 tests, with 0 failures (0 unexpected) in 0.190 (0.194) seconds +Test Suite 'ResponseFlatMapErrorTestCase' started at 2019-01-19 00:24:03.912 +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapErrorTestCase testThatFlatMapErrorCatchesTransformationError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapErrorTestCase testThatFlatMapErrorCatchesTransformationError]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapErrorTestCase testThatFlatMapErrorPreservesSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapErrorTestCase testThatFlatMapErrorPreservesSuccessValue]' passed (0.182 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapErrorTestCase testThatFlatMapErrorTransformsError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapErrorTestCase testThatFlatMapErrorTransformsError]' passed (0.010 seconds). +Test Suite 'ResponseFlatMapErrorTestCase' passed at 2019-01-19 00:24:04.119. + Executed 3 tests, with 0 failures (0 unexpected) in 0.201 (0.207) seconds +Test Suite 'ResponseFlatMapTestCase' started at 2019-01-19 00:24:04.120 +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapTestCase testThatFlatMapCatchesTransformationError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapTestCase testThatFlatMapCatchesTransformationError]' passed (0.182 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapTestCase testThatFlatMapPreservesFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapTestCase testThatFlatMapPreservesFailureError]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapTestCase testThatFlatMapTransformsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseFlatMapTestCase testThatFlatMapTransformsSuccessValue]' passed (0.187 seconds). +Test Suite 'ResponseFlatMapTestCase' passed at 2019-01-19 00:24:04.507. + Executed 3 tests, with 0 failures (0 unexpected) in 0.381 (0.387) seconds +Test Suite 'ResponseJSONDecodableTestCase' started at 2019-01-19 00:24:04.509 +Test Case '-[Alamofire_iOS_Tests.ResponseJSONDecodableTestCase testThatResponseJSONReturnsSuccessResultWithValidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseJSONDecodableTestCase testThatResponseJSONReturnsSuccessResultWithValidJSON]' passed (0.182 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseJSONDecodableTestCase testThatResponseStringReturnsFailureResultWithOptionalDataAndError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseJSONDecodableTestCase testThatResponseStringReturnsFailureResultWithOptionalDataAndError]' passed (0.010 seconds). +Test Suite 'ResponseJSONDecodableTestCase' passed at 2019-01-19 00:24:04.705. + Executed 2 tests, with 0 failures (0 unexpected) in 0.192 (0.196) seconds +Test Suite 'ResponseJSONTestCase' started at 2019-01-19 00:24:04.707 +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseJSONReturnsSuccessResultForGETRequest]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseJSONReturnsSuccessResultForGETRequest]' passed (0.186 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseJSONReturnsSuccessResultForPOSTRequest]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseJSONReturnsSuccessResultForPOSTRequest]' passed (0.180 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseJSONReturnsSuccessResultWithValidJSON]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseJSONReturnsSuccessResultWithValidJSON]' passed (0.187 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseStringReturnsFailureResultWithOptionalDataAndError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseJSONTestCase testThatResponseStringReturnsFailureResultWithOptionalDataAndError]' passed (0.011 seconds). +Test Suite 'ResponseJSONTestCase' passed at 2019-01-19 00:24:05.278. + Executed 4 tests, with 0 failures (0 unexpected) in 0.564 (0.571) seconds +Test Suite 'ResponseMapErrorTestCase' started at 2019-01-19 00:24:05.280 +Test Case '-[Alamofire_iOS_Tests.ResponseMapErrorTestCase testThatMapErrorPreservesSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseMapErrorTestCase testThatMapErrorPreservesSuccessValue]' passed (0.183 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseMapErrorTestCase testThatMapErrorTransformsFailureValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseMapErrorTestCase testThatMapErrorTransformsFailureValue]' passed (0.010 seconds). +Test Suite 'ResponseMapErrorTestCase' passed at 2019-01-19 00:24:05.477. + Executed 2 tests, with 0 failures (0 unexpected) in 0.193 (0.197) seconds +Test Suite 'ResponseMapTestCase' started at 2019-01-19 00:24:05.479 +Test Case '-[Alamofire_iOS_Tests.ResponseMapTestCase testThatMapPreservesFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseMapTestCase testThatMapPreservesFailureError]' passed (0.012 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseMapTestCase testThatMapTransformsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseMapTestCase testThatMapTransformsSuccessValue]' passed (0.206 seconds). +Test Suite 'ResponseMapTestCase' passed at 2019-01-19 00:24:05.701. + Executed 2 tests, with 0 failures (0 unexpected) in 0.218 (0.222) seconds +Test Suite 'ResponseStringTestCase' started at 2019-01-19 00:24:05.703 +Test Case '-[Alamofire_iOS_Tests.ResponseStringTestCase testThatResponseStringReturnsFailureResultWithOptionalDataAndError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseStringTestCase testThatResponseStringReturnsFailureResultWithOptionalDataAndError]' passed (0.013 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseStringTestCase testThatResponseStringReturnsSuccessResultWithValidString]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseStringTestCase testThatResponseStringReturnsSuccessResultWithValidString]' passed (0.180 seconds). +Test Suite 'ResponseStringTestCase' passed at 2019-01-19 00:24:05.901. + Executed 2 tests, with 0 failures (0 unexpected) in 0.193 (0.198) seconds +Test Suite 'ResponseTestCase' started at 2019-01-19 00:24:05.902 +Test Case '-[Alamofire_iOS_Tests.ResponseTestCase testThatResponseReturnsFailureResultWithOptionalDataAndError]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseTestCase testThatResponseReturnsFailureResultWithOptionalDataAndError]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ResponseTestCase testThatResponseReturnsSuccessResultWithValidData]' started. +Test Case '-[Alamofire_iOS_Tests.ResponseTestCase testThatResponseReturnsSuccessResultWithValidData]' passed (0.189 seconds). +Test Suite 'ResponseTestCase' passed at 2019-01-19 00:24:06.105. + Executed 2 tests, with 0 failures (0 unexpected) in 0.199 (0.203) seconds +Test Suite 'ResultTestCase' started at 2019-01-19 00:24:06.106 +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testFlatMapErrorCapturesThrownError]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testFlatMapErrorCapturesThrownError]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testFlatMapErrorTransformsErrorValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testFlatMapErrorTransformsErrorValue]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testFunctionalMethodsCanBeChained]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testFunctionalMethodsCanBeChained]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfFailureDoesNotExecuteWhenSuccess]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfFailureDoesNotExecuteWhenSuccess]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfFailureExecutesWhenFailure]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfFailureExecutesWhenFailure]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfSuccessDoesNotExecutesWhenFailure]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfSuccessDoesNotExecutesWhenFailure]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfSuccessExecutesWhenSuccess]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testIfSuccessExecutesWhenSuccess]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testMapErrorPreservesSuccessError]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testMapErrorPreservesSuccessError]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testMapErrorTransformsErrorValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testMapErrorTransformsErrorValue]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDebugDescriptionStringMatchesExpectedValueForFailureCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDebugDescriptionStringMatchesExpectedValueForFailureCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDebugDescriptionStringMatchesExpectedValueForSuccessCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDebugDescriptionStringMatchesExpectedValueForSuccessCase]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDescriptionStringMatchesExpectedValueForFailureCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDescriptionStringMatchesExpectedValueForFailureCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDescriptionStringMatchesExpectedValueForSuccessCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatDescriptionStringMatchesExpectedValueForSuccessCase]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatErrorPropertyReturnsErrorForFailureCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatErrorPropertyReturnsErrorForFailureCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatErrorPropertyReturnsNilForSuccessCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatErrorPropertyReturnsNilForSuccessCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatFlatMapCatchesTransformationError]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatFlatMapCatchesTransformationError]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatFlatMapPreservesFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatFlatMapPreservesFailureError]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatFlatMapTransformsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatFlatMapTransformsSuccessValue]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatInitializerFromThrowingClosureCatchesErrorAsAFailure]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatInitializerFromThrowingClosureCatchesErrorAsAFailure]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatInitializerFromThrowingClosureStoresResultAsASuccess]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatInitializerFromThrowingClosureStoresResultAsASuccess]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsFailurePropertyReturnsFalseForSuccessCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsFailurePropertyReturnsFalseForSuccessCase]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsFailurePropertyReturnsTrueForFailureCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsFailurePropertyReturnsTrueForFailureCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsSuccessPropertyReturnsFalseForFailureCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsSuccessPropertyReturnsFalseForFailureCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsSuccessPropertyReturnsTrueForSuccessCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatIsSuccessPropertyReturnsTrueForSuccessCase]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatMapPreservesFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatMapPreservesFailureError]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatMapTransformsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatMapTransformsSuccessValue]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatUnwrapReturnsSuccessValue]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatUnwrapReturnsSuccessValue]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatUnwrapThrowsFailureError]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatUnwrapThrowsFailureError]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatValuePropertyReturnsNilForFailureCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatValuePropertyReturnsNilForFailureCase]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatValuePropertyReturnsValueForSuccessCase]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testThatValuePropertyReturnsValueForSuccessCase]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithErrorDoesNotExecuteWhenSuccess]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithErrorDoesNotExecuteWhenSuccess]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithErrorExecutesWhenFailure]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithErrorExecutesWhenFailure]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithValueDoesNotExecutesWhenFailure]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithValueDoesNotExecutesWhenFailure]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithValueExecutesWhenSuccess]' started. +Test Case '-[Alamofire_iOS_Tests.ResultTestCase testWithValueExecutesWhenSuccess]' passed (0.003 seconds). +Test Suite 'ResultTestCase' passed at 2019-01-19 00:24:06.250. + Executed 34 tests, with 0 failures (0 unexpected) in 0.089 (0.144) seconds +Test Suite 'ServerTrustPolicyCertificatesInBundleTestCase' started at 2019-01-19 00:24:06.253 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCertificatesInBundleTestCase testOnlyValidCertificatesAreDetected]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCertificatesInBundleTestCase testOnlyValidCertificatesAreDetected]' passed (0.019 seconds). +Test Suite 'ServerTrustPolicyCertificatesInBundleTestCase' passed at 2019-01-19 00:24:06.274. + Executed 1 test, with 0 failures (0 unexpected) in 0.019 (0.021) seconds +Test Suite 'ServerTrustPolicyCompositeTestCase' started at 2019-01-19 00:24:06.275 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCompositeTestCase testThatExpiredLeafCertificateFailsDefaultAndRevocationComposite]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCompositeTestCase testThatExpiredLeafCertificateFailsDefaultAndRevocationComposite]' passed (0.017 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCompositeTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCompositeTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCompositeTestCase testThatValidCertificateChainPassesDefaultAndRevocationCompositeChecks]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyCompositeTestCase testThatValidCertificateChainPassesDefaultAndRevocationCompositeChecks]' passed (0.015 seconds). +Test Suite 'ServerTrustPolicyCompositeTestCase' passed at 2019-01-19 00:24:06.321. + Executed 3 tests, with 0 failures (0 unexpected) in 0.041 (0.046) seconds +Test Suite 'ServerTrustPolicyDisableEvaluationTestCase' started at 2019-01-19 00:24:06.323 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyDisableEvaluationTestCase testThatCertificateChainMissingIntermediateCertificatePassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyDisableEvaluationTestCase testThatCertificateChainMissingIntermediateCertificatePassesEvaluation]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyDisableEvaluationTestCase testThatExpiredLeafCertificatePassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyDisableEvaluationTestCase testThatExpiredLeafCertificatePassesEvaluation]' passed (0.003 seconds). +Test Suite 'ServerTrustPolicyDisableEvaluationTestCase' passed at 2019-01-19 00:24:06.332. + Executed 2 tests, with 0 failures (0 unexpected) in 0.005 (0.009) seconds +Test Suite 'ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase' started at 2019-01-19 00:24:06.334 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatAnchoredRootCertificatePassesBasicX509ValidationWithoutRootInTrust]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatAnchoredRootCertificatePassesBasicX509ValidationWithoutRootInTrust]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatAnchoredRootCertificatePassesBasicX509ValidationWithRootInTrust]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatAnchoredRootCertificatePassesBasicX509ValidationWithRootInTrust]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatCertificateMissingDNSNamePassesBasicX509Validation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatCertificateMissingDNSNamePassesBasicX509Validation]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatExpiredCertificateFailsBasicX509Validation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase testThatExpiredCertificateFailsBasicX509Validation]' passed (0.010 seconds). +Test Suite 'ServerTrustPolicyExplorationBasicX509PolicyValidationTestCase' passed at 2019-01-19 00:24:06.371. + Executed 4 tests, with 0 failures (0 unexpected) in 0.030 (0.037) seconds +Test Suite 'ServerTrustPolicyExplorationSSLPolicyValidationTestCase' started at 2019-01-19 00:24:06.373 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatAnchoredRootCertificatePassesSSLValidationWithoutRootInTrust]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatAnchoredRootCertificatePassesSSLValidationWithoutRootInTrust]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatAnchoredRootCertificatePassesSSLValidationWithRootInTrust]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatAnchoredRootCertificatePassesSSLValidationWithRootInTrust]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatCertificateMissingDNSNameFailsSSLValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatCertificateMissingDNSNameFailsSSLValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatDNSNameCertificatePassesSSLValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatDNSNameCertificatePassesSSLValidation]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatExpiredCertificateFailsSSLValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatExpiredCertificateFailsSSLValidation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatMultipleDNSNamesCertificatePassesSSLValidationForAllEntries]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatMultipleDNSNamesCertificatePassesSSLValidationForAllEntries]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatPassingNilForHostParameterAllowsCertificateMissingDNSNameToPassSSLValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatPassingNilForHostParameterAllowsCertificateMissingDNSNameToPassSSLValidation]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatURICertificateFailsSSLValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatURICertificateFailsSSLValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatWildcardCertificatePassesSSLValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyExplorationSSLPolicyValidationTestCase testThatWildcardCertificatePassesSSLValidation]' passed (0.012 seconds). +Test Suite 'ServerTrustPolicyExplorationSSLPolicyValidationTestCase' passed at 2019-01-19 00:24:06.453. + Executed 9 tests, with 0 failures (0 unexpected) in 0.065 (0.079) seconds +Test Suite 'ServerTrustPolicyPerformDefaultEvaluationTestCase' started at 2019-01-19 00:24:06.455 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithHostValidation]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithoutHostValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformDefaultEvaluationTestCase testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation]' passed (0.012 seconds). +Test Suite 'ServerTrustPolicyPerformDefaultEvaluationTestCase' passed at 2019-01-19 00:24:06.569. + Executed 11 tests, with 0 failures (0 unexpected) in 0.094 (0.114) seconds +Test Suite 'ServerTrustPolicyPerformRevokedEvaluationTestCase' started at 2019-01-19 00:24:06.571 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithHostValidation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatExpiredCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingDNSNameLeafCertificateFailsEvaluationWithHostValidation]' passed (0.014 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingDNSNameLeafCertificatePassesEvaluationWithoutHostValidation]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithHostValidation]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatMissingIntermediateCertificateInChainFailsEvaluationWithoutHostValidation]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithHostValidation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatNonAnchoredRootCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithHostValidation]' passed (0.018 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatValidCertificateChainPassesEvaluationWithoutHostValidation]' passed (0.012 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPerformRevokedEvaluationTestCase testThatWildcardedLeafCertificateChainPassesEvaluationWithHostValidation]' passed (0.015 seconds). +Test Suite 'ServerTrustPolicyPerformRevokedEvaluationTestCase' passed at 2019-01-19 00:24:06.708. + Executed 11 tests, with 0 failures (0 unexpected) in 0.117 (0.137) seconds +Test Suite 'ServerTrustPolicyPinCertificatesTestCase' started at 2019-01-19 00:24:06.710 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedIntermediateCertificatePassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedIntermediateCertificatePassesEvaluationWithoutHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedIntermediateCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedIntermediateCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation]' passed (0.014 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedIntermediateCertificateWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedIntermediateCertificateWithoutCertificateChainValidationPassesEvaluation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedLeafCertificatePassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedLeafCertificatePassesEvaluationWithoutHostValidation]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedLeafCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedLeafCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedRootCertificatePassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedRootCertificatePassesEvaluationWithoutHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedRootCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedRootCertificatePassesEvaluationWithSelfSignedSupportAndHostValidation]' passed (0.012 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedRootCertificateWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinnedRootCertificateWithoutCertificateChainValidationPassesEvaluation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningExpiredLeafCertificateFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningExpiredLeafCertificateFailsEvaluationWithHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningExpiredLeafCertificateFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningExpiredLeafCertificateFailsEvaluationWithoutHostValidation]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithHostValidation]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithHostValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateWithExpiredLeafCertificateFailsEvaluationWithoutHostValidation]' passed (0.012 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningIntermediateCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithHostValidation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningLeafCertificateNotInCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningLeafCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningLeafCertificateNotInCertificateChainWithoutCertificateChainValidationFailsEvaluation]' passed (0.013 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningMultipleCertificatesWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningMultipleCertificatesWithoutCertificateChainValidationPassesEvaluation]' passed (0.012 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningRootCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinCertificatesTestCase testThatPinningRootCertificateWithExpiredLeafCertificateWithoutCertificateChainValidationPassesEvaluation]' passed (0.009 seconds). +Test Suite 'ServerTrustPolicyPinCertificatesTestCase' passed at 2019-01-19 00:24:06.981. + Executed 23 tests, with 0 failures (0 unexpected) in 0.232 (0.272) seconds +Test Suite 'ServerTrustPolicyPinPublicKeysTestCase' started at 2019-01-19 00:24:06.983 +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningBackupKeyPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningBackupKeyPassesEvaluationWithHostValidation]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningBackupKeyPassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningBackupKeyPassesEvaluationWithoutHostValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningIntermediateKeyPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningIntermediateKeyPassesEvaluationWithHostValidation]' passed (0.010 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningIntermediateKeyPassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningIntermediateKeyPassesEvaluationWithoutHostValidation]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningIntermediateKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningIntermediateKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningKeyNotInCertificateChainFailsEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningKeyNotInCertificateChainFailsEvaluationWithHostValidation]' passed (0.013 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningKeyNotInCertificateChainFailsEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningKeyNotInCertificateChainFailsEvaluationWithoutHostValidation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyPassesEvaluationWithHostValidation]' passed (0.012 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyPassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyPassesEvaluationWithoutHostValidation]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate]' passed (0.009 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithIncorrectIntermediateCertificate]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithIncorrectIntermediateCertificate]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithMissingIntermediateCertificate]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningLeafKeyWithoutCertificateChainValidationPassesEvaluationWithMissingIntermediateCertificate]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyPassesEvaluationWithHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyPassesEvaluationWithHostValidation]' passed (0.014 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyPassesEvaluationWithoutHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyPassesEvaluationWithoutHostValidation]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyWithoutCertificateChainValidationFailsEvaluationWithMissingIntermediateCertificate]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyWithoutCertificateChainValidationFailsEvaluationWithMissingIntermediateCertificate]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate]' started. +Test Case '-[Alamofire_iOS_Tests.ServerTrustPolicyPinPublicKeysTestCase testThatPinningRootKeyWithoutCertificateChainValidationPassesEvaluationWithExpiredLeafCertificate]' passed (0.011 seconds). +Test Suite 'ServerTrustPolicyPinPublicKeysTestCase' passed at 2019-01-19 00:24:07.153. + Executed 16 tests, with 0 failures (0 unexpected) in 0.142 (0.170) seconds +Test Suite 'SessionDelegateTestCase' started at 2019-01-19 00:24:07.155 +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatAppropriateNotificationsAreCalledWithRequestForDataRequest]' started. +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatAppropriateNotificationsAreCalledWithRequestForDataRequest]' passed (0.735 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatDidCompleteNotificationIsCalledWithRequestForDownloadRequests]' started. +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatDidCompleteNotificationIsCalledWithRequestForDownloadRequests]' passed (0.631 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatRequestWillPerformHTTPRedirectionByDefault]' started. +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatRequestWillPerformHTTPRedirectionByDefault]' passed (0.850 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatRequestWillPerformRedirectionMultipleTimesByDefault]' started. +Test Case '-[Alamofire_iOS_Tests.SessionDelegateTestCase testThatRequestWillPerformRedirectionMultipleTimesByDefault]' passed (1.367 seconds). +Test Suite 'SessionDelegateTestCase' passed at 2019-01-19 00:24:10.745. + Executed 4 tests, with 0 failures (0 unexpected) in 3.583 (3.590) seconds +Test Suite 'SessionManagerConfigurationHeadersTestCase' started at 2019-01-19 00:24:10.746 +Test Case '-[Alamofire_iOS_Tests.SessionManagerConfigurationHeadersTestCase testThatDefaultConfigurationHeadersAreSentWithRequest]' started. +Test Case '-[Alamofire_iOS_Tests.SessionManagerConfigurationHeadersTestCase testThatDefaultConfigurationHeadersAreSentWithRequest]' passed (0.609 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionManagerConfigurationHeadersTestCase testThatEphemeralConfigurationHeadersAreSentWithRequest]' started. +Test Case '-[Alamofire_iOS_Tests.SessionManagerConfigurationHeadersTestCase testThatEphemeralConfigurationHeadersAreSentWithRequest]' passed (0.678 seconds). +Test Suite 'SessionManagerConfigurationHeadersTestCase' passed at 2019-01-19 00:24:12.038. + Executed 2 tests, with 0 failures (0 unexpected) in 1.287 (1.291) seconds +Test Suite 'SessionTestCase' started at 2019-01-19 00:24:12.039 +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testDefaultAcceptEncodingSupportsAppropriateEncodingsOnAppropriateSystems]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testDefaultAcceptEncodingSupportsAppropriateEncodingsOnAppropriateSystems]' passed (0.722 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testDefaultUserAgentHeader]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testDefaultUserAgentHeader]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testInitializerWithDefaultArguments]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testInitializerWithDefaultArguments]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testInitializerWithSpecifiedArguments]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testInitializerWithSpecifiedArguments]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testReleasingManagerWithPendingCanceledRequestDeinitializesSuccessfully]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testReleasingManagerWithPendingCanceledRequestDeinitializesSuccessfully]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testReleasingManagerWithPendingRequestDeinitializesSuccessfully]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testReleasingManagerWithPendingRequestDeinitializesSuccessfully]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndCancelledCallsResponseHandlers]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndCancelledCallsResponseHandlers]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndCancelThenResumeRequestDoesntCreateTaskAndStaysCancelled]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndCancelThenResumeRequestDoesntCreateTaskAndStaysCancelled]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndResumeRequest]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndResumeRequest]' passed (0.636 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndResumeThenCancelRequestHasCorrectOutput]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testSetStartRequestsImmediatelyToFalseAndResumeThenCancelRequestHasCorrectOutput]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatDataRequestWithInvalidURLStringThrowsResponseHandlerError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatDataRequestWithInvalidURLStringThrowsResponseHandlerError]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatDownloadRequestWithInvalidURLStringThrowsResponseHandlerError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatDownloadRequestWithInvalidURLStringThrowsResponseHandlerError]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatRequestAdapterErrorThrowsResponseHandlerError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatRequestAdapterErrorThrowsResponseHandlerError]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatRequestAdapterErrorThrowsResponseHandlerErrorWhenRequestIsRetried]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatRequestAdapterErrorThrowsResponseHandlerErrorWhenRequestIsRetried]' passed (0.896 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionInitializerSucceedsWithDefaultArguments]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionInitializerSucceedsWithDefaultArguments]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionInitializerSucceedsWithSpecifiedArguments]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionInitializerSucceedsWithSpecifiedArguments]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsAdapterWhenRequestIsRetried]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsAdapterWhenRequestIsRetried]' passed (0.997 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingDataRequest]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingDataRequest]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingDownloadRequest]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingDownloadRequest]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithData]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithData]' passed (0.007 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithFile]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithFile]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithInputStream]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestAdapterWhenCreatingUploadRequestWithInputStream]' passed (0.006 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenDownloadInitiallyEncountersAdaptError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenDownloadInitiallyEncountersAdaptError]' passed (0.629 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenRequestEncountersError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenRequestEncountersError]' passed (1.097 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenRequestInitiallyEncountersAdaptError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenRequestInitiallyEncountersAdaptError]' passed (0.686 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenUploadInitiallyEncountersAdaptError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatSessionManagerCallsRequestRetrierWhenUploadInitiallyEncountersAdaptError]' passed (0.629 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatUploadDataRequestWithInvalidURLStringThrowsResponseHandlerError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatUploadDataRequestWithInvalidURLStringThrowsResponseHandlerError]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatUploadFileRequestWithInvalidURLStringThrowsResponseHandlerError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatUploadFileRequestWithInvalidURLStringThrowsResponseHandlerError]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatUploadStreamRequestWithInvalidURLStringThrowsResponseHandlerError]' started. +Test Case '-[Alamofire_iOS_Tests.SessionTestCase testThatUploadStreamRequestWithInvalidURLStringThrowsResponseHandlerError]' passed (0.005 seconds). +Test Suite 'SessionTestCase' passed at 2019-01-19 00:24:18.479. + Executed 29 tests, with 0 failures (0 unexpected) in 6.393 (6.440) seconds +Test Suite 'SortedKeysJSONParameterEncoderTests' started at 2019-01-19 00:24:18.482 +Test Case '-[Alamofire_iOS_Tests.SortedKeysJSONParameterEncoderTests testTestJSONEncoderSortedKeysHasSortedKeys]' started. +Test Case '-[Alamofire_iOS_Tests.SortedKeysJSONParameterEncoderTests testTestJSONEncoderSortedKeysHasSortedKeys]' passed (0.004 seconds). +Test Suite 'SortedKeysJSONParameterEncoderTests' passed at 2019-01-19 00:24:18.488. + Executed 1 test, with 0 failures (0 unexpected) in 0.004 (0.007) seconds +Test Suite 'StatusCodeValidationTestCase' started at 2019-01-19 00:24:18.490 +Test Case '-[Alamofire_iOS_Tests.StatusCodeValidationTestCase testThatValidationForRequestWithAcceptableStatusCodeResponseSucceeds]' started. +Test Case '-[Alamofire_iOS_Tests.StatusCodeValidationTestCase testThatValidationForRequestWithAcceptableStatusCodeResponseSucceeds]' passed (0.180 seconds). +Test Case '-[Alamofire_iOS_Tests.StatusCodeValidationTestCase testThatValidationForRequestWithNoAcceptableStatusCodesFails]' started. +Test Case '-[Alamofire_iOS_Tests.StatusCodeValidationTestCase testThatValidationForRequestWithNoAcceptableStatusCodesFails]' passed (0.180 seconds). +Test Case '-[Alamofire_iOS_Tests.StatusCodeValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeResponseFails]' started. +Test Case '-[Alamofire_iOS_Tests.StatusCodeValidationTestCase testThatValidationForRequestWithUnacceptableStatusCodeResponseFails]' passed (0.179 seconds). +Test Suite 'StatusCodeValidationTestCase' passed at 2019-01-19 00:24:19.034. + Executed 3 tests, with 0 failures (0 unexpected) in 0.539 (0.545) seconds +Test Suite 'TLSEvaluationExpiredLeafCertificateTestCase' started at 2019-01-19 00:24:19.036 +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWhenPinningAllCertificatesWithCertificateChainValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWhenPinningAllCertificatesWithCertificateChainValidation]' passed (0.580 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWhenPinningLeafCertificateWithCertificateChainValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWhenPinningLeafCertificateWithCertificateChainValidation]' passed (0.323 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWhenPinningLeafPublicKeyWithCertificateChainValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWhenPinningLeafPublicKeyWithCertificateChainValidation]' passed (0.318 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWithDefaultServerTrustPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWithDefaultServerTrustPolicy]' passed (0.322 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWithNoServerTrustPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWithNoServerTrustPolicy]' passed (0.329 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWithRevokedServerTrustPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestFailsWithRevokedServerTrustPolicy]' passed (0.319 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenDisablingEvaluation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenDisablingEvaluation]' passed (0.631 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCACertificateWithoutCertificateChainOrHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCACertificateWithoutCertificateChainOrHostValidation]' passed (0.627 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCAPublicKeyWithoutCertificateChainOrHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningIntermediateCAPublicKeyWithoutCertificateChainOrHostValidation]' passed (0.626 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningLeafCertificateWithoutCertificateChainOrHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningLeafCertificateWithoutCertificateChainOrHostValidation]' passed (0.686 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningLeafPublicKeyWithoutCertificateChainOrHostValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningLeafPublicKeyWithoutCertificateChainOrHostValidation]' passed (0.626 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningRootCACertificateWithoutCertificateChainValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningRootCACertificateWithoutCertificateChainValidation]' passed (0.335 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningRootCAPublicKeyWithoutCertificateChainValidation]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatExpiredCertificateRequestSucceedsWhenPinningRootCAPublicKeyWithoutCertificateChainValidation]' passed (0.325 seconds). +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatRevokedCertificateRequestFailsWithRevokedServerTrustPolicy]' started. +Test Case '-[Alamofire_iOS_Tests.TLSEvaluationExpiredLeafCertificateTestCase testThatRevokedCertificateRequestFailsWithRevokedServerTrustPolicy]' passed (0.622 seconds). +Test Suite 'TLSEvaluationExpiredLeafCertificateTestCase' passed at 2019-01-19 00:24:25.728. + Executed 14 tests, with 0 failures (0 unexpected) in 6.669 (6.692) seconds +Test Suite 'URLEncodedFormEncoderTests' started at 2019-01-19 00:24:25.730 +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeDictionary]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeDictionary]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeDouble]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeDouble]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeFloat]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeFloat]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt16]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt16]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt32]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt32]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt64]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt64]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt8]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeInt8]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt16]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt16]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt32]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt32]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt64]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt64]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt8]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderCanEncodeUInt8]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderThrowsErrorWhenAttemptingToEncodeNilInKeyedContainer]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderThrowsErrorWhenAttemptingToEncodeNilInKeyedContainer]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderThrowsErrorWhenAttemptingToEncodeNilInUnkeyedContainer]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testEncoderThrowsErrorWhenAttemptingToEncodeNilInUnkeyedContainer]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testStringWithThousandsOfChineseCharactersIsPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testStringWithThousandsOfChineseCharactersIsPercentEscaped]' passed (0.011 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatAmpersandsInKeysAndValuesArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatAmpersandsInKeysAndValuesArePercentEscaped]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatARootArrayCannotBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatARootArrayCannotBeEncoded]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatARootValueCannotBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatARootValueCannotBeEncoded]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatArraysCanBeEncodedWithoutBrackets]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatArraysCanBeEncodedWithoutBrackets]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatBoolsCanBeLiteralEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatBoolsCanBeLiteralEncoded]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEncodableClassWithNoInheritanceCanBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEncodableClassWithNoInheritanceCanBeEncoded]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEncodableStructCanBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEncodableStructCanBeEncoded]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEncodableSubclassCanBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEncodableSubclassCanBeEncoded]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEscapedCharactersCanBeCustomized]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatEscapedCharactersCanBeCustomized]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatIllegalASCIICharactersArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatIllegalASCIICharactersArePercentEscaped]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatManuallyEncodableStructCanBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatManuallyEncodableStructCanBeEncoded]' passed (0.005 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatManuallyEncodableSubclassCanBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatManuallyEncodableSubclassCanBeEncoded]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatNestedDictionariesHaveBracketedKeys]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatNestedDictionariesHaveBracketedKeys]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatNonLatinCharactersArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatNonLatinCharactersArePercentEscaped]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatOptionalValuesCannotBeEncoded]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatOptionalValuesCannotBeEncoded]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatPercentsInKeysAndValuesArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatPercentsInKeysAndValuesArePercentEscaped]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatPlusesInKeysAndValuesArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatPlusesInKeysAndValuesArePercentEscaped]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatQuestionMarksInKeysAndValuesAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatQuestionMarksInKeysAndValuesAreNotPercentEscaped]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatReseredCharactersArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatReseredCharactersArePercentEscaped]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatSlashesInKeysAndValuesAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatSlashesInKeysAndValuesAreNotPercentEscaped]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatSpacesCanBeEncodedAsPluses]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatSpacesCanBeEncodedAsPluses]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatSpacesInKeysAndValuesArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatSpacesInKeysAndValuesArePercentEscaped]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatUnreservedCharactersAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormEncoderTests testThatUnreservedCharactersAreNotPercentEscaped]' passed (0.002 seconds). +Test Suite 'URLEncodedFormEncoderTests' passed at 2019-01-19 00:24:25.913. + Executed 38 tests, with 0 failures (0 unexpected) in 0.125 (0.182) seconds +Test Suite 'URLEncodedFormParameterEncoderTests' started at 2019-01-19 00:24:25.915 +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatEncoderCanBeCustomized]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatEncoderCanBeCustomized]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatQueryIsBodyEncodedAndProperContentTypeIsSetForPOSTRequest]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatQueryIsBodyEncodedAndProperContentTypeIsSetForPOSTRequest]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatQueryIsBodyEncodedButContentTypeIsNotSetWhenRequestAlreadyHasContentType]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatQueryIsBodyEncodedButContentTypeIsNotSetWhenRequestAlreadyHasContentType]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatQueryIsInURLWhenDestinationIsURLAndMethodIsPOST]' started. +Test Case '-[Alamofire_iOS_Tests.URLEncodedFormParameterEncoderTests testThatQueryIsInURLWhenDestinationIsURLAndMethodIsPOST]' passed (0.002 seconds). +Test Suite 'URLEncodedFormParameterEncoderTests' passed at 2019-01-19 00:24:25.932. + Executed 4 tests, with 0 failures (0 unexpected) in 0.011 (0.017) seconds +Test Suite 'URLParameterEncodingTestCase' started at 2019-01-19 00:24:25.933 +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatIllegalASCIICharactersArePercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatIllegalASCIICharactersArePercentEscaped]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatReservedCharactersArePercentEscapedMinusQuestionMarkAndForwardSlash]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatReservedCharactersArePercentEscapedMinusQuestionMarkAndForwardSlash]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatReservedCharactersQuestionMarkAndForwardSlashAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatReservedCharactersQuestionMarkAndForwardSlashAreNotPercentEscaped]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatUnreservedLowercaseCharactersAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatUnreservedLowercaseCharactersAreNotPercentEscaped]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatUnreservedNumericCharactersAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatUnreservedNumericCharactersAreNotPercentEscaped]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatUnreservedUppercaseCharactersAreNotPercentEscaped]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatUnreservedUppercaseCharactersAreNotPercentEscaped]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatURLEncodedInURLParameterEncodingEncodesPOSTParametersInURL]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatURLEncodedInURLParameterEncodingEncodesPOSTParametersInURL]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatURLParameterEncodingEncodesGETParametersInURL]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatURLParameterEncodingEncodesGETParametersInURL]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatURLParameterEncodingEncodesPOSTParametersInHTTPBody]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testThatURLParameterEncodingEncodesPOSTParametersInHTTPBody]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeEmptyDictionaryParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeEmptyDictionaryParameter]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeNilParameters]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeNilParameters]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeOneStringKeyStringValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeOneStringKeyStringValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeOneStringKeyStringValueParameterAppendedToQuery]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeOneStringKeyStringValueParameterAppendedToQuery]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringForRequestWithPrecomposedQuery]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringForRequestWithPrecomposedQuery]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyArrayValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyArrayValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyArrayValueParameterWithoutBrackets]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyArrayValueParameterWithoutBrackets]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyBoolValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyBoolValueParameter]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyDictionaryValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyDictionaryValueParameter]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyDoubleValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyDoubleValueParameter]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyIntegerValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyIntegerValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameterWithoutBrackets]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNestedDictionaryArrayValueParameterWithoutBrackets]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNestedDictionaryValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNestedDictionaryValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNonLatinStringValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNonLatinStringValueParameter]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNSNumberBoolValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNSNumberBoolValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNSNumberIntegerValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyNSNumberIntegerValueParameter]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyPercentEncodedStringValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringKeyPercentEncodedStringValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithAmpersandKeyStringWithAmpersandValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithAmpersandKeyStringWithAmpersandValueParameter]' passed (0.002 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameterForRequestWithPrecomposedQuery]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithPlusKeyStringWithPlusValueParameterForRequestWithPrecomposedQuery]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithQuestionMarkKeyStringWithQuestionMarkValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithQuestionMarkKeyStringWithQuestionMarkValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithSlashKeyStringWithQuestionMarkValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithSpaceKeyStringWithSpaceValueParameter]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithSpaceKeyStringWithSpaceValueParameter]' passed (0.003 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithThousandsOfChineseCharacters]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeStringWithThousandsOfChineseCharacters]' passed (0.008 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeTwoStringKeyStringValueParameters]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterEncodeTwoStringKeyStringValueParameters]' passed (0.004 seconds). +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterLiteralBoolEncodingWorksAndDoesNotAffectNumbers]' started. +Test Case '-[Alamofire_iOS_Tests.URLParameterEncodingTestCase testURLParameterLiteralBoolEncodingWorksAndDoesNotAffectNumbers]' passed (0.004 seconds). +Test Suite 'URLParameterEncodingTestCase' passed at 2019-01-19 00:24:26.103. + Executed 36 tests, with 0 failures (0 unexpected) in 0.113 (0.170) seconds +Test Suite 'URLProtocolTestCase' started at 2019-01-19 00:24:26.106 +Test Case '-[Alamofire_iOS_Tests.URLProtocolTestCase testThatURLProtocolReceivesRequestHeadersAndSessionConfigurationHeaders]' started. +Test Case '-[Alamofire_iOS_Tests.URLProtocolTestCase testThatURLProtocolReceivesRequestHeadersAndSessionConfigurationHeaders]' passed (0.636 seconds). +Test Suite 'URLProtocolTestCase' passed at 2019-01-19 00:24:26.744. + Executed 1 test, with 0 failures (0 unexpected) in 0.636 (0.638) seconds +Test Suite 'UploadDataInitializationTestCase' started at 2019-01-19 00:24:26.746 +Test Case '-[Alamofire_iOS_Tests.UploadDataInitializationTestCase testUploadClassMethodWithMethodURLAndData]' started. +Test Case '-[Alamofire_iOS_Tests.UploadDataInitializationTestCase testUploadClassMethodWithMethodURLAndData]' passed (0.181 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadDataInitializationTestCase testUploadClassMethodWithMethodURLHeadersAndData]' started. +Test Case '-[Alamofire_iOS_Tests.UploadDataInitializationTestCase testUploadClassMethodWithMethodURLHeadersAndData]' passed (0.180 seconds). +Test Suite 'UploadDataInitializationTestCase' passed at 2019-01-19 00:24:27.110. + Executed 2 tests, with 0 failures (0 unexpected) in 0.361 (0.364) seconds +Test Suite 'UploadDataTestCase' started at 2019-01-19 00:24:27.112 +Test Case '-[Alamofire_iOS_Tests.UploadDataTestCase testUploadDataRequest]' started. +Test Case '-[Alamofire_iOS_Tests.UploadDataTestCase testUploadDataRequest]' passed (0.183 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadDataTestCase testUploadDataRequestWithProgress]' started. +Test Case '-[Alamofire_iOS_Tests.UploadDataTestCase testUploadDataRequestWithProgress]' passed (0.222 seconds). +Test Suite 'UploadDataTestCase' passed at 2019-01-19 00:24:27.520. + Executed 2 tests, with 0 failures (0 unexpected) in 0.405 (0.408) seconds +Test Suite 'UploadFileInitializationTestCase' started at 2019-01-19 00:24:27.522 +Test Case '-[Alamofire_iOS_Tests.UploadFileInitializationTestCase testUploadClassMethodWithMethodURLAndFile]' started. +Test Case '-[Alamofire_iOS_Tests.UploadFileInitializationTestCase testUploadClassMethodWithMethodURLAndFile]' passed (0.237 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadFileInitializationTestCase testUploadClassMethodWithMethodURLHeadersAndFile]' started. +Test Case '-[Alamofire_iOS_Tests.UploadFileInitializationTestCase testUploadClassMethodWithMethodURLHeadersAndFile]' passed (0.242 seconds). +Test Suite 'UploadFileInitializationTestCase' passed at 2019-01-19 00:24:28.006. + Executed 2 tests, with 0 failures (0 unexpected) in 0.480 (0.484) seconds +Test Suite 'UploadMultipartFormDataTestCase' started at 2019-01-19 00:24:28.007 +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataAboveMemoryThresholdSetsContentTypeHeader]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataAboveMemoryThresholdSetsContentTypeHeader]' passed (0.196 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataAboveMemoryThresholdStreamsFromDisk]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataAboveMemoryThresholdStreamsFromDisk]' passed (0.183 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataBelowMemoryThresholdSetsContentTypeHeader]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataBelowMemoryThresholdSetsContentTypeHeader]' passed (0.183 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataBelowMemoryThresholdStreamsFromMemory]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataBelowMemoryThresholdStreamsFromMemory]' passed (0.224 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataSetsContentTypeHeader]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataSetsContentTypeHeader]' passed (0.286 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataSucceedsWithDefaultParameters]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataSucceedsWithDefaultParameters]' passed (0.280 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataWhileStreamingFromDiskMonitorsProgress]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataWhileStreamingFromDiskMonitorsProgress]' passed (0.320 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataWhileStreamingFromMemoryMonitorsProgress]' started. +Test Case '-[Alamofire_iOS_Tests.UploadMultipartFormDataTestCase testThatUploadingMultipartFormDataWhileStreamingFromMemoryMonitorsProgress]' passed (0.340 seconds). +Test Suite 'UploadMultipartFormDataTestCase' passed at 2019-01-19 00:24:30.031. + Executed 8 tests, with 0 failures (0 unexpected) in 2.011 (2.024) seconds +Test Suite 'UploadStreamInitializationTestCase' started at 2019-01-19 00:24:30.033 +Test Case '-[Alamofire_iOS_Tests.UploadStreamInitializationTestCase testUploadClassMethodWithMethodURLAndStream]' started. +Test Case '-[Alamofire_iOS_Tests.UploadStreamInitializationTestCase testUploadClassMethodWithMethodURLAndStream]' passed (0.346 seconds). +Test Case '-[Alamofire_iOS_Tests.UploadStreamInitializationTestCase testUploadClassMethodWithMethodURLHeadersAndStream]' started. +Test Case '-[Alamofire_iOS_Tests.UploadStreamInitializationTestCase testUploadClassMethodWithMethodURLHeadersAndStream]' passed (0.307 seconds). +Test Suite 'UploadStreamInitializationTestCase' passed at 2019-01-19 00:24:30.689. + Executed 2 tests, with 0 failures (0 unexpected) in 0.653 (0.656) seconds +Test Suite 'Alamofire iOS Tests.xctest' passed at 2019-01-19 00:24:30.690. + Executed 464 tests, with 0 failures (0 unexpected) in 69.056 (69.925) seconds +Test Suite 'All tests' passed at 2019-01-19 00:24:30.703. + Executed 464 tests, with 0 failures (0 unexpected) in 69.056 (69.940) seconds \ No newline at end of file diff --git a/Tests/Assets/Kitura-coverage.json b/Tests/Assets/Kitura-coverage.json new file mode 100644 index 0000000..b9cf33c --- /dev/null +++ b/Tests/Assets/Kitura-coverage.json @@ -0,0 +1,246456 @@ +{ + "version": "2.0.0", + "type": "llvm.coverage.json.export", + "data": [ + { + "files": [ + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift", + "segments": [ + [ + 46, + 41, + 0, + 1, + 1 + ], + [ + 48, + 6, + 0, + 0, + 0 + ], + [ + 50, + 88, + 0, + 1, + 1 + ], + [ + 52, + 6, + 0, + 0, + 0 + ], + [ + 54, + 79, + 0, + 1, + 1 + ], + [ + 56, + 6, + 0, + 0, + 0 + ], + [ + 60, + 42, + 0, + 1, + 1 + ], + [ + 63, + 6, + 0, + 0, + 0 + ], + [ + 65, + 102, + 0, + 1, + 1 + ], + [ + 67, + 6, + 0, + 0, + 0 + ], + [ + 69, + 96, + 0, + 1, + 1 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 73, + 86, + 0, + 1, + 1 + ], + [ + 75, + 6, + 0, + 0, + 0 + ], + [ + 79, + 80, + 0, + 1, + 1 + ], + [ + 81, + 6, + 0, + 0, + 0 + ], + [ + 85, + 32, + 0, + 1, + 1 + ], + [ + 87, + 6, + 0, + 0, + 0 + ], + [ + 89, + 70, + 0, + 1, + 1 + ], + [ + 91, + 6, + 0, + 0, + 0 + ], + [ + 93, + 80, + 0, + 1, + 1 + ], + [ + 95, + 6, + 0, + 0, + 0 + ], + [ + 97, + 95, + 0, + 1, + 1 + ], + [ + 99, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 37, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 12, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 12, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 12, + "covered": 0, + "notcovered": 12, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift", + "segments": [ + [ + 108, + 55, + 1426, + 1, + 1 + ], + [ + 117, + 4, + 0, + 0, + 0 + ], + [ + 190, + 108, + 0, + 1, + 1 + ], + [ + 194, + 26, + 0, + 1, + 1 + ], + [ + 196, + 5, + 0, + 1, + 1 + ], + [ + 197, + 4, + 0, + 0, + 0 + ], + [ + 213, + 238, + 0, + 1, + 1 + ], + [ + 216, + 38, + 0, + 1, + 1 + ], + [ + 216, + 57, + 0, + 1, + 0 + ], + [ + 219, + 26, + 0, + 1, + 1 + ], + [ + 221, + 5, + 0, + 1, + 1 + ], + [ + 222, + 4, + 0, + 0, + 0 + ], + [ + 240, + 238, + 0, + 1, + 1 + ], + [ + 243, + 38, + 0, + 1, + 1 + ], + [ + 243, + 57, + 0, + 1, + 0 + ], + [ + 246, + 26, + 0, + 1, + 1 + ], + [ + 248, + 5, + 0, + 1, + 1 + ], + [ + 249, + 4, + 0, + 0, + 0 + ], + [ + 265, + 225, + 1, + 1, + 1 + ], + [ + 271, + 26, + 0, + 1, + 1 + ], + [ + 273, + 5, + 1, + 1, + 1 + ], + [ + 274, + 4, + 0, + 0, + 0 + ], + [ + 376, + 64, + 4, + 1, + 1 + ], + [ + 383, + 3, + 0, + 0, + 0 + ], + [ + 392, + 48, + 389, + 1, + 1 + ], + [ + 401, + 3, + 0, + 0, + 0 + ], + [ + 411, + 48, + 393, + 1, + 1 + ], + [ + 439, + 3, + 0, + 0, + 0 + ], + [ + 444, + 29, + 392, + 1, + 1 + ], + [ + 474, + 27, + 392, + 1, + 1 + ], + [ + 476, + 5, + 392, + 1, + 1 + ], + [ + 486, + 3, + 0, + 0, + 0 + ], + [ + 493, + 46, + 778, + 1, + 1 + ], + [ + 496, + 29, + 389, + 1, + 1 + ], + [ + 502, + 4, + 778, + 1, + 1 + ], + [ + 502, + 10, + 389, + 1, + 1 + ], + [ + 532, + 4, + 778, + 1, + 1 + ], + [ + 533, + 3, + 0, + 0, + 0 + ], + [ + 540, + 47, + 0, + 1, + 1 + ], + [ + 564, + 3, + 0, + 0, + 0 + ], + [ + 575, + 73, + 408, + 1, + 1 + ], + [ + 607, + 54, + 408, + 1, + 1 + ], + [ + 609, + 46, + 0, + 1, + 1 + ], + [ + 613, + 6, + 408, + 1, + 1 + ], + [ + 617, + 35, + 12, + 1, + 1 + ], + [ + 621, + 6, + 396, + 1, + 1 + ], + [ + 621, + 39, + 2, + 1, + 1 + ], + [ + 624, + 6, + 396, + 1, + 1 + ], + [ + 625, + 21, + 396, + 1, + 0 + ], + [ + 626, + 5, + 408, + 1, + 0 + ], + [ + 631, + 3, + 0, + 0, + 0 + ], + [ + 643, + 80, + 1018, + 1, + 1 + ], + [ + 676, + 54, + 1018, + 1, + 1 + ], + [ + 678, + 46, + 0, + 1, + 1 + ], + [ + 682, + 6, + 1018, + 1, + 1 + ], + [ + 686, + 35, + 494, + 1, + 1 + ], + [ + 686, + 61, + 1018, + 1, + 0 + ], + [ + 686, + 65, + 9, + 1, + 1 + ], + [ + 686, + 95, + 1018, + 1, + 0 + ], + [ + 686, + 96, + 0, + 1, + 1 + ], + [ + 689, + 6, + 1018, + 1, + 1 + ], + [ + 691, + 35, + 485, + 1, + 1 + ], + [ + 695, + 6, + 533, + 1, + 1 + ], + [ + 697, + 45, + 9, + 1, + 1 + ], + [ + 697, + 46, + 533, + 1, + 0 + ], + [ + 697, + 49, + 524, + 1, + 1 + ], + [ + 697, + 58, + 1018, + 1, + 0 + ], + [ + 704, + 3, + 0, + 0, + 0 + ], + [ + 713, + 61, + 393, + 1, + 1 + ], + [ + 716, + 42, + 0, + 1, + 1 + ], + [ + 718, + 4, + 393, + 1, + 1 + ], + [ + 721, + 55, + 0, + 1, + 1 + ], + [ + 725, + 5, + 0, + 1, + 1 + ], + [ + 725, + 52, + 0, + 1, + 0 + ], + [ + 726, + 5, + 0, + 1, + 1 + ], + [ + 726, + 30, + 0, + 1, + 0 + ], + [ + 726, + 36, + 0, + 1, + 1 + ], + [ + 729, + 6, + 0, + 1, + 1 + ], + [ + 730, + 10, + 0, + 1, + 0 + ], + [ + 731, + 4, + 393, + 1, + 1 + ], + [ + 766, + 53, + 0, + 1, + 1 + ], + [ + 769, + 5, + 393, + 1, + 1 + ], + [ + 776, + 55, + 0, + 1, + 1 + ], + [ + 778, + 55, + 0, + 1, + 1 + ], + [ + 781, + 5, + 0, + 1, + 1 + ], + [ + 782, + 4, + 393, + 1, + 1 + ], + [ + 784, + 54, + 0, + 1, + 1 + ], + [ + 787, + 76, + 0, + 1, + 1 + ], + [ + 790, + 5, + 0, + 1, + 1 + ], + [ + 792, + 25, + 0, + 1, + 1 + ], + [ + 795, + 6, + 0, + 1, + 1 + ], + [ + 802, + 4, + 393, + 1, + 1 + ], + [ + 805, + 59, + 0, + 1, + 1 + ], + [ + 807, + 61, + 0, + 1, + 1 + ], + [ + 810, + 5, + 0, + 1, + 1 + ], + [ + 811, + 4, + 393, + 1, + 1 + ], + [ + 814, + 50, + 0, + 1, + 1 + ], + [ + 816, + 60, + 0, + 1, + 1 + ], + [ + 819, + 5, + 0, + 1, + 1 + ], + [ + 820, + 4, + 393, + 1, + 1 + ], + [ + 823, + 61, + 393, + 1, + 1 + ], + [ + 825, + 58, + 0, + 1, + 1 + ], + [ + 828, + 5, + 393, + 1, + 1 + ], + [ + 829, + 4, + 393, + 1, + 1 + ], + [ + 830, + 3, + 0, + 0, + 0 + ], + [ + 835, + 39, + 393, + 1, + 1 + ], + [ + 1022, + 56, + 393, + 1, + 1 + ], + [ + 1022, + 67, + 393, + 1, + 0 + ], + [ + 1022, + 70, + 0, + 1, + 1 + ], + [ + 1022, + 81, + 393, + 1, + 0 + ], + [ + 1024, + 45, + 0, + 1, + 1 + ], + [ + 1028, + 5, + 393, + 1, + 1 + ], + [ + 1036, + 52, + 393, + 1, + 1 + ], + [ + 1039, + 46, + 4, + 1, + 1 + ], + [ + 1042, + 71, + 0, + 1, + 1 + ], + [ + 1046, + 7, + 4, + 1, + 1 + ], + [ + 1049, + 64, + 0, + 1, + 1 + ], + [ + 1053, + 7, + 4, + 1, + 1 + ], + [ + 1056, + 66, + 0, + 1, + 1 + ], + [ + 1060, + 7, + 4, + 1, + 1 + ], + [ + 1068, + 33, + 0, + 1, + 1 + ], + [ + 1071, + 7, + 4, + 1, + 1 + ], + [ + 1075, + 29, + 0, + 1, + 1 + ], + [ + 1078, + 7, + 4, + 1, + 1 + ], + [ + 1084, + 50, + 0, + 1, + 1 + ], + [ + 1088, + 7, + 4, + 1, + 1 + ], + [ + 1093, + 34, + 0, + 1, + 1 + ], + [ + 1096, + 7, + 4, + 1, + 1 + ], + [ + 1100, + 6, + 393, + 1, + 1 + ], + [ + 1103, + 32, + 0, + 1, + 1 + ], + [ + 1106, + 6, + 393, + 1, + 1 + ], + [ + 1108, + 5, + 393, + 1, + 1 + ], + [ + 1111, + 39, + 393, + 1, + 1 + ], + [ + 1113, + 5, + 0, + 1, + 1 + ], + [ + 1119, + 34, + 0, + 1, + 1 + ], + [ + 1122, + 5, + 0, + 1, + 1 + ], + [ + 1126, + 31, + 0, + 1, + 1 + ], + [ + 1129, + 5, + 0, + 1, + 1 + ], + [ + 1132, + 3, + 0, + 0, + 0 + ], + [ + 1200, + 56, + 389, + 1, + 1 + ], + [ + 1203, + 44, + 0, + 1, + 1 + ], + [ + 1207, + 4, + 389, + 1, + 1 + ], + [ + 1213, + 30, + 0, + 1, + 1 + ], + [ + 1216, + 4, + 389, + 1, + 1 + ], + [ + 1219, + 33, + 0, + 1, + 1 + ], + [ + 1219, + 89, + 389, + 1, + 0 + ], + [ + 1219, + 90, + 0, + 1, + 1 + ], + [ + 1221, + 10, + 389, + 1, + 1 + ], + [ + 1225, + 10, + 389, + 1, + 1 + ], + [ + 1228, + 44, + 0, + 1, + 1 + ], + [ + 1228, + 61, + 389, + 1, + 0 + ], + [ + 1228, + 65, + 0, + 1, + 1 + ], + [ + 1228, + 121, + 389, + 1, + 0 + ], + [ + 1228, + 122, + 0, + 1, + 1 + ], + [ + 1235, + 5, + 389, + 1, + 1 + ], + [ + 1237, + 4, + 389, + 1, + 1 + ], + [ + 1237, + 11, + 389, + 1, + 1 + ], + [ + 1237, + 37, + 389, + 1, + 0 + ], + [ + 1239, + 30, + 0, + 1, + 1 + ], + [ + 1242, + 4, + 389, + 1, + 1 + ], + [ + 1243, + 3, + 0, + 0, + 0 + ], + [ + 1250, + 41, + 389, + 1, + 1 + ], + [ + 1254, + 40, + 389, + 1, + 1 + ], + [ + 1254, + 89, + 389, + 1, + 0 + ], + [ + 1254, + 90, + 389, + 1, + 1 + ], + [ + 1257, + 48, + 389, + 1, + 1 + ], + [ + 1257, + 61, + 389, + 1, + 0 + ], + [ + 1257, + 62, + 389, + 1, + 1 + ], + [ + 1259, + 5, + 0, + 1, + 1 + ], + [ + 1307, + 4, + 0, + 1, + 1 + ], + [ + 1312, + 41, + 0, + 1, + 1 + ], + [ + 1315, + 14, + 0, + 1, + 1 + ], + [ + 1317, + 5, + 0, + 1, + 1 + ], + [ + 1319, + 31, + 0, + 1, + 1 + ], + [ + 1319, + 61, + 0, + 1, + 0 + ], + [ + 1321, + 4, + 0, + 1, + 1 + ], + [ + 1322, + 3, + 0, + 0, + 0 + ], + [ + 1333, + 72, + 2, + 1, + 1 + ], + [ + 1365, + 34, + 0, + 1, + 1 + ], + [ + 1367, + 5, + 2, + 1, + 1 + ], + [ + 1369, + 50, + 2, + 1, + 1 + ], + [ + 1371, + 5, + 2, + 1, + 1 + ], + [ + 1371, + 11, + 0, + 1, + 1 + ], + [ + 1373, + 5, + 2, + 1, + 1 + ], + [ + 1378, + 46, + 2, + 1, + 0 + ], + [ + 1379, + 3, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 959, + "covered": 722, + "percent": 75 + }, + "functions": { + "count": 28, + "covered": 18, + "percent": 64 + }, + "instantiations": { + "count": 28, + "covered": 18, + "percent": 64 + }, + "regions": { + "count": 147, + "covered": 77, + "notcovered": 70, + "percent": 52 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift", + "segments": [ + [ + 142, + 20, + 812, + 1, + 1 + ], + [ + 146, + 4, + 812, + 1, + 1 + ], + [ + 147, + 26, + 812, + 1, + 0 + ], + [ + 149, + 4, + 0, + 1, + 1 + ], + [ + 150, + 27, + 812, + 1, + 0 + ], + [ + 152, + 4, + 0, + 1, + 1 + ], + [ + 153, + 26, + 812, + 1, + 0 + ], + [ + 154, + 5, + 812, + 1, + 1 + ], + [ + 155, + 4, + 0, + 0, + 0 + ], + [ + 163, + 61, + 788, + 1, + 1 + ], + [ + 167, + 4, + 788, + 1, + 1 + ], + [ + 168, + 17, + 788, + 1, + 0 + ], + [ + 169, + 4, + 0, + 1, + 1 + ], + [ + 170, + 18, + 788, + 1, + 0 + ], + [ + 171, + 4, + 0, + 1, + 1 + ], + [ + 172, + 17, + 788, + 1, + 0 + ], + [ + 173, + 4, + 0, + 1, + 1 + ], + [ + 174, + 15, + 788, + 1, + 0 + ], + [ + 175, + 5, + 788, + 1, + 1 + ], + [ + 176, + 4, + 0, + 0, + 0 + ], + [ + 200, + 20, + 36, + 1, + 1 + ], + [ + 204, + 4, + 36, + 1, + 1 + ], + [ + 209, + 11, + 36, + 1, + 0 + ], + [ + 210, + 4, + 0, + 1, + 1 + ], + [ + 215, + 11, + 36, + 1, + 0 + ], + [ + 216, + 5, + 36, + 1, + 1 + ], + [ + 217, + 4, + 0, + 0, + 0 + ], + [ + 226, + 55, + 788, + 1, + 1 + ], + [ + 241, + 5, + 788, + 1, + 1 + ], + [ + 242, + 20, + 788, + 1, + 0 + ], + [ + 243, + 5, + 0, + 1, + 1 + ], + [ + 244, + 22, + 788, + 1, + 0 + ], + [ + 245, + 5, + 0, + 1, + 1 + ], + [ + 246, + 16, + 788, + 1, + 0 + ], + [ + 247, + 6, + 788, + 1, + 1 + ], + [ + 249, + 4, + 0, + 0, + 0 + ], + [ + 276, + 20, + 24, + 1, + 1 + ], + [ + 280, + 4, + 24, + 1, + 1 + ], + [ + 281, + 30, + 24, + 1, + 0 + ], + [ + 282, + 4, + 0, + 1, + 1 + ], + [ + 283, + 30, + 24, + 1, + 0 + ], + [ + 284, + 4, + 0, + 1, + 1 + ], + [ + 285, + 20, + 24, + 1, + 0 + ], + [ + 286, + 5, + 24, + 1, + 1 + ], + [ + 287, + 4, + 0, + 0, + 0 + ], + [ + 296, + 63, + 788, + 1, + 1 + ], + [ + 300, + 4, + 788, + 1, + 1 + ], + [ + 301, + 16, + 788, + 1, + 0 + ], + [ + 302, + 4, + 0, + 1, + 1 + ], + [ + 303, + 16, + 788, + 1, + 0 + ], + [ + 304, + 4, + 0, + 1, + 1 + ], + [ + 305, + 17, + 788, + 1, + 0 + ], + [ + 306, + 4, + 0, + 1, + 1 + ], + [ + 307, + 15, + 788, + 1, + 0 + ], + [ + 308, + 5, + 788, + 1, + 1 + ], + [ + 309, + 4, + 0, + 0, + 0 + ], + [ + 331, + 24, + 0, + 1, + 1 + ], + [ + 335, + 4, + 0, + 1, + 1 + ], + [ + 336, + 44, + 0, + 1, + 0 + ], + [ + 337, + 4, + 0, + 1, + 1 + ], + [ + 338, + 45, + 0, + 1, + 0 + ], + [ + 339, + 4, + 0, + 1, + 1 + ], + [ + 340, + 44, + 0, + 1, + 0 + ], + [ + 341, + 5, + 0, + 1, + 1 + ], + [ + 342, + 4, + 0, + 0, + 0 + ], + [ + 347, + 37, + 776, + 1, + 1 + ], + [ + 349, + 4, + 776, + 1, + 1 + ], + [ + 350, + 31, + 776, + 1, + 0 + ], + [ + 351, + 4, + 0, + 1, + 1 + ], + [ + 352, + 32, + 776, + 1, + 0 + ], + [ + 353, + 4, + 0, + 1, + 1 + ], + [ + 354, + 31, + 776, + 1, + 0 + ], + [ + 355, + 5, + 776, + 1, + 1 + ], + [ + 356, + 4, + 0, + 0, + 0 + ], + [ + 418, + 34, + 0, + 1, + 1 + ], + [ + 421, + 4, + 0, + 0, + 0 + ], + [ + 436, + 98, + 12, + 1, + 1 + ], + [ + 440, + 64, + 0, + 1, + 1 + ], + [ + 443, + 5, + 12, + 1, + 1 + ], + [ + 446, + 23, + 12, + 1, + 1 + ], + [ + 447, + 26, + 0, + 1, + 1 + ], + [ + 447, + 38, + 12, + 1, + 0 + ], + [ + 447, + 44, + 0, + 1, + 1 + ], + [ + 450, + 6, + 12, + 1, + 1 + ], + [ + 451, + 5, + 12, + 1, + 1 + ], + [ + 452, + 25, + 0, + 1, + 1 + ], + [ + 453, + 26, + 0, + 1, + 1 + ], + [ + 453, + 38, + 0, + 1, + 0 + ], + [ + 453, + 44, + 0, + 1, + 1 + ], + [ + 456, + 6, + 0, + 1, + 1 + ], + [ + 457, + 5, + 12, + 1, + 1 + ], + [ + 465, + 4, + 0, + 0, + 0 + ], + [ + 479, + 121, + 0, + 1, + 1 + ], + [ + 482, + 29, + 0, + 1, + 1 + ], + [ + 483, + 28, + 0, + 1, + 1 + ], + [ + 483, + 42, + 0, + 1, + 0 + ], + [ + 483, + 48, + 0, + 1, + 1 + ], + [ + 486, + 6, + 0, + 1, + 1 + ], + [ + 487, + 5, + 0, + 1, + 1 + ], + [ + 488, + 31, + 0, + 1, + 1 + ], + [ + 489, + 28, + 0, + 1, + 1 + ], + [ + 489, + 42, + 0, + 1, + 0 + ], + [ + 489, + 48, + 0, + 1, + 1 + ], + [ + 492, + 6, + 0, + 1, + 1 + ], + [ + 493, + 5, + 0, + 1, + 1 + ], + [ + 501, + 23, + 0, + 1, + 1 + ], + [ + 503, + 5, + 0, + 1, + 1 + ], + [ + 504, + 4, + 0, + 0, + 0 + ], + [ + 518, + 135, + 0, + 1, + 1 + ], + [ + 522, + 49, + 0, + 1, + 1 + ], + [ + 522, + 73, + 0, + 1, + 0 + ], + [ + 522, + 79, + 0, + 1, + 1 + ], + [ + 525, + 5, + 0, + 1, + 1 + ], + [ + 530, + 29, + 0, + 1, + 1 + ], + [ + 531, + 28, + 0, + 1, + 1 + ], + [ + 531, + 42, + 0, + 1, + 0 + ], + [ + 531, + 48, + 0, + 1, + 1 + ], + [ + 534, + 6, + 0, + 1, + 1 + ], + [ + 535, + 5, + 0, + 1, + 1 + ], + [ + 536, + 31, + 0, + 1, + 1 + ], + [ + 537, + 28, + 0, + 1, + 1 + ], + [ + 537, + 42, + 0, + 1, + 0 + ], + [ + 537, + 48, + 0, + 1, + 1 + ], + [ + 540, + 6, + 0, + 1, + 1 + ], + [ + 541, + 5, + 0, + 1, + 1 + ], + [ + 548, + 4, + 0, + 0, + 0 + ], + [ + 560, + 85, + 0, + 1, + 1 + ], + [ + 563, + 46, + 0, + 1, + 1 + ], + [ + 566, + 5, + 0, + 1, + 1 + ], + [ + 575, + 29, + 0, + 1, + 1 + ], + [ + 576, + 28, + 0, + 1, + 1 + ], + [ + 576, + 42, + 0, + 1, + 0 + ], + [ + 576, + 48, + 0, + 1, + 1 + ], + [ + 579, + 6, + 0, + 1, + 1 + ], + [ + 580, + 5, + 0, + 1, + 1 + ], + [ + 581, + 31, + 0, + 1, + 1 + ], + [ + 582, + 28, + 0, + 1, + 1 + ], + [ + 582, + 42, + 0, + 1, + 0 + ], + [ + 582, + 48, + 0, + 1, + 1 + ], + [ + 585, + 6, + 0, + 1, + 1 + ], + [ + 586, + 5, + 0, + 1, + 1 + ], + [ + 597, + 78, + 0, + 1, + 1 + ], + [ + 600, + 5, + 0, + 1, + 1 + ], + [ + 603, + 61, + 0, + 1, + 1 + ], + [ + 605, + 22, + 0, + 1, + 1 + ], + [ + 607, + 6, + 0, + 1, + 0 + ], + [ + 615, + 4, + 0, + 0, + 0 + ], + [ + 630, + 133, + 776, + 1, + 1 + ], + [ + 637, + 26, + 0, + 1, + 1 + ], + [ + 640, + 5, + 776, + 1, + 1 + ], + [ + 647, + 23, + 776, + 1, + 1 + ], + [ + 648, + 26, + 0, + 1, + 1 + ], + [ + 648, + 38, + 776, + 1, + 0 + ], + [ + 648, + 44, + 0, + 1, + 1 + ], + [ + 651, + 6, + 776, + 1, + 1 + ], + [ + 652, + 5, + 776, + 1, + 1 + ], + [ + 653, + 25, + 0, + 1, + 1 + ], + [ + 654, + 28, + 0, + 1, + 1 + ], + [ + 657, + 6, + 0, + 1, + 1 + ], + [ + 658, + 5, + 776, + 1, + 1 + ], + [ + 664, + 4, + 0, + 0, + 0 + ], + [ + 672, + 76, + 0, + 1, + 1 + ], + [ + 675, + 19, + 0, + 1, + 1 + ], + [ + 678, + 5, + 0, + 1, + 1 + ], + [ + 707, + 21, + 0, + 1, + 1 + ], + [ + 710, + 5, + 0, + 1, + 1 + ], + [ + 714, + 29, + 0, + 1, + 0 + ], + [ + 715, + 4, + 0, + 0, + 0 + ], + [ + 746, + 34, + 8, + 1, + 1 + ], + [ + 748, + 45, + 0, + 1, + 1 + ], + [ + 748, + 66, + 8, + 1, + 0 + ], + [ + 750, + 4, + 0, + 0, + 0 + ], + [ + 768, + 36, + 12, + 1, + 1 + ], + [ + 773, + 4, + 0, + 0, + 0 + ], + [ + 782, + 25, + 0, + 1, + 1 + ], + [ + 786, + 4, + 0, + 0, + 0 + ], + [ + 795, + 30, + 2, + 1, + 1 + ], + [ + 798, + 4, + 0, + 0, + 0 + ], + [ + 841, + 10, + 393, + 1, + 1 + ], + [ + 844, + 23, + 393, + 1, + 1 + ], + [ + 846, + 5, + 393, + 1, + 1 + ], + [ + 847, + 4, + 0, + 0, + 0 + ], + [ + 861, + 10, + 393, + 1, + 1 + ], + [ + 864, + 63, + 0, + 1, + 1 + ], + [ + 867, + 5, + 393, + 1, + 1 + ], + [ + 869, + 34, + 393, + 1, + 1 + ], + [ + 882, + 5, + 393, + 1, + 1 + ], + [ + 883, + 4, + 0, + 0, + 0 + ], + [ + 916, + 28, + 0, + 1, + 1 + ], + [ + 918, + 25, + 0, + 1, + 1 + ], + [ + 918, + 36, + 0, + 1, + 0 + ], + [ + 919, + 3, + 0, + 0, + 0 + ], + [ + 924, + 28, + 0, + 1, + 1 + ], + [ + 927, + 3, + 0, + 0, + 0 + ], + [ + 932, + 28, + 0, + 1, + 1 + ], + [ + 934, + 34, + 0, + 1, + 1 + ], + [ + 936, + 4, + 0, + 1, + 1 + ], + [ + 937, + 22, + 0, + 1, + 0 + ], + [ + 938, + 3, + 0, + 0, + 0 + ], + [ + 943, + 34, + 8, + 1, + 1 + ], + [ + 945, + 47, + 0, + 1, + 1 + ], + [ + 947, + 4, + 8, + 1, + 1 + ], + [ + 948, + 18, + 8, + 1, + 0 + ], + [ + 949, + 3, + 0, + 0, + 0 + ], + [ + 954, + 36, + 1552, + 1, + 1 + ], + [ + 957, + 33, + 0, + 1, + 1 + ], + [ + 959, + 4, + 1552, + 1, + 1 + ], + [ + 961, + 14, + 1552, + 1, + 0 + ], + [ + 962, + 3, + 0, + 0, + 0 + ], + [ + 967, + 31, + 776, + 1, + 1 + ], + [ + 969, + 74, + 0, + 1, + 1 + ], + [ + 971, + 4, + 776, + 1, + 1 + ], + [ + 973, + 18, + 776, + 1, + 0 + ], + [ + 974, + 3, + 0, + 0, + 0 + ], + [ + 979, + 33, + 0, + 1, + 1 + ], + [ + 982, + 29, + 0, + 1, + 1 + ], + [ + 984, + 4, + 0, + 1, + 1 + ], + [ + 986, + 14, + 0, + 1, + 0 + ], + [ + 987, + 3, + 0, + 0, + 0 + ], + [ + 1003, + 134, + 12, + 1, + 1 + ], + [ + 1006, + 22, + 12, + 1, + 1 + ], + [ + 1007, + 27, + 0, + 1, + 1 + ], + [ + 1007, + 41, + 12, + 1, + 0 + ], + [ + 1007, + 47, + 0, + 1, + 1 + ], + [ + 1010, + 5, + 12, + 1, + 1 + ], + [ + 1011, + 4, + 12, + 1, + 1 + ], + [ + 1012, + 24, + 0, + 1, + 1 + ], + [ + 1013, + 27, + 0, + 1, + 1 + ], + [ + 1013, + 41, + 0, + 1, + 0 + ], + [ + 1013, + 47, + 0, + 1, + 1 + ], + [ + 1016, + 5, + 0, + 1, + 1 + ], + [ + 1017, + 4, + 12, + 1, + 1 + ], + [ + 1019, + 62, + 12, + 1, + 0 + ], + [ + 1020, + 3, + 0, + 0, + 0 + ], + [ + 1029, + 81, + 0, + 1, + 1 + ], + [ + 1036, + 3, + 0, + 0, + 0 + ], + [ + 1047, + 101, + 0, + 1, + 1 + ], + [ + 1049, + 33, + 0, + 1, + 1 + ], + [ + 1052, + 4, + 0, + 1, + 1 + ], + [ + 1054, + 59, + 0, + 1, + 0 + ], + [ + 1055, + 3, + 0, + 0, + 0 + ], + [ + 1064, + 95, + 784, + 1, + 1 + ], + [ + 1072, + 3, + 784, + 1, + 1 + ], + [ + 1077, + 22, + 784, + 1, + 1 + ], + [ + 1079, + 5, + 784, + 1, + 1 + ], + [ + 1079, + 11, + 0, + 1, + 1 + ], + [ + 1081, + 5, + 784, + 1, + 1 + ], + [ + 1083, + 3, + 0, + 1, + 1 + ], + [ + 1088, + 22, + 0, + 1, + 1 + ], + [ + 1090, + 5, + 0, + 1, + 1 + ], + [ + 1090, + 11, + 0, + 1, + 1 + ], + [ + 1092, + 5, + 784, + 1, + 1 + ], + [ + 1094, + 3, + 0, + 1, + 1 + ], + [ + 1095, + 14, + 784, + 1, + 0 + ], + [ + 1096, + 4, + 784, + 1, + 1 + ], + [ + 1098, + 42, + 784, + 1, + 1 + ], + [ + 1101, + 4, + 0, + 1, + 1 + ], + [ + 1103, + 13, + 784, + 1, + 0 + ], + [ + 1104, + 3, + 0, + 0, + 0 + ], + [ + 1113, + 108, + 0, + 1, + 1 + ], + [ + 1118, + 25, + 0, + 1, + 1 + ], + [ + 1121, + 23, + 0, + 1, + 1 + ], + [ + 1123, + 5, + 0, + 1, + 1 + ], + [ + 1124, + 23, + 0, + 1, + 1 + ], + [ + 1126, + 5, + 0, + 1, + 1 + ], + [ + 1127, + 4, + 0, + 1, + 1 + ], + [ + 1129, + 32, + 0, + 1, + 0 + ], + [ + 1130, + 3, + 0, + 0, + 0 + ], + [ + 1142, + 110, + 0, + 1, + 1 + ], + [ + 1145, + 25, + 0, + 1, + 1 + ], + [ + 1147, + 59, + 0, + 1, + 1 + ], + [ + 1150, + 5, + 0, + 1, + 1 + ], + [ + 1151, + 31, + 0, + 1, + 1 + ], + [ + 1154, + 5, + 0, + 1, + 1 + ], + [ + 1155, + 27, + 0, + 1, + 1 + ], + [ + 1155, + 53, + 0, + 1, + 0 + ], + [ + 1155, + 54, + 0, + 1, + 1 + ], + [ + 1158, + 5, + 0, + 1, + 1 + ], + [ + 1159, + 4, + 0, + 1, + 1 + ], + [ + 1163, + 22, + 0, + 1, + 1 + ], + [ + 1163, + 34, + 0, + 1, + 0 + ], + [ + 1163, + 35, + 0, + 1, + 1 + ], + [ + 1181, + 4, + 0, + 1, + 1 + ], + [ + 1188, + 25, + 0, + 1, + 1 + ], + [ + 1190, + 38, + 0, + 1, + 1 + ], + [ + 1192, + 5, + 0, + 1, + 1 + ], + [ + 1194, + 4, + 0, + 1, + 1 + ], + [ + 1198, + 18, + 0, + 1, + 1 + ], + [ + 1200, + 4, + 0, + 1, + 1 + ], + [ + 1200, + 10, + 0, + 1, + 1 + ], + [ + 1202, + 4, + 0, + 1, + 1 + ], + [ + 1205, + 16, + 0, + 1, + 1 + ], + [ + 1207, + 106, + 0, + 1, + 1 + ], + [ + 1207, + 123, + 0, + 1, + 0 + ], + [ + 1208, + 4, + 0, + 1, + 1 + ], + [ + 1211, + 17, + 0, + 1, + 1 + ], + [ + 1213, + 4, + 0, + 1, + 1 + ], + [ + 1216, + 25, + 0, + 1, + 1 + ], + [ + 1216, + 55, + 0, + 1, + 0 + ], + [ + 1217, + 3, + 0, + 0, + 0 + ], + [ + 1228, + 80, + 0, + 1, + 1 + ], + [ + 1234, + 18, + 0, + 1, + 1 + ], + [ + 1237, + 4, + 0, + 1, + 1 + ], + [ + 1248, + 48, + 0, + 1, + 1 + ], + [ + 1254, + 4, + 0, + 1, + 1 + ], + [ + 1254, + 56, + 0, + 1, + 1 + ], + [ + 1260, + 4, + 0, + 1, + 1 + ], + [ + 1260, + 10, + 0, + 1, + 1 + ], + [ + 1263, + 4, + 0, + 1, + 1 + ], + [ + 1265, + 17, + 0, + 1, + 0 + ], + [ + 1266, + 3, + 0, + 0, + 0 + ], + [ + 1282, + 87, + 12, + 1, + 1 + ], + [ + 1293, + 22, + 0, + 1, + 1 + ], + [ + 1295, + 4, + 12, + 1, + 1 + ], + [ + 1305, + 24, + 0, + 1, + 1 + ], + [ + 1309, + 4, + 12, + 1, + 1 + ], + [ + 1319, + 3, + 0, + 0, + 0 + ], + [ + 1330, + 78, + 776, + 1, + 1 + ], + [ + 1351, + 18, + 0, + 1, + 1 + ], + [ + 1355, + 4, + 776, + 1, + 1 + ], + [ + 1355, + 10, + 776, + 1, + 1 + ], + [ + 1356, + 74, + 776, + 1, + 1 + ], + [ + 1364, + 5, + 776, + 1, + 1 + ], + [ + 1364, + 11, + 0, + 1, + 1 + ], + [ + 1370, + 5, + 776, + 1, + 1 + ], + [ + 1371, + 4, + 776, + 1, + 1 + ], + [ + 1372, + 3, + 0, + 0, + 0 + ], + [ + 1377, + 12, + 784, + 1, + 1 + ], + [ + 1379, + 30, + 0, + 1, + 1 + ], + [ + 1382, + 10, + 784, + 1, + 1 + ], + [ + 1392, + 6, + 0, + 0, + 0 + ], + [ + 1407, + 86, + 784, + 1, + 1 + ], + [ + 1410, + 56, + 0, + 1, + 1 + ], + [ + 1413, + 4, + 784, + 1, + 1 + ], + [ + 1415, + 23, + 0, + 1, + 1 + ], + [ + 1418, + 4, + 784, + 1, + 1 + ], + [ + 1420, + 24, + 0, + 1, + 1 + ], + [ + 1423, + 4, + 784, + 1, + 1 + ], + [ + 1430, + 10, + 784, + 1, + 1 + ], + [ + 1431, + 7, + 784, + 1, + 1 + ], + [ + 1432, + 60, + 784, + 1, + 1 + ], + [ + 1439, + 16, + 6, + 1, + 1 + ], + [ + 1442, + 25, + 0, + 1, + 1 + ], + [ + 1444, + 8, + 6, + 1, + 1 + ], + [ + 1449, + 83, + 6, + 1, + 0 + ], + [ + 1450, + 7, + 778, + 1, + 1 + ], + [ + 1452, + 6, + 784, + 1, + 0 + ], + [ + 1452, + 13, + 0, + 1, + 1 + ], + [ + 1454, + 6, + 784, + 1, + 1 + ], + [ + 1457, + 5, + 784, + 1, + 0 + ], + [ + 1457, + 40, + 0, + 1, + 1 + ], + [ + 1460, + 5, + 784, + 1, + 1 + ], + [ + 1464, + 4, + 784, + 1, + 1 + ], + [ + 1464, + 11, + 784, + 1, + 1 + ], + [ + 1464, + 22, + 784, + 1, + 0 + ], + [ + 1471, + 27, + 389, + 1, + 1 + ], + [ + 1473, + 4, + 784, + 1, + 1 + ], + [ + 1476, + 49, + 0, + 1, + 1 + ], + [ + 1478, + 10, + 784, + 1, + 1 + ], + [ + 1481, + 25, + 784, + 1, + 0 + ], + [ + 1482, + 6, + 0, + 0, + 0 + ], + [ + 1491, + 70, + 389, + 1, + 1 + ], + [ + 1494, + 41, + 0, + 1, + 1 + ], + [ + 1497, + 4, + 389, + 1, + 1 + ], + [ + 1499, + 6, + 389, + 1, + 1 + ], + [ + 1501, + 28, + 389, + 1, + 1 + ], + [ + 1505, + 14, + 389, + 1, + 1 + ], + [ + 1507, + 10, + 389, + 1, + 0 + ], + [ + 1507, + 27, + 0, + 1, + 1 + ], + [ + 1509, + 49, + 0, + 1, + 1 + ], + [ + 1511, + 5, + 0, + 1, + 1 + ], + [ + 1513, + 31, + 0, + 1, + 0 + ], + [ + 1514, + 4, + 389, + 1, + 1 + ], + [ + 1515, + 3, + 0, + 0, + 0 + ], + [ + 1520, + 40, + 0, + 1, + 1 + ], + [ + 1523, + 56, + 0, + 1, + 1 + ], + [ + 1526, + 4, + 0, + 1, + 1 + ], + [ + 1528, + 23, + 0, + 1, + 1 + ], + [ + 1531, + 4, + 0, + 1, + 1 + ], + [ + 1533, + 24, + 0, + 1, + 1 + ], + [ + 1536, + 4, + 0, + 1, + 1 + ], + [ + 1543, + 10, + 0, + 1, + 1 + ], + [ + 1544, + 7, + 0, + 1, + 1 + ], + [ + 1545, + 60, + 0, + 1, + 1 + ], + [ + 1552, + 16, + 0, + 1, + 1 + ], + [ + 1555, + 25, + 0, + 1, + 1 + ], + [ + 1557, + 8, + 0, + 1, + 1 + ], + [ + 1562, + 83, + 0, + 1, + 0 + ], + [ + 1563, + 7, + 0, + 1, + 1 + ], + [ + 1565, + 6, + 0, + 1, + 0 + ], + [ + 1565, + 13, + 0, + 1, + 1 + ], + [ + 1567, + 6, + 0, + 1, + 1 + ], + [ + 1570, + 5, + 0, + 1, + 0 + ], + [ + 1570, + 40, + 0, + 1, + 1 + ], + [ + 1573, + 5, + 0, + 1, + 1 + ], + [ + 1577, + 4, + 0, + 1, + 1 + ], + [ + 1577, + 11, + 0, + 1, + 1 + ], + [ + 1577, + 22, + 0, + 1, + 0 + ], + [ + 1588, + 68, + 0, + 1, + 1 + ], + [ + 1591, + 4, + 0, + 1, + 1 + ], + [ + 1598, + 6, + 0, + 1, + 1 + ], + [ + 1600, + 28, + 0, + 1, + 1 + ], + [ + 1603, + 5, + 0, + 1, + 1 + ], + [ + 1605, + 4, + 0, + 1, + 0 + ], + [ + 1605, + 21, + 0, + 1, + 1 + ], + [ + 1607, + 49, + 0, + 1, + 1 + ], + [ + 1610, + 5, + 0, + 1, + 1 + ], + [ + 1612, + 31, + 0, + 1, + 0 + ], + [ + 1613, + 4, + 0, + 1, + 1 + ], + [ + 1614, + 3, + 0, + 0, + 0 + ], + [ + 1621, + 22, + 786, + 1, + 1 + ], + [ + 1624, + 3, + 0, + 0, + 0 + ], + [ + 1642, + 104, + 0, + 1, + 1 + ], + [ + 1645, + 56, + 0, + 1, + 1 + ], + [ + 1648, + 4, + 0, + 1, + 1 + ], + [ + 1650, + 23, + 0, + 1, + 1 + ], + [ + 1653, + 4, + 0, + 1, + 1 + ], + [ + 1655, + 27, + 0, + 1, + 1 + ], + [ + 1658, + 4, + 0, + 1, + 1 + ], + [ + 1660, + 26, + 0, + 1, + 1 + ], + [ + 1660, + 38, + 0, + 1, + 0 + ], + [ + 1660, + 39, + 0, + 1, + 1 + ], + [ + 1663, + 4, + 0, + 1, + 1 + ], + [ + 1665, + 19, + 0, + 1, + 1 + ], + [ + 1665, + 31, + 0, + 1, + 0 + ], + [ + 1665, + 32, + 0, + 1, + 1 + ], + [ + 1668, + 4, + 0, + 1, + 1 + ], + [ + 1671, + 6, + 0, + 1, + 1 + ], + [ + 1675, + 4, + 0, + 1, + 0 + ], + [ + 1675, + 21, + 0, + 1, + 1 + ], + [ + 1677, + 49, + 0, + 1, + 1 + ], + [ + 1680, + 5, + 0, + 1, + 1 + ], + [ + 1682, + 31, + 0, + 1, + 0 + ], + [ + 1683, + 4, + 0, + 1, + 1 + ], + [ + 1686, + 57, + 0, + 1, + 1 + ], + [ + 1686, + 64, + 0, + 1, + 0 + ], + [ + 1700, + 29, + 0, + 1, + 1 + ], + [ + 1700, + 64, + 0, + 1, + 1 + ], + [ + 1700, + 73, + 0, + 1, + 0 + ], + [ + 1700, + 76, + 0, + 1, + 1 + ], + [ + 1700, + 85, + 0, + 1, + 0 + ], + [ + 1713, + 18, + 0, + 1, + 1 + ], + [ + 1716, + 28, + 0, + 1, + 1 + ], + [ + 1717, + 62, + 0, + 1, + 1 + ], + [ + 1717, + 83, + 0, + 1, + 0 + ], + [ + 1718, + 5, + 0, + 1, + 1 + ], + [ + 1718, + 11, + 0, + 1, + 1 + ], + [ + 1719, + 67, + 0, + 1, + 1 + ], + [ + 1719, + 88, + 0, + 1, + 0 + ], + [ + 1720, + 5, + 0, + 1, + 1 + ], + [ + 1721, + 80, + 0, + 1, + 0 + ], + [ + 1722, + 4, + 0, + 1, + 1 + ], + [ + 1746, + 9, + 0, + 1, + 1 + ], + [ + 1746, + 20, + 0, + 1, + 0 + ], + [ + 1746, + 21, + 0, + 1, + 1 + ], + [ + 1753, + 30, + 0, + 1, + 1 + ], + [ + 1755, + 5, + 0, + 1, + 1 + ], + [ + 1759, + 27, + 0, + 1, + 1 + ], + [ + 1759, + 38, + 0, + 1, + 0 + ], + [ + 1759, + 39, + 0, + 1, + 1 + ], + [ + 1762, + 18, + 0, + 1, + 1 + ], + [ + 1765, + 6, + 0, + 1, + 1 + ], + [ + 1768, + 19, + 0, + 1, + 1 + ], + [ + 1771, + 6, + 0, + 1, + 1 + ], + [ + 1772, + 5, + 0, + 1, + 1 + ], + [ + 1782, + 19, + 0, + 1, + 1 + ], + [ + 1784, + 5, + 0, + 1, + 1 + ], + [ + 1787, + 28, + 0, + 1, + 1 + ], + [ + 1789, + 20, + 0, + 1, + 1 + ], + [ + 1816, + 19, + 0, + 1, + 1 + ], + [ + 1819, + 7, + 0, + 1, + 1 + ], + [ + 1823, + 43, + 0, + 1, + 1 + ], + [ + 1828, + 90, + 0, + 1, + 1 + ], + [ + 1831, + 8, + 0, + 1, + 1 + ], + [ + 1834, + 22, + 0, + 1, + 1 + ], + [ + 1839, + 8, + 0, + 1, + 1 + ], + [ + 1841, + 7, + 0, + 1, + 1 + ], + [ + 1841, + 13, + 0, + 1, + 1 + ], + [ + 1844, + 7, + 0, + 1, + 1 + ], + [ + 1845, + 6, + 0, + 1, + 1 + ], + [ + 1846, + 5, + 0, + 1, + 1 + ], + [ + 1856, + 4, + 0, + 1, + 1 + ], + [ + 1859, + 21, + 0, + 1, + 1 + ], + [ + 1859, + 44, + 0, + 1, + 0 + ], + [ + 1859, + 45, + 0, + 1, + 1 + ], + [ + 1861, + 31, + 0, + 1, + 1 + ], + [ + 1867, + 5, + 0, + 1, + 1 + ], + [ + 1868, + 85, + 0, + 1, + 0 + ], + [ + 1869, + 4, + 0, + 1, + 1 + ], + [ + 1872, + 56, + 0, + 1, + 1 + ], + [ + 1875, + 4, + 0, + 1, + 1 + ], + [ + 1882, + 49, + 0, + 1, + 1 + ], + [ + 1888, + 4, + 0, + 1, + 1 + ], + [ + 1888, + 55, + 0, + 1, + 1 + ], + [ + 1894, + 4, + 0, + 1, + 1 + ], + [ + 1894, + 10, + 0, + 1, + 1 + ], + [ + 1897, + 4, + 0, + 1, + 1 + ], + [ + 1910, + 25, + 0, + 1, + 1 + ], + [ + 1910, + 36, + 0, + 1, + 0 + ], + [ + 1910, + 37, + 0, + 1, + 1 + ], + [ + 1915, + 17, + 0, + 1, + 1 + ], + [ + 1918, + 5, + 0, + 1, + 1 + ], + [ + 1921, + 18, + 0, + 1, + 1 + ], + [ + 1924, + 5, + 0, + 1, + 1 + ], + [ + 1925, + 4, + 0, + 1, + 1 + ], + [ + 1928, + 6, + 0, + 1, + 1 + ], + [ + 1930, + 28, + 0, + 1, + 1 + ], + [ + 1933, + 5, + 0, + 1, + 1 + ], + [ + 1935, + 4, + 0, + 1, + 0 + ], + [ + 1935, + 21, + 0, + 1, + 1 + ], + [ + 1937, + 49, + 0, + 1, + 1 + ], + [ + 1940, + 5, + 0, + 1, + 1 + ], + [ + 1942, + 31, + 0, + 1, + 0 + ], + [ + 1943, + 4, + 0, + 1, + 1 + ], + [ + 1944, + 3, + 0, + 0, + 0 + ], + [ + 1951, + 46, + 0, + 1, + 1 + ], + [ + 1954, + 68, + 0, + 1, + 1 + ], + [ + 1957, + 4, + 0, + 1, + 1 + ], + [ + 1960, + 56, + 0, + 1, + 1 + ], + [ + 1963, + 4, + 0, + 1, + 1 + ], + [ + 1965, + 23, + 0, + 1, + 1 + ], + [ + 1968, + 4, + 0, + 1, + 1 + ], + [ + 1972, + 45, + 0, + 1, + 1 + ], + [ + 1975, + 4, + 0, + 1, + 1 + ], + [ + 1987, + 70, + 0, + 1, + 1 + ], + [ + 1996, + 4, + 0, + 1, + 0 + ], + [ + 1997, + 13, + 0, + 1, + 1 + ], + [ + 2000, + 4, + 0, + 1, + 1 + ], + [ + 2003, + 3, + 0, + 0, + 0 + ], + [ + 2010, + 57, + 0, + 1, + 1 + ], + [ + 2013, + 56, + 0, + 1, + 1 + ], + [ + 2016, + 4, + 0, + 1, + 1 + ], + [ + 2020, + 32, + 0, + 1, + 1 + ], + [ + 2024, + 4, + 0, + 1, + 1 + ], + [ + 2026, + 38, + 0, + 1, + 1 + ], + [ + 2029, + 7, + 0, + 1, + 1 + ], + [ + 2033, + 5, + 0, + 1, + 0 + ], + [ + 2033, + 22, + 0, + 1, + 1 + ], + [ + 2035, + 50, + 0, + 1, + 1 + ], + [ + 2038, + 6, + 0, + 1, + 1 + ], + [ + 2040, + 32, + 0, + 1, + 0 + ], + [ + 2041, + 5, + 0, + 1, + 1 + ], + [ + 2044, + 41, + 0, + 1, + 1 + ], + [ + 2050, + 5, + 0, + 1, + 0 + ], + [ + 2052, + 14, + 0, + 1, + 1 + ], + [ + 2055, + 5, + 0, + 1, + 1 + ], + [ + 2058, + 79, + 0, + 1, + 1 + ], + [ + 2063, + 5, + 0, + 1, + 1 + ], + [ + 2063, + 86, + 0, + 1, + 1 + ], + [ + 2070, + 5, + 0, + 1, + 1 + ], + [ + 2073, + 7, + 0, + 1, + 1 + ], + [ + 2075, + 29, + 0, + 1, + 1 + ], + [ + 2078, + 6, + 0, + 1, + 1 + ], + [ + 2080, + 5, + 0, + 1, + 0 + ], + [ + 2080, + 22, + 0, + 1, + 1 + ], + [ + 2082, + 50, + 0, + 1, + 1 + ], + [ + 2085, + 6, + 0, + 1, + 1 + ], + [ + 2087, + 32, + 0, + 1, + 0 + ], + [ + 2088, + 5, + 0, + 1, + 1 + ], + [ + 2090, + 10, + 0, + 1, + 0 + ], + [ + 2091, + 4, + 0, + 1, + 1 + ], + [ + 2094, + 86, + 0, + 1, + 1 + ], + [ + 2098, + 4, + 0, + 1, + 1 + ], + [ + 2101, + 108, + 0, + 1, + 0 + ], + [ + 2102, + 3, + 0, + 0, + 0 + ], + [ + 2119, + 149, + 12, + 1, + 1 + ], + [ + 2122, + 56, + 0, + 1, + 1 + ], + [ + 2125, + 4, + 12, + 1, + 1 + ], + [ + 2130, + 104, + 0, + 1, + 1 + ], + [ + 2133, + 4, + 12, + 1, + 1 + ], + [ + 2136, + 21, + 0, + 1, + 1 + ], + [ + 2142, + 105, + 0, + 1, + 1 + ], + [ + 2146, + 29, + 0, + 1, + 1 + ], + [ + 2148, + 6, + 0, + 1, + 1 + ], + [ + 2149, + 5, + 0, + 1, + 1 + ], + [ + 2150, + 4, + 12, + 1, + 1 + ], + [ + 2153, + 39, + 0, + 1, + 1 + ], + [ + 2156, + 4, + 12, + 1, + 1 + ], + [ + 2159, + 44, + 0, + 1, + 1 + ], + [ + 2159, + 61, + 12, + 1, + 0 + ], + [ + 2159, + 62, + 0, + 1, + 1 + ], + [ + 2160, + 122, + 0, + 1, + 1 + ], + [ + 2163, + 14, + 0, + 1, + 1 + ], + [ + 2164, + 10, + 12, + 1, + 1 + ], + [ + 2167, + 37, + 12, + 1, + 1 + ], + [ + 2167, + 54, + 12, + 1, + 0 + ], + [ + 2167, + 55, + 12, + 1, + 1 + ], + [ + 2170, + 7, + 12, + 1, + 1 + ], + [ + 2174, + 5, + 12, + 1, + 0 + ], + [ + 2174, + 22, + 0, + 1, + 1 + ], + [ + 2176, + 50, + 0, + 1, + 1 + ], + [ + 2179, + 6, + 0, + 1, + 1 + ], + [ + 2181, + 32, + 0, + 1, + 0 + ], + [ + 2182, + 5, + 12, + 1, + 1 + ], + [ + 2183, + 4, + 12, + 1, + 1 + ], + [ + 2211, + 43, + 12, + 1, + 1 + ], + [ + 2211, + 46, + 12, + 1, + 0 + ], + [ + 2212, + 18, + 2, + 1, + 1 + ], + [ + 2215, + 28, + 0, + 1, + 1 + ], + [ + 2216, + 62, + 0, + 1, + 1 + ], + [ + 2216, + 83, + 0, + 1, + 0 + ], + [ + 2217, + 5, + 2, + 1, + 1 + ], + [ + 2217, + 11, + 2, + 1, + 1 + ], + [ + 2218, + 66, + 0, + 1, + 1 + ], + [ + 2218, + 87, + 2, + 1, + 0 + ], + [ + 2219, + 5, + 2, + 1, + 1 + ], + [ + 2220, + 80, + 2, + 1, + 0 + ], + [ + 2221, + 4, + 10, + 1, + 1 + ], + [ + 2234, + 9, + 12, + 1, + 1 + ], + [ + 2234, + 20, + 10, + 1, + 0 + ], + [ + 2234, + 21, + 10, + 1, + 1 + ], + [ + 2245, + 89, + 8, + 1, + 1 + ], + [ + 2250, + 6, + 2, + 1, + 1 + ], + [ + 2255, + 4, + 10, + 1, + 1 + ], + [ + 2258, + 13, + 2, + 1, + 1 + ], + [ + 2261, + 4, + 8, + 1, + 1 + ], + [ + 2267, + 16, + 8, + 1, + 1 + ], + [ + 2268, + 65, + 8, + 1, + 1 + ], + [ + 2269, + 58, + 0, + 1, + 1 + ], + [ + 2271, + 6, + 8, + 1, + 1 + ], + [ + 2272, + 5, + 8, + 1, + 0 + ], + [ + 2272, + 12, + 0, + 1, + 1 + ], + [ + 2274, + 5, + 8, + 1, + 1 + ], + [ + 2276, + 4, + 8, + 1, + 1 + ], + [ + 2276, + 10, + 0, + 1, + 1 + ], + [ + 2278, + 50, + 0, + 1, + 1 + ], + [ + 2284, + 5, + 0, + 1, + 1 + ], + [ + 2284, + 56, + 0, + 1, + 1 + ], + [ + 2290, + 5, + 0, + 1, + 1 + ], + [ + 2290, + 11, + 0, + 1, + 1 + ], + [ + 2293, + 5, + 0, + 1, + 1 + ], + [ + 2295, + 4, + 8, + 1, + 1 + ], + [ + 2298, + 67, + 8, + 1, + 1 + ], + [ + 2301, + 4, + 8, + 1, + 1 + ], + [ + 2307, + 37, + 0, + 1, + 1 + ], + [ + 2307, + 54, + 8, + 1, + 0 + ], + [ + 2307, + 55, + 0, + 1, + 1 + ], + [ + 2309, + 4, + 8, + 1, + 1 + ], + [ + 2318, + 63, + 0, + 1, + 1 + ], + [ + 2321, + 5, + 8, + 1, + 1 + ], + [ + 2325, + 53, + 4, + 1, + 1 + ], + [ + 2325, + 57, + 8, + 1, + 0 + ], + [ + 2325, + 60, + 4, + 1, + 1 + ], + [ + 2325, + 65, + 8, + 1, + 0 + ], + [ + 2326, + 3, + 0, + 0, + 0 + ], + [ + 2337, + 102, + 0, + 1, + 1 + ], + [ + 2340, + 56, + 0, + 1, + 1 + ], + [ + 2343, + 4, + 0, + 1, + 1 + ], + [ + 2346, + 76, + 0, + 1, + 1 + ], + [ + 2349, + 4, + 0, + 1, + 1 + ], + [ + 2354, + 104, + 0, + 1, + 1 + ], + [ + 2357, + 4, + 0, + 1, + 1 + ], + [ + 2361, + 34, + 0, + 1, + 1 + ], + [ + 2364, + 4, + 0, + 1, + 1 + ], + [ + 2384, + 70, + 0, + 1, + 1 + ], + [ + 2393, + 4, + 0, + 1, + 0 + ], + [ + 2395, + 13, + 0, + 1, + 1 + ], + [ + 2398, + 4, + 0, + 1, + 1 + ], + [ + 2407, + 63, + 0, + 1, + 1 + ], + [ + 2410, + 5, + 0, + 1, + 1 + ], + [ + 2418, + 3, + 0, + 0, + 0 + ], + [ + 2433, + 200, + 0, + 1, + 1 + ], + [ + 2436, + 19, + 0, + 1, + 1 + ], + [ + 2439, + 4, + 0, + 1, + 1 + ], + [ + 2442, + 56, + 0, + 1, + 1 + ], + [ + 2445, + 4, + 0, + 1, + 1 + ], + [ + 2449, + 37, + 0, + 1, + 1 + ], + [ + 2452, + 4, + 0, + 1, + 1 + ], + [ + 2455, + 19, + 0, + 1, + 1 + ], + [ + 2457, + 4, + 0, + 1, + 1 + ], + [ + 2460, + 46, + 0, + 1, + 1 + ], + [ + 2463, + 4, + 0, + 1, + 1 + ], + [ + 2467, + 63, + 0, + 1, + 0 + ], + [ + 2468, + 3, + 0, + 0, + 0 + ], + [ + 2480, + 170, + 0, + 1, + 1 + ], + [ + 2483, + 56, + 0, + 1, + 1 + ], + [ + 2486, + 4, + 0, + 1, + 1 + ], + [ + 2490, + 35, + 0, + 1, + 1 + ], + [ + 2490, + 52, + 0, + 1, + 0 + ], + [ + 2490, + 58, + 0, + 1, + 1 + ], + [ + 2493, + 4, + 0, + 1, + 1 + ], + [ + 2496, + 19, + 0, + 1, + 1 + ], + [ + 2498, + 4, + 0, + 1, + 1 + ], + [ + 2501, + 46, + 0, + 1, + 1 + ], + [ + 2504, + 4, + 0, + 1, + 1 + ], + [ + 2508, + 43, + 0, + 1, + 0 + ], + [ + 2509, + 3, + 0, + 0, + 0 + ], + [ + 2521, + 167, + 0, + 1, + 1 + ], + [ + 2524, + 56, + 0, + 1, + 1 + ], + [ + 2527, + 4, + 0, + 1, + 1 + ], + [ + 2531, + 37, + 0, + 1, + 1 + ], + [ + 2534, + 4, + 0, + 1, + 1 + ], + [ + 2537, + 19, + 0, + 1, + 1 + ], + [ + 2539, + 4, + 0, + 1, + 1 + ], + [ + 2542, + 46, + 0, + 1, + 1 + ], + [ + 2545, + 4, + 0, + 1, + 1 + ], + [ + 2549, + 44, + 0, + 1, + 0 + ], + [ + 2550, + 3, + 0, + 0, + 0 + ], + [ + 2571, + 113, + 0, + 1, + 1 + ], + [ + 2574, + 19, + 0, + 1, + 1 + ], + [ + 2577, + 4, + 0, + 1, + 1 + ], + [ + 2580, + 56, + 0, + 1, + 1 + ], + [ + 2583, + 4, + 0, + 1, + 1 + ], + [ + 2585, + 24, + 0, + 1, + 1 + ], + [ + 2588, + 4, + 0, + 1, + 1 + ], + [ + 2591, + 34, + 0, + 1, + 1 + ], + [ + 2593, + 41, + 0, + 1, + 1 + ], + [ + 2595, + 17, + 0, + 1, + 1 + ], + [ + 2607, + 6, + 0, + 1, + 1 + ], + [ + 2607, + 12, + 0, + 1, + 1 + ], + [ + 2610, + 6, + 0, + 1, + 1 + ], + [ + 2611, + 5, + 0, + 1, + 1 + ], + [ + 2621, + 22, + 0, + 1, + 0 + ], + [ + 2622, + 4, + 0, + 1, + 1 + ], + [ + 2628, + 17, + 0, + 1, + 1 + ], + [ + 2631, + 4, + 0, + 1, + 1 + ], + [ + 2635, + 34, + 0, + 1, + 1 + ], + [ + 2638, + 41, + 0, + 1, + 1 + ], + [ + 2641, + 17, + 0, + 1, + 1 + ], + [ + 2655, + 6, + 0, + 1, + 1 + ], + [ + 2655, + 12, + 0, + 1, + 1 + ], + [ + 2659, + 6, + 0, + 1, + 1 + ], + [ + 2660, + 5, + 0, + 1, + 1 + ], + [ + 2669, + 4, + 0, + 1, + 1 + ], + [ + 2671, + 21, + 0, + 1, + 0 + ], + [ + 2672, + 3, + 0, + 0, + 0 + ], + [ + 2679, + 45, + 0, + 1, + 1 + ], + [ + 2681, + 55, + 0, + 1, + 1 + ], + [ + 2684, + 4, + 0, + 1, + 1 + ], + [ + 2689, + 16, + 0, + 1, + 1 + ], + [ + 2692, + 4, + 0, + 1, + 1 + ], + [ + 2694, + 33, + 0, + 1, + 0 + ], + [ + 2695, + 3, + 0, + 0, + 0 + ], + [ + 2705, + 59, + 1923, + 1, + 1 + ], + [ + 2708, + 56, + 0, + 1, + 1 + ], + [ + 2711, + 4, + 1923, + 1, + 1 + ], + [ + 2713, + 24, + 0, + 1, + 1 + ], + [ + 2716, + 4, + 1923, + 1, + 1 + ], + [ + 2723, + 16, + 978, + 1, + 1 + ], + [ + 2731, + 4, + 1923, + 1, + 1 + ], + [ + 2733, + 21, + 1923, + 1, + 0 + ], + [ + 2734, + 3, + 0, + 0, + 0 + ], + [ + 2743, + 56, + 0, + 1, + 1 + ], + [ + 2746, + 56, + 0, + 1, + 1 + ], + [ + 2749, + 4, + 0, + 1, + 1 + ], + [ + 2751, + 24, + 0, + 1, + 1 + ], + [ + 2754, + 4, + 0, + 1, + 1 + ], + [ + 2761, + 16, + 0, + 1, + 1 + ], + [ + 2770, + 4, + 0, + 1, + 1 + ], + [ + 2772, + 21, + 0, + 1, + 0 + ], + [ + 2773, + 3, + 0, + 0, + 0 + ], + [ + 2787, + 129, + 0, + 1, + 1 + ], + [ + 2790, + 19, + 0, + 1, + 1 + ], + [ + 2793, + 4, + 0, + 1, + 1 + ], + [ + 2796, + 56, + 0, + 1, + 1 + ], + [ + 2799, + 4, + 0, + 1, + 1 + ], + [ + 2803, + 37, + 0, + 1, + 1 + ], + [ + 2806, + 4, + 0, + 1, + 1 + ], + [ + 2812, + 17, + 0, + 1, + 1 + ], + [ + 2815, + 4, + 0, + 1, + 1 + ], + [ + 2819, + 34, + 0, + 1, + 1 + ], + [ + 2822, + 41, + 0, + 1, + 1 + ], + [ + 2826, + 5, + 0, + 1, + 1 + ], + [ + 2835, + 4, + 0, + 1, + 1 + ], + [ + 2837, + 32, + 0, + 1, + 0 + ], + [ + 2838, + 3, + 0, + 0, + 0 + ], + [ + 2849, + 99, + 0, + 1, + 1 + ], + [ + 2852, + 56, + 0, + 1, + 1 + ], + [ + 2855, + 4, + 0, + 1, + 1 + ], + [ + 2859, + 37, + 0, + 1, + 1 + ], + [ + 2862, + 4, + 0, + 1, + 1 + ], + [ + 2869, + 16, + 0, + 1, + 1 + ], + [ + 2877, + 4, + 0, + 1, + 1 + ], + [ + 2879, + 32, + 0, + 1, + 0 + ], + [ + 2880, + 3, + 0, + 0, + 0 + ], + [ + 2891, + 96, + 0, + 1, + 1 + ], + [ + 2894, + 56, + 0, + 1, + 1 + ], + [ + 2897, + 4, + 0, + 1, + 1 + ], + [ + 2901, + 37, + 0, + 1, + 1 + ], + [ + 2904, + 4, + 0, + 1, + 1 + ], + [ + 2911, + 16, + 0, + 1, + 1 + ], + [ + 2920, + 4, + 0, + 1, + 1 + ], + [ + 2922, + 32, + 0, + 1, + 0 + ], + [ + 2923, + 3, + 0, + 0, + 0 + ], + [ + 2938, + 98, + 792, + 1, + 1 + ], + [ + 2941, + 19, + 0, + 1, + 1 + ], + [ + 2944, + 4, + 792, + 1, + 1 + ], + [ + 2947, + 56, + 0, + 1, + 1 + ], + [ + 2950, + 4, + 792, + 1, + 1 + ], + [ + 2952, + 24, + 0, + 1, + 1 + ], + [ + 2955, + 4, + 792, + 1, + 1 + ], + [ + 2964, + 9, + 1177, + 1, + 1 + ], + [ + 2964, + 23, + 792, + 1, + 0 + ], + [ + 2964, + 24, + 795, + 1, + 1 + ], + [ + 2967, + 28, + 396, + 1, + 1 + ], + [ + 2969, + 12, + 408, + 1, + 1 + ], + [ + 2971, + 9, + 408, + 1, + 1 + ], + [ + 2977, + 7, + 408, + 1, + 0 + ], + [ + 2977, + 24, + 14, + 1, + 1 + ], + [ + 2979, + 47, + 0, + 1, + 1 + ], + [ + 2982, + 8, + 14, + 1, + 1 + ], + [ + 2986, + 7, + 0, + 1, + 1 + ], + [ + 2987, + 13, + 14, + 1, + 0 + ], + [ + 2989, + 7, + 12, + 1, + 1 + ], + [ + 2990, + 11, + 12, + 1, + 1 + ], + [ + 2994, + 9, + 12, + 1, + 0 + ], + [ + 2994, + 30, + 0, + 1, + 1 + ], + [ + 2997, + 9, + 12, + 1, + 1 + ], + [ + 2998, + 16, + 14, + 1, + 0 + ], + [ + 3000, + 7, + 2, + 1, + 1 + ], + [ + 3001, + 30, + 14, + 1, + 0 + ], + [ + 3002, + 8, + 14, + 1, + 1 + ], + [ + 3004, + 7, + 0, + 1, + 1 + ], + [ + 3006, + 6, + -12, + 1, + 1 + ], + [ + 3006, + 13, + 0, + 1, + 1 + ], + [ + 3006, + 17, + -12, + 1, + 0 + ], + [ + 3008, + 5, + 387, + 1, + 1 + ], + [ + 3008, + 11, + 399, + 1, + 1 + ], + [ + 3014, + 5, + 387, + 1, + 1 + ], + [ + 3015, + 14, + 2, + 1, + 1 + ], + [ + 3017, + 27, + 2, + 1, + 1 + ], + [ + 3017, + 38, + 2, + 1, + 0 + ], + [ + 3017, + 39, + 2, + 1, + 1 + ], + [ + 3021, + 6, + 0, + 1, + 1 + ], + [ + 3024, + 28, + 0, + 1, + 1 + ], + [ + 3027, + 6, + 0, + 1, + 1 + ], + [ + 3029, + 80, + 0, + 1, + 0 + ], + [ + 3030, + 5, + 385, + 1, + 1 + ], + [ + 3032, + 4, + 382, + 1, + 1 + ], + [ + 3034, + 14, + 792, + 1, + 0 + ], + [ + 3035, + 3, + 0, + 0, + 0 + ], + [ + 3044, + 72, + 0, + 1, + 1 + ], + [ + 3047, + 23, + 0, + 1, + 1 + ], + [ + 3049, + 4, + 0, + 1, + 1 + ], + [ + 3051, + 95, + 0, + 1, + 0 + ], + [ + 3052, + 3, + 0, + 0, + 0 + ], + [ + 3061, + 70, + 0, + 1, + 1 + ], + [ + 3064, + 22, + 0, + 1, + 1 + ], + [ + 3066, + 4, + 0, + 1, + 1 + ], + [ + 3068, + 37, + 0, + 1, + 1 + ], + [ + 3071, + 4, + 0, + 1, + 0 + ], + [ + 3072, + 3, + 0, + 0, + 0 + ], + [ + 3081, + 74, + 0, + 1, + 1 + ], + [ + 3083, + 59, + 0, + 1, + 1 + ], + [ + 3087, + 4, + 0, + 1, + 0 + ], + [ + 3088, + 3, + 0, + 0, + 0 + ], + [ + 3102, + 119, + 0, + 1, + 1 + ], + [ + 3105, + 34, + 0, + 1, + 1 + ], + [ + 3107, + 4, + 0, + 1, + 1 + ], + [ + 3110, + 19, + 0, + 1, + 1 + ], + [ + 3113, + 4, + 0, + 1, + 1 + ], + [ + 3116, + 56, + 0, + 1, + 1 + ], + [ + 3119, + 4, + 0, + 1, + 1 + ], + [ + 3123, + 37, + 0, + 1, + 1 + ], + [ + 3126, + 4, + 0, + 1, + 1 + ], + [ + 3128, + 42, + 0, + 1, + 1 + ], + [ + 3137, + 10, + 0, + 1, + 1 + ], + [ + 3137, + 24, + 0, + 1, + 0 + ], + [ + 3137, + 25, + 0, + 1, + 1 + ], + [ + 3146, + 15, + 0, + 1, + 1 + ], + [ + 3148, + 28, + 0, + 1, + 1 + ], + [ + 3148, + 39, + 0, + 1, + 0 + ], + [ + 3148, + 40, + 0, + 1, + 1 + ], + [ + 3152, + 7, + 0, + 1, + 1 + ], + [ + 3155, + 29, + 0, + 1, + 1 + ], + [ + 3158, + 7, + 0, + 1, + 1 + ], + [ + 3160, + 81, + 0, + 1, + 0 + ], + [ + 3161, + 6, + 0, + 1, + 1 + ], + [ + 3163, + 5, + 0, + 1, + 1 + ], + [ + 3165, + 15, + 0, + 1, + 0 + ], + [ + 3167, + 3, + 0, + 0, + 0 + ], + [ + 3178, + 93, + 0, + 1, + 1 + ], + [ + 3182, + 3, + 0, + 0, + 0 + ], + [ + 3193, + 91, + 0, + 1, + 1 + ], + [ + 3196, + 37, + 0, + 1, + 1 + ], + [ + 3199, + 4, + 0, + 1, + 0 + ], + [ + 3200, + 3, + 0, + 0, + 0 + ], + [ + 3211, + 95, + 0, + 1, + 1 + ], + [ + 3213, + 59, + 0, + 1, + 1 + ], + [ + 3217, + 4, + 0, + 1, + 0 + ], + [ + 3218, + 3, + 0, + 0, + 0 + ], + [ + 3231, + 124, + 14, + 1, + 1 + ], + [ + 3234, + 56, + 0, + 1, + 1 + ], + [ + 3237, + 4, + 14, + 1, + 1 + ], + [ + 3239, + 24, + 0, + 1, + 1 + ], + [ + 3242, + 4, + 14, + 1, + 1 + ], + [ + 3255, + 18, + 14, + 1, + 1 + ], + [ + 3260, + 4, + 14, + 1, + 1 + ], + [ + 3260, + 10, + 0, + 1, + 1 + ], + [ + 3266, + 19, + 0, + 1, + 1 + ], + [ + 3284, + 5, + 0, + 1, + 1 + ], + [ + 3288, + 4, + 14, + 1, + 1 + ], + [ + 3291, + 16, + 0, + 1, + 1 + ], + [ + 3294, + 4, + 14, + 1, + 1 + ], + [ + 3297, + 71, + 14, + 1, + 0 + ], + [ + 3298, + 3, + 0, + 0, + 0 + ], + [ + 3305, + 57, + 776, + 1, + 1 + ], + [ + 3308, + 16, + 0, + 1, + 1 + ], + [ + 3311, + 4, + 776, + 1, + 1 + ], + [ + 3314, + 18, + 0, + 1, + 1 + ], + [ + 3318, + 4, + 776, + 1, + 1 + ], + [ + 3318, + 10, + 776, + 1, + 1 + ], + [ + 3321, + 4, + 776, + 1, + 1 + ], + [ + 3323, + 17, + 0, + 1, + 1 + ], + [ + 3326, + 4, + 776, + 1, + 1 + ], + [ + 3329, + 3, + 0, + 0, + 0 + ], + [ + 3337, + 53, + 0, + 1, + 1 + ], + [ + 3343, + 16, + 0, + 1, + 1 + ], + [ + 3361, + 4, + 0, + 1, + 1 + ], + [ + 3365, + 17, + 0, + 1, + 1 + ], + [ + 3368, + 4, + 0, + 1, + 1 + ], + [ + 3369, + 3, + 0, + 0, + 0 + ], + [ + 3377, + 54, + 0, + 1, + 1 + ], + [ + 3383, + 16, + 0, + 1, + 1 + ], + [ + 3401, + 4, + 0, + 1, + 1 + ], + [ + 3405, + 17, + 0, + 1, + 1 + ], + [ + 3408, + 4, + 0, + 1, + 1 + ], + [ + 3409, + 3, + 0, + 0, + 0 + ], + [ + 3417, + 48, + 0, + 1, + 1 + ], + [ + 3420, + 56, + 0, + 1, + 1 + ], + [ + 3423, + 4, + 0, + 1, + 1 + ], + [ + 3427, + 37, + 0, + 1, + 1 + ], + [ + 3430, + 4, + 0, + 1, + 1 + ], + [ + 3433, + 28, + 0, + 1, + 1 + ], + [ + 3433, + 29, + 0, + 1, + 0 + ], + [ + 3433, + 32, + 0, + 1, + 1 + ], + [ + 3433, + 33, + 0, + 1, + 0 + ], + [ + 3434, + 104, + 0, + 1, + 1 + ], + [ + 3436, + 4, + 0, + 1, + 1 + ], + [ + 3437, + 3, + 0, + 0, + 0 + ], + [ + 3447, + 43, + 786, + 1, + 1 + ], + [ + 3449, + 56, + 786, + 1, + 1 + ], + [ + 3452, + 22, + 786, + 1, + 1 + ], + [ + 3454, + 5, + 786, + 1, + 1 + ], + [ + 3466, + 25, + 6, + 1, + 1 + ], + [ + 3469, + 6, + 786, + 1, + 1 + ], + [ + 3475, + 4, + 786, + 1, + 1 + ], + [ + 3477, + 29, + 786, + 1, + 1 + ], + [ + 3484, + 38, + 0, + 1, + 1 + ], + [ + 3484, + 54, + 786, + 1, + 0 + ], + [ + 3484, + 55, + 0, + 1, + 1 + ], + [ + 3490, + 5, + 786, + 1, + 1 + ], + [ + 3493, + 4, + 786, + 1, + 1 + ], + [ + 3494, + 3, + 0, + 0, + 0 + ], + [ + 3501, + 51, + 1923, + 1, + 1 + ], + [ + 3511, + 34, + 0, + 1, + 1 + ], + [ + 3513, + 4, + 1923, + 1, + 1 + ], + [ + 3517, + 10, + 2179, + 1, + 1 + ], + [ + 3519, + 28, + 1161, + 1, + 1 + ], + [ + 3527, + 5, + 2179, + 1, + 1 + ], + [ + 3527, + 11, + 1018, + 1, + 1 + ], + [ + 3529, + 12, + 1018, + 1, + 1 + ], + [ + 3531, + 9, + 1018, + 1, + 1 + ], + [ + 3537, + 7, + 1018, + 1, + 0 + ], + [ + 3537, + 24, + 0, + 1, + 1 + ], + [ + 3539, + 47, + 0, + 1, + 1 + ], + [ + 3542, + 8, + 0, + 1, + 1 + ], + [ + 3546, + 7, + 0, + 1, + 1 + ], + [ + 3547, + 13, + 0, + 1, + 0 + ], + [ + 3549, + 7, + 0, + 1, + 1 + ], + [ + 3550, + 11, + 0, + 1, + 1 + ], + [ + 3554, + 9, + 0, + 1, + 0 + ], + [ + 3554, + 30, + 0, + 1, + 1 + ], + [ + 3557, + 9, + 0, + 1, + 1 + ], + [ + 3558, + 16, + 0, + 1, + 0 + ], + [ + 3560, + 7, + 0, + 1, + 1 + ], + [ + 3561, + 30, + 0, + 1, + 0 + ], + [ + 3562, + 8, + 0, + 1, + 1 + ], + [ + 3564, + 7, + 0, + 1, + 1 + ], + [ + 3566, + 6, + 0, + 1, + 1 + ], + [ + 3566, + 13, + 0, + 1, + 1 + ], + [ + 3566, + 17, + 0, + 1, + 0 + ], + [ + 3568, + 5, + 1161, + 1, + 1 + ], + [ + 3570, + 17, + 974, + 1, + 1 + ], + [ + 3576, + 5, + 974, + 1, + 1 + ], + [ + 3577, + 36, + 974, + 1, + 0 + ], + [ + 3579, + 5, + 0, + 1, + 1 + ], + [ + 3582, + 85, + 974, + 1, + 0 + ], + [ + 3584, + 5, + 0, + 1, + 1 + ], + [ + 3586, + 80, + 974, + 1, + 0 + ], + [ + 3587, + 6, + 974, + 1, + 1 + ], + [ + 3589, + 5, + 1161, + 1, + 1 + ], + [ + 3591, + 18, + 9, + 1, + 1 + ], + [ + 3595, + 5, + 1152, + 1, + 1 + ], + [ + 3601, + 35, + 940, + 1, + 1 + ], + [ + 3604, + 5, + 212, + 1, + 1 + ], + [ + 3606, + 4, + -44, + 1, + 1 + ], + [ + 3606, + 11, + 256, + 1, + 1 + ], + [ + 3606, + 20, + -44, + 1, + 0 + ], + [ + 3608, + 33, + 1923, + 1, + 0 + ], + [ + 3609, + 3, + 0, + 0, + 0 + ], + [ + 3616, + 91, + 0, + 1, + 1 + ], + [ + 3625, + 34, + 0, + 1, + 1 + ], + [ + 3627, + 4, + 0, + 1, + 1 + ], + [ + 3629, + 6, + 0, + 1, + 1 + ], + [ + 3630, + 53, + 0, + 1, + 1 + ], + [ + 3640, + 18, + 0, + 1, + 1 + ], + [ + 3644, + 28, + 0, + 1, + 1 + ], + [ + 3644, + 48, + 0, + 1, + 0 + ], + [ + 3644, + 49, + 0, + 1, + 1 + ], + [ + 3647, + 7, + 0, + 1, + 1 + ], + [ + 3650, + 29, + 0, + 1, + 1 + ], + [ + 3653, + 7, + 0, + 1, + 1 + ], + [ + 3656, + 80, + 0, + 1, + 0 + ], + [ + 3657, + 6, + 0, + 1, + 1 + ], + [ + 3659, + 19, + 0, + 1, + 1 + ], + [ + 3662, + 6, + 0, + 1, + 1 + ], + [ + 3666, + 5, + 0, + 1, + 0 + ], + [ + 3666, + 12, + 0, + 1, + 1 + ], + [ + 3669, + 5, + 0, + 1, + 1 + ], + [ + 3671, + 45, + 0, + 1, + 0 + ], + [ + 3673, + 57, + 0, + 1, + 1 + ], + [ + 3676, + 4, + 0, + 1, + 1 + ], + [ + 3677, + 3, + 0, + 0, + 0 + ], + [ + 3684, + 42, + 12, + 1, + 1 + ], + [ + 3686, + 10, + 14, + 1, + 1 + ], + [ + 3690, + 15, + 0, + 1, + 1 + ], + [ + 3692, + 24, + 0, + 1, + 1 + ], + [ + 3694, + 6, + 0, + 1, + 1 + ], + [ + 3694, + 12, + 0, + 1, + 1 + ], + [ + 3696, + 6, + 0, + 1, + 1 + ], + [ + 3698, + 5, + 14, + 1, + 1 + ], + [ + 3698, + 11, + 14, + 1, + 1 + ], + [ + 3700, + 24, + 12, + 1, + 1 + ], + [ + 3702, + 6, + 2, + 1, + 1 + ], + [ + 3702, + 12, + 2, + 1, + 1 + ], + [ + 3704, + 6, + 0, + 1, + 1 + ], + [ + 3705, + 5, + 0, + 1, + 1 + ], + [ + 3707, + 4, + -2, + 1, + 1 + ], + [ + 3707, + 11, + 2, + 1, + 1 + ], + [ + 3707, + 15, + -2, + 1, + 0 + ], + [ + 3708, + 3, + 0, + 0, + 0 + ], + [ + 3715, + 37, + 8, + 1, + 1 + ], + [ + 3717, + 53, + 0, + 1, + 1 + ], + [ + 3717, + 70, + 8, + 1, + 0 + ], + [ + 3718, + 3, + 0, + 0, + 0 + ], + [ + 3725, + 50, + 788, + 1, + 1 + ], + [ + 3733, + 105, + 0, + 1, + 1 + ], + [ + 3735, + 5, + 788, + 1, + 1 + ], + [ + 3738, + 3, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 2952, + "covered": 899, + "percent": 30 + }, + "functions": { + "count": 122, + "covered": 37, + "percent": 30 + }, + "instantiations": { + "count": 122, + "covered": 37, + "percent": 30 + }, + "regions": { + "count": 804, + "covered": 217, + "notcovered": 587, + "percent": 26 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift", + "segments": [ + [ + 179, + 26, + 2, + 1, + 1 + ], + [ + 183, + 3, + 0, + 1, + 1 + ], + [ + 184, + 12, + 2, + 1, + 0 + ], + [ + 186, + 3, + 0, + 1, + 1 + ], + [ + 187, + 13, + 2, + 1, + 0 + ], + [ + 189, + 3, + 2, + 1, + 1 + ], + [ + 190, + 23, + 2, + 1, + 0 + ], + [ + 191, + 4, + 2, + 1, + 1 + ], + [ + 192, + 3, + 0, + 0, + 0 + ], + [ + 195, + 33, + 2, + 1, + 1 + ], + [ + 199, + 3, + 0, + 1, + 1 + ], + [ + 200, + 20, + 2, + 1, + 0 + ], + [ + 202, + 3, + 0, + 1, + 1 + ], + [ + 203, + 28, + 2, + 1, + 0 + ], + [ + 205, + 3, + 2, + 1, + 1 + ], + [ + 206, + 17, + 2, + 1, + 0 + ], + [ + 207, + 4, + 2, + 1, + 1 + ], + [ + 208, + 3, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 28, + "covered": 24, + "percent": 85 + }, + "functions": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "instantiations": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "regions": { + "count": 10, + "covered": 6, + "notcovered": 4, + "percent": 60 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift", + "segments": [ + [ + 43, + 115, + 0, + 1, + 1 + ], + [ + 52, + 119, + 0, + 1, + 1 + ], + [ + 54, + 52, + 0, + 1, + 1 + ], + [ + 55, + 69, + 0, + 1, + 1 + ], + [ + 57, + 6, + 0, + 1, + 0 + ], + [ + 63, + 3, + 0, + 1, + 1 + ], + [ + 64, + 41, + 0, + 1, + 0 + ], + [ + 66, + 3, + 0, + 1, + 1 + ], + [ + 67, + 41, + 0, + 1, + 0 + ], + [ + 69, + 3, + 0, + 1, + 1 + ], + [ + 70, + 41, + 0, + 1, + 0 + ], + [ + 72, + 4, + 0, + 1, + 1 + ], + [ + 73, + 3, + 0, + 0, + 0 + ], + [ + 86, + 116, + 792, + 1, + 1 + ], + [ + 90, + 53, + 792, + 1, + 1 + ], + [ + 91, + 61, + 792, + 1, + 1 + ], + [ + 92, + 61, + 792, + 1, + 1 + ], + [ + 94, + 6, + 792, + 1, + 0 + ], + [ + 99, + 3, + 784, + 1, + 1 + ], + [ + 100, + 50, + 784, + 1, + 1 + ], + [ + 101, + 68, + 784, + 1, + 1 + ], + [ + 103, + 6, + 784, + 1, + 0 + ], + [ + 104, + 5, + 792, + 1, + 0 + ], + [ + 105, + 3, + 0, + 1, + 1 + ], + [ + 106, + 50, + 0, + 1, + 1 + ], + [ + 107, + 69, + 0, + 1, + 1 + ], + [ + 109, + 6, + 0, + 1, + 0 + ], + [ + 110, + 5, + 792, + 1, + 0 + ], + [ + 111, + 3, + 0, + 1, + 1 + ], + [ + 112, + 50, + 0, + 1, + 1 + ], + [ + 113, + 68, + 0, + 1, + 1 + ], + [ + 115, + 6, + 0, + 1, + 0 + ], + [ + 116, + 5, + 792, + 1, + 0 + ], + [ + 117, + 3, + 0, + 1, + 1 + ], + [ + 118, + 14, + 792, + 1, + 0 + ], + [ + 119, + 4, + 784, + 1, + 1 + ], + [ + 120, + 3, + 0, + 0, + 0 + ], + [ + 151, + 101, + 84, + 1, + 1 + ], + [ + 152, + 55, + 84, + 1, + 1 + ], + [ + 154, + 5, + 84, + 1, + 0 + ], + [ + 155, + 4, + 0, + 0, + 0 + ], + [ + 163, + 61, + 56, + 1, + 1 + ], + [ + 175, + 3, + 0, + 0, + 0 + ], + [ + 180, + 30, + 28, + 1, + 1 + ], + [ + 182, + 20, + 28, + 1, + 1 + ], + [ + 182, + 74, + 28, + 1, + 0 + ], + [ + 186, + 3, + 0, + 0, + 0 + ], + [ + 193, + 40, + 28, + 1, + 1 + ], + [ + 195, + 20, + 28, + 1, + 1 + ], + [ + 195, + 41, + 28, + 1, + 0 + ], + [ + 196, + 3, + 0, + 0, + 0 + ], + [ + 203, + 42, + 0, + 1, + 1 + ], + [ + 205, + 20, + 0, + 1, + 1 + ], + [ + 205, + 42, + 0, + 1, + 0 + ], + [ + 206, + 3, + 0, + 0, + 0 + ], + [ + 215, + 50, + 28, + 1, + 1 + ], + [ + 217, + 27, + 28, + 1, + 1 + ], + [ + 217, + 52, + 28, + 1, + 0 + ], + [ + 218, + 3, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 165, + "covered": 86, + "percent": 52 + }, + "functions": { + "count": 25, + "covered": 15, + "percent": 60 + }, + "instantiations": { + "count": 25, + "covered": 15, + "percent": 60 + }, + "regions": { + "count": 34, + "covered": 17, + "notcovered": 17, + "percent": 50 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-TemplateEngine/Sources/KituraTemplateEngine/TemplateEngine.swift", + "segments": [ + [ + 21, + 19, + 32, + 1, + 1 + ], + [ + 21, + 21, + 0, + 0, + 0 + ], + [ + 95, + 68, + 14, + 1, + 1 + ], + [ + 97, + 6, + 0, + 0, + 0 + ], + [ + 102, + 90, + 14, + 1, + 1 + ], + [ + 104, + 6, + 0, + 0, + 0 + ], + [ + 107, + 51, + 23, + 1, + 1 + ], + [ + 107, + 53, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 8, + "covered": 8, + "percent": 100 + }, + "functions": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "instantiations": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "regions": { + "count": 4, + "covered": 4, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift", + "segments": [ + [ + 68, + 62, + 0, + 1, + 1 + ], + [ + 68, + 77, + 0, + 0, + 0 + ], + [ + 80, + 27, + 761, + 1, + 1 + ], + [ + 82, + 6, + 0, + 0, + 0 + ], + [ + 87, + 27, + 774, + 1, + 1 + ], + [ + 89, + 6, + 0, + 0, + 0 + ], + [ + 102, + 19, + 3833, + 1, + 1 + ], + [ + 102, + 21, + 0, + 0, + 0 + ], + [ + 119, + 66, + 6332, + 1, + 1 + ], + [ + 121, + 6, + 0, + 0, + 0 + ], + [ + 135, + 36, + 454, + 1, + 1 + ], + [ + 137, + 6, + 0, + 0, + 0 + ], + [ + 153, + 51, + 0, + 1, + 1 + ], + [ + 156, + 6, + 0, + 0, + 0 + ], + [ + 172, + 79, + 270, + 1, + 1 + ], + [ + 185, + 6, + 0, + 0, + 0 + ], + [ + 200, + 47, + 1016, + 1, + 1 + ], + [ + 207, + 6, + 0, + 0, + 0 + ], + [ + 221, + 50, + 760, + 1, + 1 + ], + [ + 228, + 6, + 0, + 0, + 0 + ], + [ + 238, + 25, + 2313, + 1, + 1 + ], + [ + 243, + 6, + 0, + 0, + 0 + ], + [ + 253, + 26, + 776, + 1, + 1 + ], + [ + 257, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 59, + "covered": 54, + "percent": 91 + }, + "functions": { + "count": 12, + "covered": 10, + "percent": 83 + }, + "instantiations": { + "count": 12, + "covered": 10, + "percent": 83 + }, + "regions": { + "count": 12, + "covered": 10, + "notcovered": 2, + "percent": 83 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift", + "segments": [ + [ + 32, + 31, + 761, + 1, + 1 + ], + [ + 34, + 6, + 0, + 0, + 0 + ], + [ + 232, + 53, + 0, + 1, + 1 + ], + [ + 237, + 6, + 0, + 0, + 0 + ], + [ + 243, + 60, + 761, + 1, + 1 + ], + [ + 252, + 32, + 4948, + 1, + 1 + ], + [ + 255, + 17, + 1904, + 1, + 1 + ], + [ + 257, + 32, + 4948, + 1, + 0 + ], + [ + 258, + 17, + 761, + 1, + 1 + ], + [ + 259, + 51, + 761, + 1, + 1 + ], + [ + 259, + 66, + 761, + 1, + 0 + ], + [ + 259, + 67, + 761, + 1, + 1 + ], + [ + 261, + 22, + 761, + 1, + 1 + ], + [ + 262, + 39, + 4948, + 1, + 0 + ], + [ + 263, + 17, + 761, + 1, + 1 + ], + [ + 264, + 36, + 4948, + 1, + 0 + ], + [ + 265, + 17, + 761, + 1, + 1 + ], + [ + 267, + 44, + 4948, + 1, + 0 + ], + [ + 268, + 17, + 761, + 1, + 1 + ], + [ + 269, + 45, + 34, + 1, + 1 + ], + [ + 271, + 22, + 761, + 1, + 1 + ], + [ + 272, + 35, + 4948, + 1, + 0 + ], + [ + 273, + 17, + 0, + 1, + 1 + ], + [ + 274, + 45, + 4948, + 1, + 0 + ], + [ + 275, + 17, + 0, + 1, + 1 + ], + [ + 276, + 45, + 4948, + 1, + 0 + ], + [ + 277, + 14, + 4948, + 1, + 1 + ], + [ + 278, + 10, + 761, + 1, + 1 + ], + [ + 281, + 37, + 761, + 1, + 1 + ], + [ + 281, + 39, + 761, + 1, + 0 + ], + [ + 282, + 36, + 761, + 1, + 1 + ], + [ + 282, + 38, + 761, + 1, + 0 + ], + [ + 285, + 30, + 761, + 1, + 1 + ], + [ + 285, + 42, + 761, + 1, + 0 + ], + [ + 285, + 44, + 0, + 1, + 1 + ], + [ + 287, + 10, + 761, + 1, + 1 + ], + [ + 291, + 6, + 0, + 0, + 0 + ], + [ + 306, + 40, + 1904, + 1, + 1 + ], + [ + 309, + 9, + 0, + 1, + 1 + ], + [ + 310, + 23, + 0, + 1, + 1 + ], + [ + 310, + 76, + 0, + 1, + 0 + ], + [ + 310, + 77, + 1904, + 1, + 0 + ], + [ + 311, + 9, + 761, + 1, + 1 + ], + [ + 312, + 33, + 1904, + 1, + 0 + ], + [ + 313, + 9, + 761, + 1, + 1 + ], + [ + 314, + 41, + 1073, + 1, + 1 + ], + [ + 316, + 14, + 1904, + 1, + 1 + ], + [ + 317, + 9, + 0, + 1, + 1 + ], + [ + 318, + 45, + 1904, + 1, + 0 + ], + [ + 319, + 9, + 382, + 1, + 1 + ], + [ + 320, + 47, + 1904, + 1, + 0 + ], + [ + 321, + 9, + 0, + 1, + 1 + ], + [ + 322, + 33, + 1904, + 1, + 0 + ], + [ + 323, + 10, + 1904, + 1, + 1 + ], + [ + 324, + 6, + 0, + 0, + 0 + ], + [ + 339, + 77, + 0, + 1, + 1 + ], + [ + 341, + 45, + 0, + 1, + 1 + ], + [ + 343, + 10, + 0, + 1, + 1 + ], + [ + 344, + 18, + 0, + 1, + 0 + ], + [ + 345, + 6, + 0, + 0, + 0 + ], + [ + 359, + 68, + 0, + 1, + 1 + ], + [ + 363, + 36, + 0, + 1, + 1 + ], + [ + 365, + 10, + 0, + 1, + 1 + ], + [ + 366, + 32, + 0, + 1, + 1 + ], + [ + 368, + 10, + 0, + 1, + 1 + ], + [ + 371, + 34, + 0, + 1, + 1 + ], + [ + 374, + 10, + 0, + 1, + 1 + ], + [ + 376, + 32, + 0, + 1, + 1 + ], + [ + 378, + 10, + 0, + 1, + 1 + ], + [ + 379, + 36, + 0, + 1, + 1 + ], + [ + 381, + 10, + 0, + 1, + 1 + ], + [ + 382, + 40, + 0, + 1, + 1 + ], + [ + 384, + 10, + 0, + 1, + 1 + ], + [ + 385, + 23, + 0, + 1, + 0 + ], + [ + 386, + 6, + 0, + 0, + 0 + ], + [ + 389, + 12, + 761, + 1, + 1 + ], + [ + 391, + 34, + 0, + 1, + 1 + ], + [ + 393, + 10, + 761, + 1, + 1 + ], + [ + 395, + 33, + 0, + 1, + 1 + ], + [ + 397, + 10, + 761, + 1, + 1 + ], + [ + 399, + 6, + 0, + 0, + 0 + ], + [ + 412, + 44, + 36, + 1, + 1 + ], + [ + 414, + 51, + 36, + 1, + 1 + ], + [ + 416, + 10, + 36, + 1, + 1 + ], + [ + 418, + 6, + 0, + 0, + 0 + ], + [ + 434, + 40, + 152, + 1, + 1 + ], + [ + 438, + 6, + 0, + 0, + 0 + ], + [ + 452, + 58, + 0, + 1, + 1 + ], + [ + 457, + 6, + 0, + 0, + 0 + ], + [ + 473, + 56, + 0, + 1, + 1 + ], + [ + 478, + 6, + 0, + 0, + 0 + ], + [ + 490, + 42, + 761, + 1, + 1 + ], + [ + 494, + 63, + 0, + 1, + 1 + ], + [ + 497, + 10, + 761, + 1, + 1 + ], + [ + 507, + 37, + 1, + 1, + 1 + ], + [ + 508, + 23, + 1, + 1, + 1 + ], + [ + 508, + 101, + 1, + 1, + 0 + ], + [ + 511, + 10, + 760, + 1, + 1 + ], + [ + 514, + 37, + 0, + 1, + 1 + ], + [ + 515, + 23, + 0, + 1, + 1 + ], + [ + 515, + 99, + 0, + 1, + 0 + ], + [ + 518, + 10, + 760, + 1, + 1 + ], + [ + 522, + 16, + 760, + 1, + 1 + ], + [ + 524, + 49, + 0, + 1, + 1 + ], + [ + 525, + 27, + 0, + 1, + 1 + ], + [ + 525, + 103, + 0, + 1, + 0 + ], + [ + 528, + 14, + 760, + 1, + 1 + ], + [ + 530, + 62, + 0, + 1, + 1 + ], + [ + 531, + 27, + 0, + 1, + 1 + ], + [ + 531, + 103, + 0, + 1, + 0 + ], + [ + 534, + 14, + 760, + 1, + 1 + ], + [ + 537, + 10, + 760, + 1, + 1 + ], + [ + 537, + 17, + 760, + 1, + 1 + ], + [ + 537, + 48, + 760, + 1, + 1 + ], + [ + 537, + 85, + 760, + 1, + 0 + ], + [ + 540, + 6, + 0, + 0, + 0 + ], + [ + 545, + 58, + 761, + 1, + 1 + ], + [ + 551, + 35, + 382, + 1, + 1 + ], + [ + 554, + 10, + 761, + 1, + 1 + ], + [ + 562, + 21, + 0, + 1, + 1 + ], + [ + 564, + 10, + 761, + 1, + 1 + ], + [ + 565, + 6, + 0, + 0, + 0 + ], + [ + 568, + 46, + 761, + 1, + 1 + ], + [ + 573, + 13, + 533, + 1, + 1 + ], + [ + 574, + 74, + 761, + 1, + 0 + ], + [ + 575, + 13, + 96, + 1, + 1 + ], + [ + 577, + 75, + 761, + 1, + 0 + ], + [ + 578, + 13, + 32, + 1, + 1 + ], + [ + 580, + 72, + 761, + 1, + 0 + ], + [ + 581, + 13, + 2, + 1, + 1 + ], + [ + 582, + 73, + 761, + 1, + 0 + ], + [ + 583, + 13, + 26, + 1, + 1 + ], + [ + 586, + 72, + 761, + 1, + 0 + ], + [ + 587, + 13, + 72, + 1, + 1 + ], + [ + 588, + 88, + 761, + 1, + 0 + ], + [ + 589, + 10, + 761, + 1, + 1 + ], + [ + 591, + 6, + 0, + 0, + 0 + ], + [ + 594, + 33, + 761, + 1, + 1 + ], + [ + 596, + 28, + 761, + 1, + 1 + ], + [ + 598, + 10, + 761, + 1, + 1 + ], + [ + 600, + 49, + 1834, + 1, + 1 + ], + [ + 601, + 88, + 1834, + 1, + 1 + ], + [ + 603, + 14, + 1834, + 1, + 1 + ], + [ + 604, + 10, + 761, + 1, + 1 + ], + [ + 606, + 6, + 0, + 0, + 0 + ], + [ + 614, + 93, + 773, + 1, + 1 + ], + [ + 619, + 6, + 0, + 0, + 0 + ], + [ + 622, + 92, + 270, + 1, + 1 + ], + [ + 627, + 6, + 0, + 0, + 0 + ], + [ + 630, + 94, + 4556, + 1, + 1 + ], + [ + 633, + 64, + 4556, + 1, + 1 + ], + [ + 634, + 82, + 0, + 1, + 1 + ], + [ + 635, + 81, + 0, + 1, + 1 + ], + [ + 639, + 18, + 0, + 1, + 0 + ], + [ + 640, + 14, + 4556, + 1, + 1 + ], + [ + 641, + 18, + 4556, + 1, + 1 + ], + [ + 643, + 14, + 4556, + 1, + 1 + ], + [ + 644, + 10, + 4556, + 1, + 0 + ], + [ + 648, + 6, + 0, + 0, + 0 + ], + [ + 651, + 43, + 16, + 1, + 1 + ], + [ + 656, + 6, + 0, + 0, + 0 + ], + [ + 672, + 74, + 761, + 1, + 1 + ], + [ + 677, + 6, + 0, + 0, + 0 + ], + [ + 682, + 43, + 761, + 1, + 1 + ], + [ + 685, + 49, + 0, + 1, + 1 + ], + [ + 687, + 10, + 761, + 1, + 1 + ], + [ + 689, + 54, + 761, + 1, + 1 + ], + [ + 694, + 20, + 777, + 1, + 1 + ], + [ + 697, + 37, + 776, + 1, + 1 + ], + [ + 700, + 44, + 776, + 1, + 1 + ], + [ + 701, + 48, + 16, + 1, + 1 + ], + [ + 703, + 62, + 16, + 1, + 1 + ], + [ + 711, + 58, + 16, + 1, + 1 + ], + [ + 711, + 71, + 16, + 1, + 0 + ], + [ + 711, + 72, + 0, + 1, + 1 + ], + [ + 713, + 34, + 16, + 1, + 1 + ], + [ + 716, + 30, + 16, + 1, + 1 + ], + [ + 717, + 34, + 0, + 1, + 1 + ], + [ + 719, + 30, + 16, + 1, + 1 + ], + [ + 720, + 26, + 776, + 1, + 1 + ], + [ + 721, + 30, + 760, + 1, + 1 + ], + [ + 723, + 26, + 776, + 1, + 1 + ], + [ + 724, + 22, + 776, + 1, + 1 + ], + [ + 725, + 18, + 777, + 1, + 1 + ], + [ + 727, + 14, + 761, + 1, + 1 + ], + [ + 727, + 22, + 777, + 1, + 1 + ], + [ + 727, + 42, + 776, + 1, + 1 + ], + [ + 727, + 52, + 761, + 1, + 0 + ], + [ + 731, + 6, + 0, + 0, + 0 + ], + [ + 736, + 83, + 761, + 1, + 1 + ], + [ + 738, + 47, + 270, + 1, + 1 + ], + [ + 742, + 10, + 761, + 1, + 0 + ], + [ + 744, + 48, + 773, + 1, + 1 + ], + [ + 748, + 10, + 761, + 1, + 0 + ], + [ + 750, + 49, + 4556, + 1, + 1 + ], + [ + 754, + 10, + 761, + 1, + 0 + ], + [ + 755, + 6, + 0, + 0, + 0 + ], + [ + 774, + 12, + 0, + 1, + 1 + ], + [ + 776, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 456, + "covered": 363, + "percent": 79 + }, + "functions": { + "count": 40, + "covered": 29, + "percent": 72 + }, + "instantiations": { + "count": 40, + "covered": 29, + "percent": 72 + }, + "regions": { + "count": 139, + "covered": 97, + "notcovered": 42, + "percent": 69 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift", + "segments": [ + [ + 58, + 31, + 0, + 1, + 1 + ], + [ + 58, + 59, + 0, + 0, + 0 + ], + [ + 68, + 42, + 0, + 1, + 1 + ], + [ + 68, + 80, + 0, + 0, + 0 + ], + [ + 78, + 42, + 0, + 1, + 1 + ], + [ + 78, + 80, + 0, + 0, + 0 + ], + [ + 88, + 42, + 334, + 1, + 1 + ], + [ + 88, + 71, + 0, + 0, + 0 + ], + [ + 107, + 66, + 760, + 1, + 1 + ], + [ + 110, + 32, + 0, + 1, + 1 + ], + [ + 114, + 10, + 760, + 1, + 1 + ], + [ + 117, + 43, + 760, + 1, + 1 + ], + [ + 119, + 10, + 760, + 1, + 1 + ], + [ + 124, + 35, + 760, + 1, + 1 + ], + [ + 127, + 10, + 760, + 1, + 1 + ], + [ + 129, + 33, + 760, + 1, + 1 + ], + [ + 131, + 10, + 760, + 1, + 1 + ], + [ + 132, + 41, + 0, + 1, + 1 + ], + [ + 135, + 10, + 760, + 1, + 1 + ], + [ + 139, + 28, + 760, + 1, + 0 + ], + [ + 140, + 6, + 0, + 0, + 0 + ], + [ + 154, + 59, + 866, + 1, + 1 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 172, + 66, + 420, + 1, + 1 + ], + [ + 175, + 15, + 658, + 1, + 1 + ], + [ + 175, + 25, + 420, + 1, + 0 + ], + [ + 175, + 26, + 238, + 1, + 1 + ], + [ + 178, + 10, + 420, + 1, + 1 + ], + [ + 179, + 25, + 420, + 1, + 0 + ], + [ + 180, + 6, + 0, + 0, + 0 + ], + [ + 193, + 48, + 198, + 1, + 1 + ], + [ + 196, + 23, + 192, + 1, + 1 + ], + [ + 198, + 10, + 6, + 1, + 1 + ], + [ + 199, + 14, + 6, + 1, + 1 + ], + [ + 201, + 10, + 0, + 1, + 1 + ], + [ + 202, + 6, + 0, + 0, + 0 + ], + [ + 205, + 29, + 760, + 1, + 1 + ], + [ + 211, + 6, + 0, + 0, + 0 + ], + [ + 214, + 27, + 760, + 1, + 1 + ], + [ + 216, + 6, + 0, + 0, + 0 + ], + [ + 219, + 26, + 760, + 1, + 1 + ], + [ + 222, + 6, + 0, + 0, + 0 + ], + [ + 225, + 34, + 761, + 1, + 1 + ], + [ + 227, + 6, + 0, + 0, + 0 + ], + [ + 239, + 16, + 760, + 1, + 1 + ], + [ + 240, + 62, + 0, + 1, + 1 + ], + [ + 240, + 70, + 760, + 1, + 0 + ], + [ + 241, + 10, + 0, + 0, + 0 + ], + [ + 262, + 38, + 760, + 1, + 1 + ], + [ + 278, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 99, + "covered": 89, + "percent": 89 + }, + "functions": { + "count": 15, + "covered": 11, + "percent": 73 + }, + "instantiations": { + "count": 15, + "covered": 11, + "percent": 73 + }, + "regions": { + "count": 32, + "covered": 25, + "notcovered": 7, + "percent": 78 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgradeFactory.swift", + "segments": [ + [ + 53, + 146, + 0, + 1, + 1 + ], + [ + 56, + 44, + 0, + 1, + 1 + ], + [ + 58, + 10, + 0, + 1, + 1 + ], + [ + 59, + 37, + 0, + 1, + 0 + ], + [ + 60, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 8, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 3, + "covered": 0, + "notcovered": 3, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift", + "segments": [ + [ + 28, + 37, + 0, + 1, + 1 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 38, + 68, + 0, + 1, + 1 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 43, + 25, + 0, + 1, + 1 + ], + [ + 45, + 6, + 0, + 0, + 0 + ], + [ + 52, + 110, + 0, + 1, + 1 + ], + [ + 53, + 63, + 0, + 1, + 1 + ], + [ + 54, + 16, + 0, + 1, + 1 + ], + [ + 58, + 14, + 0, + 1, + 0 + ], + [ + 59, + 19, + 0, + 1, + 1 + ], + [ + 60, + 27, + 0, + 1, + 1 + ], + [ + 60, + 77, + 0, + 1, + 0 + ], + [ + 61, + 14, + 0, + 1, + 1 + ], + [ + 62, + 19, + 0, + 1, + 0 + ], + [ + 63, + 10, + 0, + 1, + 1 + ], + [ + 74, + 42, + 0, + 1, + 1 + ], + [ + 75, + 103, + 0, + 1, + 1 + ], + [ + 75, + 105, + 0, + 1, + 0 + ], + [ + 76, + 89, + 0, + 1, + 1 + ], + [ + 81, + 14, + 0, + 1, + 1 + ], + [ + 82, + 10, + 0, + 1, + 1 + ], + [ + 84, + 12, + 0, + 1, + 1 + ], + [ + 85, + 25, + 0, + 1, + 1 + ], + [ + 89, + 14, + 0, + 1, + 1 + ], + [ + 90, + 18, + 0, + 1, + 1 + ], + [ + 91, + 85, + 0, + 1, + 1 + ], + [ + 98, + 18, + 0, + 1, + 1 + ], + [ + 99, + 22, + 0, + 1, + 1 + ], + [ + 100, + 58, + 0, + 1, + 1 + ], + [ + 102, + 22, + 0, + 1, + 1 + ], + [ + 103, + 18, + 0, + 1, + 1 + ], + [ + 104, + 14, + 0, + 1, + 1 + ], + [ + 105, + 43, + 0, + 1, + 1 + ], + [ + 106, + 77, + 0, + 1, + 1 + ], + [ + 106, + 89, + 0, + 1, + 0 + ], + [ + 109, + 14, + 0, + 1, + 1 + ], + [ + 112, + 10, + 0, + 1, + 0 + ], + [ + 113, + 15, + 0, + 1, + 1 + ], + [ + 114, + 23, + 0, + 1, + 1 + ], + [ + 114, + 67, + 0, + 1, + 0 + ], + [ + 115, + 10, + 0, + 1, + 1 + ], + [ + 116, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 78, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 8, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 8, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 32, + "covered": 0, + "notcovered": 32, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Error.swift", + "segments": [ + [ + 31, + 36, + 0, + 1, + 1 + ], + [ + 33, + 13, + 0, + 1, + 1 + ], + [ + 34, + 101, + 0, + 1, + 0 + ], + [ + 35, + 10, + 0, + 1, + 1 + ], + [ + 36, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 6, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 3, + "covered": 0, + "notcovered": 3, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGI.swift", + "segments": [ + [ + 102, + 56, + 3, + 1, + 1 + ], + [ + 104, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "functions": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "instantiations": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "regions": { + "count": 1, + "covered": 1, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift", + "segments": [ + [ + 41, + 61, + 0, + 1, + 1 + ], + [ + 43, + 28, + 0, + 1, + 1 + ], + [ + 45, + 10, + 0, + 1, + 1 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 52, + 92, + 0, + 1, + 1 + ], + [ + 58, + 6, + 0, + 0, + 0 + ], + [ + 64, + 92, + 0, + 1, + 1 + ], + [ + 70, + 6, + 0, + 0, + 0 + ], + [ + 73, + 83, + 0, + 1, + 1 + ], + [ + 75, + 6, + 0, + 0, + 0 + ], + [ + 81, + 48, + 0, + 1, + 1 + ], + [ + 93, + 6, + 0, + 0, + 0 + ], + [ + 98, + 74, + 0, + 1, + 1 + ], + [ + 122, + 6, + 0, + 0, + 0 + ], + [ + 127, + 71, + 0, + 1, + 1 + ], + [ + 131, + 41, + 0, + 1, + 1 + ], + [ + 131, + 73, + 0, + 1, + 0 + ], + [ + 131, + 76, + 0, + 1, + 1 + ], + [ + 131, + 77, + 0, + 1, + 0 + ], + [ + 152, + 6, + 0, + 0, + 0 + ], + [ + 157, + 68, + 0, + 1, + 1 + ], + [ + 159, + 25, + 0, + 1, + 1 + ], + [ + 162, + 10, + 0, + 1, + 1 + ], + [ + 163, + 14, + 0, + 1, + 1 + ], + [ + 166, + 10, + 0, + 1, + 1 + ], + [ + 168, + 6, + 0, + 0, + 0 + ], + [ + 173, + 51, + 0, + 1, + 1 + ], + [ + 177, + 40, + 0, + 1, + 1 + ], + [ + 182, + 61, + 0, + 1, + 1 + ], + [ + 185, + 14, + 0, + 1, + 1 + ], + [ + 187, + 66, + 0, + 1, + 1 + ], + [ + 190, + 14, + 0, + 1, + 1 + ], + [ + 197, + 10, + 0, + 1, + 1 + ], + [ + 199, + 23, + 0, + 1, + 0 + ], + [ + 200, + 6, + 0, + 0, + 0 + ], + [ + 205, + 63, + 0, + 1, + 1 + ], + [ + 208, + 6, + 0, + 0, + 0 + ], + [ + 213, + 63, + 0, + 1, + 1 + ], + [ + 215, + 46, + 0, + 1, + 1 + ], + [ + 215, + 52, + 0, + 1, + 0 + ], + [ + 215, + 55, + 0, + 1, + 1 + ], + [ + 215, + 65, + 0, + 1, + 0 + ], + [ + 221, + 30, + 0, + 1, + 1 + ], + [ + 223, + 10, + 0, + 1, + 1 + ], + [ + 236, + 30, + 0, + 1, + 1 + ], + [ + 238, + 10, + 0, + 1, + 1 + ], + [ + 240, + 20, + 0, + 1, + 0 + ], + [ + 241, + 6, + 0, + 0, + 0 + ], + [ + 246, + 46, + 0, + 1, + 1 + ], + [ + 251, + 9, + 0, + 1, + 1 + ], + [ + 256, + 18, + 0, + 1, + 0 + ], + [ + 258, + 9, + 0, + 1, + 1 + ], + [ + 259, + 51, + 0, + 1, + 0 + ], + [ + 260, + 10, + 0, + 1, + 1 + ], + [ + 264, + 61, + 0, + 1, + 1 + ], + [ + 267, + 13, + 0, + 1, + 1 + ], + [ + 270, + 22, + 0, + 1, + 0 + ], + [ + 272, + 13, + 0, + 1, + 1 + ], + [ + 273, + 58, + 0, + 1, + 0 + ], + [ + 274, + 14, + 0, + 1, + 1 + ], + [ + 276, + 10, + 0, + 1, + 1 + ], + [ + 277, + 68, + 0, + 1, + 1 + ], + [ + 279, + 72, + 0, + 1, + 1 + ], + [ + 281, + 14, + 0, + 1, + 1 + ], + [ + 283, + 10, + 0, + 1, + 1 + ], + [ + 287, + 78, + 0, + 1, + 1 + ], + [ + 289, + 10, + 0, + 1, + 1 + ], + [ + 294, + 36, + 0, + 1, + 1 + ], + [ + 296, + 10, + 0, + 1, + 1 + ], + [ + 297, + 40, + 0, + 1, + 1 + ], + [ + 299, + 10, + 0, + 1, + 1 + ], + [ + 301, + 6, + 0, + 0, + 0 + ], + [ + 306, + 34, + 0, + 1, + 1 + ], + [ + 314, + 9, + 0, + 1, + 1 + ], + [ + 315, + 61, + 0, + 1, + 0 + ], + [ + 317, + 9, + 0, + 1, + 1 + ], + [ + 318, + 64, + 0, + 1, + 0 + ], + [ + 320, + 9, + 0, + 1, + 1 + ], + [ + 321, + 53, + 0, + 1, + 0 + ], + [ + 323, + 9, + 0, + 1, + 1 + ], + [ + 325, + 53, + 0, + 1, + 0 + ], + [ + 326, + 10, + 0, + 1, + 1 + ], + [ + 328, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 239, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 13, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 13, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 56, + "covered": 0, + "notcovered": 56, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift", + "segments": [ + [ + 39, + 26, + 0, + 1, + 1 + ], + [ + 40, + 64, + 0, + 1, + 1 + ], + [ + 40, + 69, + 0, + 1, + 0 + ], + [ + 40, + 72, + 0, + 1, + 1 + ], + [ + 40, + 76, + 0, + 1, + 0 + ], + [ + 41, + 6, + 0, + 0, + 0 + ], + [ + 57, + 34, + 0, + 1, + 1 + ], + [ + 59, + 43, + 0, + 1, + 1 + ], + [ + 61, + 10, + 0, + 1, + 1 + ], + [ + 65, + 17, + 0, + 1, + 0 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 73, + 36, + 0, + 1, + 1 + ], + [ + 81, + 44, + 0, + 1, + 1 + ], + [ + 83, + 10, + 0, + 1, + 1 + ], + [ + 84, + 6, + 0, + 0, + 0 + ], + [ + 90, + 93, + 0, + 1, + 1 + ], + [ + 98, + 6, + 0, + 0, + 0 + ], + [ + 104, + 93, + 0, + 1, + 1 + ], + [ + 112, + 6, + 0, + 0, + 0 + ], + [ + 116, + 24, + 0, + 1, + 1 + ], + [ + 118, + 6, + 0, + 0, + 0 + ], + [ + 123, + 40, + 0, + 1, + 1 + ], + [ + 126, + 74, + 0, + 1, + 1 + ], + [ + 128, + 10, + 0, + 1, + 1 + ], + [ + 129, + 6, + 0, + 0, + 0 + ], + [ + 133, + 37, + 0, + 1, + 1 + ], + [ + 138, + 9, + 0, + 1, + 1 + ], + [ + 143, + 18, + 0, + 1, + 0 + ], + [ + 145, + 9, + 0, + 1, + 1 + ], + [ + 146, + 51, + 0, + 1, + 0 + ], + [ + 147, + 10, + 0, + 1, + 1 + ], + [ + 149, + 6, + 0, + 0, + 0 + ], + [ + 153, + 42, + 0, + 1, + 1 + ], + [ + 161, + 6, + 0, + 0, + 0 + ], + [ + 165, + 46, + 0, + 1, + 1 + ], + [ + 173, + 6, + 0, + 0, + 0 + ], + [ + 177, + 46, + 0, + 1, + 1 + ], + [ + 179, + 6, + 0, + 0, + 0 + ], + [ + 183, + 37, + 0, + 1, + 1 + ], + [ + 192, + 61, + 0, + 1, + 1 + ], + [ + 194, + 10, + 0, + 1, + 1 + ], + [ + 196, + 6, + 0, + 0, + 0 + ], + [ + 200, + 42, + 0, + 1, + 1 + ], + [ + 210, + 6, + 0, + 0, + 0 + ], + [ + 214, + 47, + 0, + 1, + 1 + ], + [ + 216, + 6, + 0, + 0, + 0 + ], + [ + 220, + 37, + 0, + 1, + 1 + ], + [ + 221, + 30, + 0, + 1, + 1 + ], + [ + 224, + 10, + 0, + 1, + 1 + ], + [ + 224, + 16, + 0, + 1, + 1 + ], + [ + 226, + 10, + 0, + 1, + 1 + ], + [ + 227, + 6, + 0, + 0, + 0 + ], + [ + 250, + 55, + 0, + 1, + 1 + ], + [ + 254, + 33, + 0, + 1, + 1 + ], + [ + 261, + 10, + 0, + 1, + 1 + ], + [ + 261, + 16, + 0, + 1, + 1 + ], + [ + 274, + 10, + 0, + 1, + 1 + ], + [ + 276, + 6, + 0, + 0, + 0 + ], + [ + 280, + 43, + 0, + 1, + 1 + ], + [ + 282, + 38, + 0, + 1, + 1 + ], + [ + 284, + 10, + 0, + 1, + 1 + ], + [ + 288, + 16, + 0, + 1, + 1 + ], + [ + 296, + 39, + 0, + 1, + 1 + ], + [ + 301, + 14, + 0, + 1, + 1 + ], + [ + 307, + 81, + 0, + 1, + 1 + ], + [ + 312, + 14, + 0, + 1, + 1 + ], + [ + 314, + 45, + 0, + 1, + 1 + ], + [ + 320, + 14, + 0, + 1, + 1 + ], + [ + 324, + 32, + 0, + 1, + 1 + ], + [ + 330, + 87, + 0, + 1, + 1 + ], + [ + 335, + 18, + 0, + 1, + 1 + ], + [ + 340, + 14, + 0, + 1, + 1 + ], + [ + 341, + 18, + 0, + 1, + 1 + ], + [ + 345, + 14, + 0, + 1, + 1 + ], + [ + 351, + 10, + 0, + 1, + 1 + ], + [ + 352, + 15, + 0, + 1, + 1 + ], + [ + 352, + 35, + 0, + 1, + 0 + ], + [ + 354, + 6, + 0, + 0, + 0 + ], + [ + 359, + 58, + 0, + 1, + 1 + ], + [ + 361, + 30, + 0, + 1, + 1 + ], + [ + 363, + 10, + 0, + 1, + 1 + ], + [ + 367, + 38, + 0, + 1, + 1 + ], + [ + 369, + 10, + 0, + 1, + 1 + ], + [ + 369, + 16, + 0, + 1, + 1 + ], + [ + 371, + 10, + 0, + 1, + 1 + ], + [ + 373, + 6, + 0, + 0, + 0 + ], + [ + 377, + 34, + 0, + 1, + 1 + ], + [ + 392, + 9, + 0, + 1, + 1 + ], + [ + 395, + 18, + 0, + 1, + 0 + ], + [ + 397, + 9, + 0, + 1, + 1 + ], + [ + 401, + 18, + 0, + 1, + 0 + ], + [ + 403, + 9, + 0, + 1, + 1 + ], + [ + 405, + 18, + 0, + 1, + 0 + ], + [ + 407, + 9, + 0, + 1, + 1 + ], + [ + 410, + 18, + 0, + 1, + 0 + ], + [ + 411, + 10, + 0, + 1, + 1 + ], + [ + 415, + 43, + 0, + 1, + 0 + ], + [ + 416, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 284, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 19, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 19, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 68, + "covered": 0, + "notcovered": 68, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift", + "segments": [ + [ + 71, + 51, + 3, + 1, + 1 + ], + [ + 77, + 6, + 0, + 0, + 0 + ], + [ + 95, + 19, + 3, + 1, + 1 + ], + [ + 105, + 6, + 0, + 0, + 0 + ], + [ + 117, + 45, + 3, + 1, + 1 + ], + [ + 119, + 12, + 3, + 1, + 1 + ], + [ + 124, + 22, + 0, + 1, + 1 + ], + [ + 124, + 49, + 3, + 1, + 0 + ], + [ + 125, + 25, + 0, + 1, + 1 + ], + [ + 125, + 140, + 3, + 1, + 0 + ], + [ + 131, + 55, + 0, + 1, + 1 + ], + [ + 134, + 14, + 3, + 1, + 0 + ], + [ + 138, + 25, + 3, + 1, + 1 + ], + [ + 142, + 10, + 3, + 1, + 1 + ], + [ + 143, + 6, + 0, + 0, + 0 + ], + [ + 158, + 96, + 0, + 1, + 1 + ], + [ + 163, + 6, + 0, + 0, + 0 + ], + [ + 177, + 81, + 0, + 1, + 1 + ], + [ + 178, + 12, + 0, + 1, + 1 + ], + [ + 180, + 10, + 0, + 1, + 0 + ], + [ + 181, + 25, + 0, + 1, + 1 + ], + [ + 182, + 44, + 0, + 1, + 1 + ], + [ + 184, + 14, + 0, + 1, + 1 + ], + [ + 184, + 20, + 0, + 1, + 1 + ], + [ + 185, + 27, + 0, + 1, + 1 + ], + [ + 185, + 70, + 0, + 1, + 0 + ], + [ + 186, + 14, + 0, + 1, + 1 + ], + [ + 187, + 10, + 0, + 1, + 1 + ], + [ + 188, + 6, + 0, + 0, + 0 + ], + [ + 205, + 131, + 0, + 1, + 1 + ], + [ + 211, + 6, + 0, + 0, + 0 + ], + [ + 214, + 47, + 0, + 1, + 1 + ], + [ + 215, + 16, + 0, + 1, + 1 + ], + [ + 216, + 16, + 0, + 1, + 1 + ], + [ + 218, + 27, + 0, + 1, + 1 + ], + [ + 219, + 80, + 0, + 1, + 0 + ], + [ + 221, + 31, + 0, + 1, + 1 + ], + [ + 222, + 43, + 0, + 1, + 1 + ], + [ + 223, + 65, + 0, + 1, + 1 + ], + [ + 224, + 92, + 0, + 1, + 1 + ], + [ + 225, + 38, + 0, + 1, + 1 + ], + [ + 225, + 68, + 0, + 1, + 0 + ], + [ + 226, + 26, + 0, + 1, + 1 + ], + [ + 226, + 32, + 0, + 1, + 1 + ], + [ + 227, + 41, + 0, + 1, + 1 + ], + [ + 227, + 114, + 0, + 1, + 0 + ], + [ + 228, + 26, + 0, + 1, + 1 + ], + [ + 229, + 22, + 0, + 1, + 1 + ], + [ + 229, + 28, + 0, + 1, + 1 + ], + [ + 230, + 37, + 0, + 1, + 1 + ], + [ + 230, + 103, + 0, + 1, + 0 + ], + [ + 231, + 22, + 0, + 1, + 1 + ], + [ + 232, + 18, + 0, + 1, + 1 + ], + [ + 232, + 24, + 0, + 1, + 1 + ], + [ + 233, + 31, + 0, + 1, + 1 + ], + [ + 233, + 76, + 0, + 1, + 0 + ], + [ + 235, + 18, + 0, + 1, + 1 + ], + [ + 236, + 14, + 0, + 1, + 1 + ], + [ + 237, + 10, + 0, + 1, + 1 + ], + [ + 237, + 17, + 0, + 1, + 1 + ], + [ + 237, + 43, + 0, + 1, + 1 + ], + [ + 237, + 67, + 0, + 1, + 0 + ], + [ + 239, + 35, + 0, + 1, + 1 + ], + [ + 240, + 23, + 0, + 1, + 1 + ], + [ + 240, + 72, + 0, + 1, + 0 + ], + [ + 242, + 10, + 0, + 1, + 1 + ], + [ + 243, + 6, + 0, + 0, + 0 + ], + [ + 248, + 67, + 0, + 1, + 1 + ], + [ + 250, + 40, + 0, + 1, + 1 + ], + [ + 254, + 29, + 0, + 1, + 1 + ], + [ + 256, + 17, + 0, + 1, + 1 + ], + [ + 259, + 39, + 0, + 1, + 1 + ], + [ + 259, + 67, + 0, + 1, + 0 + ], + [ + 261, + 17, + 0, + 1, + 1 + ], + [ + 263, + 24, + 0, + 1, + 1 + ], + [ + 265, + 22, + 0, + 1, + 0 + ], + [ + 265, + 29, + 0, + 1, + 1 + ], + [ + 265, + 31, + 0, + 1, + 1 + ], + [ + 267, + 26, + 0, + 1, + 0 + ], + [ + 268, + 17, + 0, + 1, + 1 + ], + [ + 272, + 26, + 0, + 1, + 0 + ], + [ + 273, + 18, + 0, + 1, + 1 + ], + [ + 274, + 14, + 0, + 1, + 0 + ], + [ + 277, + 6, + 0, + 0, + 0 + ], + [ + 280, + 113, + 0, + 1, + 1 + ], + [ + 281, + 46, + 0, + 1, + 1 + ], + [ + 282, + 54, + 0, + 1, + 1 + ], + [ + 283, + 20, + 0, + 1, + 1 + ], + [ + 285, + 18, + 0, + 1, + 0 + ], + [ + 285, + 25, + 0, + 1, + 1 + ], + [ + 285, + 27, + 0, + 1, + 1 + ], + [ + 286, + 14, + 0, + 1, + 1 + ], + [ + 287, + 10, + 0, + 1, + 1 + ], + [ + 288, + 6, + 0, + 0, + 0 + ], + [ + 298, + 24, + 3, + 1, + 1 + ], + [ + 302, + 6, + 0, + 0, + 0 + ], + [ + 317, + 65, + 3, + 1, + 1 + ], + [ + 320, + 6, + 0, + 0, + 0 + ], + [ + 335, + 65, + 1, + 1, + 1 + ], + [ + 338, + 6, + 0, + 0, + 0 + ], + [ + 353, + 75, + 3, + 1, + 1 + ], + [ + 356, + 6, + 0, + 0, + 0 + ], + [ + 373, + 91, + 0, + 1, + 1 + ], + [ + 376, + 6, + 0, + 0, + 0 + ], + [ + 390, + 70, + 0, + 1, + 1 + ], + [ + 391, + 16, + 0, + 1, + 1 + ], + [ + 394, + 14, + 0, + 1, + 0 + ], + [ + 395, + 19, + 0, + 1, + 1 + ], + [ + 396, + 27, + 0, + 1, + 1 + ], + [ + 396, + 74, + 0, + 1, + 0 + ], + [ + 397, + 14, + 0, + 1, + 1 + ], + [ + 398, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 234, + "covered": 62, + "percent": 26 + }, + "functions": { + "count": 30, + "covered": 7, + "percent": 23 + }, + "instantiations": { + "count": 30, + "covered": 7, + "percent": 23 + }, + "regions": { + "count": 77, + "covered": 10, + "notcovered": 67, + "percent": 12 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift", + "segments": [ + [ + 137, + 35, + 0, + 1, + 1 + ], + [ + 137, + 58, + 0, + 1, + 1 + ], + [ + 137, + 60, + 0, + 1, + 0 + ], + [ + 137, + 62, + 0, + 0, + 0 + ], + [ + 149, + 27, + 0, + 1, + 1 + ], + [ + 149, + 70, + 0, + 1, + 1 + ], + [ + 149, + 76, + 0, + 1, + 0 + ], + [ + 149, + 78, + 0, + 0, + 0 + ], + [ + 162, + 52, + 0, + 1, + 1 + ], + [ + 163, + 83, + 0, + 1, + 1 + ], + [ + 163, + 98, + 0, + 1, + 0 + ], + [ + 164, + 10, + 0, + 0, + 0 + ], + [ + 236, + 43, + 0, + 1, + 1 + ], + [ + 238, + 6, + 0, + 0, + 0 + ], + [ + 253, + 59, + 0, + 1, + 1 + ], + [ + 255, + 6, + 0, + 0, + 0 + ], + [ + 270, + 66, + 0, + 1, + 1 + ], + [ + 272, + 6, + 0, + 0, + 0 + ], + [ + 285, + 48, + 0, + 1, + 1 + ], + [ + 289, + 22, + 0, + 1, + 1 + ], + [ + 291, + 10, + 0, + 1, + 1 + ], + [ + 291, + 16, + 0, + 1, + 1 + ], + [ + 293, + 10, + 0, + 1, + 1 + ], + [ + 294, + 6, + 0, + 0, + 0 + ], + [ + 297, + 44, + 0, + 1, + 1 + ], + [ + 299, + 62, + 0, + 1, + 1 + ], + [ + 301, + 10, + 0, + 1, + 1 + ], + [ + 301, + 16, + 0, + 1, + 1 + ], + [ + 303, + 23, + 0, + 1, + 1 + ], + [ + 303, + 71, + 0, + 1, + 0 + ], + [ + 304, + 10, + 0, + 1, + 1 + ], + [ + 306, + 43, + 0, + 1, + 1 + ], + [ + 308, + 10, + 0, + 1, + 1 + ], + [ + 308, + 16, + 0, + 1, + 1 + ], + [ + 310, + 23, + 0, + 1, + 1 + ], + [ + 310, + 49, + 0, + 1, + 0 + ], + [ + 311, + 10, + 0, + 1, + 1 + ], + [ + 313, + 62, + 0, + 1, + 1 + ], + [ + 315, + 10, + 0, + 1, + 1 + ], + [ + 315, + 16, + 0, + 1, + 1 + ], + [ + 316, + 23, + 0, + 1, + 1 + ], + [ + 316, + 62, + 0, + 1, + 0 + ], + [ + 317, + 10, + 0, + 1, + 1 + ], + [ + 319, + 42, + 0, + 1, + 1 + ], + [ + 321, + 10, + 0, + 1, + 1 + ], + [ + 321, + 16, + 0, + 1, + 1 + ], + [ + 322, + 23, + 0, + 1, + 1 + ], + [ + 322, + 53, + 0, + 1, + 0 + ], + [ + 323, + 10, + 0, + 1, + 1 + ], + [ + 324, + 6, + 0, + 0, + 0 + ], + [ + 329, + 42, + 0, + 1, + 1 + ], + [ + 332, + 30, + 0, + 1, + 1 + ], + [ + 334, + 10, + 0, + 1, + 1 + ], + [ + 337, + 37, + 0, + 1, + 1 + ], + [ + 339, + 10, + 0, + 1, + 1 + ], + [ + 344, + 6, + 0, + 0, + 0 + ], + [ + 349, + 83, + 0, + 1, + 1 + ], + [ + 356, + 6, + 0, + 0, + 0 + ], + [ + 359, + 66, + 0, + 1, + 1 + ], + [ + 361, + 45, + 0, + 1, + 1 + ], + [ + 363, + 10, + 0, + 1, + 1 + ], + [ + 366, + 13, + 0, + 1, + 1 + ], + [ + 366, + 49, + 0, + 1, + 0 + ], + [ + 366, + 55, + 0, + 1, + 1 + ], + [ + 368, + 10, + 0, + 1, + 1 + ], + [ + 374, + 33, + 0, + 1, + 1 + ], + [ + 375, + 25, + 0, + 1, + 1 + ], + [ + 377, + 14, + 0, + 1, + 1 + ], + [ + 377, + 20, + 0, + 1, + 1 + ], + [ + 379, + 14, + 0, + 1, + 1 + ], + [ + 380, + 10, + 0, + 1, + 1 + ], + [ + 386, + 32, + 0, + 1, + 1 + ], + [ + 390, + 10, + 0, + 1, + 1 + ], + [ + 393, + 51, + 0, + 1, + 1 + ], + [ + 397, + 10, + 0, + 1, + 1 + ], + [ + 400, + 35, + 0, + 1, + 1 + ], + [ + 400, + 54, + 0, + 1, + 0 + ], + [ + 400, + 55, + 0, + 1, + 1 + ], + [ + 403, + 10, + 0, + 1, + 1 + ], + [ + 405, + 6, + 0, + 0, + 0 + ], + [ + 413, + 65, + 0, + 1, + 1 + ], + [ + 415, + 74, + 0, + 1, + 1 + ], + [ + 420, + 10, + 0, + 1, + 1 + ], + [ + 420, + 78, + 0, + 1, + 1 + ], + [ + 425, + 10, + 0, + 1, + 1 + ], + [ + 425, + 78, + 0, + 1, + 1 + ], + [ + 430, + 10, + 0, + 1, + 1 + ], + [ + 430, + 82, + 0, + 1, + 1 + ], + [ + 437, + 10, + 0, + 1, + 1 + ], + [ + 438, + 41, + 0, + 1, + 1 + ], + [ + 450, + 10, + 0, + 1, + 1 + ], + [ + 452, + 37, + 0, + 1, + 1 + ], + [ + 454, + 10, + 0, + 1, + 1 + ], + [ + 455, + 6, + 0, + 0, + 0 + ], + [ + 459, + 72, + 0, + 1, + 1 + ], + [ + 464, + 64, + 0, + 1, + 1 + ], + [ + 466, + 10, + 0, + 1, + 1 + ], + [ + 469, + 13, + 0, + 1, + 1 + ], + [ + 469, + 64, + 0, + 1, + 0 + ], + [ + 469, + 65, + 0, + 1, + 1 + ], + [ + 477, + 10, + 0, + 1, + 1 + ], + [ + 478, + 69, + 0, + 1, + 1 + ], + [ + 487, + 46, + 0, + 1, + 1 + ], + [ + 491, + 14, + 0, + 1, + 1 + ], + [ + 491, + 20, + 0, + 1, + 1 + ], + [ + 496, + 14, + 0, + 1, + 1 + ], + [ + 498, + 10, + 0, + 1, + 1 + ], + [ + 500, + 13, + 0, + 1, + 1 + ], + [ + 500, + 57, + 0, + 1, + 0 + ], + [ + 500, + 58, + 0, + 1, + 1 + ], + [ + 511, + 54, + 0, + 1, + 1 + ], + [ + 513, + 14, + 0, + 1, + 1 + ], + [ + 515, + 41, + 0, + 1, + 1 + ], + [ + 516, + 45, + 0, + 1, + 1 + ], + [ + 519, + 18, + 0, + 1, + 1 + ], + [ + 520, + 14, + 0, + 1, + 1 + ], + [ + 520, + 20, + 0, + 1, + 1 + ], + [ + 530, + 29, + 0, + 1, + 1 + ], + [ + 530, + 99, + 0, + 1, + 1 + ], + [ + 530, + 105, + 0, + 1, + 0 + ], + [ + 530, + 156, + 0, + 1, + 1 + ], + [ + 530, + 162, + 0, + 1, + 0 + ], + [ + 531, + 14, + 0, + 1, + 1 + ], + [ + 533, + 10, + 0, + 1, + 1 + ], + [ + 535, + 13, + 0, + 1, + 1 + ], + [ + 535, + 56, + 0, + 1, + 0 + ], + [ + 535, + 57, + 0, + 1, + 1 + ], + [ + 546, + 54, + 0, + 1, + 1 + ], + [ + 548, + 14, + 0, + 1, + 1 + ], + [ + 550, + 55, + 0, + 1, + 1 + ], + [ + 554, + 14, + 0, + 1, + 1 + ], + [ + 555, + 18, + 0, + 1, + 1 + ], + [ + 559, + 14, + 0, + 1, + 1 + ], + [ + 561, + 10, + 0, + 1, + 1 + ], + [ + 563, + 6, + 0, + 0, + 0 + ], + [ + 566, + 63, + 0, + 1, + 1 + ], + [ + 575, + 16, + 0, + 1, + 1 + ], + [ + 577, + 16, + 0, + 1, + 1 + ], + [ + 581, + 42, + 0, + 1, + 1 + ], + [ + 585, + 18, + 0, + 1, + 1 + ], + [ + 591, + 24, + 0, + 1, + 1 + ], + [ + 604, + 24, + 0, + 1, + 1 + ], + [ + 607, + 49, + 0, + 1, + 1 + ], + [ + 609, + 26, + 0, + 1, + 1 + ], + [ + 609, + 32, + 0, + 1, + 1 + ], + [ + 612, + 26, + 0, + 1, + 1 + ], + [ + 613, + 22, + 0, + 1, + 0 + ], + [ + 614, + 64, + 0, + 1, + 1 + ], + [ + 623, + 22, + 0, + 1, + 1 + ], + [ + 629, + 57, + 0, + 1, + 1 + ], + [ + 632, + 22, + 0, + 1, + 1 + ], + [ + 634, + 18, + 0, + 1, + 1 + ], + [ + 634, + 25, + 0, + 1, + 1 + ], + [ + 634, + 29, + 0, + 1, + 0 + ], + [ + 637, + 57, + 0, + 1, + 1 + ], + [ + 640, + 14, + 0, + 1, + 0 + ], + [ + 640, + 56, + 0, + 1, + 1 + ], + [ + 643, + 14, + 0, + 1, + 0 + ], + [ + 643, + 58, + 0, + 1, + 1 + ], + [ + 646, + 14, + 0, + 1, + 0 + ], + [ + 646, + 54, + 0, + 1, + 1 + ], + [ + 649, + 14, + 0, + 1, + 0 + ], + [ + 649, + 58, + 0, + 1, + 1 + ], + [ + 652, + 14, + 0, + 1, + 0 + ], + [ + 652, + 21, + 0, + 1, + 1 + ], + [ + 655, + 14, + 0, + 1, + 1 + ], + [ + 657, + 10, + 0, + 1, + 1 + ], + [ + 657, + 17, + 0, + 1, + 1 + ], + [ + 657, + 21, + 0, + 1, + 0 + ], + [ + 659, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 380, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 29, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 29, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 134, + "covered": 0, + "notcovered": 134, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift", + "segments": [ + [ + 27, + 79, + 0, + 1, + 1 + ], + [ + 31, + 15, + 0, + 1, + 1 + ], + [ + 31, + 39, + 0, + 1, + 0 + ], + [ + 31, + 40, + 0, + 1, + 1 + ], + [ + 36, + 10, + 0, + 1, + 1 + ], + [ + 37, + 6, + 0, + 0, + 0 + ], + [ + 98, + 13, + 0, + 1, + 1 + ], + [ + 100, + 10, + 0, + 0, + 0 + ], + [ + 101, + 24, + 0, + 1, + 1 + ], + [ + 102, + 55, + 0, + 1, + 1 + ], + [ + 104, + 14, + 0, + 1, + 1 + ], + [ + 105, + 10, + 0, + 0, + 0 + ], + [ + 113, + 57, + 0, + 1, + 1 + ], + [ + 117, + 6, + 0, + 0, + 0 + ], + [ + 131, + 42, + 0, + 1, + 1 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 148, + 51, + 0, + 1, + 1 + ], + [ + 150, + 6, + 0, + 0, + 0 + ], + [ + 164, + 47, + 0, + 1, + 1 + ], + [ + 168, + 75, + 0, + 1, + 1 + ], + [ + 170, + 10, + 0, + 1, + 1 + ], + [ + 173, + 6, + 0, + 0, + 0 + ], + [ + 185, + 30, + 0, + 1, + 1 + ], + [ + 189, + 6, + 0, + 0, + 0 + ], + [ + 199, + 41, + 0, + 1, + 1 + ], + [ + 201, + 32, + 0, + 1, + 1 + ], + [ + 201, + 45, + 0, + 1, + 0 + ], + [ + 201, + 51, + 0, + 1, + 1 + ], + [ + 203, + 10, + 0, + 1, + 1 + ], + [ + 211, + 43, + 0, + 1, + 1 + ], + [ + 212, + 38, + 0, + 1, + 1 + ], + [ + 217, + 14, + 0, + 1, + 1 + ], + [ + 218, + 10, + 0, + 1, + 1 + ], + [ + 226, + 6, + 0, + 0, + 0 + ], + [ + 229, + 96, + 0, + 1, + 1 + ], + [ + 239, + 6, + 0, + 0, + 0 + ], + [ + 243, + 61, + 0, + 1, + 1 + ], + [ + 245, + 59, + 0, + 1, + 1 + ], + [ + 247, + 10, + 0, + 1, + 1 + ], + [ + 250, + 97, + 0, + 1, + 0 + ], + [ + 252, + 6, + 0, + 0, + 0 + ], + [ + 257, + 77, + 0, + 1, + 1 + ], + [ + 259, + 6, + 0, + 0, + 0 + ], + [ + 263, + 62, + 0, + 1, + 1 + ], + [ + 265, + 59, + 0, + 1, + 1 + ], + [ + 267, + 10, + 0, + 1, + 1 + ], + [ + 268, + 92, + 0, + 1, + 1 + ], + [ + 270, + 10, + 0, + 1, + 1 + ], + [ + 272, + 129, + 0, + 1, + 0 + ], + [ + 274, + 6, + 0, + 0, + 0 + ], + [ + 286, + 68, + 0, + 1, + 1 + ], + [ + 289, + 6, + 0, + 0, + 0 + ], + [ + 299, + 48, + 0, + 1, + 1 + ], + [ + 300, + 66, + 0, + 1, + 1 + ], + [ + 302, + 10, + 0, + 1, + 1 + ], + [ + 304, + 6, + 0, + 0, + 0 + ], + [ + 314, + 25, + 0, + 1, + 1 + ], + [ + 316, + 6, + 0, + 0, + 0 + ], + [ + 320, + 59, + 0, + 1, + 1 + ], + [ + 327, + 26, + 0, + 1, + 1 + ], + [ + 329, + 10, + 0, + 1, + 1 + ], + [ + 331, + 35, + 0, + 1, + 0 + ], + [ + 333, + 6, + 0, + 0, + 0 + ], + [ + 336, + 81, + 0, + 1, + 1 + ], + [ + 338, + 40, + 0, + 1, + 1 + ], + [ + 340, + 10, + 0, + 1, + 1 + ], + [ + 342, + 26, + 0, + 1, + 1 + ], + [ + 343, + 84, + 0, + 1, + 1 + ], + [ + 345, + 50, + 0, + 1, + 1 + ], + [ + 347, + 18, + 0, + 1, + 1 + ], + [ + 351, + 14, + 0, + 1, + 0 + ], + [ + 352, + 10, + 0, + 1, + 1 + ], + [ + 352, + 16, + 0, + 1, + 1 + ], + [ + 354, + 10, + 0, + 1, + 1 + ], + [ + 356, + 6, + 0, + 0, + 0 + ], + [ + 360, + 33, + 0, + 1, + 1 + ], + [ + 362, + 37, + 0, + 1, + 1 + ], + [ + 364, + 10, + 0, + 1, + 1 + ], + [ + 370, + 6, + 0, + 0, + 0 + ], + [ + 377, + 44, + 0, + 1, + 1 + ], + [ + 390, + 37, + 0, + 1, + 1 + ], + [ + 392, + 10, + 0, + 1, + 1 + ], + [ + 394, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 197, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 22, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 22, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 57, + "covered": 0, + "notcovered": 57, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift", + "segments": [ + [ + 92, + 53, + 8, + 1, + 1 + ], + [ + 94, + 6, + 0, + 0, + 0 + ], + [ + 110, + 108, + 0, + 1, + 1 + ], + [ + 112, + 6, + 0, + 0, + 0 + ], + [ + 128, + 129, + 761, + 1, + 1 + ], + [ + 130, + 6, + 0, + 0, + 0 + ], + [ + 149, + 104, + 0, + 1, + 1 + ], + [ + 153, + 6, + 0, + 0, + 0 + ], + [ + 169, + 54, + 0, + 1, + 1 + ], + [ + 170, + 96, + 0, + 1, + 1 + ], + [ + 172, + 10, + 0, + 1, + 1 + ], + [ + 174, + 19, + 0, + 1, + 0 + ], + [ + 175, + 6, + 0, + 0, + 0 + ], + [ + 318, + 25, + 174, + 1, + 1 + ], + [ + 320, + 13, + 0, + 1, + 1 + ], + [ + 320, + 50, + 174, + 1, + 0 + ], + [ + 321, + 13, + 126, + 1, + 1 + ], + [ + 321, + 47, + 174, + 1, + 0 + ], + [ + 322, + 13, + 0, + 1, + 1 + ], + [ + 322, + 48, + 174, + 1, + 0 + ], + [ + 323, + 13, + 26, + 1, + 1 + ], + [ + 323, + 48, + 174, + 1, + 0 + ], + [ + 324, + 13, + 22, + 1, + 1 + ], + [ + 324, + 48, + 174, + 1, + 0 + ], + [ + 325, + 13, + 0, + 1, + 1 + ], + [ + 325, + 43, + 174, + 1, + 0 + ], + [ + 326, + 14, + 174, + 1, + 1 + ], + [ + 327, + 10, + 0, + 0, + 0 + ], + [ + 331, + 31, + 174, + 1, + 1 + ], + [ + 333, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 34, + "covered": 19, + "percent": 55 + }, + "functions": { + "count": 7, + "covered": 4, + "percent": 57 + }, + "instantiations": { + "count": 7, + "covered": 4, + "percent": 57 + }, + "regions": { + "count": 16, + "covered": 8, + "notcovered": 8, + "percent": 50 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift", + "segments": [ + [ + 134, + 19, + 8, + 1, + 1 + ], + [ + 145, + 6, + 0, + 0, + 0 + ], + [ + 157, + 45, + 9, + 1, + 1 + ], + [ + 159, + 12, + 9, + 1, + 1 + ], + [ + 165, + 42, + 4, + 1, + 1 + ], + [ + 167, + 14, + 9, + 1, + 1 + ], + [ + 176, + 38, + 8, + 1, + 1 + ], + [ + 179, + 30, + 0, + 1, + 1 + ], + [ + 180, + 31, + 0, + 1, + 1 + ], + [ + 180, + 102, + 0, + 1, + 0 + ], + [ + 181, + 18, + 8, + 1, + 1 + ], + [ + 182, + 14, + 9, + 1, + 1 + ], + [ + 184, + 47, + 4, + 1, + 1 + ], + [ + 192, + 26, + 4, + 1, + 1 + ], + [ + 192, + 83, + 4, + 1, + 0 + ], + [ + 193, + 29, + 4, + 1, + 1 + ], + [ + 193, + 173, + 4, + 1, + 0 + ], + [ + 194, + 14, + 9, + 1, + 1 + ], + [ + 194, + 20, + 5, + 1, + 1 + ], + [ + 195, + 26, + 4, + 1, + 1 + ], + [ + 195, + 59, + 5, + 1, + 0 + ], + [ + 196, + 29, + 4, + 1, + 1 + ], + [ + 196, + 150, + 5, + 1, + 0 + ], + [ + 197, + 14, + 9, + 1, + 1 + ], + [ + 203, + 55, + 8, + 1, + 1 + ], + [ + 206, + 14, + 9, + 1, + 0 + ], + [ + 210, + 25, + 1, + 1, + 1 + ], + [ + 214, + 10, + 9, + 1, + 1 + ], + [ + 215, + 6, + 0, + 0, + 0 + ], + [ + 230, + 93, + 0, + 1, + 1 + ], + [ + 235, + 6, + 0, + 0, + 0 + ], + [ + 248, + 81, + 0, + 1, + 1 + ], + [ + 249, + 12, + 0, + 1, + 1 + ], + [ + 251, + 10, + 0, + 1, + 0 + ], + [ + 252, + 25, + 0, + 1, + 1 + ], + [ + 253, + 44, + 0, + 1, + 1 + ], + [ + 255, + 14, + 0, + 1, + 1 + ], + [ + 255, + 20, + 0, + 1, + 1 + ], + [ + 256, + 27, + 0, + 1, + 1 + ], + [ + 256, + 70, + 0, + 1, + 0 + ], + [ + 257, + 14, + 0, + 1, + 1 + ], + [ + 258, + 10, + 0, + 1, + 1 + ], + [ + 259, + 6, + 0, + 0, + 0 + ], + [ + 275, + 128, + 0, + 1, + 1 + ], + [ + 280, + 6, + 0, + 0, + 0 + ], + [ + 283, + 85, + 8, + 1, + 1 + ], + [ + 284, + 16, + 784, + 1, + 1 + ], + [ + 285, + 16, + 784, + 1, + 1 + ], + [ + 288, + 27, + 776, + 1, + 1 + ], + [ + 288, + 75, + 784, + 1, + 0 + ], + [ + 290, + 49, + 389, + 1, + 1 + ], + [ + 291, + 50, + 389, + 1, + 1 + ], + [ + 292, + 58, + 0, + 1, + 1 + ], + [ + 293, + 38, + 0, + 1, + 1 + ], + [ + 293, + 125, + 0, + 1, + 0 + ], + [ + 295, + 26, + 389, + 1, + 1 + ], + [ + 296, + 28, + 389, + 1, + 1 + ], + [ + 299, + 26, + 389, + 1, + 0 + ], + [ + 299, + 43, + 0, + 1, + 1 + ], + [ + 300, + 61, + 0, + 1, + 1 + ], + [ + 301, + 77, + 0, + 1, + 1 + ], + [ + 302, + 49, + 0, + 1, + 1 + ], + [ + 302, + 152, + 0, + 1, + 0 + ], + [ + 303, + 34, + 0, + 1, + 1 + ], + [ + 303, + 40, + 0, + 1, + 1 + ], + [ + 304, + 49, + 0, + 1, + 1 + ], + [ + 304, + 139, + 0, + 1, + 0 + ], + [ + 305, + 34, + 0, + 1, + 1 + ], + [ + 306, + 30, + 0, + 1, + 1 + ], + [ + 306, + 36, + 0, + 1, + 1 + ], + [ + 307, + 43, + 0, + 1, + 1 + ], + [ + 307, + 112, + 0, + 1, + 0 + ], + [ + 309, + 30, + 0, + 1, + 1 + ], + [ + 310, + 26, + 389, + 1, + 1 + ], + [ + 311, + 22, + 389, + 1, + 0 + ], + [ + 312, + 18, + 784, + 1, + 1 + ], + [ + 312, + 24, + 395, + 1, + 1 + ], + [ + 314, + 18, + 784, + 1, + 1 + ], + [ + 315, + 14, + 784, + 1, + 0 + ], + [ + 315, + 31, + 6, + 1, + 1 + ], + [ + 316, + 43, + 6, + 1, + 1 + ], + [ + 317, + 65, + 6, + 1, + 1 + ], + [ + 318, + 92, + 6, + 1, + 1 + ], + [ + 319, + 38, + 6, + 1, + 1 + ], + [ + 319, + 68, + 6, + 1, + 0 + ], + [ + 320, + 26, + 6, + 1, + 1 + ], + [ + 320, + 32, + 0, + 1, + 1 + ], + [ + 321, + 41, + 0, + 1, + 1 + ], + [ + 321, + 114, + 0, + 1, + 0 + ], + [ + 322, + 26, + 6, + 1, + 1 + ], + [ + 323, + 22, + 6, + 1, + 1 + ], + [ + 323, + 28, + 0, + 1, + 1 + ], + [ + 324, + 37, + 0, + 1, + 1 + ], + [ + 324, + 103, + 0, + 1, + 0 + ], + [ + 325, + 22, + 6, + 1, + 1 + ], + [ + 326, + 18, + 6, + 1, + 1 + ], + [ + 326, + 24, + 0, + 1, + 1 + ], + [ + 327, + 31, + 0, + 1, + 1 + ], + [ + 327, + 76, + 0, + 1, + 0 + ], + [ + 329, + 18, + 6, + 1, + 1 + ], + [ + 330, + 14, + 784, + 1, + 1 + ], + [ + 331, + 10, + 8, + 1, + 1 + ], + [ + 331, + 17, + 784, + 1, + 1 + ], + [ + 331, + 43, + 776, + 1, + 1 + ], + [ + 331, + 67, + 8, + 1, + 0 + ], + [ + 333, + 35, + 0, + 1, + 1 + ], + [ + 334, + 23, + 0, + 1, + 1 + ], + [ + 334, + 72, + 0, + 1, + 0 + ], + [ + 336, + 10, + 8, + 1, + 1 + ], + [ + 337, + 6, + 0, + 0, + 0 + ], + [ + 343, + 96, + 389, + 1, + 1 + ], + [ + 344, + 41, + 389, + 1, + 1 + ], + [ + 346, + 10, + 389, + 1, + 1 + ], + [ + 347, + 6, + 0, + 0, + 0 + ], + [ + 352, + 101, + 776, + 1, + 1 + ], + [ + 359, + 119, + 776, + 1, + 1 + ], + [ + 360, + 46, + 0, + 1, + 1 + ], + [ + 360, + 76, + 776, + 1, + 0 + ], + [ + 363, + 13, + 776, + 1, + 1 + ], + [ + 364, + 157, + 776, + 1, + 0 + ], + [ + 365, + 13, + 0, + 1, + 1 + ], + [ + 366, + 148, + 776, + 1, + 0 + ], + [ + 367, + 14, + 776, + 1, + 1 + ], + [ + 369, + 10, + 776, + 1, + 1 + ], + [ + 370, + 14, + 0, + 1, + 1 + ], + [ + 371, + 23, + 0, + 1, + 1 + ], + [ + 371, + 95, + 0, + 1, + 0 + ], + [ + 372, + 10, + 776, + 1, + 1 + ], + [ + 373, + 6, + 0, + 0, + 0 + ], + [ + 384, + 24, + 7, + 1, + 1 + ], + [ + 392, + 6, + 0, + 0, + 0 + ], + [ + 406, + 65, + 3, + 1, + 1 + ], + [ + 409, + 6, + 0, + 0, + 0 + ], + [ + 423, + 65, + 2, + 1, + 1 + ], + [ + 426, + 6, + 0, + 0, + 0 + ], + [ + 440, + 75, + 3, + 1, + 1 + ], + [ + 443, + 6, + 0, + 0, + 0 + ], + [ + 457, + 91, + 0, + 1, + 1 + ], + [ + 460, + 6, + 0, + 0, + 0 + ], + [ + 474, + 43, + 0, + 1, + 1 + ], + [ + 476, + 6, + 0, + 0, + 0 + ], + [ + 490, + 70, + 0, + 1, + 1 + ], + [ + 491, + 16, + 0, + 1, + 1 + ], + [ + 498, + 14, + 0, + 1, + 0 + ], + [ + 499, + 19, + 0, + 1, + 1 + ], + [ + 500, + 27, + 0, + 1, + 1 + ], + [ + 500, + 74, + 0, + 1, + 0 + ], + [ + 501, + 14, + 0, + 1, + 1 + ], + [ + 502, + 10, + 0, + 0, + 0 + ], + [ + 516, + 105, + 1, + 1, + 1 + ], + [ + 518, + 6, + 0, + 0, + 0 + ], + [ + 522, + 16, + 1, + 1, + 1 + ], + [ + 524, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 269, + "covered": 191, + "percent": 71 + }, + "functions": { + "count": 39, + "covered": 20, + "percent": 51 + }, + "instantiations": { + "count": 39, + "covered": 20, + "percent": 51 + }, + "regions": { + "count": 108, + "covered": 62, + "notcovered": 46, + "percent": 57 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift", + "segments": [ + [ + 69, + 38, + 2, + 1, + 1 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 81, + 31, + 1014, + 1, + 1 + ], + [ + 81, + 62, + 0, + 1, + 1 + ], + [ + 81, + 64, + 1014, + 1, + 0 + ], + [ + 81, + 65, + 0, + 0, + 0 + ], + [ + 91, + 42, + 774, + 1, + 1 + ], + [ + 91, + 83, + 0, + 1, + 1 + ], + [ + 91, + 84, + 774, + 1, + 0 + ], + [ + 91, + 85, + 0, + 0, + 0 + ], + [ + 101, + 42, + 774, + 1, + 1 + ], + [ + 101, + 83, + 0, + 1, + 1 + ], + [ + 101, + 84, + 774, + 1, + 0 + ], + [ + 101, + 85, + 0, + 0, + 0 + ], + [ + 111, + 42, + 2544, + 1, + 1 + ], + [ + 111, + 74, + 0, + 1, + 1 + ], + [ + 111, + 92, + 2544, + 1, + 0 + ], + [ + 111, + 94, + 0, + 0, + 0 + ], + [ + 121, + 45, + 986, + 1, + 1 + ], + [ + 121, + 72, + 0, + 0, + 0 + ], + [ + 133, + 28, + 274, + 1, + 1 + ], + [ + 134, + 28, + 62, + 1, + 1 + ], + [ + 136, + 10, + 212, + 1, + 1 + ], + [ + 140, + 47, + 212, + 1, + 1 + ], + [ + 141, + 33, + 106, + 1, + 1 + ], + [ + 141, + 40, + 212, + 1, + 0 + ], + [ + 141, + 43, + 106, + 1, + 1 + ], + [ + 141, + 49, + 212, + 1, + 0 + ], + [ + 143, + 10, + 212, + 1, + 1 + ], + [ + 143, + 16, + 0, + 1, + 1 + ], + [ + 145, + 23, + 0, + 1, + 1 + ], + [ + 145, + 69, + 0, + 1, + 0 + ], + [ + 146, + 10, + 212, + 1, + 1 + ], + [ + 148, + 43, + 212, + 1, + 1 + ], + [ + 150, + 10, + 212, + 1, + 1 + ], + [ + 150, + 16, + 0, + 1, + 1 + ], + [ + 152, + 23, + 0, + 1, + 1 + ], + [ + 152, + 49, + 0, + 1, + 0 + ], + [ + 153, + 10, + 212, + 1, + 1 + ], + [ + 155, + 45, + 0, + 1, + 1 + ], + [ + 155, + 47, + 212, + 1, + 0 + ], + [ + 157, + 42, + 212, + 1, + 1 + ], + [ + 159, + 10, + 212, + 1, + 1 + ], + [ + 159, + 16, + 0, + 1, + 1 + ], + [ + 160, + 23, + 0, + 1, + 1 + ], + [ + 160, + 53, + 0, + 1, + 0 + ], + [ + 162, + 10, + 212, + 1, + 1 + ], + [ + 164, + 26, + 212, + 1, + 0 + ], + [ + 165, + 6, + 0, + 0, + 0 + ], + [ + 180, + 45, + 0, + 1, + 1 + ], + [ + 181, + 33, + 0, + 1, + 1 + ], + [ + 183, + 10, + 0, + 1, + 1 + ], + [ + 184, + 87, + 0, + 1, + 1 + ], + [ + 184, + 102, + 0, + 1, + 0 + ], + [ + 187, + 6, + 0, + 0, + 0 + ], + [ + 201, + 35, + 0, + 1, + 1 + ], + [ + 201, + 69, + 0, + 1, + 1 + ], + [ + 201, + 71, + 0, + 1, + 0 + ], + [ + 201, + 72, + 0, + 0, + 0 + ], + [ + 213, + 27, + 774, + 1, + 1 + ], + [ + 214, + 40, + 774, + 1, + 1 + ], + [ + 216, + 10, + 0, + 1, + 1 + ], + [ + 217, + 22, + 774, + 1, + 0 + ], + [ + 218, + 6, + 0, + 0, + 0 + ], + [ + 239, + 52, + 774, + 1, + 1 + ], + [ + 242, + 6, + 0, + 0, + 0 + ], + [ + 256, + 59, + 150, + 1, + 1 + ], + [ + 257, + 48, + 0, + 1, + 1 + ], + [ + 259, + 10, + 150, + 1, + 1 + ], + [ + 262, + 21, + 150, + 1, + 0 + ], + [ + 263, + 6, + 0, + 0, + 0 + ], + [ + 278, + 66, + 0, + 1, + 1 + ], + [ + 281, + 15, + 0, + 1, + 1 + ], + [ + 281, + 25, + 0, + 1, + 0 + ], + [ + 281, + 26, + 0, + 1, + 1 + ], + [ + 284, + 10, + 0, + 1, + 1 + ], + [ + 285, + 25, + 0, + 1, + 0 + ], + [ + 286, + 6, + 0, + 0, + 0 + ], + [ + 299, + 48, + 2, + 1, + 1 + ], + [ + 302, + 23, + 2, + 1, + 1 + ], + [ + 304, + 10, + 0, + 1, + 1 + ], + [ + 305, + 14, + 0, + 1, + 1 + ], + [ + 307, + 10, + 0, + 1, + 1 + ], + [ + 308, + 6, + 0, + 0, + 0 + ], + [ + 311, + 29, + 774, + 1, + 1 + ], + [ + 313, + 48, + 0, + 1, + 1 + ], + [ + 314, + 23, + 0, + 1, + 1 + ], + [ + 314, + 35, + 0, + 1, + 0 + ], + [ + 316, + 10, + 774, + 1, + 1 + ], + [ + 322, + 36, + 774, + 1, + 1 + ], + [ + 324, + 51, + 774, + 1, + 1 + ], + [ + 325, + 37, + 388, + 1, + 1 + ], + [ + 325, + 44, + 774, + 1, + 0 + ], + [ + 325, + 47, + 386, + 1, + 1 + ], + [ + 325, + 53, + 774, + 1, + 0 + ], + [ + 326, + 14, + 774, + 1, + 1 + ], + [ + 326, + 20, + 0, + 1, + 1 + ], + [ + 327, + 27, + 0, + 1, + 1 + ], + [ + 327, + 73, + 0, + 1, + 0 + ], + [ + 328, + 14, + 774, + 1, + 1 + ], + [ + 330, + 66, + 0, + 1, + 1 + ], + [ + 331, + 29, + 0, + 1, + 1 + ], + [ + 331, + 118, + 0, + 1, + 1 + ], + [ + 331, + 124, + 0, + 1, + 0 + ], + [ + 332, + 14, + 774, + 1, + 1 + ], + [ + 332, + 20, + 774, + 1, + 1 + ], + [ + 333, + 29, + 774, + 1, + 1 + ], + [ + 333, + 91, + 0, + 1, + 1 + ], + [ + 333, + 97, + 774, + 1, + 0 + ], + [ + 334, + 14, + 774, + 1, + 1 + ], + [ + 335, + 10, + 774, + 1, + 1 + ], + [ + 339, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 132, + "covered": 83, + "percent": 62 + }, + "functions": { + "count": 31, + "covered": 13, + "percent": 41 + }, + "instantiations": { + "count": 31, + "covered": 13, + "percent": 41 + }, + "regions": { + "count": 74, + "covered": 40, + "notcovered": 34, + "percent": 54 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift", + "segments": [ + [ + 82, + 13, + 1876, + 1, + 1 + ], + [ + 84, + 10, + 0, + 0, + 0 + ], + [ + 85, + 24, + 1628, + 1, + 1 + ], + [ + 86, + 55, + 1626, + 1, + 1 + ], + [ + 88, + 14, + 1628, + 1, + 1 + ], + [ + 89, + 10, + 0, + 0, + 0 + ], + [ + 93, + 79, + 776, + 1, + 1 + ], + [ + 95, + 76, + 0, + 1, + 1 + ], + [ + 95, + 91, + 776, + 1, + 0 + ], + [ + 98, + 6, + 0, + 0, + 0 + ], + [ + 111, + 51, + 0, + 1, + 1 + ], + [ + 114, + 6, + 0, + 0, + 0 + ], + [ + 127, + 47, + 772, + 1, + 1 + ], + [ + 128, + 39, + 772, + 1, + 1 + ], + [ + 130, + 81, + 14, + 1, + 1 + ], + [ + 130, + 99, + 772, + 1, + 0 + ], + [ + 130, + 101, + 14, + 1, + 1 + ], + [ + 133, + 14, + 772, + 1, + 1 + ], + [ + 134, + 60, + 14, + 1, + 1 + ], + [ + 137, + 14, + 772, + 1, + 1 + ], + [ + 138, + 18, + 758, + 1, + 1 + ], + [ + 140, + 14, + 772, + 1, + 1 + ], + [ + 141, + 10, + 772, + 1, + 1 + ], + [ + 142, + 6, + 0, + 0, + 0 + ], + [ + 155, + 42, + 0, + 1, + 1 + ], + [ + 158, + 6, + 0, + 0, + 0 + ], + [ + 170, + 30, + 776, + 1, + 1 + ], + [ + 171, + 38, + 776, + 1, + 1 + ], + [ + 173, + 36, + 762, + 1, + 1 + ], + [ + 175, + 14, + 776, + 1, + 1 + ], + [ + 177, + 30, + 776, + 1, + 1 + ], + [ + 177, + 50, + 776, + 1, + 0 + ], + [ + 177, + 51, + 776, + 1, + 1 + ], + [ + 179, + 14, + 776, + 1, + 1 + ], + [ + 180, + 38, + 774, + 1, + 1 + ], + [ + 182, + 14, + 776, + 1, + 1 + ], + [ + 186, + 27, + 0, + 1, + 1 + ], + [ + 188, + 14, + 776, + 1, + 1 + ], + [ + 189, + 10, + 776, + 1, + 1 + ], + [ + 190, + 6, + 0, + 0, + 0 + ], + [ + 195, + 38, + 1548, + 1, + 1 + ], + [ + 197, + 27, + 772, + 1, + 1 + ], + [ + 199, + 10, + 776, + 1, + 1 + ], + [ + 208, + 31, + 0, + 1, + 1 + ], + [ + 210, + 10, + 776, + 1, + 1 + ], + [ + 215, + 43, + 2226, + 1, + 1 + ], + [ + 216, + 38, + 2228, + 1, + 1 + ], + [ + 221, + 14, + 2226, + 1, + 1 + ], + [ + 222, + 10, + 776, + 1, + 1 + ], + [ + 224, + 47, + 0, + 1, + 1 + ], + [ + 224, + 52, + 776, + 1, + 0 + ], + [ + 225, + 51, + 0, + 1, + 1 + ], + [ + 225, + 56, + 776, + 1, + 0 + ], + [ + 226, + 21, + 776, + 1, + 1 + ], + [ + 227, + 27, + 0, + 1, + 1 + ], + [ + 230, + 87, + 0, + 1, + 1 + ], + [ + 232, + 18, + 0, + 1, + 1 + ], + [ + 234, + 14, + 776, + 1, + 1 + ], + [ + 235, + 18, + 776, + 1, + 1 + ], + [ + 237, + 14, + 776, + 1, + 1 + ], + [ + 238, + 10, + 776, + 1, + 1 + ], + [ + 243, + 6, + 0, + 0, + 0 + ], + [ + 248, + 66, + 776, + 1, + 1 + ], + [ + 249, + 46, + 0, + 1, + 1 + ], + [ + 251, + 10, + 776, + 1, + 1 + ], + [ + 255, + 89, + 0, + 1, + 1 + ], + [ + 257, + 10, + 776, + 1, + 1 + ], + [ + 259, + 77, + 0, + 1, + 1 + ], + [ + 259, + 95, + 776, + 1, + 0 + ], + [ + 259, + 97, + 0, + 1, + 1 + ], + [ + 262, + 10, + 776, + 1, + 1 + ], + [ + 263, + 56, + 0, + 1, + 1 + ], + [ + 265, + 10, + 776, + 1, + 1 + ], + [ + 266, + 14, + 776, + 1, + 1 + ], + [ + 268, + 10, + 776, + 1, + 1 + ], + [ + 269, + 6, + 0, + 0, + 0 + ], + [ + 279, + 25, + 0, + 1, + 1 + ], + [ + 285, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 143, + "covered": 111, + "percent": 77 + }, + "functions": { + "count": 16, + "covered": 9, + "percent": 56 + }, + "instantiations": { + "count": 16, + "covered": 9, + "percent": 56 + }, + "regions": { + "count": 62, + "covered": 46, + "notcovered": 16, + "percent": 74 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift", + "segments": [ + [ + 100, + 27, + 1552, + 1, + 1 + ], + [ + 100, + 64, + 0, + 1, + 1 + ], + [ + 100, + 90, + 1552, + 1, + 0 + ], + [ + 100, + 94, + 0, + 1, + 1 + ], + [ + 100, + 108, + 1552, + 1, + 0 + ], + [ + 100, + 110, + 0, + 0, + 0 + ], + [ + 115, + 76, + 776, + 1, + 1 + ], + [ + 120, + 6, + 0, + 0, + 0 + ], + [ + 135, + 51, + 936, + 1, + 1 + ], + [ + 139, + 9, + 0, + 1, + 1 + ], + [ + 142, + 24, + 936, + 1, + 0 + ], + [ + 144, + 9, + 936, + 1, + 1 + ], + [ + 147, + 44, + 936, + 1, + 0 + ], + [ + 149, + 9, + 0, + 1, + 1 + ], + [ + 150, + 48, + 0, + 1, + 1 + ], + [ + 150, + 66, + 0, + 1, + 0 + ], + [ + 151, + 18, + 936, + 1, + 0 + ], + [ + 152, + 10, + 936, + 1, + 1 + ], + [ + 154, + 22, + 936, + 1, + 0 + ], + [ + 155, + 6, + 0, + 0, + 0 + ], + [ + 167, + 42, + 790, + 1, + 1 + ], + [ + 169, + 6, + 0, + 0, + 0 + ], + [ + 182, + 66, + 0, + 1, + 1 + ], + [ + 184, + 6, + 0, + 0, + 0 + ], + [ + 194, + 25, + 1552, + 1, + 1 + ], + [ + 199, + 6, + 0, + 0, + 0 + ], + [ + 210, + 32, + 9, + 1, + 1 + ], + [ + 214, + 6, + 0, + 0, + 0 + ], + [ + 223, + 94, + 936, + 1, + 1 + ], + [ + 227, + 32, + 0, + 1, + 1 + ], + [ + 231, + 10, + 936, + 1, + 1 + ], + [ + 234, + 37, + 0, + 1, + 1 + ], + [ + 236, + 10, + 936, + 1, + 1 + ], + [ + 241, + 30, + 0, + 1, + 1 + ], + [ + 241, + 52, + 936, + 1, + 0 + ], + [ + 241, + 53, + 0, + 1, + 1 + ], + [ + 244, + 10, + 936, + 1, + 1 + ], + [ + 246, + 25, + 0, + 1, + 1 + ], + [ + 248, + 10, + 936, + 1, + 1 + ], + [ + 252, + 33, + 774, + 1, + 1 + ], + [ + 256, + 10, + 162, + 1, + 1 + ], + [ + 257, + 41, + 2, + 1, + 1 + ], + [ + 260, + 10, + 162, + 1, + 1 + ], + [ + 262, + 22, + 162, + 1, + 0 + ], + [ + 263, + 6, + 0, + 0, + 0 + ], + [ + 267, + 42, + 936, + 1, + 1 + ], + [ + 270, + 41, + 934, + 1, + 1 + ], + [ + 272, + 10, + 936, + 1, + 1 + ], + [ + 273, + 14, + 2, + 1, + 1 + ], + [ + 275, + 10, + 936, + 1, + 1 + ], + [ + 277, + 50, + 2, + 1, + 1 + ], + [ + 278, + 23, + 2, + 1, + 1 + ], + [ + 278, + 75, + 2, + 1, + 0 + ], + [ + 284, + 16, + 2, + 1, + 1 + ], + [ + 286, + 14, + 2, + 1, + 0 + ], + [ + 287, + 19, + 0, + 1, + 1 + ], + [ + 287, + 21, + 2, + 1, + 1 + ], + [ + 289, + 19, + 2, + 1, + 0 + ], + [ + 290, + 10, + 934, + 1, + 1 + ], + [ + 293, + 9, + 160, + 1, + 1 + ], + [ + 294, + 18, + 934, + 1, + 0 + ], + [ + 295, + 9, + 774, + 1, + 1 + ], + [ + 297, + 67, + 0, + 1, + 1 + ], + [ + 297, + 77, + 774, + 1, + 0 + ], + [ + 298, + 30, + 934, + 1, + 0 + ], + [ + 299, + 9, + 0, + 1, + 1 + ], + [ + 301, + 18, + 934, + 1, + 0 + ], + [ + 302, + 10, + 934, + 1, + 1 + ], + [ + 303, + 6, + 0, + 0, + 0 + ], + [ + 306, + 36, + 774, + 1, + 1 + ], + [ + 315, + 42, + 0, + 1, + 1 + ], + [ + 316, + 23, + 0, + 1, + 1 + ], + [ + 316, + 87, + 0, + 1, + 0 + ], + [ + 318, + 10, + 774, + 1, + 1 + ], + [ + 320, + 22, + 0, + 1, + 1 + ], + [ + 323, + 10, + 774, + 1, + 1 + ], + [ + 324, + 14, + 774, + 1, + 1 + ], + [ + 326, + 44, + 774, + 1, + 1 + ], + [ + 327, + 75, + 774, + 1, + 1 + ], + [ + 330, + 18, + 774, + 1, + 1 + ], + [ + 331, + 14, + 774, + 1, + 0 + ], + [ + 332, + 10, + 774, + 1, + 1 + ], + [ + 333, + 6, + 0, + 0, + 0 + ], + [ + 336, + 22, + 0, + 1, + 1 + ], + [ + 342, + 6, + 0, + 0, + 0 + ], + [ + 348, + 113, + 0, + 1, + 1 + ], + [ + 350, + 6, + 0, + 0, + 0 + ], + [ + 358, + 133, + 776, + 1, + 1 + ], + [ + 360, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 177, + "covered": 140, + "percent": 79 + }, + "functions": { + "count": 21, + "covered": 12, + "percent": 57 + }, + "instantiations": { + "count": 21, + "covered": 12, + "percent": 57 + }, + "regions": { + "count": 58, + "covered": 39, + "notcovered": 19, + "percent": 67 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift", + "segments": [ + [ + 24, + 30, + 0, + 1, + 1 + ], + [ + 26, + 9, + 0, + 1, + 1 + ], + [ + 26, + 37, + 0, + 1, + 0 + ], + [ + 27, + 9, + 0, + 1, + 1 + ], + [ + 27, + 37, + 0, + 1, + 0 + ], + [ + 28, + 9, + 0, + 1, + 1 + ], + [ + 28, + 51, + 0, + 1, + 0 + ], + [ + 29, + 10, + 0, + 1, + 1 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 33, + 39, + 0, + 1, + 1 + ], + [ + 35, + 9, + 0, + 1, + 1 + ], + [ + 35, + 31, + 0, + 1, + 0 + ], + [ + 36, + 9, + 0, + 1, + 1 + ], + [ + 37, + 20, + 0, + 1, + 1 + ], + [ + 37, + 29, + 0, + 1, + 0 + ], + [ + 37, + 31, + 0, + 1, + 1 + ], + [ + 37, + 78, + 0, + 1, + 0 + ], + [ + 39, + 9, + 0, + 1, + 1 + ], + [ + 40, + 30, + 0, + 1, + 1 + ], + [ + 40, + 76, + 0, + 1, + 0 + ], + [ + 41, + 10, + 0, + 1, + 1 + ], + [ + 42, + 6, + 0, + 0, + 0 + ], + [ + 45, + 34, + 0, + 1, + 1 + ], + [ + 47, + 9, + 0, + 1, + 1 + ], + [ + 47, + 47, + 0, + 1, + 0 + ], + [ + 48, + 9, + 0, + 1, + 1 + ], + [ + 48, + 28, + 0, + 1, + 0 + ], + [ + 49, + 10, + 0, + 1, + 1 + ], + [ + 50, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 26, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 6, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 6, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 17, + "covered": 0, + "notcovered": 17, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift", + "segments": [ + [ + 25, + 24, + 1014, + 1, + 1 + ], + [ + 25, + 54, + 0, + 0, + 0 + ], + [ + 28, + 21, + 1548, + 1, + 1 + ], + [ + 28, + 48, + 0, + 0, + 0 + ], + [ + 31, + 27, + 212, + 1, + 1 + ], + [ + 31, + 60, + 0, + 0, + 0 + ], + [ + 34, + 34, + 774, + 1, + 1 + ], + [ + 34, + 74, + 0, + 0, + 0 + ], + [ + 37, + 34, + 774, + 1, + 1 + ], + [ + 37, + 74, + 0, + 0, + 0 + ], + [ + 40, + 35, + 2878, + 1, + 1 + ], + [ + 40, + 66, + 0, + 0, + 0 + ], + [ + 43, + 31, + 1016, + 1, + 1 + ], + [ + 43, + 64, + 0, + 0, + 0 + ], + [ + 46, + 25, + 1696, + 1, + 1 + ], + [ + 46, + 58, + 0, + 0, + 0 + ], + [ + 69, + 51, + 1537, + 1, + 1 + ], + [ + 78, + 27, + 774, + 1, + 1 + ], + [ + 82, + 10, + 1537, + 1, + 0 + ], + [ + 84, + 36, + 6546, + 1, + 1 + ], + [ + 88, + 10, + 1537, + 1, + 0 + ], + [ + 90, + 36, + 6546, + 1, + 1 + ], + [ + 94, + 10, + 1537, + 1, + 0 + ], + [ + 96, + 28, + 761, + 1, + 1 + ], + [ + 101, + 10, + 1537, + 1, + 0 + ], + [ + 108, + 21, + 2, + 1, + 1 + ], + [ + 109, + 44, + 2, + 1, + 1 + ], + [ + 112, + 14, + 2, + 1, + 0 + ], + [ + 113, + 10, + 1537, + 1, + 1 + ], + [ + 113, + 16, + 1535, + 1, + 1 + ], + [ + 114, + 44, + 1532, + 1, + 1 + ], + [ + 117, + 14, + 1535, + 1, + 0 + ], + [ + 118, + 10, + 1537, + 1, + 1 + ], + [ + 127, + 40, + 1534, + 1, + 1 + ], + [ + 131, + 10, + 1537, + 1, + 0 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 142, + 78, + 2456, + 1, + 1 + ], + [ + 146, + 6, + 0, + 0, + 0 + ], + [ + 149, + 18, + 2297, + 1, + 1 + ], + [ + 150, + 47, + 776, + 1, + 1 + ], + [ + 150, + 59, + 2297, + 1, + 0 + ], + [ + 150, + 62, + 1521, + 1, + 1 + ], + [ + 150, + 75, + 2297, + 1, + 0 + ], + [ + 152, + 6, + 0, + 0, + 0 + ], + [ + 155, + 32, + 2308, + 1, + 1 + ], + [ + 156, + 29, + 1548, + 1, + 1 + ], + [ + 156, + 65, + 2308, + 1, + 0 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 160, + 36, + 760, + 1, + 1 + ], + [ + 161, + 28, + 0, + 1, + 1 + ], + [ + 161, + 36, + 760, + 1, + 0 + ], + [ + 161, + 39, + 760, + 1, + 1 + ], + [ + 161, + 92, + 0, + 1, + 1 + ], + [ + 161, + 100, + 760, + 1, + 0 + ], + [ + 162, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 125, + "covered": 124, + "percent": 99 + }, + "functions": { + "count": 22, + "covered": 21, + "percent": 95 + }, + "instantiations": { + "count": 22, + "covered": 21, + "percent": 95 + }, + "regions": { + "count": 30, + "covered": 28, + "notcovered": 2, + "percent": 93 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParserStatus.swift", + "segments": [ + [ + 36, + 36, + 2, + 1, + 1 + ], + [ + 38, + 9, + 0, + 1, + 1 + ], + [ + 39, + 48, + 2, + 1, + 0 + ], + [ + 40, + 9, + 2, + 1, + 1 + ], + [ + 41, + 76, + 2, + 1, + 0 + ], + [ + 42, + 9, + 0, + 1, + 1 + ], + [ + 43, + 70, + 2, + 1, + 0 + ], + [ + 44, + 10, + 2, + 1, + 1 + ], + [ + 45, + 6, + 0, + 0, + 0 + ], + [ + 50, + 12, + 2471, + 1, + 1 + ], + [ + 50, + 14, + 0, + 0, + 0 + ], + [ + 58, + 27, + 760, + 1, + 1 + ], + [ + 63, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 17, + "covered": 15, + "percent": 88 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 7, + "covered": 5, + "notcovered": 2, + "percent": 71 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift", + "segments": [ + [ + 28, + 48, + 0, + 1, + 1 + ], + [ + 28, + 63, + 0, + 0, + 0 + ], + [ + 54, + 12, + 1537, + 1, + 1 + ], + [ + 54, + 14, + 0, + 0, + 0 + ], + [ + 60, + 61, + 761, + 1, + 1 + ], + [ + 62, + 6, + 0, + 0, + 0 + ], + [ + 69, + 88, + 1534, + 1, + 1 + ], + [ + 73, + 34, + 1534, + 1, + 1 + ], + [ + 75, + 10, + 1534, + 1, + 1 + ], + [ + 81, + 6, + 0, + 0, + 0 + ], + [ + 87, + 68, + 6546, + 1, + 1 + ], + [ + 89, + 32, + 5012, + 1, + 1 + ], + [ + 91, + 10, + 6546, + 1, + 1 + ], + [ + 96, + 6, + 0, + 0, + 0 + ], + [ + 102, + 68, + 6546, + 1, + 1 + ], + [ + 106, + 6, + 0, + 0, + 0 + ], + [ + 109, + 30, + 1534, + 1, + 1 + ], + [ + 111, + 6, + 0, + 0, + 0 + ], + [ + 117, + 59, + 774, + 1, + 1 + ], + [ + 119, + 6, + 0, + 0, + 0 + ], + [ + 121, + 18, + 2297, + 1, + 1 + ], + [ + 127, + 6, + 0, + 0, + 0 + ], + [ + 130, + 30, + 6546, + 1, + 1 + ], + [ + 142, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 59, + "covered": 58, + "percent": 98 + }, + "functions": { + "count": 10, + "covered": 9, + "percent": 90 + }, + "instantiations": { + "count": 10, + "covered": 9, + "percent": 90 + }, + "regions": { + "count": 14, + "covered": 13, + "notcovered": 1, + "percent": 92 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/URLParser.swift", + "segments": [ + [ + 82, + 36, + 0, + 1, + 1 + ], + [ + 85, + 32, + 0, + 1, + 1 + ], + [ + 87, + 10, + 0, + 1, + 1 + ], + [ + 88, + 28, + 0, + 1, + 1 + ], + [ + 90, + 10, + 0, + 1, + 1 + ], + [ + 91, + 28, + 0, + 1, + 1 + ], + [ + 93, + 10, + 0, + 1, + 1 + ], + [ + 94, + 28, + 0, + 1, + 1 + ], + [ + 96, + 10, + 0, + 1, + 1 + ], + [ + 97, + 30, + 0, + 1, + 1 + ], + [ + 100, + 10, + 0, + 1, + 1 + ], + [ + 101, + 36, + 0, + 1, + 1 + ], + [ + 103, + 10, + 0, + 1, + 1 + ], + [ + 104, + 36, + 0, + 1, + 1 + ], + [ + 106, + 10, + 0, + 1, + 1 + ], + [ + 108, + 20, + 0, + 1, + 0 + ], + [ + 109, + 6, + 0, + 0, + 0 + ], + [ + 122, + 46, + 862, + 1, + 1 + ], + [ + 127, + 46, + 0, + 1, + 1 + ], + [ + 127, + 47, + 862, + 1, + 0 + ], + [ + 127, + 50, + 862, + 1, + 1 + ], + [ + 127, + 51, + 862, + 1, + 0 + ], + [ + 128, + 48, + 862, + 1, + 1 + ], + [ + 130, + 10, + 862, + 1, + 0 + ], + [ + 132, + 37, + 0, + 1, + 1 + ], + [ + 132, + 47, + 862, + 1, + 1 + ], + [ + 143, + 31, + 88, + 1, + 1 + ], + [ + 145, + 10, + 862, + 1, + 1 + ], + [ + 147, + 30, + 100, + 1, + 1 + ], + [ + 149, + 31, + 186, + 1, + 1 + ], + [ + 152, + 41, + 186, + 1, + 1 + ], + [ + 154, + 18, + 186, + 1, + 1 + ], + [ + 155, + 14, + 100, + 1, + 1 + ], + [ + 156, + 10, + 862, + 1, + 1 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 164, + 59, + 6034, + 1, + 1 + ], + [ + 166, + 46, + 1226, + 1, + 1 + ], + [ + 171, + 10, + 4808, + 1, + 1 + ], + [ + 173, + 19, + 6034, + 1, + 0 + ], + [ + 174, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 78, + "covered": 50, + "percent": 64 + }, + "functions": { + "count": 4, + "covered": 3, + "percent": 75 + }, + "instantiations": { + "count": 4, + "covered": 3, + "percent": 75 + }, + "regions": { + "count": 32, + "covered": 15, + "notcovered": 17, + "percent": 46 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift", + "segments": [ + [ + 44, + 19, + 2315, + 1, + 1 + ], + [ + 44, + 21, + 0, + 0, + 0 + ], + [ + 59, + 13, + 3582, + 1, + 1 + ], + [ + 61, + 10, + 0, + 0, + 0 + ], + [ + 63, + 23, + 2239, + 1, + 1 + ], + [ + 64, + 40, + 2235, + 1, + 1 + ], + [ + 66, + 14, + 2239, + 1, + 1 + ], + [ + 67, + 18, + 4, + 1, + 1 + ], + [ + 69, + 14, + 2239, + 1, + 1 + ], + [ + 70, + 10, + 0, + 0, + 0 + ], + [ + 83, + 56, + 6572, + 1, + 1 + ], + [ + 92, + 9, + 10, + 1, + 1 + ], + [ + 93, + 30, + 2, + 1, + 1 + ], + [ + 95, + 14, + 10, + 1, + 1 + ], + [ + 95, + 20, + 8, + 1, + 1 + ], + [ + 97, + 14, + 6572, + 1, + 1 + ], + [ + 102, + 9, + 2908, + 1, + 1 + ], + [ + 106, + 30, + 8, + 1, + 1 + ], + [ + 107, + 29, + 8, + 1, + 1 + ], + [ + 107, + 64, + 8, + 1, + 0 + ], + [ + 109, + 14, + 2900, + 1, + 1 + ], + [ + 110, + 24, + 6572, + 1, + 0 + ], + [ + 113, + 9, + 6554, + 1, + 1 + ], + [ + 114, + 58, + 6552, + 1, + 1 + ], + [ + 117, + 14, + 2, + 1, + 1 + ], + [ + 119, + 55, + 6572, + 1, + 0 + ], + [ + 120, + 10, + 6572, + 1, + 1 + ], + [ + 121, + 6, + 0, + 0, + 0 + ], + [ + 133, + 54, + 6568, + 1, + 1 + ], + [ + 136, + 6, + 0, + 0, + 0 + ], + [ + 153, + 50, + 3582, + 1, + 1 + ], + [ + 155, + 6, + 0, + 0, + 0 + ], + [ + 166, + 29, + 2297, + 1, + 1 + ], + [ + 168, + 6, + 0, + 0, + 0 + ], + [ + 174, + 54, + 2235, + 1, + 1 + ], + [ + 176, + 6, + 0, + 0, + 0 + ], + [ + 182, + 76, + 8795, + 1, + 1 + ], + [ + 184, + 6, + 0, + 0, + 0 + ], + [ + 189, + 40, + 4, + 1, + 1 + ], + [ + 191, + 6, + 0, + 0, + 0 + ], + [ + 200, + 33, + 8, + 1, + 1 + ], + [ + 200, + 62, + 0, + 0, + 0 + ], + [ + 203, + 31, + 31, + 1, + 1 + ], + [ + 203, + 58, + 0, + 0, + 0 + ], + [ + 217, + 13, + 26, + 1, + 1 + ], + [ + 219, + 10, + 0, + 0, + 0 + ], + [ + 233, + 48, + 25, + 1, + 1 + ], + [ + 235, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 79, + "covered": 79, + "percent": 100 + }, + "functions": { + "count": 15, + "covered": 15, + "percent": 100 + }, + "instantiations": { + "count": 15, + "covered": 15, + "percent": 100 + }, + "regions": { + "count": 31, + "covered": 31, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift", + "segments": [ + [ + 109, + 31, + 0, + 1, + 1 + ], + [ + 109, + 57, + 0, + 0, + 0 + ], + [ + 111, + 58, + 776, + 1, + 1 + ], + [ + 125, + 44, + 945, + 1, + 1 + ], + [ + 127, + 14, + 776, + 1, + 0 + ], + [ + 131, + 6, + 0, + 0, + 0 + ], + [ + 136, + 31, + 945, + 1, + 1 + ], + [ + 147, + 25, + 945, + 1, + 1 + ], + [ + 147, + 45, + 945, + 1, + 0 + ], + [ + 147, + 51, + 0, + 1, + 1 + ], + [ + 150, + 10, + 945, + 1, + 1 + ], + [ + 154, + 12, + 945, + 1, + 1 + ], + [ + 156, + 20, + 2868, + 1, + 1 + ], + [ + 156, + 30, + 945, + 1, + 0 + ], + [ + 156, + 32, + 1923, + 1, + 1 + ], + [ + 158, + 14, + 945, + 1, + 1 + ], + [ + 159, + 40, + 936, + 1, + 1 + ], + [ + 161, + 14, + 945, + 1, + 1 + ], + [ + 162, + 18, + 9, + 1, + 1 + ], + [ + 163, + 51, + 9, + 1, + 1 + ], + [ + 164, + 31, + 9, + 1, + 1 + ], + [ + 164, + 78, + 9, + 1, + 0 + ], + [ + 167, + 18, + 9, + 1, + 1 + ], + [ + 168, + 14, + 945, + 1, + 1 + ], + [ + 169, + 10, + 945, + 1, + 0 + ], + [ + 170, + 41, + 0, + 1, + 1 + ], + [ + 171, + 77, + 0, + 1, + 1 + ], + [ + 172, + 27, + 0, + 1, + 1 + ], + [ + 172, + 107, + 0, + 1, + 0 + ], + [ + 173, + 14, + 0, + 1, + 1 + ], + [ + 173, + 20, + 0, + 1, + 1 + ], + [ + 174, + 27, + 0, + 1, + 1 + ], + [ + 174, + 108, + 0, + 1, + 0 + ], + [ + 175, + 14, + 0, + 1, + 1 + ], + [ + 177, + 10, + 945, + 1, + 0 + ], + [ + 177, + 17, + 0, + 1, + 1 + ], + [ + 178, + 23, + 0, + 1, + 1 + ], + [ + 178, + 44, + 0, + 1, + 0 + ], + [ + 180, + 10, + 945, + 1, + 1 + ], + [ + 182, + 22, + 945, + 1, + 0 + ], + [ + 183, + 6, + 0, + 0, + 0 + ], + [ + 185, + 45, + 936, + 1, + 1 + ], + [ + 186, + 46, + 0, + 1, + 1 + ], + [ + 186, + 61, + 936, + 1, + 1 + ], + [ + 189, + 23, + 936, + 1, + 1 + ], + [ + 191, + 10, + 936, + 1, + 1 + ], + [ + 192, + 25, + 936, + 1, + 0 + ], + [ + 193, + 6, + 0, + 0, + 0 + ], + [ + 197, + 49, + 0, + 1, + 1 + ], + [ + 200, + 36, + 0, + 1, + 1 + ], + [ + 202, + 10, + 0, + 1, + 1 + ], + [ + 203, + 14, + 0, + 1, + 1 + ], + [ + 205, + 10, + 0, + 1, + 1 + ], + [ + 206, + 22, + 0, + 1, + 0 + ], + [ + 207, + 6, + 0, + 0, + 0 + ], + [ + 220, + 42, + 0, + 1, + 1 + ], + [ + 222, + 68, + 0, + 1, + 1 + ], + [ + 223, + 42, + 0, + 1, + 1 + ], + [ + 224, + 46, + 0, + 1, + 1 + ], + [ + 226, + 22, + 0, + 1, + 1 + ], + [ + 227, + 18, + 0, + 1, + 0 + ], + [ + 228, + 14, + 0, + 1, + 1 + ], + [ + 230, + 6, + 0, + 0, + 0 + ], + [ + 233, + 24, + 0, + 1, + 1 + ], + [ + 239, + 6, + 0, + 0, + 0 + ], + [ + 243, + 38, + 2, + 1, + 1 + ], + [ + 252, + 37, + 2, + 1, + 1 + ], + [ + 263, + 29, + 2, + 1, + 1 + ], + [ + 263, + 49, + 2, + 1, + 0 + ], + [ + 263, + 55, + 0, + 1, + 1 + ], + [ + 264, + 29, + 0, + 1, + 1 + ], + [ + 264, + 119, + 0, + 1, + 0 + ], + [ + 269, + 14, + 2, + 1, + 1 + ], + [ + 271, + 16, + 2, + 1, + 1 + ], + [ + 276, + 38, + 2, + 1, + 1 + ], + [ + 279, + 18, + 2, + 1, + 1 + ], + [ + 280, + 22, + 0, + 1, + 1 + ], + [ + 281, + 42, + 0, + 1, + 1 + ], + [ + 282, + 35, + 0, + 1, + 1 + ], + [ + 282, + 129, + 0, + 1, + 0 + ], + [ + 283, + 22, + 0, + 1, + 1 + ], + [ + 286, + 18, + 2, + 1, + 1 + ], + [ + 288, + 45, + 0, + 1, + 1 + ], + [ + 290, + 18, + 2, + 1, + 1 + ], + [ + 291, + 22, + 2, + 1, + 1 + ], + [ + 294, + 18, + 2, + 1, + 1 + ], + [ + 295, + 14, + 2, + 1, + 0 + ], + [ + 296, + 29, + 0, + 1, + 1 + ], + [ + 297, + 117, + 0, + 1, + 1 + ], + [ + 298, + 31, + 0, + 1, + 1 + ], + [ + 298, + 111, + 0, + 1, + 0 + ], + [ + 299, + 18, + 0, + 1, + 1 + ], + [ + 299, + 24, + 0, + 1, + 1 + ], + [ + 300, + 31, + 0, + 1, + 1 + ], + [ + 300, + 111, + 0, + 1, + 0 + ], + [ + 301, + 18, + 0, + 1, + 1 + ], + [ + 307, + 14, + 2, + 1, + 1 + ], + [ + 308, + 10, + 2, + 1, + 1 + ], + [ + 309, + 6, + 0, + 0, + 0 + ], + [ + 312, + 39, + 2, + 1, + 1 + ], + [ + 318, + 46, + 2, + 1, + 1 + ], + [ + 320, + 14, + 2, + 1, + 0 + ], + [ + 323, + 6, + 0, + 0, + 0 + ], + [ + 335, + 42, + 790, + 1, + 1 + ], + [ + 337, + 6, + 0, + 0, + 0 + ], + [ + 350, + 66, + 790, + 1, + 1 + ], + [ + 361, + 25, + 790, + 1, + 1 + ], + [ + 361, + 45, + 790, + 1, + 0 + ], + [ + 361, + 51, + 0, + 1, + 1 + ], + [ + 362, + 25, + 0, + 1, + 1 + ], + [ + 362, + 102, + 0, + 1, + 0 + ], + [ + 365, + 10, + 790, + 1, + 1 + ], + [ + 367, + 12, + 790, + 1, + 1 + ], + [ + 370, + 41, + 790, + 1, + 1 + ], + [ + 372, + 14, + 790, + 1, + 1 + ], + [ + 373, + 18, + 0, + 1, + 1 + ], + [ + 375, + 14, + 790, + 1, + 1 + ], + [ + 377, + 34, + 2, + 1, + 1 + ], + [ + 378, + 64, + 2, + 1, + 1 + ], + [ + 380, + 18, + 2, + 1, + 0 + ], + [ + 383, + 44, + 2, + 1, + 1 + ], + [ + 385, + 22, + 2, + 1, + 1 + ], + [ + 387, + 14, + 790, + 1, + 1 + ], + [ + 388, + 10, + 790, + 1, + 0 + ], + [ + 389, + 25, + 2, + 1, + 1 + ], + [ + 390, + 113, + 0, + 1, + 1 + ], + [ + 391, + 27, + 0, + 1, + 1 + ], + [ + 391, + 107, + 0, + 1, + 0 + ], + [ + 392, + 14, + 2, + 1, + 1 + ], + [ + 392, + 20, + 2, + 1, + 1 + ], + [ + 393, + 27, + 2, + 1, + 1 + ], + [ + 393, + 107, + 2, + 1, + 0 + ], + [ + 394, + 14, + 2, + 1, + 1 + ], + [ + 395, + 10, + 790, + 1, + 1 + ], + [ + 396, + 6, + 0, + 0, + 0 + ], + [ + 408, + 34, + 782, + 1, + 1 + ], + [ + 411, + 6, + 0, + 0, + 0 + ], + [ + 418, + 26, + 797, + 1, + 1 + ], + [ + 419, + 19, + 791, + 1, + 1 + ], + [ + 426, + 39, + 784, + 1, + 1 + ], + [ + 426, + 61, + 791, + 1, + 0 + ], + [ + 426, + 65, + 784, + 1, + 1 + ], + [ + 426, + 86, + 791, + 1, + 0 + ], + [ + 427, + 20, + 778, + 1, + 1 + ], + [ + 427, + 61, + 791, + 1, + 0 + ], + [ + 427, + 67, + 15, + 1, + 1 + ], + [ + 430, + 14, + 776, + 1, + 1 + ], + [ + 437, + 10, + 782, + 1, + 1 + ], + [ + 438, + 6, + 0, + 0, + 0 + ], + [ + 441, + 33, + 776, + 1, + 1 + ], + [ + 443, + 33, + 776, + 1, + 1 + ], + [ + 445, + 10, + 776, + 1, + 1 + ], + [ + 452, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 305, + "covered": 224, + "percent": 73 + }, + "functions": { + "count": 35, + "covered": 21, + "percent": 60 + }, + "instantiations": { + "count": 35, + "covered": 21, + "percent": 60 + }, + "regions": { + "count": 110, + "covered": 67, + "notcovered": 43, + "percent": 60 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift", + "segments": [ + [ + 56, + 42, + 0, + 1, + 1 + ], + [ + 58, + 22, + 0, + 1, + 1 + ], + [ + 60, + 10, + 0, + 1, + 0 + ], + [ + 62, + 6, + 0, + 0, + 0 + ], + [ + 117, + 23, + 8, + 1, + 1 + ], + [ + 119, + 10, + 0, + 0, + 0 + ], + [ + 122, + 12, + 6, + 1, + 1 + ], + [ + 124, + 6, + 0, + 0, + 0 + ], + [ + 135, + 24, + 12, + 1, + 1 + ], + [ + 140, + 6, + 0, + 0, + 0 + ], + [ + 153, + 76, + 776, + 1, + 1 + ], + [ + 154, + 29, + 0, + 1, + 1 + ], + [ + 155, + 25, + 0, + 1, + 1 + ], + [ + 155, + 82, + 0, + 1, + 0 + ], + [ + 157, + 10, + 776, + 1, + 1 + ], + [ + 159, + 12, + 776, + 1, + 1 + ], + [ + 163, + 43, + 776, + 1, + 1 + ], + [ + 165, + 14, + 776, + 1, + 0 + ], + [ + 177, + 25, + 0, + 1, + 1 + ], + [ + 178, + 23, + 0, + 1, + 1 + ], + [ + 178, + 123, + 0, + 1, + 0 + ], + [ + 179, + 10, + 776, + 1, + 1 + ], + [ + 182, + 6, + 0, + 0, + 0 + ], + [ + 274, + 61, + 788, + 1, + 1 + ], + [ + 276, + 28, + 776, + 1, + 1 + ], + [ + 276, + 111, + 788, + 1, + 0 + ], + [ + 276, + 118, + 752, + 1, + 1 + ], + [ + 276, + 128, + 36, + 1, + 1 + ], + [ + 277, + 39, + 36, + 1, + 1 + ], + [ + 279, + 61, + 30, + 1, + 1 + ], + [ + 280, + 34, + 26, + 1, + 1 + ], + [ + 280, + 58, + 30, + 1, + 0 + ], + [ + 280, + 64, + 24, + 1, + 1 + ], + [ + 280, + 98, + 0, + 1, + 1 + ], + [ + 280, + 103, + 24, + 1, + 0 + ], + [ + 280, + 109, + 0, + 1, + 1 + ], + [ + 280, + 160, + 0, + 1, + 1 + ], + [ + 280, + 171, + 24, + 1, + 0 + ], + [ + 280, + 172, + 30, + 1, + 0 + ], + [ + 280, + 173, + 24, + 1, + 1 + ], + [ + 282, + 18, + 6, + 1, + 1 + ], + [ + 296, + 14, + 36, + 1, + 1 + ], + [ + 298, + 10, + 36, + 1, + 0 + ], + [ + 299, + 6, + 0, + 0, + 0 + ], + [ + 304, + 40, + 0, + 1, + 1 + ], + [ + 306, + 59, + 0, + 1, + 1 + ], + [ + 306, + 76, + 0, + 1, + 0 + ], + [ + 307, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 116, + "covered": 93, + "percent": 80 + }, + "functions": { + "count": 19, + "covered": 10, + "percent": 52 + }, + "instantiations": { + "count": 19, + "covered": 10, + "percent": 52 + }, + "regions": { + "count": 30, + "covered": 19, + "notcovered": 11, + "percent": 63 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ListenerGroup.swift", + "segments": [ + [ + 44, + 43, + 1, + 1, + 1 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 62, + 96, + 8, + 1, + 1 + ], + [ + 64, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "functions": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "instantiations": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "regions": { + "count": 2, + "covered": 2, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/SPIUtils.swift", + "segments": [ + [ + 58, + 79, + 824, + 1, + 1 + ], + [ + 89, + 6, + 0, + 0, + 0 + ], + [ + 103, + 57, + 48, + 1, + 1 + ], + [ + 105, + 6, + 0, + 0, + 0 + ], + [ + 125, + 26, + 0, + 1, + 1 + ], + [ + 127, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 38, + "covered": 35, + "percent": 92 + }, + "functions": { + "count": 3, + "covered": 2, + "percent": 66 + }, + "instantiations": { + "count": 3, + "covered": 2, + "percent": 66 + }, + "regions": { + "count": 3, + "covered": 2, + "notcovered": 1, + "percent": 66 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift", + "segments": [ + [ + 37, + 34, + 8, + 1, + 1 + ], + [ + 38, + 45, + 2, + 1, + 1 + ], + [ + 40, + 10, + 8, + 1, + 1 + ], + [ + 41, + 6, + 0, + 0, + 0 + ], + [ + 46, + 33, + 6, + 1, + 1 + ], + [ + 47, + 44, + 3, + 1, + 1 + ], + [ + 49, + 10, + 6, + 1, + 1 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 57, + 56, + 4, + 1, + 1 + ], + [ + 58, + 44, + 4, + 1, + 1 + ], + [ + 60, + 10, + 4, + 1, + 1 + ], + [ + 61, + 6, + 0, + 0, + 0 + ], + [ + 66, + 72, + 0, + 1, + 1 + ], + [ + 67, + 60, + 0, + 1, + 1 + ], + [ + 69, + 10, + 0, + 1, + 1 + ], + [ + 70, + 6, + 0, + 0, + 0 + ], + [ + 76, + 84, + 6, + 1, + 1 + ], + [ + 77, + 20, + 0, + 1, + 1 + ], + [ + 79, + 10, + 6, + 1, + 1 + ], + [ + 81, + 6, + 0, + 0, + 0 + ], + [ + 87, + 83, + 3, + 1, + 1 + ], + [ + 88, + 20, + 0, + 1, + 1 + ], + [ + 90, + 10, + 3, + 1, + 1 + ], + [ + 92, + 6, + 0, + 0, + 0 + ], + [ + 97, + 71, + 6, + 1, + 1 + ], + [ + 99, + 6, + 0, + 0, + 0 + ], + [ + 104, + 87, + 0, + 1, + 1 + ], + [ + 106, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 38, + "covered": 28, + "percent": 73 + }, + "functions": { + "count": 8, + "covered": 6, + "percent": 75 + }, + "instantiations": { + "count": 8, + "covered": 6, + "percent": 75 + }, + "regions": { + "count": 20, + "covered": 14, + "notcovered": 6, + "percent": 70 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/BodyFormat.swift", + "segments": [ + [ + 46, + 34, + 1, + 1, + 1 + ], + [ + 48, + 6, + 0, + 0, + 0 + ], + [ + 53, + 74, + 28, + 1, + 1 + ], + [ + 55, + 6, + 0, + 0, + 0 + ], + [ + 75, + 43, + 0, + 1, + 1 + ], + [ + 77, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 9, + "covered": 6, + "percent": 66 + }, + "functions": { + "count": 3, + "covered": 2, + "percent": 66 + }, + "instantiations": { + "count": 3, + "covered": 2, + "percent": 66 + }, + "regions": { + "count": 3, + "covered": 2, + "notcovered": 1, + "percent": 66 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Coder.swift", + "segments": [ + [ + 43, + 19, + 96, + 1, + 1 + ], + [ + 47, + 6, + 0, + 0, + 0 + ], + [ + 57, + 77, + 243, + 1, + 1 + ], + [ + 59, + 42, + 189, + 1, + 1 + ], + [ + 59, + 58, + 243, + 1, + 0 + ], + [ + 63, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 13, + "covered": 13, + "percent": 100 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 3, + "covered": 3, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift", + "segments": [ + [ + 24, + 26, + 48, + 1, + 1 + ], + [ + 26, + 6, + 0, + 0, + 0 + ], + [ + 29, + 28, + 0, + 1, + 1 + ], + [ + 31, + 6, + 0, + 0, + 0 + ], + [ + 34, + 30, + 0, + 1, + 1 + ], + [ + 36, + 6, + 0, + 0, + 0 + ], + [ + 39, + 30, + 0, + 1, + 1 + ], + [ + 41, + 6, + 0, + 0, + 0 + ], + [ + 44, + 30, + 0, + 1, + 1 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 49, + 28, + 0, + 1, + 1 + ], + [ + 51, + 6, + 0, + 0, + 0 + ], + [ + 54, + 30, + 0, + 1, + 1 + ], + [ + 56, + 6, + 0, + 0, + 0 + ], + [ + 59, + 32, + 0, + 1, + 1 + ], + [ + 61, + 6, + 0, + 0, + 0 + ], + [ + 64, + 32, + 0, + 1, + 1 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 69, + 32, + 0, + 1, + 1 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 74, + 30, + 0, + 1, + 1 + ], + [ + 76, + 6, + 0, + 0, + 0 + ], + [ + 79, + 32, + 0, + 1, + 1 + ], + [ + 81, + 6, + 0, + 0, + 0 + ], + [ + 84, + 31, + 0, + 1, + 1 + ], + [ + 85, + 32, + 0, + 1, + 1 + ], + [ + 85, + 42, + 0, + 1, + 0 + ], + [ + 85, + 45, + 0, + 1, + 1 + ], + [ + 85, + 50, + 0, + 1, + 0 + ], + [ + 86, + 6, + 0, + 0, + 0 + ], + [ + 89, + 31, + 30, + 1, + 1 + ], + [ + 91, + 6, + 0, + 0, + 0 + ], + [ + 94, + 33, + 12, + 1, + 1 + ], + [ + 96, + 6, + 0, + 0, + 0 + ], + [ + 99, + 35, + 0, + 1, + 1 + ], + [ + 101, + 6, + 0, + 0, + 0 + ], + [ + 104, + 37, + 0, + 1, + 1 + ], + [ + 106, + 6, + 0, + 0, + 0 + ], + [ + 109, + 37, + 0, + 1, + 1 + ], + [ + 111, + 6, + 0, + 0, + 0 + ], + [ + 114, + 37, + 0, + 1, + 1 + ], + [ + 116, + 6, + 0, + 0, + 0 + ], + [ + 119, + 35, + 0, + 1, + 1 + ], + [ + 121, + 6, + 0, + 0, + 0 + ], + [ + 124, + 37, + 0, + 1, + 1 + ], + [ + 126, + 6, + 0, + 0, + 0 + ], + [ + 129, + 39, + 0, + 1, + 1 + ], + [ + 131, + 6, + 0, + 0, + 0 + ], + [ + 134, + 39, + 0, + 1, + 1 + ], + [ + 136, + 6, + 0, + 0, + 0 + ], + [ + 139, + 39, + 0, + 1, + 1 + ], + [ + 141, + 6, + 0, + 0, + 0 + ], + [ + 144, + 37, + 0, + 1, + 1 + ], + [ + 146, + 6, + 0, + 0, + 0 + ], + [ + 149, + 39, + 0, + 1, + 1 + ], + [ + 151, + 6, + 0, + 0, + 0 + ], + [ + 154, + 38, + 0, + 1, + 1 + ], + [ + 156, + 6, + 0, + 0, + 0 + ], + [ + 159, + 38, + 2, + 1, + 1 + ], + [ + 162, + 6, + 0, + 0, + 0 + ], + [ + 170, + 63, + 12, + 1, + 1 + ], + [ + 171, + 55, + 0, + 1, + 1 + ], + [ + 173, + 10, + 12, + 1, + 1 + ], + [ + 175, + 19, + 12, + 1, + 0 + ], + [ + 176, + 6, + 0, + 0, + 0 + ], + [ + 184, + 59, + 24, + 1, + 1 + ], + [ + 186, + 6, + 0, + 0, + 0 + ], + [ + 194, + 66, + 0, + 1, + 1 + ], + [ + 196, + 30, + 0, + 1, + 1 + ], + [ + 196, + 58, + 0, + 1, + 0 + ], + [ + 196, + 66, + 0, + 1, + 1 + ], + [ + 196, + 79, + 0, + 1, + 0 + ], + [ + 196, + 84, + 0, + 1, + 1 + ], + [ + 196, + 91, + 0, + 1, + 0 + ], + [ + 197, + 38, + 0, + 1, + 1 + ], + [ + 199, + 10, + 0, + 1, + 1 + ], + [ + 200, + 19, + 0, + 1, + 0 + ], + [ + 201, + 6, + 0, + 0, + 0 + ], + [ + 206, + 36, + 36, + 1, + 1 + ], + [ + 206, + 45, + 0, + 0, + 0 + ], + [ + 206, + 53, + 36, + 1, + 1 + ], + [ + 206, + 66, + 0, + 0, + 0 + ], + [ + 206, + 71, + 36, + 1, + 1 + ], + [ + 206, + 78, + 0, + 0, + 0 + ], + [ + 212, + 53, + 8, + 1, + 1 + ], + [ + 214, + 55, + 16, + 1, + 1 + ], + [ + 216, + 34, + 14, + 1, + 1 + ], + [ + 218, + 52, + 0, + 1, + 1 + ], + [ + 220, + 18, + 14, + 1, + 1 + ], + [ + 221, + 22, + 14, + 1, + 1 + ], + [ + 223, + 18, + 14, + 1, + 1 + ], + [ + 224, + 14, + 16, + 1, + 1 + ], + [ + 225, + 10, + 8, + 1, + 1 + ], + [ + 226, + 22, + 8, + 1, + 0 + ], + [ + 227, + 6, + 0, + 0, + 0 + ], + [ + 242, + 25, + 0, + 1, + 1 + ], + [ + 242, + 102, + 0, + 0, + 0 + ], + [ + 244, + 50, + 0, + 1, + 1 + ], + [ + 244, + 68, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 127, + "covered": 40, + "percent": 31 + }, + "functions": { + "count": 40, + "covered": 10, + "percent": 25 + }, + "instantiations": { + "count": 40, + "covered": 10, + "percent": 25 + }, + "regions": { + "count": 54, + "covered": 18, + "notcovered": 36, + "percent": 33 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift", + "segments": [ + [ + 67, + 28, + 14, + 1, + 1 + ], + [ + 70, + 6, + 0, + 0, + 0 + ], + [ + 74, + 48, + 62, + 1, + 1 + ], + [ + 77, + 6, + 0, + 0, + 0 + ], + [ + 92, + 83, + 8, + 1, + 1 + ], + [ + 93, + 72, + 0, + 1, + 1 + ], + [ + 95, + 10, + 8, + 1, + 1 + ], + [ + 97, + 36, + 8, + 1, + 0 + ], + [ + 98, + 6, + 0, + 0, + 0 + ], + [ + 113, + 66, + 200, + 1, + 1 + ], + [ + 116, + 21, + 200, + 1, + 1 + ], + [ + 116, + 93, + 200, + 1, + 0 + ], + [ + 120, + 9, + 0, + 1, + 1 + ], + [ + 121, + 67, + 200, + 1, + 0 + ], + [ + 123, + 9, + 66, + 1, + 1 + ], + [ + 124, + 63, + 200, + 1, + 0 + ], + [ + 125, + 9, + 0, + 1, + 1 + ], + [ + 126, + 64, + 200, + 1, + 0 + ], + [ + 127, + 9, + 0, + 1, + 1 + ], + [ + 128, + 65, + 200, + 1, + 0 + ], + [ + 129, + 9, + 0, + 1, + 1 + ], + [ + 130, + 65, + 200, + 1, + 0 + ], + [ + 131, + 9, + 0, + 1, + 1 + ], + [ + 132, + 65, + 200, + 1, + 0 + ], + [ + 134, + 9, + 12, + 1, + 1 + ], + [ + 135, + 68, + 200, + 1, + 0 + ], + [ + 136, + 9, + 0, + 1, + 1 + ], + [ + 137, + 69, + 200, + 1, + 0 + ], + [ + 138, + 9, + 0, + 1, + 1 + ], + [ + 139, + 70, + 200, + 1, + 0 + ], + [ + 140, + 9, + 0, + 1, + 1 + ], + [ + 141, + 70, + 200, + 1, + 0 + ], + [ + 142, + 9, + 0, + 1, + 1 + ], + [ + 143, + 70, + 200, + 1, + 0 + ], + [ + 145, + 9, + 0, + 1, + 1 + ], + [ + 146, + 64, + 200, + 1, + 0 + ], + [ + 147, + 9, + 0, + 1, + 1 + ], + [ + 148, + 65, + 200, + 1, + 0 + ], + [ + 149, + 9, + 0, + 1, + 1 + ], + [ + 150, + 66, + 200, + 1, + 0 + ], + [ + 151, + 9, + 0, + 1, + 1 + ], + [ + 152, + 66, + 200, + 1, + 0 + ], + [ + 153, + 9, + 0, + 1, + 1 + ], + [ + 154, + 66, + 200, + 1, + 0 + ], + [ + 156, + 9, + 0, + 1, + 1 + ], + [ + 157, + 69, + 200, + 1, + 0 + ], + [ + 158, + 9, + 0, + 1, + 1 + ], + [ + 159, + 70, + 200, + 1, + 0 + ], + [ + 160, + 9, + 0, + 1, + 1 + ], + [ + 161, + 71, + 200, + 1, + 0 + ], + [ + 162, + 9, + 0, + 1, + 1 + ], + [ + 163, + 71, + 200, + 1, + 0 + ], + [ + 164, + 9, + 0, + 1, + 1 + ], + [ + 165, + 71, + 200, + 1, + 0 + ], + [ + 167, + 9, + 0, + 1, + 1 + ], + [ + 168, + 65, + 200, + 1, + 0 + ], + [ + 169, + 9, + 0, + 1, + 1 + ], + [ + 170, + 70, + 200, + 1, + 0 + ], + [ + 172, + 9, + 0, + 1, + 1 + ], + [ + 173, + 66, + 200, + 1, + 0 + ], + [ + 174, + 9, + 0, + 1, + 1 + ], + [ + 175, + 71, + 200, + 1, + 0 + ], + [ + 177, + 9, + 24, + 1, + 1 + ], + [ + 178, + 79, + 200, + 1, + 0 + ], + [ + 179, + 9, + 0, + 1, + 1 + ], + [ + 180, + 84, + 200, + 1, + 0 + ], + [ + 182, + 9, + 30, + 1, + 1 + ], + [ + 183, + 66, + 200, + 1, + 0 + ], + [ + 184, + 9, + 2, + 1, + 1 + ], + [ + 185, + 71, + 200, + 1, + 0 + ], + [ + 186, + 9, + 0, + 1, + 1 + ], + [ + 188, + 47, + 0, + 1, + 1 + ], + [ + 190, + 49, + 0, + 1, + 1 + ], + [ + 192, + 16, + 0, + 1, + 1 + ], + [ + 193, + 14, + 0, + 1, + 1 + ], + [ + 194, + 77, + 200, + 1, + 0 + ], + [ + 195, + 9, + 0, + 1, + 1 + ], + [ + 197, + 47, + 0, + 1, + 1 + ], + [ + 199, + 49, + 0, + 1, + 1 + ], + [ + 201, + 16, + 0, + 1, + 1 + ], + [ + 202, + 14, + 0, + 1, + 1 + ], + [ + 203, + 77, + 200, + 1, + 0 + ], + [ + 204, + 9, + 0, + 1, + 1 + ], + [ + 206, + 47, + 0, + 1, + 1 + ], + [ + 208, + 49, + 0, + 1, + 1 + ], + [ + 210, + 16, + 0, + 1, + 1 + ], + [ + 211, + 14, + 0, + 1, + 1 + ], + [ + 212, + 77, + 200, + 1, + 0 + ], + [ + 213, + 9, + 66, + 1, + 1 + ], + [ + 214, + 25, + 66, + 1, + 1 + ], + [ + 214, + 63, + 66, + 1, + 0 + ], + [ + 215, + 34, + 54, + 1, + 1 + ], + [ + 217, + 14, + 12, + 1, + 1 + ], + [ + 217, + 20, + 12, + 1, + 1 + ], + [ + 220, + 14, + 200, + 1, + 1 + ], + [ + 221, + 10, + 200, + 1, + 1 + ], + [ + 222, + 6, + 0, + 0, + 0 + ], + [ + 232, + 116, + 62, + 1, + 1 + ], + [ + 234, + 6, + 0, + 0, + 0 + ], + [ + 244, + 71, + 0, + 1, + 1 + ], + [ + 246, + 6, + 0, + 0, + 0 + ], + [ + 256, + 79, + 0, + 1, + 1 + ], + [ + 258, + 6, + 0, + 0, + 0 + ], + [ + 260, + 99, + 146, + 1, + 1 + ], + [ + 261, + 38, + 128, + 1, + 1 + ], + [ + 263, + 10, + 18, + 1, + 1 + ], + [ + 263, + 16, + 18, + 1, + 1 + ], + [ + 265, + 10, + 0, + 1, + 1 + ], + [ + 266, + 6, + 0, + 0, + 0 + ], + [ + 268, + 51, + 18, + 1, + 1 + ], + [ + 271, + 19, + 18, + 1, + 1 + ], + [ + 271, + 27, + 18, + 1, + 0 + ], + [ + 274, + 6, + 0, + 0, + 0 + ], + [ + 279, + 37, + 0, + 1, + 1 + ], + [ + 279, + 50, + 0, + 0, + 0 + ], + [ + 281, + 28, + 0, + 1, + 1 + ], + [ + 281, + 41, + 0, + 0, + 0 + ], + [ + 283, + 43, + 24, + 1, + 1 + ], + [ + 285, + 10, + 0, + 0, + 0 + ], + [ + 287, + 89, + 146, + 1, + 1 + ], + [ + 291, + 10, + 0, + 0, + 0 + ], + [ + 294, + 56, + 24, + 1, + 1 + ], + [ + 295, + 67, + 0, + 1, + 1 + ], + [ + 295, + 71, + 24, + 1, + 0 + ], + [ + 296, + 10, + 0, + 0, + 0 + ], + [ + 298, + 160, + 0, + 1, + 1 + ], + [ + 300, + 10, + 0, + 0, + 0 + ], + [ + 302, + 89, + 0, + 1, + 1 + ], + [ + 304, + 10, + 0, + 0, + 0 + ], + [ + 306, + 47, + 0, + 1, + 1 + ], + [ + 308, + 10, + 0, + 0, + 0 + ], + [ + 310, + 62, + 0, + 1, + 1 + ], + [ + 312, + 10, + 0, + 0, + 0 + ], + [ + 318, + 37, + 0, + 1, + 1 + ], + [ + 318, + 50, + 0, + 0, + 0 + ], + [ + 320, + 25, + 0, + 1, + 1 + ], + [ + 320, + 39, + 0, + 0, + 0 + ], + [ + 322, + 31, + 0, + 1, + 1 + ], + [ + 322, + 43, + 0, + 0, + 0 + ], + [ + 324, + 27, + 0, + 1, + 1 + ], + [ + 324, + 43, + 0, + 0, + 0 + ], + [ + 326, + 72, + 0, + 1, + 1 + ], + [ + 328, + 10, + 0, + 0, + 0 + ], + [ + 330, + 34, + 0, + 1, + 1 + ], + [ + 332, + 10, + 0, + 0, + 0 + ], + [ + 334, + 143, + 0, + 1, + 1 + ], + [ + 336, + 10, + 0, + 0, + 0 + ], + [ + 338, + 74, + 0, + 1, + 1 + ], + [ + 340, + 10, + 0, + 0, + 0 + ], + [ + 342, + 47, + 0, + 1, + 1 + ], + [ + 344, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 196, + "covered": 106, + "percent": 54 + }, + "functions": { + "count": 30, + "covered": 12, + "percent": 40 + }, + "instantiations": { + "count": 30, + "covered": 12, + "percent": 40 + }, + "regions": { + "count": 87, + "covered": 27, + "notcovered": 60, + "percent": 31 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift", + "segments": [ + [ + 67, + 28, + 14, + 1, + 1 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 86, + 67, + 3, + 1, + 1 + ], + [ + 88, + 37, + 21, + 1, + 1 + ], + [ + 88, + 72, + 3, + 1, + 0 + ], + [ + 89, + 25, + 21, + 1, + 1 + ], + [ + 89, + 62, + 3, + 1, + 0 + ], + [ + 92, + 6, + 0, + 0, + 0 + ], + [ + 107, + 66, + 4, + 1, + 1 + ], + [ + 109, + 38, + 4, + 1, + 1 + ], + [ + 109, + 73, + 4, + 1, + 0 + ], + [ + 110, + 25, + 4, + 1, + 1 + ], + [ + 110, + 62, + 4, + 1, + 0 + ], + [ + 112, + 56, + 0, + 1, + 1 + ], + [ + 114, + 10, + 4, + 1, + 1 + ], + [ + 115, + 20, + 4, + 1, + 0 + ], + [ + 116, + 6, + 0, + 0, + 0 + ], + [ + 131, + 75, + 0, + 1, + 1 + ], + [ + 133, + 46, + 0, + 1, + 1 + ], + [ + 137, + 10, + 0, + 1, + 0 + ], + [ + 138, + 6, + 0, + 0, + 0 + ], + [ + 153, + 78, + 7, + 1, + 1 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 162, + 75, + 0, + 1, + 1 + ], + [ + 166, + 6, + 0, + 0, + 0 + ], + [ + 177, + 109, + 7, + 1, + 1 + ], + [ + 179, + 6, + 0, + 0, + 0 + ], + [ + 189, + 64, + 0, + 1, + 1 + ], + [ + 191, + 6, + 0, + 0, + 0 + ], + [ + 201, + 72, + 0, + 1, + 1 + ], + [ + 203, + 6, + 0, + 0, + 0 + ], + [ + 205, + 95, + 0, + 1, + 1 + ], + [ + 209, + 6, + 0, + 0, + 0 + ], + [ + 214, + 37, + 0, + 1, + 1 + ], + [ + 214, + 50, + 0, + 0, + 0 + ], + [ + 216, + 80, + 25, + 1, + 1 + ], + [ + 223, + 13, + 6, + 1, + 1 + ], + [ + 225, + 62, + 25, + 1, + 0 + ], + [ + 226, + 13, + 0, + 1, + 1 + ], + [ + 228, + 62, + 25, + 1, + 0 + ], + [ + 229, + 13, + 0, + 1, + 1 + ], + [ + 231, + 62, + 25, + 1, + 0 + ], + [ + 232, + 13, + 0, + 1, + 1 + ], + [ + 234, + 62, + 25, + 1, + 0 + ], + [ + 235, + 13, + 0, + 1, + 1 + ], + [ + 237, + 62, + 25, + 1, + 0 + ], + [ + 239, + 13, + 3, + 1, + 1 + ], + [ + 240, + 53, + 9, + 1, + 1 + ], + [ + 240, + 67, + 3, + 1, + 0 + ], + [ + 242, + 62, + 25, + 1, + 0 + ], + [ + 243, + 13, + 0, + 1, + 1 + ], + [ + 244, + 53, + 0, + 1, + 1 + ], + [ + 244, + 67, + 0, + 1, + 0 + ], + [ + 246, + 62, + 25, + 1, + 0 + ], + [ + 247, + 13, + 0, + 1, + 1 + ], + [ + 248, + 53, + 0, + 1, + 1 + ], + [ + 248, + 67, + 0, + 1, + 0 + ], + [ + 250, + 62, + 25, + 1, + 0 + ], + [ + 251, + 13, + 0, + 1, + 1 + ], + [ + 252, + 53, + 0, + 1, + 1 + ], + [ + 252, + 67, + 0, + 1, + 0 + ], + [ + 254, + 62, + 25, + 1, + 0 + ], + [ + 255, + 13, + 0, + 1, + 1 + ], + [ + 256, + 53, + 0, + 1, + 1 + ], + [ + 256, + 67, + 0, + 1, + 0 + ], + [ + 258, + 62, + 25, + 1, + 0 + ], + [ + 260, + 13, + 0, + 1, + 1 + ], + [ + 262, + 62, + 25, + 1, + 0 + ], + [ + 264, + 13, + 0, + 1, + 1 + ], + [ + 266, + 62, + 25, + 1, + 0 + ], + [ + 268, + 13, + 0, + 1, + 1 + ], + [ + 270, + 62, + 25, + 1, + 0 + ], + [ + 272, + 13, + 0, + 1, + 1 + ], + [ + 274, + 62, + 25, + 1, + 0 + ], + [ + 276, + 13, + 0, + 1, + 1 + ], + [ + 278, + 62, + 25, + 1, + 0 + ], + [ + 281, + 13, + 0, + 1, + 1 + ], + [ + 282, + 53, + 0, + 1, + 1 + ], + [ + 282, + 67, + 0, + 1, + 0 + ], + [ + 284, + 62, + 25, + 1, + 0 + ], + [ + 286, + 13, + 0, + 1, + 1 + ], + [ + 287, + 53, + 0, + 1, + 1 + ], + [ + 287, + 67, + 0, + 1, + 0 + ], + [ + 289, + 62, + 25, + 1, + 0 + ], + [ + 290, + 13, + 0, + 1, + 1 + ], + [ + 291, + 53, + 0, + 1, + 1 + ], + [ + 291, + 67, + 0, + 1, + 0 + ], + [ + 293, + 62, + 25, + 1, + 0 + ], + [ + 294, + 13, + 0, + 1, + 1 + ], + [ + 295, + 53, + 0, + 1, + 1 + ], + [ + 295, + 67, + 0, + 1, + 0 + ], + [ + 297, + 62, + 25, + 1, + 0 + ], + [ + 298, + 13, + 0, + 1, + 1 + ], + [ + 299, + 53, + 0, + 1, + 1 + ], + [ + 299, + 67, + 0, + 1, + 0 + ], + [ + 301, + 62, + 25, + 1, + 0 + ], + [ + 303, + 13, + 0, + 1, + 1 + ], + [ + 305, + 62, + 25, + 1, + 0 + ], + [ + 306, + 13, + 0, + 1, + 1 + ], + [ + 307, + 53, + 0, + 1, + 1 + ], + [ + 307, + 67, + 0, + 1, + 0 + ], + [ + 309, + 62, + 25, + 1, + 0 + ], + [ + 311, + 13, + 0, + 1, + 1 + ], + [ + 313, + 62, + 25, + 1, + 0 + ], + [ + 314, + 13, + 0, + 1, + 1 + ], + [ + 315, + 53, + 0, + 1, + 1 + ], + [ + 315, + 67, + 0, + 1, + 0 + ], + [ + 317, + 62, + 25, + 1, + 0 + ], + [ + 319, + 13, + 0, + 1, + 1 + ], + [ + 321, + 62, + 25, + 1, + 0 + ], + [ + 322, + 13, + 0, + 1, + 1 + ], + [ + 323, + 53, + 0, + 1, + 1 + ], + [ + 323, + 67, + 0, + 1, + 0 + ], + [ + 325, + 62, + 25, + 1, + 0 + ], + [ + 327, + 13, + 3, + 1, + 1 + ], + [ + 329, + 62, + 25, + 1, + 0 + ], + [ + 330, + 13, + 0, + 1, + 1 + ], + [ + 332, + 62, + 25, + 1, + 0 + ], + [ + 334, + 13, + 10, + 1, + 1 + ], + [ + 336, + 62, + 25, + 1, + 0 + ], + [ + 337, + 13, + 0, + 1, + 1 + ], + [ + 338, + 53, + 0, + 1, + 1 + ], + [ + 338, + 95, + 0, + 1, + 0 + ], + [ + 340, + 62, + 25, + 1, + 0 + ], + [ + 341, + 13, + 0, + 1, + 1 + ], + [ + 343, + 62, + 25, + 1, + 0 + ], + [ + 344, + 13, + 0, + 1, + 1 + ], + [ + 346, + 62, + 25, + 1, + 0 + ], + [ + 347, + 13, + 0, + 1, + 1 + ], + [ + 349, + 62, + 25, + 1, + 0 + ], + [ + 350, + 13, + 3, + 1, + 1 + ], + [ + 351, + 38, + 0, + 1, + 1 + ], + [ + 355, + 18, + 3, + 1, + 1 + ], + [ + 355, + 24, + 3, + 1, + 1 + ], + [ + 356, + 24, + 3, + 1, + 1 + ], + [ + 360, + 22, + 3, + 1, + 0 + ], + [ + 360, + 39, + 0, + 1, + 1 + ], + [ + 362, + 22, + 3, + 1, + 1 + ], + [ + 363, + 18, + 25, + 1, + 1 + ], + [ + 364, + 14, + 25, + 1, + 1 + ], + [ + 365, + 10, + 0, + 0, + 0 + ], + [ + 367, + 44, + 0, + 1, + 1 + ], + [ + 367, + 46, + 0, + 0, + 0 + ], + [ + 369, + 156, + 0, + 1, + 1 + ], + [ + 371, + 10, + 0, + 0, + 0 + ], + [ + 373, + 82, + 0, + 1, + 1 + ], + [ + 375, + 10, + 0, + 0, + 0 + ], + [ + 377, + 40, + 0, + 1, + 1 + ], + [ + 379, + 10, + 0, + 0, + 0 + ], + [ + 381, + 55, + 0, + 1, + 1 + ], + [ + 383, + 10, + 0, + 0, + 0 + ], + [ + 389, + 37, + 0, + 1, + 1 + ], + [ + 389, + 50, + 0, + 0, + 0 + ], + [ + 391, + 24, + 0, + 1, + 1 + ], + [ + 391, + 36, + 0, + 0, + 0 + ], + [ + 393, + 139, + 0, + 1, + 1 + ], + [ + 395, + 10, + 0, + 0, + 0 + ], + [ + 397, + 67, + 0, + 1, + 1 + ], + [ + 399, + 10, + 0, + 0, + 0 + ], + [ + 401, + 40, + 0, + 1, + 1 + ], + [ + 403, + 10, + 0, + 0, + 0 + ], + [ + 405, + 33, + 0, + 1, + 1 + ], + [ + 405, + 35, + 0, + 0, + 0 + ], + [ + 407, + 63, + 0, + 1, + 1 + ], + [ + 409, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 256, + "covered": 109, + "percent": 42 + }, + "functions": { + "count": 43, + "covered": 11, + "percent": 25 + }, + "instantiations": { + "count": 43, + "covered": 11, + "percent": 25 + }, + "regions": { + "count": 87, + "covered": 23, + "notcovered": 64, + "percent": 26 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift", + "segments": [ + [ + 63, + 32, + 0, + 1, + 1 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 74, + 48, + 0, + 1, + 1 + ], + [ + 77, + 6, + 0, + 0, + 0 + ], + [ + 86, + 66, + 21, + 1, + 1 + ], + [ + 90, + 32, + 28, + 1, + 1 + ], + [ + 92, + 17, + 28, + 1, + 1 + ], + [ + 92, + 66, + 28, + 1, + 0 + ], + [ + 93, + 17, + 0, + 1, + 1 + ], + [ + 93, + 66, + 28, + 1, + 0 + ], + [ + 94, + 14, + 28, + 1, + 1 + ], + [ + 95, + 10, + 21, + 1, + 0 + ], + [ + 96, + 6, + 0, + 0, + 0 + ], + [ + 108, + 82, + 0, + 1, + 1 + ], + [ + 113, + 13, + 0, + 1, + 1 + ], + [ + 113, + 30, + 0, + 1, + 0 + ], + [ + 114, + 13, + 0, + 1, + 1 + ], + [ + 114, + 62, + 0, + 1, + 0 + ], + [ + 115, + 10, + 0, + 1, + 1 + ], + [ + 116, + 6, + 0, + 0, + 0 + ], + [ + 189, + 66, + 56, + 1, + 1 + ], + [ + 190, + 42, + 28, + 1, + 1 + ], + [ + 190, + 56, + 28, + 1, + 1 + ], + [ + 191, + 44, + 56, + 1, + 0 + ], + [ + 192, + 6, + 0, + 0, + 0 + ], + [ + 223, + 78, + 0, + 1, + 1 + ], + [ + 224, + 61, + 0, + 1, + 1 + ], + [ + 224, + 75, + 0, + 1, + 1 + ], + [ + 226, + 13, + 0, + 1, + 1 + ], + [ + 226, + 78, + 0, + 1, + 0 + ], + [ + 227, + 13, + 0, + 1, + 1 + ], + [ + 227, + 62, + 0, + 1, + 0 + ], + [ + 228, + 10, + 0, + 1, + 1 + ], + [ + 229, + 6, + 0, + 0, + 0 + ], + [ + 257, + 67, + 0, + 1, + 1 + ], + [ + 258, + 43, + 0, + 1, + 1 + ], + [ + 258, + 46, + 0, + 1, + 0 + ], + [ + 259, + 6, + 0, + 0, + 0 + ], + [ + 266, + 73, + 0, + 1, + 1 + ], + [ + 268, + 6, + 0, + 0, + 0 + ], + [ + 273, + 74, + 0, + 1, + 1 + ], + [ + 274, + 49, + 0, + 1, + 1 + ], + [ + 274, + 73, + 0, + 1, + 0 + ], + [ + 275, + 6, + 0, + 0, + 0 + ], + [ + 282, + 36, + 0, + 1, + 1 + ], + [ + 284, + 6, + 0, + 0, + 0 + ], + [ + 289, + 31, + 0, + 1, + 1 + ], + [ + 292, + 6, + 0, + 0, + 0 + ], + [ + 306, + 30, + 150, + 1, + 1 + ], + [ + 308, + 6, + 0, + 0, + 0 + ], + [ + 314, + 32, + 7, + 1, + 1 + ], + [ + 317, + 6, + 0, + 0, + 0 + ], + [ + 588, + 32, + 0, + 1, + 1 + ], + [ + 590, + 6, + 0, + 0, + 0 + ], + [ + 593, + 30, + 9, + 1, + 1 + ], + [ + 595, + 6, + 0, + 0, + 0 + ], + [ + 610, + 39, + 74, + 1, + 1 + ], + [ + 611, + 32, + 74, + 1, + 1 + ], + [ + 613, + 10, + 74, + 1, + 1 + ], + [ + 613, + 16, + 0, + 1, + 1 + ], + [ + 615, + 10, + 74, + 1, + 1 + ], + [ + 616, + 6, + 0, + 0, + 0 + ], + [ + 619, + 30, + 49, + 1, + 1 + ], + [ + 621, + 6, + 0, + 0, + 0 + ], + [ + 636, + 39, + 0, + 1, + 1 + ], + [ + 637, + 33, + 0, + 1, + 1 + ], + [ + 639, + 10, + 0, + 1, + 1 + ], + [ + 639, + 16, + 0, + 1, + 1 + ], + [ + 641, + 10, + 0, + 1, + 1 + ], + [ + 642, + 6, + 0, + 0, + 0 + ], + [ + 645, + 30, + 0, + 1, + 1 + ], + [ + 647, + 6, + 0, + 0, + 0 + ], + [ + 662, + 39, + 0, + 1, + 1 + ], + [ + 663, + 34, + 0, + 1, + 1 + ], + [ + 665, + 10, + 0, + 1, + 1 + ], + [ + 665, + 16, + 0, + 1, + 1 + ], + [ + 667, + 10, + 0, + 1, + 1 + ], + [ + 668, + 6, + 0, + 0, + 0 + ], + [ + 671, + 30, + 0, + 1, + 1 + ], + [ + 673, + 6, + 0, + 0, + 0 + ], + [ + 688, + 39, + 0, + 1, + 1 + ], + [ + 689, + 34, + 0, + 1, + 1 + ], + [ + 691, + 10, + 0, + 1, + 1 + ], + [ + 691, + 16, + 0, + 1, + 1 + ], + [ + 693, + 10, + 0, + 1, + 1 + ], + [ + 694, + 6, + 0, + 0, + 0 + ], + [ + 697, + 30, + 0, + 1, + 1 + ], + [ + 699, + 6, + 0, + 0, + 0 + ], + [ + 714, + 39, + 0, + 1, + 1 + ], + [ + 715, + 34, + 0, + 1, + 1 + ], + [ + 717, + 10, + 0, + 1, + 1 + ], + [ + 717, + 16, + 0, + 1, + 1 + ], + [ + 719, + 10, + 0, + 1, + 1 + ], + [ + 720, + 6, + 0, + 0, + 0 + ], + [ + 723, + 30, + 0, + 1, + 1 + ], + [ + 725, + 6, + 0, + 0, + 0 + ], + [ + 740, + 39, + 0, + 1, + 1 + ], + [ + 741, + 33, + 0, + 1, + 1 + ], + [ + 743, + 10, + 0, + 1, + 1 + ], + [ + 743, + 16, + 0, + 1, + 1 + ], + [ + 745, + 10, + 0, + 1, + 1 + ], + [ + 746, + 6, + 0, + 0, + 0 + ], + [ + 749, + 30, + 0, + 1, + 1 + ], + [ + 751, + 6, + 0, + 0, + 0 + ], + [ + 766, + 39, + 0, + 1, + 1 + ], + [ + 767, + 34, + 0, + 1, + 1 + ], + [ + 769, + 10, + 0, + 1, + 1 + ], + [ + 769, + 16, + 0, + 1, + 1 + ], + [ + 771, + 10, + 0, + 1, + 1 + ], + [ + 772, + 6, + 0, + 0, + 0 + ], + [ + 775, + 30, + 0, + 1, + 1 + ], + [ + 777, + 6, + 0, + 0, + 0 + ], + [ + 792, + 39, + 0, + 1, + 1 + ], + [ + 793, + 35, + 0, + 1, + 1 + ], + [ + 795, + 10, + 0, + 1, + 1 + ], + [ + 795, + 16, + 0, + 1, + 1 + ], + [ + 797, + 10, + 0, + 1, + 1 + ], + [ + 798, + 6, + 0, + 0, + 0 + ], + [ + 801, + 30, + 0, + 1, + 1 + ], + [ + 803, + 6, + 0, + 0, + 0 + ], + [ + 818, + 39, + 0, + 1, + 1 + ], + [ + 819, + 35, + 0, + 1, + 1 + ], + [ + 821, + 10, + 0, + 1, + 1 + ], + [ + 821, + 16, + 0, + 1, + 1 + ], + [ + 823, + 10, + 0, + 1, + 1 + ], + [ + 824, + 6, + 0, + 0, + 0 + ], + [ + 827, + 30, + 0, + 1, + 1 + ], + [ + 829, + 6, + 0, + 0, + 0 + ], + [ + 844, + 39, + 0, + 1, + 1 + ], + [ + 845, + 35, + 0, + 1, + 1 + ], + [ + 847, + 10, + 0, + 1, + 1 + ], + [ + 847, + 16, + 0, + 1, + 1 + ], + [ + 849, + 10, + 0, + 1, + 1 + ], + [ + 850, + 6, + 0, + 0, + 0 + ], + [ + 853, + 30, + 0, + 1, + 1 + ], + [ + 855, + 6, + 0, + 0, + 0 + ], + [ + 861, + 39, + 0, + 1, + 1 + ], + [ + 862, + 35, + 0, + 1, + 1 + ], + [ + 864, + 10, + 0, + 1, + 1 + ], + [ + 864, + 16, + 0, + 1, + 1 + ], + [ + 866, + 10, + 0, + 1, + 1 + ], + [ + 867, + 6, + 0, + 0, + 0 + ], + [ + 870, + 30, + 0, + 1, + 1 + ], + [ + 872, + 6, + 0, + 0, + 0 + ], + [ + 878, + 39, + 0, + 1, + 1 + ], + [ + 879, + 34, + 0, + 1, + 1 + ], + [ + 881, + 10, + 0, + 1, + 1 + ], + [ + 881, + 16, + 0, + 1, + 1 + ], + [ + 883, + 10, + 0, + 1, + 1 + ], + [ + 884, + 6, + 0, + 0, + 0 + ], + [ + 887, + 30, + 0, + 1, + 1 + ], + [ + 889, + 6, + 0, + 0, + 0 + ], + [ + 895, + 39, + 0, + 1, + 1 + ], + [ + 896, + 33, + 0, + 1, + 1 + ], + [ + 898, + 10, + 0, + 1, + 1 + ], + [ + 898, + 16, + 0, + 1, + 1 + ], + [ + 900, + 10, + 0, + 1, + 1 + ], + [ + 901, + 6, + 0, + 0, + 0 + ], + [ + 904, + 30, + 0, + 1, + 1 + ], + [ + 906, + 6, + 0, + 0, + 0 + ], + [ + 932, + 50, + 0, + 1, + 1 + ], + [ + 935, + 5, + 0, + 1, + 1 + ], + [ + 936, + 48, + 0, + 1, + 0 + ], + [ + 937, + 5, + 0, + 1, + 1 + ], + [ + 938, + 49, + 0, + 1, + 0 + ], + [ + 939, + 6, + 0, + 1, + 1 + ], + [ + 940, + 4, + 0, + 0, + 0 + ], + [ + 943, + 45, + 0, + 1, + 1 + ], + [ + 945, + 10, + 0, + 1, + 1 + ], + [ + 948, + 8, + 0, + 1, + 0 + ], + [ + 948, + 15, + 0, + 1, + 1 + ], + [ + 951, + 8, + 0, + 1, + 1 + ], + [ + 952, + 4, + 0, + 0, + 0 + ], + [ + 955, + 34, + 0, + 1, + 1 + ], + [ + 957, + 5, + 0, + 1, + 1 + ], + [ + 958, + 28, + 0, + 1, + 0 + ], + [ + 959, + 5, + 0, + 1, + 1 + ], + [ + 960, + 29, + 0, + 1, + 0 + ], + [ + 961, + 6, + 0, + 1, + 1 + ], + [ + 962, + 4, + 0, + 0, + 0 + ], + [ + 965, + 28, + 0, + 1, + 1 + ], + [ + 967, + 5, + 0, + 1, + 1 + ], + [ + 968, + 19, + 0, + 1, + 0 + ], + [ + 969, + 5, + 0, + 1, + 1 + ], + [ + 970, + 19, + 0, + 1, + 0 + ], + [ + 971, + 6, + 0, + 1, + 1 + ], + [ + 972, + 4, + 0, + 0, + 0 + ], + [ + 988, + 35, + 0, + 1, + 1 + ], + [ + 990, + 4, + 0, + 0, + 0 + ], + [ + 993, + 34, + 0, + 1, + 1 + ], + [ + 995, + 4, + 0, + 0, + 0 + ], + [ + 998, + 46, + 0, + 1, + 1 + ], + [ + 999, + 29, + 0, + 1, + 1 + ], + [ + 1001, + 32, + 0, + 1, + 1 + ], + [ + 1003, + 8, + 0, + 1, + 1 + ], + [ + 1003, + 40, + 0, + 1, + 1 + ], + [ + 1005, + 8, + 0, + 1, + 1 + ], + [ + 1005, + 14, + 0, + 1, + 1 + ], + [ + 1007, + 8, + 0, + 1, + 1 + ], + [ + 1008, + 6, + 0, + 1, + 1 + ], + [ + 1008, + 12, + 0, + 1, + 1 + ], + [ + 1009, + 56, + 0, + 1, + 1 + ], + [ + 1009, + 70, + 0, + 1, + 0 + ], + [ + 1009, + 75, + 0, + 1, + 1 + ], + [ + 1011, + 31, + 0, + 1, + 1 + ], + [ + 1013, + 10, + 0, + 1, + 1 + ], + [ + 1013, + 39, + 0, + 1, + 1 + ], + [ + 1015, + 10, + 0, + 1, + 1 + ], + [ + 1015, + 16, + 0, + 1, + 1 + ], + [ + 1017, + 10, + 0, + 1, + 1 + ], + [ + 1018, + 8, + 0, + 1, + 0 + ], + [ + 1019, + 6, + 0, + 1, + 1 + ], + [ + 1020, + 4, + 0, + 0, + 0 + ], + [ + 1034, + 44, + 0, + 1, + 1 + ], + [ + 1035, + 26, + 0, + 1, + 1 + ], + [ + 1035, + 44, + 0, + 1, + 0 + ], + [ + 1036, + 4, + 0, + 0, + 0 + ], + [ + 1039, + 38, + 0, + 1, + 1 + ], + [ + 1041, + 4, + 0, + 0, + 0 + ], + [ + 1062, + 43, + 0, + 1, + 1 + ], + [ + 1065, + 4, + 0, + 0, + 0 + ], + [ + 1067, + 46, + 0, + 1, + 1 + ], + [ + 1069, + 25, + 0, + 1, + 1 + ], + [ + 1071, + 6, + 0, + 1, + 1 + ], + [ + 1074, + 4, + 0, + 0, + 0 + ], + [ + 1076, + 44, + 0, + 1, + 1 + ], + [ + 1078, + 4, + 0, + 0, + 0 + ], + [ + 1081, + 54, + 0, + 1, + 1 + ], + [ + 1083, + 4, + 0, + 0, + 0 + ], + [ + 1164, + 25, + 0, + 1, + 1 + ], + [ + 1166, + 4, + 0, + 0, + 0 + ], + [ + 1169, + 44, + 0, + 1, + 1 + ], + [ + 1171, + 4, + 0, + 0, + 0 + ], + [ + 1174, + 31, + 0, + 1, + 1 + ], + [ + 1176, + 4, + 0, + 0, + 0 + ], + [ + 1179, + 42, + 0, + 1, + 1 + ], + [ + 1181, + 4, + 0, + 0, + 0 + ], + [ + 1184, + 41, + 0, + 1, + 1 + ], + [ + 1186, + 4, + 0, + 0, + 0 + ], + [ + 1211, + 25, + 0, + 1, + 1 + ], + [ + 1213, + 4, + 0, + 0, + 0 + ], + [ + 1216, + 44, + 0, + 1, + 1 + ], + [ + 1218, + 4, + 0, + 0, + 0 + ], + [ + 1221, + 31, + 0, + 1, + 1 + ], + [ + 1223, + 4, + 0, + 0, + 0 + ], + [ + 1226, + 42, + 0, + 1, + 1 + ], + [ + 1228, + 4, + 0, + 0, + 0 + ], + [ + 1231, + 41, + 0, + 1, + 1 + ], + [ + 1233, + 4, + 0, + 0, + 0 + ], + [ + 1259, + 25, + 0, + 1, + 1 + ], + [ + 1261, + 4, + 0, + 0, + 0 + ], + [ + 1264, + 44, + 0, + 1, + 1 + ], + [ + 1266, + 4, + 0, + 0, + 0 + ], + [ + 1269, + 31, + 0, + 1, + 1 + ], + [ + 1271, + 4, + 0, + 0, + 0 + ], + [ + 1274, + 42, + 0, + 1, + 1 + ], + [ + 1276, + 4, + 0, + 0, + 0 + ], + [ + 1279, + 41, + 0, + 1, + 1 + ], + [ + 1281, + 4, + 0, + 0, + 0 + ], + [ + 1306, + 25, + 0, + 1, + 1 + ], + [ + 1308, + 4, + 0, + 0, + 0 + ], + [ + 1311, + 44, + 0, + 1, + 1 + ], + [ + 1313, + 4, + 0, + 0, + 0 + ], + [ + 1316, + 31, + 0, + 1, + 1 + ], + [ + 1318, + 4, + 0, + 0, + 0 + ], + [ + 1321, + 42, + 0, + 1, + 1 + ], + [ + 1323, + 4, + 0, + 0, + 0 + ], + [ + 1326, + 41, + 0, + 1, + 1 + ], + [ + 1328, + 4, + 0, + 0, + 0 + ], + [ + 1354, + 33, + 0, + 1, + 1 + ], + [ + 1357, + 4, + 0, + 0, + 0 + ], + [ + 1360, + 44, + 0, + 1, + 1 + ], + [ + 1362, + 25, + 0, + 1, + 1 + ], + [ + 1364, + 6, + 0, + 1, + 1 + ], + [ + 1367, + 4, + 0, + 0, + 0 + ], + [ + 1370, + 48, + 0, + 1, + 1 + ], + [ + 1372, + 4, + 0, + 0, + 0 + ], + [ + 1375, + 42, + 0, + 1, + 1 + ], + [ + 1377, + 4, + 0, + 0, + 0 + ], + [ + 1380, + 41, + 0, + 1, + 1 + ], + [ + 1382, + 4, + 0, + 0, + 0 + ], + [ + 1408, + 33, + 0, + 1, + 1 + ], + [ + 1411, + 4, + 0, + 0, + 0 + ], + [ + 1414, + 44, + 0, + 1, + 1 + ], + [ + 1416, + 25, + 0, + 1, + 1 + ], + [ + 1418, + 6, + 0, + 1, + 1 + ], + [ + 1421, + 4, + 0, + 0, + 0 + ], + [ + 1424, + 48, + 0, + 1, + 1 + ], + [ + 1426, + 4, + 0, + 0, + 0 + ], + [ + 1429, + 42, + 0, + 1, + 1 + ], + [ + 1431, + 4, + 0, + 0, + 0 + ], + [ + 1434, + 41, + 0, + 1, + 1 + ], + [ + 1436, + 4, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 408, + "covered": 40, + "percent": 9 + }, + "functions": { + "count": 78, + "covered": 7, + "percent": 8 + }, + "instantiations": { + "count": 78, + "covered": 7, + "percent": 8 + }, + "regions": { + "count": 189, + "covered": 15, + "notcovered": 174, + "percent": 7 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift", + "segments": [ + [ + 20, + 36, + 4412, + 1, + 1 + ], + [ + 22, + 9, + 0, + 1, + 1 + ], + [ + 23, + 27, + 4412, + 1, + 0 + ], + [ + 24, + 9, + 0, + 1, + 1 + ], + [ + 25, + 26, + 4412, + 1, + 0 + ], + [ + 26, + 9, + 2192, + 1, + 1 + ], + [ + 27, + 27, + 4412, + 1, + 0 + ], + [ + 28, + 9, + 2053, + 1, + 1 + ], + [ + 29, + 29, + 4412, + 1, + 0 + ], + [ + 30, + 9, + 87, + 1, + 1 + ], + [ + 31, + 26, + 4412, + 1, + 0 + ], + [ + 32, + 9, + 34, + 1, + 1 + ], + [ + 33, + 29, + 4412, + 1, + 0 + ], + [ + 34, + 9, + 46, + 1, + 1 + ], + [ + 35, + 27, + 4412, + 1, + 0 + ], + [ + 36, + 10, + 4412, + 1, + 1 + ], + [ + 37, + 6, + 0, + 0, + 0 + ], + [ + 87, + 58, + 2409, + 1, + 1 + ], + [ + 88, + 64, + 2053, + 1, + 1 + ], + [ + 91, + 14, + 2409, + 1, + 1 + ], + [ + 92, + 6, + 0, + 0, + 0 + ], + [ + 107, + 57, + 87, + 1, + 1 + ], + [ + 108, + 61, + 87, + 1, + 1 + ], + [ + 111, + 14, + 87, + 1, + 1 + ], + [ + 112, + 6, + 0, + 0, + 0 + ], + [ + 127, + 57, + 34, + 1, + 1 + ], + [ + 128, + 64, + 34, + 1, + 1 + ], + [ + 131, + 14, + 34, + 1, + 1 + ], + [ + 132, + 6, + 0, + 0, + 0 + ], + [ + 147, + 57, + 46, + 1, + 1 + ], + [ + 148, + 62, + 46, + 1, + 1 + ], + [ + 151, + 14, + 46, + 1, + 1 + ], + [ + 152, + 6, + 0, + 0, + 0 + ], + [ + 167, + 57, + 2194, + 1, + 1 + ], + [ + 168, + 62, + 2192, + 1, + 1 + ], + [ + 171, + 14, + 2194, + 1, + 1 + ], + [ + 172, + 6, + 0, + 0, + 0 + ], + [ + 187, + 57, + 0, + 1, + 1 + ], + [ + 188, + 62, + 0, + 1, + 1 + ], + [ + 191, + 14, + 0, + 1, + 1 + ], + [ + 192, + 6, + 0, + 0, + 0 + ], + [ + 207, + 57, + 0, + 1, + 1 + ], + [ + 208, + 61, + 0, + 1, + 1 + ], + [ + 211, + 14, + 0, + 1, + 1 + ], + [ + 212, + 6, + 0, + 0, + 0 + ], + [ + 221, + 69, + 774, + 1, + 1 + ], + [ + 222, + 40, + 0, + 1, + 1 + ], + [ + 224, + 10, + 774, + 1, + 1 + ], + [ + 225, + 39, + 774, + 1, + 0 + ], + [ + 226, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 66, + "covered": 51, + "percent": 77 + }, + "functions": { + "count": 9, + "covered": 7, + "percent": 77 + }, + "instantiations": { + "count": 9, + "covered": 7, + "percent": 77 + }, + "regions": { + "count": 33, + "covered": 24, + "notcovered": 9, + "percent": 72 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift", + "segments": [ + [ + 24, + 19, + 697, + 1, + 1 + ], + [ + 24, + 21, + 0, + 0, + 0 + ], + [ + 28, + 13, + 180, + 1, + 1 + ], + [ + 30, + 10, + 0, + 0, + 0 + ], + [ + 38, + 13, + 0, + 1, + 1 + ], + [ + 40, + 10, + 0, + 0, + 0 + ], + [ + 41, + 20, + 2725, + 1, + 1 + ], + [ + 42, + 32, + 2725, + 1, + 1 + ], + [ + 44, + 31, + 2725, + 1, + 1 + ], + [ + 46, + 18, + 2725, + 1, + 1 + ], + [ + 48, + 23, + 2725, + 1, + 0 + ], + [ + 49, + 14, + 0, + 1, + 1 + ], + [ + 51, + 42, + 0, + 1, + 1 + ], + [ + 51, + 53, + 0, + 1, + 0 + ], + [ + 53, + 19, + 2725, + 1, + 0 + ], + [ + 54, + 10, + 0, + 0, + 0 + ], + [ + 58, + 40, + 0, + 1, + 1 + ], + [ + 59, + 46, + 0, + 1, + 1 + ], + [ + 62, + 10, + 0, + 1, + 1 + ], + [ + 63, + 19, + 0, + 1, + 0 + ], + [ + 64, + 6, + 0, + 0, + 0 + ], + [ + 67, + 36, + 0, + 1, + 1 + ], + [ + 69, + 28, + 0, + 1, + 1 + ], + [ + 71, + 10, + 0, + 1, + 1 + ], + [ + 72, + 22, + 0, + 1, + 0 + ], + [ + 73, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 36, + "covered": 14, + "percent": 38 + }, + "functions": { + "count": 7, + "covered": 3, + "percent": 42 + }, + "instantiations": { + "count": 7, + "covered": 3, + "percent": 42 + }, + "regions": { + "count": 15, + "covered": 6, + "notcovered": 9, + "percent": 40 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift", + "segments": [ + [ + 20, + 29, + 0, + 1, + 1 + ], + [ + 22, + 6, + 0, + 0, + 0 + ], + [ + 32, + 42, + 153, + 1, + 1 + ], + [ + 32, + 61, + 0, + 0, + 0 + ], + [ + 33, + 44, + 153, + 1, + 1 + ], + [ + 33, + 65, + 0, + 0, + 0 + ], + [ + 144, + 72, + 0, + 1, + 1 + ], + [ + 146, + 9, + 0, + 1, + 1 + ], + [ + 146, + 46, + 0, + 1, + 0 + ], + [ + 147, + 9, + 0, + 1, + 1 + ], + [ + 147, + 28, + 0, + 1, + 0 + ], + [ + 148, + 10, + 0, + 1, + 1 + ], + [ + 149, + 6, + 0, + 0, + 0 + ], + [ + 152, + 72, + 0, + 1, + 1 + ], + [ + 154, + 9, + 0, + 1, + 1 + ], + [ + 154, + 52, + 0, + 1, + 0 + ], + [ + 155, + 9, + 0, + 1, + 1 + ], + [ + 155, + 28, + 0, + 1, + 0 + ], + [ + 156, + 10, + 0, + 1, + 1 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 160, + 51, + 0, + 1, + 1 + ], + [ + 162, + 6, + 0, + 0, + 0 + ], + [ + 240, + 41, + 620, + 1, + 1 + ], + [ + 242, + 9, + 306, + 1, + 1 + ], + [ + 243, + 58, + 620, + 1, + 0 + ], + [ + 244, + 9, + 0, + 1, + 1 + ], + [ + 245, + 56, + 620, + 1, + 0 + ], + [ + 246, + 9, + 0, + 1, + 1 + ], + [ + 247, + 61, + 620, + 1, + 0 + ], + [ + 248, + 9, + 0, + 1, + 1 + ], + [ + 249, + 58, + 620, + 1, + 0 + ], + [ + 250, + 9, + 0, + 1, + 1 + ], + [ + 251, + 57, + 620, + 1, + 0 + ], + [ + 252, + 9, + 314, + 1, + 1 + ], + [ + 253, + 58, + 620, + 1, + 0 + ], + [ + 254, + 9, + 0, + 1, + 1 + ], + [ + 255, + 56, + 620, + 1, + 0 + ], + [ + 256, + 10, + 620, + 1, + 1 + ], + [ + 257, + 6, + 0, + 0, + 0 + ], + [ + 274, + 59, + 2395, + 1, + 1 + ], + [ + 274, + 131, + 0, + 0, + 0 + ], + [ + 292, + 31, + 346, + 1, + 1 + ], + [ + 294, + 6, + 0, + 0, + 0 + ], + [ + 298, + 66, + 86, + 1, + 1 + ], + [ + 300, + 6, + 0, + 0, + 0 + ], + [ + 329, + 151, + 0, + 1, + 1 + ], + [ + 333, + 26, + 0, + 1, + 1 + ], + [ + 335, + 10, + 0, + 1, + 1 + ], + [ + 335, + 16, + 0, + 1, + 1 + ], + [ + 337, + 10, + 0, + 1, + 1 + ], + [ + 338, + 65, + 0, + 1, + 1 + ], + [ + 342, + 10, + 0, + 1, + 1 + ], + [ + 342, + 71, + 0, + 1, + 1 + ], + [ + 346, + 10, + 0, + 1, + 1 + ], + [ + 346, + 16, + 0, + 1, + 1 + ], + [ + 350, + 10, + 0, + 1, + 1 + ], + [ + 351, + 69, + 0, + 1, + 0 + ], + [ + 352, + 6, + 0, + 0, + 0 + ], + [ + 360, + 57, + 1799, + 1, + 1 + ], + [ + 367, + 41, + 3374, + 1, + 1 + ], + [ + 367, + 55, + 1799, + 1, + 0 + ], + [ + 367, + 62, + 153, + 1, + 1 + ], + [ + 371, + 10, + 1646, + 1, + 1 + ], + [ + 376, + 78, + 153, + 1, + 1 + ], + [ + 382, + 10, + 1646, + 1, + 1 + ], + [ + 383, + 6, + 0, + 0, + 0 + ], + [ + 385, + 40, + 0, + 1, + 1 + ], + [ + 385, + 53, + 0, + 0, + 0 + ], + [ + 388, + 22, + 1755, + 1, + 1 + ], + [ + 388, + 51, + 0, + 1, + 1 + ], + [ + 388, + 66, + 1755, + 1, + 1 + ], + [ + 388, + 72, + 1755, + 1, + 1 + ], + [ + 388, + 88, + 0, + 1, + 1 + ], + [ + 388, + 90, + 0, + 0, + 0 + ], + [ + 390, + 87, + 911, + 1, + 1 + ], + [ + 391, + 36, + 605, + 1, + 1 + ], + [ + 393, + 10, + 306, + 1, + 1 + ], + [ + 393, + 16, + 306, + 1, + 1 + ], + [ + 395, + 10, + 0, + 1, + 1 + ], + [ + 396, + 6, + 0, + 0, + 0 + ], + [ + 398, + 64, + 352, + 1, + 1 + ], + [ + 399, + 36, + 352, + 1, + 1 + ], + [ + 401, + 10, + 0, + 1, + 1 + ], + [ + 401, + 16, + 0, + 1, + 1 + ], + [ + 403, + 10, + 0, + 1, + 1 + ], + [ + 404, + 6, + 0, + 0, + 0 + ], + [ + 406, + 72, + 536, + 1, + 1 + ], + [ + 407, + 36, + 536, + 1, + 1 + ], + [ + 409, + 10, + 0, + 1, + 1 + ], + [ + 409, + 16, + 0, + 1, + 1 + ], + [ + 411, + 10, + 0, + 1, + 1 + ], + [ + 412, + 6, + 0, + 0, + 0 + ], + [ + 419, + 42, + 605, + 1, + 1 + ], + [ + 421, + 6, + 0, + 0, + 0 + ], + [ + 423, + 33, + 0, + 1, + 1 + ], + [ + 423, + 46, + 0, + 0, + 0 + ], + [ + 424, + 24, + 0, + 1, + 1 + ], + [ + 424, + 37, + 0, + 0, + 0 + ], + [ + 426, + 39, + 1403, + 1, + 1 + ], + [ + 426, + 54, + 0, + 0, + 0 + ], + [ + 428, + 48, + 3853, + 1, + 1 + ], + [ + 429, + 55, + 3853, + 1, + 1 + ], + [ + 429, + 56, + 3853, + 1, + 0 + ], + [ + 430, + 6, + 0, + 0, + 0 + ], + [ + 432, + 95, + 2450, + 1, + 1 + ], + [ + 433, + 58, + 1403, + 1, + 1 + ], + [ + 433, + 85, + 2450, + 1, + 0 + ], + [ + 433, + 88, + 1047, + 1, + 1 + ], + [ + 433, + 104, + 2450, + 1, + 0 + ], + [ + 435, + 9, + 605, + 1, + 1 + ], + [ + 439, + 66, + 2450, + 1, + 0 + ], + [ + 440, + 9, + 1845, + 1, + 1 + ], + [ + 443, + 82, + 2450, + 1, + 0 + ], + [ + 444, + 9, + 0, + 1, + 1 + ], + [ + 446, + 20, + 0, + 1, + 1 + ], + [ + 446, + 25, + 0, + 1, + 0 + ], + [ + 447, + 145, + 2450, + 1, + 0 + ], + [ + 448, + 10, + 2450, + 1, + 1 + ], + [ + 449, + 6, + 0, + 0, + 0 + ], + [ + 451, + 42, + 1661, + 1, + 1 + ], + [ + 453, + 6, + 0, + 0, + 0 + ], + [ + 455, + 72, + 1403, + 1, + 1 + ], + [ + 455, + 132, + 0, + 0, + 0 + ], + [ + 456, + 72, + 90, + 1, + 1 + ], + [ + 456, + 168, + 90, + 1, + 1 + ], + [ + 456, + 173, + 90, + 1, + 0 + ], + [ + 456, + 175, + 0, + 0, + 0 + ], + [ + 457, + 72, + 259, + 1, + 1 + ], + [ + 457, + 168, + 259, + 1, + 1 + ], + [ + 457, + 169, + 259, + 1, + 0 + ], + [ + 457, + 171, + 0, + 0, + 0 + ], + [ + 458, + 72, + 0, + 1, + 1 + ], + [ + 458, + 168, + 0, + 1, + 1 + ], + [ + 458, + 169, + 0, + 1, + 0 + ], + [ + 458, + 171, + 0, + 0, + 0 + ], + [ + 459, + 72, + 0, + 1, + 1 + ], + [ + 459, + 168, + 0, + 1, + 1 + ], + [ + 459, + 169, + 0, + 1, + 0 + ], + [ + 459, + 171, + 0, + 0, + 0 + ], + [ + 460, + 72, + 54, + 1, + 1 + ], + [ + 460, + 168, + 54, + 1, + 1 + ], + [ + 460, + 169, + 54, + 1, + 0 + ], + [ + 460, + 171, + 0, + 0, + 0 + ], + [ + 461, + 72, + 0, + 1, + 1 + ], + [ + 461, + 168, + 0, + 1, + 1 + ], + [ + 461, + 169, + 0, + 1, + 0 + ], + [ + 461, + 171, + 0, + 0, + 0 + ], + [ + 462, + 72, + 0, + 1, + 1 + ], + [ + 462, + 168, + 0, + 1, + 1 + ], + [ + 462, + 169, + 0, + 1, + 0 + ], + [ + 462, + 171, + 0, + 0, + 0 + ], + [ + 463, + 72, + 0, + 1, + 1 + ], + [ + 463, + 168, + 0, + 1, + 1 + ], + [ + 463, + 169, + 0, + 1, + 0 + ], + [ + 463, + 171, + 0, + 0, + 0 + ], + [ + 464, + 72, + 90, + 1, + 1 + ], + [ + 464, + 168, + 90, + 1, + 1 + ], + [ + 464, + 169, + 90, + 1, + 0 + ], + [ + 464, + 171, + 0, + 0, + 0 + ], + [ + 465, + 72, + 0, + 1, + 1 + ], + [ + 465, + 168, + 0, + 1, + 1 + ], + [ + 465, + 169, + 0, + 1, + 0 + ], + [ + 465, + 171, + 0, + 0, + 0 + ], + [ + 466, + 72, + 0, + 1, + 1 + ], + [ + 466, + 168, + 0, + 1, + 1 + ], + [ + 466, + 169, + 0, + 1, + 0 + ], + [ + 466, + 171, + 0, + 0, + 0 + ], + [ + 467, + 72, + 0, + 1, + 1 + ], + [ + 467, + 168, + 0, + 1, + 1 + ], + [ + 467, + 169, + 0, + 1, + 0 + ], + [ + 467, + 171, + 0, + 0, + 0 + ], + [ + 468, + 72, + 0, + 1, + 1 + ], + [ + 468, + 168, + 0, + 1, + 1 + ], + [ + 468, + 169, + 0, + 1, + 0 + ], + [ + 468, + 171, + 0, + 0, + 0 + ], + [ + 469, + 72, + 1168, + 1, + 1 + ], + [ + 469, + 168, + 1168, + 1, + 1 + ], + [ + 469, + 170, + 1168, + 1, + 0 + ], + [ + 469, + 172, + 0, + 0, + 0 + ], + [ + 470, + 77, + 789, + 1, + 1 + ], + [ + 472, + 12, + 789, + 1, + 1 + ], + [ + 477, + 10, + 789, + 1, + 0 + ], + [ + 477, + 44, + 0, + 1, + 1 + ], + [ + 480, + 10, + 0, + 1, + 1 + ], + [ + 481, + 6, + 0, + 0, + 0 + ], + [ + 482, + 128, + 0, + 1, + 1 + ], + [ + 485, + 6, + 0, + 0, + 0 + ], + [ + 486, + 85, + 0, + 1, + 1 + ], + [ + 489, + 6, + 0, + 0, + 0 + ], + [ + 490, + 43, + 0, + 1, + 1 + ], + [ + 492, + 6, + 0, + 0, + 0 + ], + [ + 493, + 58, + 0, + 1, + 1 + ], + [ + 495, + 6, + 0, + 0, + 0 + ], + [ + 502, + 42, + 536, + 1, + 1 + ], + [ + 504, + 6, + 0, + 0, + 0 + ], + [ + 506, + 33, + 0, + 1, + 1 + ], + [ + 506, + 46, + 0, + 0, + 0 + ], + [ + 508, + 53, + 536, + 1, + 1 + ], + [ + 509, + 41, + 0, + 1, + 1 + ], + [ + 509, + 60, + 536, + 1, + 0 + ], + [ + 509, + 63, + 536, + 1, + 1 + ], + [ + 509, + 71, + 536, + 1, + 0 + ], + [ + 510, + 6, + 0, + 0, + 0 + ], + [ + 512, + 27, + 536, + 1, + 1 + ], + [ + 514, + 6, + 0, + 0, + 0 + ], + [ + 516, + 55, + 0, + 1, + 1 + ], + [ + 516, + 99, + 0, + 0, + 0 + ], + [ + 517, + 55, + 0, + 1, + 1 + ], + [ + 517, + 129, + 0, + 1, + 1 + ], + [ + 517, + 134, + 0, + 1, + 0 + ], + [ + 517, + 136, + 0, + 0, + 0 + ], + [ + 518, + 55, + 163, + 1, + 1 + ], + [ + 518, + 129, + 163, + 1, + 1 + ], + [ + 518, + 130, + 163, + 1, + 0 + ], + [ + 518, + 132, + 0, + 0, + 0 + ], + [ + 519, + 55, + 0, + 1, + 1 + ], + [ + 519, + 129, + 0, + 1, + 1 + ], + [ + 519, + 130, + 0, + 1, + 0 + ], + [ + 519, + 132, + 0, + 0, + 0 + ], + [ + 520, + 55, + 0, + 1, + 1 + ], + [ + 520, + 129, + 0, + 1, + 1 + ], + [ + 520, + 130, + 0, + 1, + 0 + ], + [ + 520, + 132, + 0, + 0, + 0 + ], + [ + 521, + 55, + 36, + 1, + 1 + ], + [ + 521, + 129, + 36, + 1, + 1 + ], + [ + 521, + 130, + 36, + 1, + 0 + ], + [ + 521, + 132, + 0, + 0, + 0 + ], + [ + 522, + 55, + 0, + 1, + 1 + ], + [ + 522, + 129, + 0, + 1, + 1 + ], + [ + 522, + 130, + 0, + 1, + 0 + ], + [ + 522, + 132, + 0, + 0, + 0 + ], + [ + 523, + 55, + 0, + 1, + 1 + ], + [ + 523, + 129, + 0, + 1, + 1 + ], + [ + 523, + 130, + 0, + 1, + 0 + ], + [ + 523, + 132, + 0, + 0, + 0 + ], + [ + 524, + 55, + 0, + 1, + 1 + ], + [ + 524, + 129, + 0, + 1, + 1 + ], + [ + 524, + 130, + 0, + 1, + 0 + ], + [ + 524, + 132, + 0, + 0, + 0 + ], + [ + 525, + 55, + 0, + 1, + 1 + ], + [ + 525, + 129, + 0, + 1, + 1 + ], + [ + 525, + 130, + 0, + 1, + 0 + ], + [ + 525, + 132, + 0, + 0, + 0 + ], + [ + 526, + 55, + 0, + 1, + 1 + ], + [ + 526, + 129, + 0, + 1, + 1 + ], + [ + 526, + 130, + 0, + 1, + 0 + ], + [ + 526, + 132, + 0, + 0, + 0 + ], + [ + 527, + 55, + 0, + 1, + 1 + ], + [ + 527, + 129, + 0, + 1, + 1 + ], + [ + 527, + 130, + 0, + 1, + 0 + ], + [ + 527, + 132, + 0, + 0, + 0 + ], + [ + 528, + 55, + 0, + 1, + 1 + ], + [ + 528, + 129, + 0, + 1, + 1 + ], + [ + 528, + 130, + 0, + 1, + 0 + ], + [ + 528, + 132, + 0, + 0, + 0 + ], + [ + 529, + 55, + 31, + 1, + 1 + ], + [ + 529, + 129, + 31, + 1, + 1 + ], + [ + 529, + 130, + 31, + 1, + 0 + ], + [ + 529, + 132, + 0, + 0, + 0 + ], + [ + 530, + 55, + 306, + 1, + 1 + ], + [ + 530, + 129, + 306, + 1, + 1 + ], + [ + 530, + 131, + 306, + 1, + 0 + ], + [ + 530, + 133, + 0, + 0, + 0 + ], + [ + 531, + 60, + 0, + 1, + 1 + ], + [ + 532, + 12, + 0, + 1, + 1 + ], + [ + 538, + 10, + 0, + 1, + 0 + ], + [ + 538, + 44, + 0, + 1, + 1 + ], + [ + 541, + 10, + 0, + 1, + 1 + ], + [ + 542, + 6, + 0, + 0, + 0 + ], + [ + 549, + 42, + 352, + 1, + 1 + ], + [ + 552, + 6, + 0, + 0, + 0 + ], + [ + 554, + 33, + 0, + 1, + 1 + ], + [ + 554, + 46, + 0, + 0, + 0 + ], + [ + 555, + 21, + 0, + 1, + 1 + ], + [ + 555, + 33, + 0, + 0, + 0 + ], + [ + 559, + 53, + 352, + 1, + 1 + ], + [ + 560, + 72, + 0, + 1, + 1 + ], + [ + 560, + 91, + 352, + 1, + 0 + ], + [ + 560, + 94, + 352, + 1, + 1 + ], + [ + 560, + 102, + 352, + 1, + 0 + ], + [ + 561, + 6, + 0, + 0, + 0 + ], + [ + 563, + 64, + 0, + 1, + 1 + ], + [ + 563, + 108, + 0, + 0, + 0 + ], + [ + 564, + 64, + 0, + 1, + 1 + ], + [ + 564, + 134, + 0, + 0, + 0 + ], + [ + 565, + 64, + 0, + 1, + 1 + ], + [ + 565, + 130, + 0, + 0, + 0 + ], + [ + 566, + 64, + 0, + 1, + 1 + ], + [ + 566, + 130, + 0, + 0, + 0 + ], + [ + 567, + 64, + 0, + 1, + 1 + ], + [ + 567, + 130, + 0, + 0, + 0 + ], + [ + 568, + 64, + 0, + 1, + 1 + ], + [ + 568, + 130, + 0, + 0, + 0 + ], + [ + 569, + 64, + 0, + 1, + 1 + ], + [ + 569, + 130, + 0, + 0, + 0 + ], + [ + 570, + 64, + 0, + 1, + 1 + ], + [ + 570, + 130, + 0, + 0, + 0 + ], + [ + 571, + 64, + 0, + 1, + 1 + ], + [ + 571, + 130, + 0, + 0, + 0 + ], + [ + 572, + 64, + 0, + 1, + 1 + ], + [ + 572, + 130, + 0, + 0, + 0 + ], + [ + 573, + 64, + 0, + 1, + 1 + ], + [ + 573, + 130, + 0, + 0, + 0 + ], + [ + 574, + 64, + 0, + 1, + 1 + ], + [ + 574, + 130, + 0, + 0, + 0 + ], + [ + 575, + 64, + 0, + 1, + 1 + ], + [ + 575, + 130, + 0, + 0, + 0 + ], + [ + 576, + 64, + 0, + 1, + 1 + ], + [ + 576, + 130, + 0, + 0, + 0 + ], + [ + 577, + 64, + 0, + 1, + 1 + ], + [ + 577, + 131, + 0, + 0, + 0 + ], + [ + 578, + 69, + 352, + 1, + 1 + ], + [ + 579, + 12, + 352, + 1, + 1 + ], + [ + 586, + 10, + 352, + 1, + 0 + ], + [ + 586, + 44, + 0, + 1, + 1 + ], + [ + 589, + 10, + 0, + 1, + 1 + ], + [ + 590, + 6, + 0, + 0, + 0 + ], + [ + 592, + 120, + 0, + 1, + 1 + ], + [ + 596, + 6, + 0, + 0, + 0 + ], + [ + 597, + 79, + 0, + 1, + 1 + ], + [ + 600, + 6, + 0, + 0, + 0 + ], + [ + 601, + 52, + 0, + 1, + 1 + ], + [ + 605, + 6, + 0, + 0, + 0 + ], + [ + 616, + 28, + 459, + 1, + 1 + ], + [ + 616, + 51, + 0, + 0, + 0 + ], + [ + 618, + 87, + 0, + 1, + 1 + ], + [ + 620, + 6, + 0, + 0, + 0 + ], + [ + 622, + 64, + 153, + 1, + 1 + ], + [ + 624, + 6, + 0, + 0, + 0 + ], + [ + 626, + 72, + 0, + 1, + 1 + ], + [ + 628, + 6, + 0, + 0, + 0 + ], + [ + 636, + 35, + 306, + 1, + 1 + ], + [ + 636, + 61, + 0, + 0, + 0 + ], + [ + 638, + 39, + 306, + 1, + 1 + ], + [ + 638, + 55, + 0, + 0, + 0 + ], + [ + 640, + 42, + 459, + 1, + 1 + ], + [ + 642, + 6, + 0, + 0, + 0 + ], + [ + 644, + 48, + 0, + 1, + 1 + ], + [ + 644, + 63, + 0, + 0, + 0 + ], + [ + 645, + 68, + 0, + 1, + 1 + ], + [ + 645, + 102, + 0, + 1, + 1 + ], + [ + 645, + 107, + 0, + 1, + 0 + ], + [ + 645, + 109, + 0, + 0, + 0 + ], + [ + 646, + 68, + 153, + 1, + 1 + ], + [ + 646, + 102, + 153, + 1, + 1 + ], + [ + 646, + 103, + 153, + 1, + 0 + ], + [ + 646, + 105, + 0, + 0, + 0 + ], + [ + 647, + 68, + 0, + 1, + 1 + ], + [ + 647, + 102, + 0, + 1, + 1 + ], + [ + 647, + 103, + 0, + 1, + 0 + ], + [ + 647, + 105, + 0, + 0, + 0 + ], + [ + 648, + 68, + 0, + 1, + 1 + ], + [ + 648, + 102, + 0, + 1, + 1 + ], + [ + 648, + 103, + 0, + 1, + 0 + ], + [ + 648, + 105, + 0, + 0, + 0 + ], + [ + 649, + 68, + 0, + 1, + 1 + ], + [ + 649, + 102, + 0, + 1, + 1 + ], + [ + 649, + 103, + 0, + 1, + 0 + ], + [ + 649, + 105, + 0, + 0, + 0 + ], + [ + 650, + 68, + 0, + 1, + 1 + ], + [ + 650, + 102, + 0, + 1, + 1 + ], + [ + 650, + 103, + 0, + 1, + 0 + ], + [ + 650, + 105, + 0, + 0, + 0 + ], + [ + 651, + 68, + 0, + 1, + 1 + ], + [ + 651, + 102, + 0, + 1, + 1 + ], + [ + 651, + 103, + 0, + 1, + 0 + ], + [ + 651, + 105, + 0, + 0, + 0 + ], + [ + 652, + 68, + 0, + 1, + 1 + ], + [ + 652, + 102, + 0, + 1, + 1 + ], + [ + 652, + 103, + 0, + 1, + 0 + ], + [ + 652, + 105, + 0, + 0, + 0 + ], + [ + 653, + 68, + 0, + 1, + 1 + ], + [ + 653, + 102, + 0, + 1, + 1 + ], + [ + 653, + 103, + 0, + 1, + 0 + ], + [ + 653, + 105, + 0, + 0, + 0 + ], + [ + 654, + 68, + 0, + 1, + 1 + ], + [ + 654, + 102, + 0, + 1, + 1 + ], + [ + 654, + 103, + 0, + 1, + 0 + ], + [ + 654, + 105, + 0, + 0, + 0 + ], + [ + 655, + 68, + 0, + 1, + 1 + ], + [ + 655, + 102, + 0, + 1, + 1 + ], + [ + 655, + 103, + 0, + 1, + 0 + ], + [ + 655, + 105, + 0, + 0, + 0 + ], + [ + 656, + 68, + 0, + 1, + 1 + ], + [ + 656, + 102, + 0, + 1, + 1 + ], + [ + 656, + 103, + 0, + 1, + 0 + ], + [ + 656, + 105, + 0, + 0, + 0 + ], + [ + 657, + 68, + 0, + 1, + 1 + ], + [ + 657, + 102, + 0, + 1, + 1 + ], + [ + 657, + 103, + 0, + 1, + 0 + ], + [ + 657, + 105, + 0, + 0, + 0 + ], + [ + 658, + 68, + 306, + 1, + 1 + ], + [ + 658, + 102, + 306, + 1, + 1 + ], + [ + 658, + 104, + 306, + 1, + 0 + ], + [ + 658, + 106, + 0, + 0, + 0 + ], + [ + 659, + 72, + 153, + 1, + 1 + ], + [ + 659, + 114, + 0, + 0, + 0 + ], + [ + 660, + 128, + 0, + 1, + 1 + ], + [ + 662, + 6, + 0, + 0, + 0 + ], + [ + 663, + 85, + 0, + 1, + 1 + ], + [ + 665, + 6, + 0, + 0, + 0 + ], + [ + 666, + 43, + 0, + 1, + 1 + ], + [ + 666, + 88, + 0, + 0, + 0 + ], + [ + 667, + 58, + 0, + 1, + 1 + ], + [ + 667, + 103, + 0, + 0, + 0 + ], + [ + 676, + 35, + 153, + 1, + 1 + ], + [ + 676, + 61, + 0, + 0, + 0 + ], + [ + 678, + 37, + 0, + 1, + 1 + ], + [ + 678, + 52, + 0, + 0, + 0 + ], + [ + 679, + 55, + 0, + 1, + 1 + ], + [ + 679, + 71, + 0, + 0, + 0 + ], + [ + 680, + 55, + 0, + 1, + 1 + ], + [ + 680, + 67, + 0, + 0, + 0 + ], + [ + 681, + 55, + 0, + 1, + 1 + ], + [ + 681, + 67, + 0, + 0, + 0 + ], + [ + 682, + 55, + 0, + 1, + 1 + ], + [ + 682, + 67, + 0, + 0, + 0 + ], + [ + 683, + 55, + 0, + 1, + 1 + ], + [ + 683, + 67, + 0, + 0, + 0 + ], + [ + 684, + 55, + 0, + 1, + 1 + ], + [ + 684, + 67, + 0, + 0, + 0 + ], + [ + 685, + 55, + 0, + 1, + 1 + ], + [ + 685, + 67, + 0, + 0, + 0 + ], + [ + 686, + 55, + 0, + 1, + 1 + ], + [ + 686, + 67, + 0, + 0, + 0 + ], + [ + 687, + 55, + 0, + 1, + 1 + ], + [ + 687, + 67, + 0, + 0, + 0 + ], + [ + 688, + 55, + 0, + 1, + 1 + ], + [ + 688, + 67, + 0, + 0, + 0 + ], + [ + 689, + 55, + 0, + 1, + 1 + ], + [ + 689, + 67, + 0, + 0, + 0 + ], + [ + 690, + 55, + 0, + 1, + 1 + ], + [ + 690, + 67, + 0, + 0, + 0 + ], + [ + 691, + 55, + 0, + 1, + 1 + ], + [ + 691, + 67, + 0, + 0, + 0 + ], + [ + 692, + 55, + 0, + 1, + 1 + ], + [ + 692, + 68, + 0, + 0, + 0 + ], + [ + 693, + 59, + 0, + 1, + 1 + ], + [ + 693, + 101, + 0, + 0, + 0 + ], + [ + 694, + 111, + 0, + 1, + 1 + ], + [ + 696, + 6, + 0, + 0, + 0 + ], + [ + 697, + 70, + 0, + 1, + 1 + ], + [ + 699, + 6, + 0, + 0, + 0 + ], + [ + 700, + 43, + 0, + 1, + 1 + ], + [ + 702, + 6, + 0, + 0, + 0 + ], + [ + 708, + 35, + 0, + 1, + 1 + ], + [ + 708, + 61, + 0, + 0, + 0 + ], + [ + 710, + 27, + 0, + 1, + 1 + ], + [ + 712, + 6, + 0, + 0, + 0 + ], + [ + 714, + 30, + 0, + 1, + 1 + ], + [ + 714, + 45, + 0, + 0, + 0 + ], + [ + 715, + 55, + 0, + 1, + 1 + ], + [ + 715, + 75, + 0, + 1, + 1 + ], + [ + 715, + 80, + 0, + 1, + 0 + ], + [ + 715, + 82, + 0, + 0, + 0 + ], + [ + 716, + 55, + 0, + 1, + 1 + ], + [ + 716, + 75, + 0, + 1, + 1 + ], + [ + 716, + 76, + 0, + 1, + 0 + ], + [ + 716, + 78, + 0, + 0, + 0 + ], + [ + 717, + 55, + 0, + 1, + 1 + ], + [ + 717, + 75, + 0, + 1, + 1 + ], + [ + 717, + 76, + 0, + 1, + 0 + ], + [ + 717, + 78, + 0, + 0, + 0 + ], + [ + 718, + 55, + 0, + 1, + 1 + ], + [ + 718, + 75, + 0, + 1, + 1 + ], + [ + 718, + 76, + 0, + 1, + 0 + ], + [ + 718, + 78, + 0, + 0, + 0 + ], + [ + 719, + 55, + 0, + 1, + 1 + ], + [ + 719, + 75, + 0, + 1, + 1 + ], + [ + 719, + 76, + 0, + 1, + 0 + ], + [ + 719, + 78, + 0, + 0, + 0 + ], + [ + 720, + 55, + 0, + 1, + 1 + ], + [ + 720, + 75, + 0, + 1, + 1 + ], + [ + 720, + 76, + 0, + 1, + 0 + ], + [ + 720, + 78, + 0, + 0, + 0 + ], + [ + 721, + 55, + 0, + 1, + 1 + ], + [ + 721, + 75, + 0, + 1, + 1 + ], + [ + 721, + 76, + 0, + 1, + 0 + ], + [ + 721, + 78, + 0, + 0, + 0 + ], + [ + 722, + 55, + 0, + 1, + 1 + ], + [ + 722, + 75, + 0, + 1, + 1 + ], + [ + 722, + 76, + 0, + 1, + 0 + ], + [ + 722, + 78, + 0, + 0, + 0 + ], + [ + 723, + 55, + 0, + 1, + 1 + ], + [ + 723, + 75, + 0, + 1, + 1 + ], + [ + 723, + 76, + 0, + 1, + 0 + ], + [ + 723, + 78, + 0, + 0, + 0 + ], + [ + 724, + 55, + 0, + 1, + 1 + ], + [ + 724, + 75, + 0, + 1, + 1 + ], + [ + 724, + 76, + 0, + 1, + 0 + ], + [ + 724, + 78, + 0, + 0, + 0 + ], + [ + 725, + 55, + 0, + 1, + 1 + ], + [ + 725, + 75, + 0, + 1, + 1 + ], + [ + 725, + 76, + 0, + 1, + 0 + ], + [ + 725, + 78, + 0, + 0, + 0 + ], + [ + 726, + 55, + 0, + 1, + 1 + ], + [ + 726, + 75, + 0, + 1, + 1 + ], + [ + 726, + 76, + 0, + 1, + 0 + ], + [ + 726, + 78, + 0, + 0, + 0 + ], + [ + 727, + 55, + 0, + 1, + 1 + ], + [ + 727, + 75, + 0, + 1, + 1 + ], + [ + 727, + 76, + 0, + 1, + 0 + ], + [ + 727, + 78, + 0, + 0, + 0 + ], + [ + 728, + 55, + 0, + 1, + 1 + ], + [ + 728, + 75, + 0, + 1, + 1 + ], + [ + 728, + 77, + 0, + 1, + 0 + ], + [ + 728, + 79, + 0, + 0, + 0 + ], + [ + 729, + 59, + 0, + 1, + 1 + ], + [ + 729, + 101, + 0, + 0, + 0 + ], + [ + 750, + 74, + 352, + 1, + 1 + ], + [ + 752, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 422, + "covered": 158, + "percent": 37 + }, + "functions": { + "count": 212, + "covered": 56, + "percent": 26 + }, + "instantiations": { + "count": 212, + "covered": 56, + "percent": 26 + }, + "regions": { + "count": 275, + "covered": 79, + "notcovered": 196, + "percent": 28 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift", + "segments": [ + [ + 55, + 7, + 1, + 1, + 1 + ], + [ + 57, + 20, + 4, + 1, + 1 + ], + [ + 58, + 25, + 4, + 1, + 1 + ], + [ + 58, + 72, + 4, + 1, + 0 + ], + [ + 59, + 81, + 4, + 1, + 1 + ], + [ + 60, + 72, + 2, + 1, + 1 + ], + [ + 62, + 18, + 2, + 1, + 1 + ], + [ + 64, + 14, + 4, + 1, + 0 + ], + [ + 65, + 10, + 1, + 1, + 0 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 90, + 7, + 1, + 1, + 1 + ], + [ + 92, + 20, + 2, + 1, + 1 + ], + [ + 93, + 25, + 2, + 1, + 1 + ], + [ + 93, + 72, + 2, + 1, + 0 + ], + [ + 94, + 91, + 2, + 1, + 1 + ], + [ + 95, + 121, + 0, + 1, + 1 + ], + [ + 97, + 18, + 2, + 1, + 1 + ], + [ + 99, + 14, + 2, + 1, + 0 + ], + [ + 100, + 10, + 1, + 1, + 0 + ], + [ + 101, + 6, + 0, + 0, + 0 + ], + [ + 125, + 7, + 1, + 1, + 1 + ], + [ + 127, + 20, + 6, + 1, + 1 + ], + [ + 128, + 25, + 6, + 1, + 1 + ], + [ + 128, + 72, + 6, + 1, + 0 + ], + [ + 129, + 100, + 6, + 1, + 1 + ], + [ + 130, + 168, + 4, + 1, + 1 + ], + [ + 132, + 18, + 2, + 1, + 1 + ], + [ + 134, + 14, + 6, + 1, + 0 + ], + [ + 135, + 10, + 1, + 1, + 0 + ], + [ + 136, + 6, + 0, + 0, + 0 + ], + [ + 165, + 7, + 1, + 1, + 1 + ], + [ + 167, + 20, + 4, + 1, + 1 + ], + [ + 168, + 25, + 4, + 1, + 1 + ], + [ + 168, + 71, + 4, + 1, + 0 + ], + [ + 169, + 81, + 4, + 1, + 1 + ], + [ + 170, + 72, + 2, + 1, + 1 + ], + [ + 172, + 18, + 2, + 1, + 1 + ], + [ + 174, + 14, + 4, + 1, + 0 + ], + [ + 175, + 10, + 1, + 1, + 0 + ], + [ + 176, + 6, + 0, + 0, + 0 + ], + [ + 200, + 7, + 1, + 1, + 1 + ], + [ + 202, + 20, + 2, + 1, + 1 + ], + [ + 203, + 25, + 2, + 1, + 1 + ], + [ + 203, + 71, + 2, + 1, + 0 + ], + [ + 204, + 91, + 2, + 1, + 1 + ], + [ + 205, + 121, + 0, + 1, + 1 + ], + [ + 207, + 18, + 2, + 1, + 1 + ], + [ + 209, + 14, + 2, + 1, + 0 + ], + [ + 210, + 10, + 1, + 1, + 0 + ], + [ + 211, + 6, + 0, + 0, + 0 + ], + [ + 235, + 7, + 1, + 1, + 1 + ], + [ + 237, + 20, + 6, + 1, + 1 + ], + [ + 238, + 25, + 6, + 1, + 1 + ], + [ + 238, + 71, + 6, + 1, + 0 + ], + [ + 239, + 100, + 6, + 1, + 1 + ], + [ + 240, + 168, + 4, + 1, + 1 + ], + [ + 242, + 18, + 2, + 1, + 1 + ], + [ + 244, + 14, + 6, + 1, + 0 + ], + [ + 245, + 10, + 1, + 1, + 0 + ], + [ + 246, + 6, + 0, + 0, + 0 + ], + [ + 275, + 7, + 1, + 1, + 1 + ], + [ + 276, + 64, + 0, + 1, + 1 + ], + [ + 278, + 10, + 1, + 1, + 1 + ], + [ + 280, + 45, + 4, + 1, + 1 + ], + [ + 281, + 25, + 4, + 1, + 1 + ], + [ + 281, + 99, + 4, + 1, + 0 + ], + [ + 282, + 81, + 4, + 1, + 1 + ], + [ + 283, + 72, + 2, + 1, + 1 + ], + [ + 285, + 18, + 2, + 1, + 1 + ], + [ + 286, + 131, + 0, + 1, + 1 + ], + [ + 288, + 18, + 2, + 1, + 1 + ], + [ + 290, + 14, + 4, + 1, + 0 + ], + [ + 291, + 10, + 1, + 1, + 0 + ], + [ + 292, + 6, + 0, + 0, + 0 + ], + [ + 316, + 7, + 0, + 1, + 1 + ], + [ + 317, + 64, + 0, + 1, + 1 + ], + [ + 319, + 10, + 0, + 1, + 1 + ], + [ + 321, + 45, + 0, + 1, + 1 + ], + [ + 322, + 25, + 0, + 1, + 1 + ], + [ + 322, + 99, + 0, + 1, + 0 + ], + [ + 323, + 91, + 0, + 1, + 1 + ], + [ + 324, + 121, + 0, + 1, + 1 + ], + [ + 326, + 18, + 0, + 1, + 1 + ], + [ + 327, + 131, + 0, + 1, + 1 + ], + [ + 329, + 18, + 0, + 1, + 1 + ], + [ + 331, + 14, + 0, + 1, + 0 + ], + [ + 333, + 6, + 0, + 0, + 0 + ], + [ + 357, + 7, + 1, + 1, + 1 + ], + [ + 358, + 64, + 0, + 1, + 1 + ], + [ + 360, + 10, + 1, + 1, + 1 + ], + [ + 362, + 45, + 6, + 1, + 1 + ], + [ + 363, + 25, + 6, + 1, + 1 + ], + [ + 363, + 99, + 6, + 1, + 0 + ], + [ + 364, + 100, + 6, + 1, + 1 + ], + [ + 365, + 168, + 4, + 1, + 1 + ], + [ + 367, + 18, + 2, + 1, + 1 + ], + [ + 368, + 131, + 0, + 1, + 1 + ], + [ + 370, + 18, + 2, + 1, + 1 + ], + [ + 372, + 14, + 6, + 1, + 0 + ], + [ + 373, + 10, + 1, + 1, + 0 + ], + [ + 374, + 6, + 0, + 0, + 0 + ], + [ + 403, + 7, + 1, + 1, + 1 + ], + [ + 407, + 20, + 4, + 1, + 1 + ], + [ + 408, + 25, + 4, + 1, + 1 + ], + [ + 408, + 87, + 4, + 1, + 0 + ], + [ + 409, + 81, + 4, + 1, + 1 + ], + [ + 410, + 72, + 2, + 1, + 1 + ], + [ + 412, + 18, + 2, + 1, + 1 + ], + [ + 414, + 14, + 4, + 1, + 0 + ], + [ + 415, + 10, + 1, + 1, + 0 + ], + [ + 416, + 6, + 0, + 0, + 0 + ], + [ + 440, + 7, + 1, + 1, + 1 + ], + [ + 444, + 20, + 2, + 1, + 1 + ], + [ + 445, + 25, + 2, + 1, + 1 + ], + [ + 445, + 87, + 2, + 1, + 0 + ], + [ + 446, + 91, + 2, + 1, + 1 + ], + [ + 447, + 121, + 0, + 1, + 1 + ], + [ + 449, + 18, + 2, + 1, + 1 + ], + [ + 451, + 14, + 2, + 1, + 0 + ], + [ + 452, + 10, + 1, + 1, + 0 + ], + [ + 453, + 6, + 0, + 0, + 0 + ], + [ + 477, + 7, + 1, + 1, + 1 + ], + [ + 481, + 20, + 6, + 1, + 1 + ], + [ + 482, + 25, + 6, + 1, + 1 + ], + [ + 482, + 87, + 6, + 1, + 0 + ], + [ + 483, + 100, + 6, + 1, + 1 + ], + [ + 484, + 168, + 4, + 1, + 1 + ], + [ + 486, + 18, + 2, + 1, + 1 + ], + [ + 488, + 14, + 6, + 1, + 0 + ], + [ + 489, + 10, + 1, + 1, + 0 + ], + [ + 490, + 6, + 0, + 0, + 0 + ], + [ + 522, + 7, + 2, + 1, + 1 + ], + [ + 524, + 20, + 6, + 1, + 1 + ], + [ + 525, + 25, + 6, + 1, + 1 + ], + [ + 525, + 105, + 6, + 1, + 0 + ], + [ + 526, + 25, + 6, + 1, + 1 + ], + [ + 526, + 71, + 6, + 1, + 0 + ], + [ + 528, + 81, + 6, + 1, + 1 + ], + [ + 529, + 72, + 2, + 1, + 1 + ], + [ + 531, + 18, + 4, + 1, + 1 + ], + [ + 532, + 20, + 4, + 1, + 1 + ], + [ + 535, + 18, + 4, + 1, + 0 + ], + [ + 535, + 25, + 2, + 1, + 1 + ], + [ + 539, + 18, + 4, + 1, + 1 + ], + [ + 540, + 14, + 6, + 1, + 0 + ], + [ + 542, + 10, + 2, + 1, + 0 + ], + [ + 543, + 6, + 0, + 0, + 0 + ], + [ + 570, + 7, + 1, + 1, + 1 + ], + [ + 572, + 20, + 2, + 1, + 1 + ], + [ + 573, + 25, + 2, + 1, + 1 + ], + [ + 573, + 105, + 2, + 1, + 0 + ], + [ + 574, + 25, + 2, + 1, + 1 + ], + [ + 574, + 71, + 2, + 1, + 0 + ], + [ + 576, + 91, + 2, + 1, + 1 + ], + [ + 577, + 121, + 0, + 1, + 1 + ], + [ + 579, + 18, + 2, + 1, + 1 + ], + [ + 580, + 20, + 2, + 1, + 1 + ], + [ + 583, + 18, + 2, + 1, + 0 + ], + [ + 583, + 25, + 0, + 1, + 1 + ], + [ + 587, + 18, + 2, + 1, + 1 + ], + [ + 588, + 14, + 2, + 1, + 0 + ], + [ + 590, + 10, + 1, + 1, + 0 + ], + [ + 591, + 6, + 0, + 0, + 0 + ], + [ + 618, + 7, + 1, + 1, + 1 + ], + [ + 620, + 20, + 6, + 1, + 1 + ], + [ + 621, + 25, + 6, + 1, + 1 + ], + [ + 621, + 105, + 6, + 1, + 0 + ], + [ + 622, + 25, + 6, + 1, + 1 + ], + [ + 622, + 71, + 6, + 1, + 0 + ], + [ + 624, + 100, + 6, + 1, + 1 + ], + [ + 625, + 168, + 4, + 1, + 1 + ], + [ + 627, + 18, + 2, + 1, + 1 + ], + [ + 628, + 20, + 2, + 1, + 1 + ], + [ + 631, + 18, + 2, + 1, + 0 + ], + [ + 631, + 25, + 0, + 1, + 1 + ], + [ + 635, + 18, + 2, + 1, + 1 + ], + [ + 636, + 14, + 6, + 1, + 0 + ], + [ + 637, + 10, + 1, + 1, + 0 + ], + [ + 638, + 6, + 0, + 0, + 0 + ], + [ + 670, + 7, + 1, + 1, + 1 + ], + [ + 672, + 20, + 4, + 1, + 1 + ], + [ + 673, + 25, + 4, + 1, + 1 + ], + [ + 673, + 103, + 4, + 1, + 0 + ], + [ + 674, + 25, + 4, + 1, + 1 + ], + [ + 674, + 71, + 4, + 1, + 0 + ], + [ + 675, + 81, + 4, + 1, + 1 + ], + [ + 676, + 72, + 2, + 1, + 1 + ], + [ + 678, + 18, + 2, + 1, + 1 + ], + [ + 679, + 20, + 2, + 1, + 1 + ], + [ + 682, + 18, + 2, + 1, + 0 + ], + [ + 682, + 25, + 0, + 1, + 1 + ], + [ + 686, + 18, + 2, + 1, + 1 + ], + [ + 687, + 14, + 4, + 1, + 0 + ], + [ + 688, + 10, + 1, + 1, + 0 + ], + [ + 689, + 6, + 0, + 0, + 0 + ], + [ + 723, + 11, + 1, + 1, + 1 + ], + [ + 725, + 20, + 6, + 1, + 1 + ], + [ + 726, + 25, + 6, + 1, + 1 + ], + [ + 726, + 103, + 6, + 1, + 0 + ], + [ + 727, + 25, + 6, + 1, + 1 + ], + [ + 727, + 71, + 6, + 1, + 0 + ], + [ + 728, + 81, + 6, + 1, + 1 + ], + [ + 729, + 72, + 2, + 1, + 1 + ], + [ + 731, + 18, + 4, + 1, + 1 + ], + [ + 732, + 20, + 4, + 1, + 1 + ], + [ + 735, + 50, + 2, + 1, + 1 + ], + [ + 737, + 22, + 4, + 1, + 1 + ], + [ + 739, + 18, + 4, + 1, + 0 + ], + [ + 739, + 25, + 0, + 1, + 1 + ], + [ + 743, + 18, + 4, + 1, + 1 + ], + [ + 744, + 14, + 6, + 1, + 0 + ], + [ + 745, + 10, + 1, + 1, + 0 + ], + [ + 746, + 6, + 0, + 0, + 0 + ], + [ + 773, + 7, + 1, + 1, + 1 + ], + [ + 775, + 20, + 2, + 1, + 1 + ], + [ + 776, + 25, + 2, + 1, + 1 + ], + [ + 776, + 103, + 2, + 1, + 0 + ], + [ + 777, + 25, + 2, + 1, + 1 + ], + [ + 777, + 71, + 2, + 1, + 0 + ], + [ + 778, + 91, + 2, + 1, + 1 + ], + [ + 779, + 121, + 0, + 1, + 1 + ], + [ + 781, + 18, + 2, + 1, + 1 + ], + [ + 782, + 20, + 2, + 1, + 1 + ], + [ + 785, + 18, + 2, + 1, + 0 + ], + [ + 785, + 25, + 0, + 1, + 1 + ], + [ + 789, + 18, + 2, + 1, + 1 + ], + [ + 790, + 14, + 2, + 1, + 0 + ], + [ + 791, + 10, + 1, + 1, + 0 + ], + [ + 792, + 6, + 0, + 0, + 0 + ], + [ + 821, + 11, + 0, + 1, + 1 + ], + [ + 823, + 20, + 0, + 1, + 1 + ], + [ + 824, + 25, + 0, + 1, + 1 + ], + [ + 824, + 103, + 0, + 1, + 0 + ], + [ + 825, + 25, + 0, + 1, + 1 + ], + [ + 825, + 71, + 0, + 1, + 0 + ], + [ + 826, + 91, + 0, + 1, + 1 + ], + [ + 827, + 121, + 0, + 1, + 1 + ], + [ + 829, + 18, + 0, + 1, + 1 + ], + [ + 830, + 20, + 0, + 1, + 1 + ], + [ + 833, + 50, + 0, + 1, + 1 + ], + [ + 835, + 22, + 0, + 1, + 1 + ], + [ + 837, + 18, + 0, + 1, + 0 + ], + [ + 837, + 25, + 0, + 1, + 1 + ], + [ + 841, + 18, + 0, + 1, + 1 + ], + [ + 842, + 14, + 0, + 1, + 0 + ], + [ + 844, + 6, + 0, + 0, + 0 + ], + [ + 871, + 7, + 1, + 1, + 1 + ], + [ + 873, + 20, + 6, + 1, + 1 + ], + [ + 874, + 25, + 6, + 1, + 1 + ], + [ + 874, + 103, + 6, + 1, + 0 + ], + [ + 875, + 25, + 6, + 1, + 1 + ], + [ + 875, + 71, + 6, + 1, + 0 + ], + [ + 876, + 100, + 6, + 1, + 1 + ], + [ + 877, + 168, + 4, + 1, + 1 + ], + [ + 879, + 18, + 2, + 1, + 1 + ], + [ + 880, + 20, + 2, + 1, + 1 + ], + [ + 883, + 18, + 2, + 1, + 0 + ], + [ + 883, + 25, + 0, + 1, + 1 + ], + [ + 887, + 18, + 2, + 1, + 1 + ], + [ + 888, + 14, + 6, + 1, + 0 + ], + [ + 889, + 10, + 1, + 1, + 0 + ], + [ + 890, + 6, + 0, + 0, + 0 + ], + [ + 919, + 11, + 1, + 1, + 1 + ], + [ + 921, + 20, + 6, + 1, + 1 + ], + [ + 922, + 25, + 6, + 1, + 1 + ], + [ + 922, + 103, + 6, + 1, + 0 + ], + [ + 923, + 25, + 6, + 1, + 1 + ], + [ + 923, + 71, + 6, + 1, + 0 + ], + [ + 924, + 100, + 6, + 1, + 1 + ], + [ + 925, + 168, + 2, + 1, + 1 + ], + [ + 927, + 18, + 4, + 1, + 1 + ], + [ + 928, + 20, + 4, + 1, + 1 + ], + [ + 931, + 50, + 2, + 1, + 1 + ], + [ + 933, + 22, + 4, + 1, + 1 + ], + [ + 935, + 18, + 4, + 1, + 0 + ], + [ + 935, + 25, + 0, + 1, + 1 + ], + [ + 939, + 18, + 4, + 1, + 1 + ], + [ + 940, + 14, + 6, + 1, + 0 + ], + [ + 941, + 10, + 1, + 1, + 0 + ], + [ + 942, + 6, + 0, + 0, + 0 + ], + [ + 969, + 7, + 1, + 1, + 1 + ], + [ + 971, + 23, + 4, + 1, + 1 + ], + [ + 972, + 25, + 4, + 1, + 1 + ], + [ + 972, + 85, + 4, + 1, + 0 + ], + [ + 973, + 81, + 4, + 1, + 1 + ], + [ + 974, + 72, + 2, + 1, + 1 + ], + [ + 976, + 18, + 2, + 1, + 1 + ], + [ + 978, + 14, + 4, + 1, + 0 + ], + [ + 979, + 10, + 1, + 1, + 0 + ], + [ + 980, + 6, + 0, + 0, + 0 + ], + [ + 1002, + 7, + 0, + 1, + 1 + ], + [ + 1004, + 23, + 0, + 1, + 1 + ], + [ + 1005, + 25, + 0, + 1, + 1 + ], + [ + 1005, + 85, + 0, + 1, + 0 + ], + [ + 1006, + 91, + 0, + 1, + 1 + ], + [ + 1007, + 121, + 0, + 1, + 1 + ], + [ + 1009, + 18, + 0, + 1, + 1 + ], + [ + 1011, + 14, + 0, + 1, + 0 + ], + [ + 1013, + 6, + 0, + 0, + 0 + ], + [ + 1035, + 7, + 1, + 1, + 1 + ], + [ + 1037, + 23, + 6, + 1, + 1 + ], + [ + 1038, + 25, + 6, + 1, + 1 + ], + [ + 1038, + 85, + 6, + 1, + 0 + ], + [ + 1039, + 100, + 6, + 1, + 1 + ], + [ + 1040, + 168, + 4, + 1, + 1 + ], + [ + 1042, + 18, + 2, + 1, + 1 + ], + [ + 1044, + 14, + 6, + 1, + 0 + ], + [ + 1045, + 10, + 1, + 1, + 0 + ], + [ + 1046, + 6, + 0, + 0, + 0 + ], + [ + 1073, + 7, + 1, + 1, + 1 + ], + [ + 1074, + 64, + 0, + 1, + 1 + ], + [ + 1076, + 10, + 1, + 1, + 1 + ], + [ + 1078, + 48, + 4, + 1, + 1 + ], + [ + 1079, + 25, + 4, + 1, + 1 + ], + [ + 1079, + 87, + 4, + 1, + 0 + ], + [ + 1080, + 81, + 4, + 1, + 1 + ], + [ + 1081, + 72, + 2, + 1, + 1 + ], + [ + 1083, + 18, + 2, + 1, + 1 + ], + [ + 1084, + 131, + 0, + 1, + 1 + ], + [ + 1086, + 18, + 2, + 1, + 1 + ], + [ + 1088, + 14, + 4, + 1, + 0 + ], + [ + 1089, + 10, + 1, + 1, + 0 + ], + [ + 1090, + 6, + 0, + 0, + 0 + ], + [ + 1112, + 7, + 0, + 1, + 1 + ], + [ + 1113, + 64, + 0, + 1, + 1 + ], + [ + 1115, + 10, + 0, + 1, + 1 + ], + [ + 1117, + 48, + 0, + 1, + 1 + ], + [ + 1118, + 25, + 0, + 1, + 1 + ], + [ + 1118, + 87, + 0, + 1, + 0 + ], + [ + 1119, + 91, + 0, + 1, + 1 + ], + [ + 1120, + 121, + 0, + 1, + 1 + ], + [ + 1122, + 18, + 0, + 1, + 1 + ], + [ + 1123, + 131, + 0, + 1, + 1 + ], + [ + 1125, + 18, + 0, + 1, + 1 + ], + [ + 1127, + 14, + 0, + 1, + 0 + ], + [ + 1129, + 6, + 0, + 0, + 0 + ], + [ + 1151, + 7, + 1, + 1, + 1 + ], + [ + 1152, + 64, + 0, + 1, + 1 + ], + [ + 1154, + 10, + 1, + 1, + 1 + ], + [ + 1156, + 48, + 6, + 1, + 1 + ], + [ + 1157, + 25, + 6, + 1, + 1 + ], + [ + 1157, + 87, + 6, + 1, + 0 + ], + [ + 1158, + 100, + 6, + 1, + 1 + ], + [ + 1159, + 168, + 4, + 1, + 1 + ], + [ + 1161, + 18, + 2, + 1, + 1 + ], + [ + 1162, + 131, + 0, + 1, + 1 + ], + [ + 1164, + 18, + 2, + 1, + 1 + ], + [ + 1166, + 14, + 6, + 1, + 0 + ], + [ + 1167, + 10, + 1, + 1, + 0 + ], + [ + 1168, + 6, + 0, + 0, + 0 + ], + [ + 1198, + 7, + 1, + 1, + 1 + ], + [ + 1200, + 23, + 4, + 1, + 1 + ], + [ + 1201, + 25, + 4, + 1, + 1 + ], + [ + 1201, + 97, + 4, + 1, + 0 + ], + [ + 1202, + 25, + 4, + 1, + 1 + ], + [ + 1202, + 71, + 4, + 1, + 0 + ], + [ + 1203, + 81, + 4, + 1, + 1 + ], + [ + 1204, + 72, + 2, + 1, + 1 + ], + [ + 1206, + 18, + 2, + 1, + 1 + ], + [ + 1207, + 20, + 2, + 1, + 1 + ], + [ + 1210, + 18, + 2, + 1, + 0 + ], + [ + 1210, + 25, + 0, + 1, + 1 + ], + [ + 1214, + 18, + 2, + 1, + 1 + ], + [ + 1215, + 14, + 4, + 1, + 0 + ], + [ + 1216, + 10, + 1, + 1, + 0 + ], + [ + 1217, + 6, + 0, + 0, + 0 + ], + [ + 1252, + 11, + 1, + 1, + 1 + ], + [ + 1254, + 23, + 4, + 1, + 1 + ], + [ + 1255, + 25, + 4, + 1, + 1 + ], + [ + 1255, + 97, + 4, + 1, + 0 + ], + [ + 1256, + 25, + 4, + 1, + 1 + ], + [ + 1256, + 71, + 4, + 1, + 0 + ], + [ + 1257, + 81, + 4, + 1, + 1 + ], + [ + 1258, + 72, + 0, + 1, + 1 + ], + [ + 1260, + 18, + 4, + 1, + 1 + ], + [ + 1261, + 20, + 4, + 1, + 1 + ], + [ + 1264, + 50, + 2, + 1, + 1 + ], + [ + 1266, + 22, + 4, + 1, + 1 + ], + [ + 1268, + 18, + 4, + 1, + 0 + ], + [ + 1268, + 25, + 0, + 1, + 1 + ], + [ + 1272, + 18, + 4, + 1, + 1 + ], + [ + 1273, + 14, + 4, + 1, + 0 + ], + [ + 1274, + 10, + 1, + 1, + 0 + ], + [ + 1275, + 6, + 0, + 0, + 0 + ], + [ + 1300, + 7, + 0, + 1, + 1 + ], + [ + 1302, + 23, + 0, + 1, + 1 + ], + [ + 1303, + 25, + 0, + 1, + 1 + ], + [ + 1303, + 97, + 0, + 1, + 0 + ], + [ + 1304, + 25, + 0, + 1, + 1 + ], + [ + 1304, + 71, + 0, + 1, + 0 + ], + [ + 1305, + 91, + 0, + 1, + 1 + ], + [ + 1306, + 121, + 0, + 1, + 1 + ], + [ + 1308, + 18, + 0, + 1, + 1 + ], + [ + 1309, + 20, + 0, + 1, + 1 + ], + [ + 1312, + 18, + 0, + 1, + 0 + ], + [ + 1312, + 25, + 0, + 1, + 1 + ], + [ + 1316, + 18, + 0, + 1, + 1 + ], + [ + 1317, + 14, + 0, + 1, + 0 + ], + [ + 1319, + 6, + 0, + 0, + 0 + ], + [ + 1349, + 11, + 0, + 1, + 1 + ], + [ + 1351, + 23, + 0, + 1, + 1 + ], + [ + 1352, + 25, + 0, + 1, + 1 + ], + [ + 1352, + 97, + 0, + 1, + 0 + ], + [ + 1353, + 25, + 0, + 1, + 1 + ], + [ + 1353, + 71, + 0, + 1, + 0 + ], + [ + 1354, + 91, + 0, + 1, + 1 + ], + [ + 1355, + 121, + 0, + 1, + 1 + ], + [ + 1357, + 18, + 0, + 1, + 1 + ], + [ + 1358, + 20, + 0, + 1, + 1 + ], + [ + 1361, + 50, + 0, + 1, + 1 + ], + [ + 1363, + 22, + 0, + 1, + 1 + ], + [ + 1365, + 18, + 0, + 1, + 0 + ], + [ + 1365, + 25, + 0, + 1, + 1 + ], + [ + 1369, + 18, + 0, + 1, + 1 + ], + [ + 1370, + 14, + 0, + 1, + 0 + ], + [ + 1372, + 6, + 0, + 0, + 0 + ], + [ + 1397, + 7, + 1, + 1, + 1 + ], + [ + 1399, + 23, + 6, + 1, + 1 + ], + [ + 1400, + 25, + 6, + 1, + 1 + ], + [ + 1400, + 97, + 6, + 1, + 0 + ], + [ + 1401, + 25, + 6, + 1, + 1 + ], + [ + 1401, + 71, + 6, + 1, + 0 + ], + [ + 1402, + 100, + 6, + 1, + 1 + ], + [ + 1403, + 168, + 4, + 1, + 1 + ], + [ + 1405, + 18, + 2, + 1, + 1 + ], + [ + 1406, + 20, + 2, + 1, + 1 + ], + [ + 1409, + 18, + 2, + 1, + 0 + ], + [ + 1409, + 25, + 0, + 1, + 1 + ], + [ + 1413, + 18, + 2, + 1, + 1 + ], + [ + 1414, + 14, + 6, + 1, + 0 + ], + [ + 1415, + 10, + 1, + 1, + 0 + ], + [ + 1416, + 6, + 0, + 0, + 0 + ], + [ + 1446, + 11, + 1, + 1, + 1 + ], + [ + 1448, + 23, + 4, + 1, + 1 + ], + [ + 1449, + 25, + 4, + 1, + 1 + ], + [ + 1449, + 97, + 4, + 1, + 0 + ], + [ + 1450, + 25, + 4, + 1, + 1 + ], + [ + 1450, + 71, + 4, + 1, + 0 + ], + [ + 1451, + 100, + 4, + 1, + 1 + ], + [ + 1452, + 168, + 0, + 1, + 1 + ], + [ + 1454, + 18, + 4, + 1, + 1 + ], + [ + 1455, + 20, + 4, + 1, + 1 + ], + [ + 1458, + 50, + 2, + 1, + 1 + ], + [ + 1460, + 22, + 4, + 1, + 1 + ], + [ + 1462, + 18, + 4, + 1, + 0 + ], + [ + 1462, + 25, + 0, + 1, + 1 + ], + [ + 1466, + 18, + 4, + 1, + 1 + ], + [ + 1467, + 14, + 4, + 1, + 0 + ], + [ + 1468, + 10, + 1, + 1, + 0 + ], + [ + 1469, + 6, + 0, + 0, + 0 + ], + [ + 1500, + 7, + 1, + 1, + 1 + ], + [ + 1502, + 21, + 4, + 1, + 1 + ], + [ + 1503, + 25, + 4, + 1, + 1 + ], + [ + 1503, + 58, + 4, + 1, + 0 + ], + [ + 1504, + 81, + 4, + 1, + 1 + ], + [ + 1505, + 72, + 2, + 1, + 1 + ], + [ + 1507, + 18, + 2, + 1, + 1 + ], + [ + 1508, + 136, + 0, + 1, + 1 + ], + [ + 1511, + 18, + 2, + 1, + 1 + ], + [ + 1513, + 14, + 4, + 1, + 0 + ], + [ + 1514, + 10, + 1, + 1, + 0 + ], + [ + 1515, + 6, + 0, + 0, + 0 + ], + [ + 1541, + 7, + 1, + 1, + 1 + ], + [ + 1543, + 21, + 2, + 1, + 1 + ], + [ + 1544, + 25, + 2, + 1, + 1 + ], + [ + 1544, + 58, + 2, + 1, + 0 + ], + [ + 1545, + 91, + 2, + 1, + 1 + ], + [ + 1546, + 121, + 0, + 1, + 1 + ], + [ + 1548, + 18, + 2, + 1, + 1 + ], + [ + 1549, + 136, + 0, + 1, + 1 + ], + [ + 1552, + 18, + 2, + 1, + 1 + ], + [ + 1554, + 14, + 2, + 1, + 0 + ], + [ + 1555, + 10, + 1, + 1, + 0 + ], + [ + 1556, + 6, + 0, + 0, + 0 + ], + [ + 1582, + 7, + 1, + 1, + 1 + ], + [ + 1584, + 21, + 6, + 1, + 1 + ], + [ + 1585, + 25, + 6, + 1, + 1 + ], + [ + 1585, + 58, + 6, + 1, + 0 + ], + [ + 1586, + 100, + 6, + 1, + 1 + ], + [ + 1587, + 168, + 4, + 1, + 1 + ], + [ + 1589, + 18, + 2, + 1, + 1 + ], + [ + 1590, + 136, + 0, + 1, + 1 + ], + [ + 1593, + 18, + 2, + 1, + 1 + ], + [ + 1595, + 14, + 6, + 1, + 0 + ], + [ + 1596, + 10, + 1, + 1, + 0 + ], + [ + 1597, + 6, + 0, + 0, + 0 + ], + [ + 1625, + 7, + 1, + 1, + 1 + ], + [ + 1629, + 21, + 4, + 1, + 1 + ], + [ + 1630, + 25, + 4, + 1, + 1 + ], + [ + 1630, + 58, + 4, + 1, + 0 + ], + [ + 1631, + 81, + 4, + 1, + 1 + ], + [ + 1632, + 72, + 2, + 1, + 1 + ], + [ + 1634, + 18, + 2, + 1, + 1 + ], + [ + 1635, + 136, + 0, + 1, + 1 + ], + [ + 1637, + 18, + 2, + 1, + 1 + ], + [ + 1639, + 14, + 4, + 1, + 0 + ], + [ + 1640, + 10, + 1, + 1, + 0 + ], + [ + 1641, + 6, + 0, + 0, + 0 + ], + [ + 1665, + 7, + 1, + 1, + 1 + ], + [ + 1669, + 21, + 2, + 1, + 1 + ], + [ + 1670, + 25, + 2, + 1, + 1 + ], + [ + 1670, + 58, + 2, + 1, + 0 + ], + [ + 1671, + 91, + 2, + 1, + 1 + ], + [ + 1672, + 121, + 0, + 1, + 1 + ], + [ + 1674, + 18, + 2, + 1, + 1 + ], + [ + 1675, + 136, + 0, + 1, + 1 + ], + [ + 1677, + 18, + 2, + 1, + 1 + ], + [ + 1679, + 14, + 2, + 1, + 0 + ], + [ + 1680, + 10, + 1, + 1, + 0 + ], + [ + 1681, + 6, + 0, + 0, + 0 + ], + [ + 1705, + 7, + 1, + 1, + 1 + ], + [ + 1709, + 21, + 6, + 1, + 1 + ], + [ + 1710, + 25, + 6, + 1, + 1 + ], + [ + 1710, + 58, + 6, + 1, + 0 + ], + [ + 1711, + 100, + 6, + 1, + 1 + ], + [ + 1712, + 168, + 4, + 1, + 1 + ], + [ + 1714, + 18, + 2, + 1, + 1 + ], + [ + 1715, + 136, + 0, + 1, + 1 + ], + [ + 1717, + 18, + 2, + 1, + 1 + ], + [ + 1719, + 14, + 6, + 1, + 0 + ], + [ + 1720, + 10, + 1, + 1, + 0 + ], + [ + 1721, + 6, + 0, + 0, + 0 + ], + [ + 1748, + 7, + 1, + 1, + 1 + ], + [ + 1749, + 64, + 0, + 1, + 1 + ], + [ + 1751, + 10, + 1, + 1, + 1 + ], + [ + 1753, + 45, + 4, + 1, + 1 + ], + [ + 1754, + 25, + 4, + 1, + 1 + ], + [ + 1754, + 57, + 4, + 1, + 0 + ], + [ + 1755, + 81, + 4, + 1, + 1 + ], + [ + 1756, + 72, + 2, + 1, + 1 + ], + [ + 1758, + 18, + 2, + 1, + 1 + ], + [ + 1761, + 22, + 0, + 1, + 1 + ], + [ + 1763, + 18, + 2, + 1, + 1 + ], + [ + 1765, + 14, + 4, + 1, + 0 + ], + [ + 1766, + 10, + 1, + 1, + 0 + ], + [ + 1767, + 6, + 0, + 0, + 0 + ], + [ + 1789, + 7, + 1, + 1, + 1 + ], + [ + 1790, + 64, + 0, + 1, + 1 + ], + [ + 1792, + 10, + 1, + 1, + 1 + ], + [ + 1794, + 45, + 2, + 1, + 1 + ], + [ + 1795, + 25, + 2, + 1, + 1 + ], + [ + 1795, + 57, + 2, + 1, + 0 + ], + [ + 1796, + 91, + 2, + 1, + 1 + ], + [ + 1797, + 121, + 0, + 1, + 1 + ], + [ + 1799, + 18, + 2, + 1, + 1 + ], + [ + 1802, + 22, + 0, + 1, + 1 + ], + [ + 1804, + 18, + 2, + 1, + 1 + ], + [ + 1806, + 14, + 2, + 1, + 0 + ], + [ + 1807, + 10, + 1, + 1, + 0 + ], + [ + 1808, + 6, + 0, + 0, + 0 + ], + [ + 1830, + 7, + 1, + 1, + 1 + ], + [ + 1831, + 64, + 0, + 1, + 1 + ], + [ + 1833, + 10, + 1, + 1, + 1 + ], + [ + 1835, + 45, + 6, + 1, + 1 + ], + [ + 1836, + 25, + 6, + 1, + 1 + ], + [ + 1836, + 57, + 6, + 1, + 0 + ], + [ + 1837, + 100, + 6, + 1, + 1 + ], + [ + 1838, + 168, + 4, + 1, + 1 + ], + [ + 1840, + 18, + 2, + 1, + 1 + ], + [ + 1843, + 22, + 0, + 1, + 1 + ], + [ + 1846, + 18, + 2, + 1, + 1 + ], + [ + 1848, + 14, + 6, + 1, + 0 + ], + [ + 1849, + 10, + 1, + 1, + 0 + ], + [ + 1850, + 6, + 0, + 0, + 0 + ], + [ + 1882, + 7, + 1, + 1, + 1 + ], + [ + 1883, + 64, + 0, + 1, + 1 + ], + [ + 1885, + 10, + 1, + 1, + 1 + ], + [ + 1887, + 47, + 4, + 1, + 1 + ], + [ + 1888, + 25, + 4, + 1, + 1 + ], + [ + 1888, + 59, + 4, + 1, + 0 + ], + [ + 1889, + 81, + 4, + 1, + 1 + ], + [ + 1890, + 72, + 2, + 1, + 1 + ], + [ + 1892, + 18, + 2, + 1, + 1 + ], + [ + 1895, + 22, + 0, + 1, + 1 + ], + [ + 1897, + 18, + 2, + 1, + 1 + ], + [ + 1900, + 14, + 4, + 1, + 0 + ], + [ + 1901, + 10, + 1, + 1, + 0 + ], + [ + 1902, + 6, + 0, + 0, + 0 + ], + [ + 1929, + 7, + 1, + 1, + 1 + ], + [ + 1930, + 64, + 0, + 1, + 1 + ], + [ + 1932, + 10, + 1, + 1, + 1 + ], + [ + 1934, + 47, + 2, + 1, + 1 + ], + [ + 1935, + 25, + 2, + 1, + 1 + ], + [ + 1935, + 59, + 2, + 1, + 0 + ], + [ + 1936, + 91, + 2, + 1, + 1 + ], + [ + 1937, + 121, + 0, + 1, + 1 + ], + [ + 1939, + 18, + 2, + 1, + 1 + ], + [ + 1942, + 22, + 0, + 1, + 1 + ], + [ + 1944, + 18, + 2, + 1, + 1 + ], + [ + 1946, + 14, + 2, + 1, + 0 + ], + [ + 1947, + 10, + 1, + 1, + 0 + ], + [ + 1948, + 6, + 0, + 0, + 0 + ], + [ + 1975, + 7, + 1, + 1, + 1 + ], + [ + 1976, + 64, + 0, + 1, + 1 + ], + [ + 1978, + 10, + 1, + 1, + 1 + ], + [ + 1980, + 47, + 6, + 1, + 1 + ], + [ + 1981, + 25, + 6, + 1, + 1 + ], + [ + 1981, + 59, + 6, + 1, + 0 + ], + [ + 1982, + 100, + 6, + 1, + 1 + ], + [ + 1983, + 168, + 4, + 1, + 1 + ], + [ + 1985, + 18, + 2, + 1, + 1 + ], + [ + 1988, + 22, + 0, + 1, + 1 + ], + [ + 1990, + 18, + 2, + 1, + 1 + ], + [ + 1993, + 14, + 6, + 1, + 0 + ], + [ + 1994, + 10, + 1, + 1, + 0 + ], + [ + 1995, + 6, + 0, + 0, + 0 + ], + [ + 2005, + 56, + 64, + 1, + 1 + ], + [ + 2006, + 68, + 28, + 1, + 1 + ], + [ + 2007, + 78, + 0, + 1, + 1 + ], + [ + 2007, + 98, + 28, + 1, + 0 + ], + [ + 2009, + 14, + 36, + 1, + 1 + ], + [ + 2011, + 10, + 0, + 0, + 0 + ], + [ + 2023, + 57, + 18, + 1, + 1 + ], + [ + 2024, + 70, + 0, + 1, + 1 + ], + [ + 2025, + 78, + 0, + 1, + 1 + ], + [ + 2025, + 98, + 0, + 1, + 0 + ], + [ + 2027, + 14, + 18, + 1, + 1 + ], + [ + 2028, + 61, + 18, + 1, + 1 + ], + [ + 2029, + 74, + 0, + 1, + 1 + ], + [ + 2030, + 82, + 0, + 1, + 1 + ], + [ + 2030, + 102, + 0, + 1, + 0 + ], + [ + 2032, + 18, + 18, + 1, + 1 + ], + [ + 2034, + 14, + 18, + 1, + 0 + ], + [ + 2035, + 10, + 0, + 0, + 0 + ], + [ + 2048, + 57, + 88, + 1, + 1 + ], + [ + 2049, + 70, + 2, + 1, + 1 + ], + [ + 2050, + 78, + 0, + 1, + 1 + ], + [ + 2050, + 98, + 2, + 1, + 0 + ], + [ + 2052, + 14, + 86, + 1, + 1 + ], + [ + 2053, + 61, + 86, + 1, + 1 + ], + [ + 2054, + 74, + 26, + 1, + 1 + ], + [ + 2055, + 82, + 0, + 1, + 1 + ], + [ + 2055, + 102, + 26, + 1, + 0 + ], + [ + 2057, + 18, + 60, + 1, + 1 + ], + [ + 2058, + 65, + 60, + 1, + 1 + ], + [ + 2059, + 78, + 26, + 1, + 1 + ], + [ + 2060, + 86, + 0, + 1, + 1 + ], + [ + 2060, + 106, + 26, + 1, + 0 + ], + [ + 2062, + 22, + 34, + 1, + 1 + ], + [ + 2064, + 18, + 60, + 1, + 0 + ], + [ + 2065, + 14, + 86, + 1, + 0 + ], + [ + 2066, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 2038, + "covered": 1666, + "percent": 81 + }, + "functions": { + "count": 207, + "covered": 174, + "percent": 84 + }, + "instantiations": { + "count": 207, + "covered": 174, + "percent": 84 + }, + "regions": { + "count": 426, + "covered": 310, + "notcovered": 116, + "percent": 72 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift", + "segments": [ + [ + 49, + 93, + 13, + 1, + 1 + ], + [ + 51, + 6, + 0, + 0, + 0 + ], + [ + 69, + 94, + 22, + 1, + 1 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 89, + 124, + 16, + 1, + 1 + ], + [ + 91, + 6, + 0, + 0, + 0 + ], + [ + 108, + 123, + 13, + 1, + 1 + ], + [ + 110, + 6, + 0, + 0, + 0 + ], + [ + 129, + 138, + 1, + 1, + 1 + ], + [ + 131, + 6, + 0, + 0, + 0 + ], + [ + 150, + 133, + 46, + 1, + 1 + ], + [ + 152, + 6, + 0, + 0, + 0 + ], + [ + 171, + 139, + 1, + 1, + 1 + ], + [ + 173, + 6, + 0, + 0, + 0 + ], + [ + 192, + 134, + 10, + 1, + 1 + ], + [ + 194, + 6, + 0, + 0, + 0 + ], + [ + 211, + 79, + 13, + 1, + 1 + ], + [ + 213, + 6, + 0, + 0, + 0 + ], + [ + 230, + 109, + 7, + 1, + 1 + ], + [ + 232, + 6, + 0, + 0, + 0 + ], + [ + 250, + 114, + 10, + 1, + 1 + ], + [ + 252, + 6, + 0, + 0, + 0 + ], + [ + 270, + 115, + 19, + 1, + 1 + ], + [ + 272, + 6, + 0, + 0, + 0 + ], + [ + 291, + 104, + 28, + 1, + 1 + ], + [ + 293, + 6, + 0, + 0, + 0 + ], + [ + 313, + 134, + 15, + 1, + 1 + ], + [ + 315, + 6, + 0, + 0, + 0 + ], + [ + 333, + 133, + 27, + 1, + 1 + ], + [ + 335, + 6, + 0, + 0, + 0 + ], + [ + 354, + 135, + 16, + 1, + 1 + ], + [ + 356, + 6, + 0, + 0, + 0 + ], + [ + 361, + 21, + 26, + 1, + 1 + ], + [ + 362, + 25, + 26, + 1, + 1 + ], + [ + 362, + 58, + 26, + 1, + 0 + ], + [ + 363, + 132, + 6, + 1, + 1 + ], + [ + 366, + 14, + 20, + 1, + 1 + ], + [ + 368, + 10, + 0, + 0, + 0 + ], + [ + 376, + 21, + 12, + 1, + 1 + ], + [ + 377, + 25, + 12, + 1, + 1 + ], + [ + 377, + 58, + 12, + 1, + 0 + ], + [ + 378, + 132, + 0, + 1, + 1 + ], + [ + 381, + 14, + 12, + 1, + 1 + ], + [ + 383, + 10, + 0, + 0, + 0 + ], + [ + 392, + 45, + 18, + 1, + 1 + ], + [ + 393, + 25, + 18, + 1, + 1 + ], + [ + 393, + 57, + 18, + 1, + 0 + ], + [ + 396, + 18, + 2, + 1, + 1 + ], + [ + 399, + 14, + 16, + 1, + 1 + ], + [ + 401, + 10, + 0, + 0, + 0 + ], + [ + 410, + 47, + 14, + 1, + 1 + ], + [ + 411, + 25, + 14, + 1, + 1 + ], + [ + 411, + 59, + 14, + 1, + 0 + ], + [ + 414, + 18, + 2, + 1, + 1 + ], + [ + 417, + 14, + 12, + 1, + 1 + ], + [ + 419, + 10, + 0, + 0, + 0 + ], + [ + 428, + 20, + 8, + 1, + 1 + ], + [ + 429, + 25, + 8, + 1, + 1 + ], + [ + 429, + 80, + 8, + 1, + 0 + ], + [ + 431, + 10, + 0, + 0, + 0 + ], + [ + 440, + 20, + 8, + 1, + 1 + ], + [ + 441, + 25, + 8, + 1, + 1 + ], + [ + 441, + 66, + 8, + 1, + 0 + ], + [ + 443, + 10, + 0, + 0, + 0 + ], + [ + 454, + 20, + 8, + 1, + 1 + ], + [ + 455, + 25, + 8, + 1, + 1 + ], + [ + 455, + 82, + 8, + 1, + 0 + ], + [ + 457, + 10, + 0, + 0, + 0 + ], + [ + 463, + 20, + 4, + 1, + 1 + ], + [ + 464, + 25, + 4, + 1, + 1 + ], + [ + 464, + 88, + 4, + 1, + 0 + ], + [ + 465, + 25, + 4, + 1, + 1 + ], + [ + 465, + 71, + 4, + 1, + 0 + ], + [ + 466, + 16, + 4, + 1, + 1 + ], + [ + 469, + 14, + 4, + 1, + 0 + ], + [ + 469, + 21, + 2, + 1, + 1 + ], + [ + 473, + 14, + 4, + 1, + 1 + ], + [ + 474, + 10, + 0, + 0, + 0 + ], + [ + 480, + 20, + 4, + 1, + 1 + ], + [ + 481, + 25, + 4, + 1, + 1 + ], + [ + 481, + 90, + 4, + 1, + 0 + ], + [ + 482, + 25, + 4, + 1, + 1 + ], + [ + 482, + 71, + 4, + 1, + 0 + ], + [ + 484, + 16, + 4, + 1, + 1 + ], + [ + 487, + 14, + 4, + 1, + 0 + ], + [ + 487, + 21, + 2, + 1, + 1 + ], + [ + 491, + 14, + 4, + 1, + 1 + ], + [ + 492, + 10, + 0, + 0, + 0 + ], + [ + 498, + 20, + 6, + 1, + 1 + ], + [ + 499, + 25, + 6, + 1, + 1 + ], + [ + 499, + 88, + 6, + 1, + 0 + ], + [ + 500, + 25, + 6, + 1, + 1 + ], + [ + 500, + 71, + 6, + 1, + 0 + ], + [ + 501, + 16, + 6, + 1, + 1 + ], + [ + 504, + 46, + 4, + 1, + 1 + ], + [ + 506, + 18, + 6, + 1, + 1 + ], + [ + 508, + 14, + 6, + 1, + 0 + ], + [ + 508, + 21, + 2, + 1, + 1 + ], + [ + 512, + 14, + 6, + 1, + 1 + ], + [ + 513, + 10, + 0, + 0, + 0 + ], + [ + 519, + 20, + 6, + 1, + 1 + ], + [ + 520, + 25, + 6, + 1, + 1 + ], + [ + 520, + 90, + 6, + 1, + 0 + ], + [ + 521, + 25, + 6, + 1, + 1 + ], + [ + 521, + 71, + 6, + 1, + 0 + ], + [ + 523, + 16, + 6, + 1, + 1 + ], + [ + 526, + 46, + 4, + 1, + 1 + ], + [ + 528, + 18, + 6, + 1, + 1 + ], + [ + 530, + 14, + 6, + 1, + 0 + ], + [ + 530, + 21, + 2, + 1, + 1 + ], + [ + 534, + 14, + 6, + 1, + 1 + ], + [ + 535, + 10, + 0, + 0, + 0 + ], + [ + 543, + 45, + 12, + 1, + 1 + ], + [ + 544, + 25, + 12, + 1, + 1 + ], + [ + 544, + 84, + 12, + 1, + 0 + ], + [ + 545, + 127, + 0, + 1, + 1 + ], + [ + 548, + 14, + 12, + 1, + 1 + ], + [ + 550, + 10, + 0, + 0, + 0 + ], + [ + 559, + 23, + 6, + 1, + 1 + ], + [ + 560, + 25, + 6, + 1, + 1 + ], + [ + 560, + 69, + 6, + 1, + 0 + ], + [ + 562, + 10, + 0, + 0, + 0 + ], + [ + 571, + 48, + 10, + 1, + 1 + ], + [ + 572, + 25, + 10, + 1, + 1 + ], + [ + 572, + 71, + 10, + 1, + 0 + ], + [ + 573, + 127, + 0, + 1, + 1 + ], + [ + 576, + 14, + 10, + 1, + 1 + ], + [ + 578, + 10, + 0, + 0, + 0 + ], + [ + 584, + 23, + 4, + 1, + 1 + ], + [ + 585, + 25, + 4, + 1, + 1 + ], + [ + 585, + 82, + 4, + 1, + 0 + ], + [ + 586, + 25, + 4, + 1, + 1 + ], + [ + 586, + 71, + 4, + 1, + 0 + ], + [ + 587, + 16, + 4, + 1, + 1 + ], + [ + 590, + 14, + 4, + 1, + 0 + ], + [ + 590, + 21, + 2, + 1, + 1 + ], + [ + 594, + 14, + 4, + 1, + 1 + ], + [ + 595, + 10, + 0, + 0, + 0 + ], + [ + 601, + 23, + 6, + 1, + 1 + ], + [ + 602, + 25, + 6, + 1, + 1 + ], + [ + 602, + 82, + 6, + 1, + 0 + ], + [ + 603, + 25, + 6, + 1, + 1 + ], + [ + 603, + 71, + 6, + 1, + 0 + ], + [ + 604, + 16, + 6, + 1, + 1 + ], + [ + 607, + 46, + 4, + 1, + 1 + ], + [ + 609, + 18, + 6, + 1, + 1 + ], + [ + 611, + 14, + 6, + 1, + 0 + ], + [ + 611, + 21, + 2, + 1, + 1 + ], + [ + 615, + 14, + 6, + 1, + 1 + ], + [ + 616, + 10, + 0, + 0, + 0 + ], + [ + 620, + 63, + 3, + 1, + 1 + ], + [ + 622, + 32, + 2, + 1, + 1 + ], + [ + 624, + 10, + 1, + 1, + 1 + ], + [ + 625, + 21, + 3, + 1, + 0 + ], + [ + 626, + 6, + 0, + 0, + 0 + ], + [ + 632, + 23, + 1, + 1, + 1 + ], + [ + 632, + 100, + 0, + 0, + 0 + ], + [ + 635, + 22, + 73, + 1, + 1 + ], + [ + 635, + 106, + 0, + 0, + 0 + ], + [ + 639, + 27, + 2, + 1, + 1 + ], + [ + 639, + 122, + 0, + 0, + 0 + ], + [ + 666, + 76, + 0, + 1, + 1 + ], + [ + 668, + 70, + 0, + 1, + 1 + ], + [ + 670, + 10, + 0, + 1, + 1 + ], + [ + 671, + 57, + 0, + 1, + 0 + ], + [ + 672, + 6, + 0, + 0, + 0 + ], + [ + 680, + 82, + 0, + 1, + 1 + ], + [ + 682, + 70, + 0, + 1, + 1 + ], + [ + 684, + 10, + 0, + 1, + 1 + ], + [ + 685, + 74, + 0, + 1, + 0 + ], + [ + 686, + 6, + 0, + 0, + 0 + ], + [ + 695, + 83, + 150, + 1, + 1 + ], + [ + 697, + 37, + 0, + 1, + 1 + ], + [ + 697, + 57, + 150, + 1, + 0 + ], + [ + 697, + 58, + 0, + 1, + 1 + ], + [ + 697, + 103, + 150, + 1, + 1 + ], + [ + 698, + 60, + 0, + 1, + 1 + ], + [ + 698, + 82, + 150, + 1, + 0 + ], + [ + 699, + 6, + 0, + 0, + 0 + ], + [ + 727, + 16, + 42, + 1, + 1 + ], + [ + 728, + 34, + 8, + 1, + 1 + ], + [ + 730, + 20, + 8, + 1, + 1 + ], + [ + 731, + 67, + 4, + 1, + 1 + ], + [ + 734, + 22, + 8, + 1, + 1 + ], + [ + 735, + 18, + 8, + 1, + 0 + ], + [ + 735, + 25, + 0, + 1, + 1 + ], + [ + 736, + 31, + 0, + 1, + 1 + ], + [ + 736, + 65, + 0, + 1, + 0 + ], + [ + 738, + 18, + 8, + 1, + 1 + ], + [ + 739, + 14, + 42, + 1, + 1 + ], + [ + 739, + 20, + 34, + 1, + 1 + ], + [ + 741, + 14, + 42, + 1, + 1 + ], + [ + 743, + 10, + 0, + 0, + 0 + ], + [ + 774, + 16, + 142, + 1, + 1 + ], + [ + 776, + 34, + 48, + 1, + 1 + ], + [ + 778, + 14, + 142, + 1, + 1 + ], + [ + 780, + 63, + 42, + 1, + 1 + ], + [ + 781, + 20, + 42, + 1, + 1 + ], + [ + 782, + 67, + 22, + 1, + 1 + ], + [ + 785, + 22, + 42, + 1, + 1 + ], + [ + 786, + 18, + 42, + 1, + 0 + ], + [ + 786, + 25, + 0, + 1, + 1 + ], + [ + 787, + 31, + 0, + 1, + 1 + ], + [ + 787, + 65, + 0, + 1, + 0 + ], + [ + 789, + 18, + 42, + 1, + 1 + ], + [ + 790, + 14, + 142, + 1, + 1 + ], + [ + 790, + 20, + 100, + 1, + 1 + ], + [ + 791, + 54, + 92, + 1, + 1 + ], + [ + 793, + 18, + 100, + 1, + 1 + ], + [ + 793, + 24, + 8, + 1, + 1 + ], + [ + 794, + 31, + 8, + 1, + 1 + ], + [ + 794, + 90, + 8, + 1, + 0 + ], + [ + 795, + 18, + 100, + 1, + 1 + ], + [ + 796, + 14, + 142, + 1, + 1 + ], + [ + 798, + 10, + 0, + 0, + 0 + ], + [ + 829, + 16, + 14, + 1, + 1 + ], + [ + 831, + 34, + 4, + 1, + 1 + ], + [ + 833, + 14, + 14, + 1, + 1 + ], + [ + 835, + 63, + 2, + 1, + 1 + ], + [ + 836, + 20, + 2, + 1, + 1 + ], + [ + 837, + 67, + 0, + 1, + 1 + ], + [ + 840, + 22, + 2, + 1, + 1 + ], + [ + 841, + 18, + 2, + 1, + 0 + ], + [ + 841, + 25, + 0, + 1, + 1 + ], + [ + 842, + 31, + 0, + 1, + 1 + ], + [ + 842, + 65, + 0, + 1, + 0 + ], + [ + 844, + 18, + 2, + 1, + 1 + ], + [ + 845, + 14, + 14, + 1, + 1 + ], + [ + 845, + 20, + 12, + 1, + 1 + ], + [ + 846, + 54, + 12, + 1, + 1 + ], + [ + 847, + 53, + 32, + 1, + 1 + ], + [ + 847, + 71, + 12, + 1, + 0 + ], + [ + 849, + 18, + 12, + 1, + 1 + ], + [ + 849, + 24, + 0, + 1, + 1 + ], + [ + 850, + 31, + 0, + 1, + 1 + ], + [ + 850, + 90, + 0, + 1, + 0 + ], + [ + 851, + 18, + 12, + 1, + 1 + ], + [ + 852, + 14, + 14, + 1, + 1 + ], + [ + 854, + 10, + 0, + 0, + 0 + ], + [ + 887, + 16, + 18, + 1, + 1 + ], + [ + 889, + 34, + 8, + 1, + 1 + ], + [ + 891, + 14, + 18, + 1, + 1 + ], + [ + 893, + 63, + 4, + 1, + 1 + ], + [ + 894, + 20, + 4, + 1, + 1 + ], + [ + 895, + 67, + 2, + 1, + 1 + ], + [ + 898, + 22, + 4, + 1, + 1 + ], + [ + 899, + 18, + 4, + 1, + 0 + ], + [ + 899, + 25, + 0, + 1, + 1 + ], + [ + 900, + 31, + 0, + 1, + 1 + ], + [ + 900, + 65, + 0, + 1, + 0 + ], + [ + 902, + 18, + 4, + 1, + 1 + ], + [ + 903, + 14, + 18, + 1, + 1 + ], + [ + 903, + 35, + 14, + 1, + 1 + ], + [ + 905, + 54, + 10, + 1, + 1 + ], + [ + 907, + 18, + 14, + 1, + 1 + ], + [ + 907, + 24, + 4, + 1, + 1 + ], + [ + 908, + 31, + 4, + 1, + 1 + ], + [ + 908, + 90, + 4, + 1, + 0 + ], + [ + 909, + 18, + 14, + 1, + 1 + ], + [ + 910, + 14, + 18, + 1, + 1 + ], + [ + 910, + 20, + 4, + 1, + 1 + ], + [ + 911, + 27, + 0, + 1, + 1 + ], + [ + 911, + 70, + 4, + 1, + 0 + ], + [ + 913, + 14, + 18, + 1, + 1 + ], + [ + 915, + 10, + 0, + 0, + 0 + ], + [ + 939, + 23, + 6, + 1, + 1 + ], + [ + 939, + 95, + 0, + 0, + 0 + ], + [ + 946, + 23, + 4, + 1, + 1 + ], + [ + 946, + 76, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 363, + "covered": 324, + "percent": 89 + }, + "functions": { + "count": 78, + "covered": 68, + "percent": 87 + }, + "instantiations": { + "count": 78, + "covered": 68, + "percent": 87 + }, + "regions": { + "count": 178, + "covered": 154, + "notcovered": 24, + "percent": 86 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/DecodingError+Extensions.swift", + "segments": [ + [ + 23, + 81, + 3, + 1, + 1 + ], + [ + 24, + 31, + 3, + 1, + 1 + ], + [ + 24, + 49, + 3, + 1, + 0 + ], + [ + 25, + 6, + 0, + 0, + 0 + ], + [ + 28, + 49, + 8, + 1, + 1 + ], + [ + 30, + 9, + 1, + 1, + 1 + ], + [ + 31, + 159, + 8, + 1, + 0 + ], + [ + 32, + 9, + 1, + 1, + 1 + ], + [ + 35, + 39, + 1, + 1, + 1 + ], + [ + 37, + 14, + 1, + 1, + 1 + ], + [ + 38, + 86, + 8, + 1, + 0 + ], + [ + 39, + 9, + 5, + 1, + 1 + ], + [ + 42, + 137, + 1, + 1, + 1 + ], + [ + 44, + 14, + 4, + 1, + 1 + ], + [ + 51, + 55, + 8, + 1, + 0 + ], + [ + 52, + 9, + 1, + 1, + 1 + ], + [ + 53, + 142, + 8, + 1, + 0 + ], + [ + 54, + 10, + 8, + 1, + 1 + ], + [ + 55, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 32, + "covered": 32, + "percent": 100 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 12, + "covered": 12, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Error.swift", + "segments": [ + [ + 27, + 29, + 0, + 1, + 1 + ], + [ + 29, + 9, + 0, + 1, + 1 + ], + [ + 30, + 59, + 0, + 1, + 0 + ], + [ + 31, + 9, + 0, + 1, + 1 + ], + [ + 33, + 55, + 0, + 1, + 0 + ], + [ + 34, + 10, + 0, + 1, + 1 + ], + [ + 35, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 9, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 4, + "covered": 0, + "notcovered": 4, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift", + "segments": [ + [ + 23, + 80, + 12, + 1, + 1 + ], + [ + 24, + 70, + 2, + 1, + 1 + ], + [ + 25, + 16, + 2, + 1, + 1 + ], + [ + 27, + 14, + 2, + 1, + 0 + ], + [ + 27, + 21, + 0, + 1, + 1 + ], + [ + 28, + 27, + 0, + 1, + 1 + ], + [ + 28, + 88, + 0, + 1, + 0 + ], + [ + 29, + 14, + 2, + 1, + 1 + ], + [ + 30, + 19, + 2, + 1, + 0 + ], + [ + 31, + 10, + 10, + 1, + 1 + ], + [ + 33, + 12, + 10, + 1, + 1 + ], + [ + 36, + 10, + 10, + 1, + 0 + ], + [ + 36, + 17, + 0, + 1, + 1 + ], + [ + 37, + 23, + 0, + 1, + 1 + ], + [ + 37, + 82, + 0, + 1, + 0 + ], + [ + 38, + 10, + 10, + 1, + 1 + ], + [ + 39, + 6, + 0, + 0, + 0 + ], + [ + 41, + 63, + 12, + 1, + 1 + ], + [ + 47, + 45, + 2, + 1, + 1 + ], + [ + 49, + 10, + 12, + 1, + 1 + ], + [ + 52, + 23, + 10, + 1, + 1 + ], + [ + 55, + 10, + 12, + 1, + 1 + ], + [ + 55, + 16, + 2, + 1, + 1 + ], + [ + 58, + 10, + 12, + 1, + 1 + ], + [ + 60, + 81, + 2, + 1, + 1 + ], + [ + 62, + 10, + 10, + 1, + 1 + ], + [ + 63, + 29, + 12, + 1, + 0 + ], + [ + 64, + 6, + 0, + 0, + 0 + ], + [ + 66, + 72, + 12, + 1, + 1 + ], + [ + 70, + 108, + 2, + 1, + 1 + ], + [ + 72, + 10, + 10, + 1, + 1 + ], + [ + 73, + 61, + 12, + 1, + 0 + ], + [ + 74, + 6, + 0, + 0, + 0 + ], + [ + 76, + 87, + 22, + 1, + 1 + ], + [ + 80, + 46, + 22, + 1, + 1 + ], + [ + 82, + 10, + 22, + 1, + 1 + ], + [ + 82, + 16, + 0, + 1, + 1 + ], + [ + 84, + 10, + 22, + 1, + 1 + ], + [ + 85, + 91, + 22, + 1, + 0 + ], + [ + 86, + 6, + 0, + 0, + 0 + ], + [ + 88, + 132, + 4, + 1, + 1 + ], + [ + 89, + 58, + 8, + 1, + 1 + ], + [ + 100, + 16, + 8, + 1, + 1 + ], + [ + 102, + 41, + 28, + 1, + 1 + ], + [ + 105, + 39, + 0, + 1, + 1 + ], + [ + 107, + 22, + 28, + 1, + 1 + ], + [ + 108, + 18, + 8, + 1, + 1 + ], + [ + 109, + 14, + 8, + 1, + 0 + ], + [ + 109, + 21, + 4, + 1, + 1 + ], + [ + 110, + 25, + 4, + 1, + 1 + ], + [ + 110, + 62, + 4, + 1, + 0 + ], + [ + 111, + 14, + 8, + 1, + 1 + ], + [ + 112, + 10, + 4, + 1, + 1 + ], + [ + 113, + 19, + 4, + 1, + 0 + ], + [ + 114, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 91, + "covered": 85, + "percent": 93 + }, + "functions": { + "count": 8, + "covered": 6, + "percent": 75 + }, + "instantiations": { + "count": 8, + "covered": 6, + "percent": 75 + }, + "regions": { + "count": 39, + "covered": 33, + "notcovered": 6, + "percent": 84 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift", + "segments": [ + [ + 30, + 37, + 1550, + 1, + 1 + ], + [ + 32, + 6, + 0, + 0, + 0 + ], + [ + 38, + 63, + 22, + 1, + 1 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 47, + 41, + 2, + 1, + 1 + ], + [ + 49, + 6, + 0, + 0, + 0 + ], + [ + 52, + 39, + 1, + 1, + 1 + ], + [ + 54, + 6, + 0, + 0, + 0 + ], + [ + 65, + 13, + 1484, + 1, + 1 + ], + [ + 67, + 10, + 0, + 0, + 0 + ], + [ + 69, + 23, + 1463, + 1, + 1 + ], + [ + 70, + 40, + 1459, + 1, + 1 + ], + [ + 72, + 14, + 1463, + 1, + 1 + ], + [ + 72, + 20, + 4, + 1, + 1 + ], + [ + 74, + 14, + 1463, + 1, + 1 + ], + [ + 75, + 10, + 0, + 0, + 0 + ], + [ + 85, + 13, + 2, + 1, + 1 + ], + [ + 88, + 10, + 0, + 0, + 0 + ], + [ + 97, + 62, + 1, + 1, + 1 + ], + [ + 99, + 6, + 0, + 0, + 0 + ], + [ + 109, + 54, + 18, + 1, + 1 + ], + [ + 111, + 25, + 2, + 1, + 1 + ], + [ + 112, + 48, + 1, + 1, + 1 + ], + [ + 114, + 14, + 2, + 1, + 1 + ], + [ + 114, + 20, + 1, + 1, + 1 + ], + [ + 116, + 14, + 2, + 1, + 1 + ], + [ + 117, + 10, + 18, + 1, + 1 + ], + [ + 119, + 6, + 0, + 0, + 0 + ], + [ + 125, + 74, + 105, + 1, + 1 + ], + [ + 126, + 93, + 105, + 1, + 1 + ], + [ + 128, + 38, + 1, + 1, + 1 + ], + [ + 130, + 14, + 105, + 1, + 1 + ], + [ + 132, + 10, + 105, + 1, + 1 + ], + [ + 133, + 6, + 0, + 0, + 0 + ], + [ + 140, + 69, + 4, + 1, + 1 + ], + [ + 141, + 44, + 1, + 1, + 1 + ], + [ + 144, + 10, + 3, + 1, + 1 + ], + [ + 146, + 40, + 102, + 1, + 1 + ], + [ + 146, + 51, + 3, + 1, + 0 + ], + [ + 147, + 50, + 1, + 1, + 1 + ], + [ + 149, + 10, + 2, + 1, + 1 + ], + [ + 153, + 43, + 2, + 1, + 1 + ], + [ + 155, + 10, + 2, + 1, + 1 + ], + [ + 156, + 6, + 0, + 0, + 0 + ], + [ + 162, + 91, + 6, + 1, + 1 + ], + [ + 165, + 52, + 6, + 1, + 1 + ], + [ + 167, + 10, + 6, + 1, + 1 + ], + [ + 170, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 76, + "covered": 76, + "percent": 100 + }, + "functions": { + "count": 13, + "covered": 13, + "percent": 100 + }, + "instantiations": { + "count": 13, + "covered": 13, + "percent": 100 + }, + "regions": { + "count": 35, + "covered": 35, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/InternalError.swift", + "segments": [ + [ + 28, + 29, + 2, + 1, + 1 + ], + [ + 30, + 9, + 2, + 1, + 1 + ], + [ + 31, + 34, + 2, + 1, + 0 + ], + [ + 32, + 10, + 2, + 1, + 1 + ], + [ + 33, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "functions": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "instantiations": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "regions": { + "count": 3, + "covered": 3, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/JSONPError.swift", + "segments": [ + [ + 31, + 36, + 0, + 1, + 1 + ], + [ + 33, + 9, + 0, + 1, + 1 + ], + [ + 34, + 71, + 0, + 1, + 0 + ], + [ + 35, + 10, + 0, + 1, + 1 + ], + [ + 36, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 6, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 3, + "covered": 0, + "notcovered": 3, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift", + "segments": [ + [ + 66, + 81, + 4, + 1, + 1 + ], + [ + 76, + 6, + 0, + 0, + 0 + ], + [ + 95, + 87, + 3, + 1, + 1 + ], + [ + 103, + 6, + 0, + 0, + 0 + ], + [ + 117, + 29, + 1, + 1, + 1 + ], + [ + 118, + 21, + 1, + 1, + 1 + ], + [ + 118, + 51, + 1, + 1, + 0 + ], + [ + 121, + 6, + 0, + 0, + 0 + ], + [ + 132, + 31, + 5, + 1, + 1 + ], + [ + 134, + 51, + 5, + 1, + 1 + ], + [ + 135, + 25, + 5, + 1, + 1 + ], + [ + 135, + 69, + 5, + 1, + 0 + ], + [ + 136, + 16, + 5, + 1, + 1 + ], + [ + 138, + 14, + 5, + 1, + 0 + ], + [ + 138, + 21, + 1, + 1, + 1 + ], + [ + 139, + 27, + 1, + 1, + 1 + ], + [ + 139, + 110, + 1, + 1, + 0 + ], + [ + 140, + 14, + 5, + 1, + 1 + ], + [ + 141, + 10, + 5, + 1, + 1 + ], + [ + 142, + 54, + 3, + 1, + 1 + ], + [ + 143, + 25, + 3, + 1, + 1 + ], + [ + 143, + 71, + 3, + 1, + 0 + ], + [ + 144, + 16, + 3, + 1, + 1 + ], + [ + 146, + 14, + 3, + 1, + 0 + ], + [ + 146, + 21, + 3, + 1, + 1 + ], + [ + 147, + 27, + 3, + 1, + 1 + ], + [ + 147, + 110, + 3, + 1, + 0 + ], + [ + 148, + 14, + 3, + 1, + 1 + ], + [ + 149, + 10, + 5, + 1, + 1 + ], + [ + 151, + 6, + 0, + 0, + 0 + ], + [ + 167, + 53, + 5, + 1, + 1 + ], + [ + 169, + 51, + 5, + 1, + 1 + ], + [ + 170, + 25, + 5, + 1, + 1 + ], + [ + 170, + 66, + 5, + 1, + 0 + ], + [ + 172, + 10, + 5, + 1, + 1 + ], + [ + 174, + 54, + 3, + 1, + 1 + ], + [ + 175, + 25, + 3, + 1, + 1 + ], + [ + 175, + 69, + 3, + 1, + 0 + ], + [ + 177, + 10, + 5, + 1, + 1 + ], + [ + 179, + 23, + 4, + 1, + 1 + ], + [ + 182, + 10, + 5, + 1, + 1 + ], + [ + 184, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 70, + "covered": 70, + "percent": 100 + }, + "functions": { + "count": 12, + "covered": 12, + "percent": 100 + }, + "instantiations": { + "count": 12, + "covered": 12, + "percent": 100 + }, + "regions": { + "count": 28, + "covered": 28, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/MimeTypeAcceptor.swift", + "segments": [ + [ + 27, + 77, + 256, + 1, + 1 + ], + [ + 28, + 92, + 124, + 1, + 1 + ], + [ + 30, + 14, + 132, + 1, + 1 + ], + [ + 31, + 23, + 256, + 1, + 0 + ], + [ + 32, + 10, + 0, + 0, + 0 + ], + [ + 40, + 81, + 266, + 1, + 1 + ], + [ + 45, + 49, + 266, + 1, + 1 + ], + [ + 47, + 14, + 266, + 1, + 1 + ], + [ + 49, + 50, + 266, + 1, + 1 + ], + [ + 52, + 51, + 176, + 1, + 1 + ], + [ + 55, + 18, + 266, + 1, + 1 + ], + [ + 56, + 14, + 266, + 1, + 1 + ], + [ + 58, + 32, + 266, + 1, + 0 + ], + [ + 59, + 10, + 0, + 0, + 0 + ], + [ + 68, + 106, + 54, + 1, + 1 + ], + [ + 72, + 63, + 22, + 1, + 1 + ], + [ + 73, + 51, + 14, + 1, + 1 + ], + [ + 75, + 18, + 8, + 1, + 1 + ], + [ + 75, + 60, + 8, + 1, + 1 + ], + [ + 77, + 18, + 0, + 1, + 1 + ], + [ + 77, + 24, + 0, + 1, + 1 + ], + [ + 79, + 18, + 0, + 1, + 1 + ], + [ + 80, + 14, + 54, + 1, + 0 + ], + [ + 82, + 52, + 44, + 1, + 1 + ], + [ + 84, + 14, + 10, + 1, + 1 + ], + [ + 85, + 23, + 54, + 1, + 0 + ], + [ + 86, + 10, + 0, + 0, + 0 + ], + [ + 113, + 133, + 76, + 1, + 1 + ], + [ + 115, + 14, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 57, + "covered": 54, + "percent": 94 + }, + "functions": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "instantiations": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "regions": { + "count": 21, + "covered": 18, + "notcovered": 3, + "percent": 85 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift", + "segments": [ + [ + 36, + 20, + 1, + 1, + 1 + ], + [ + 37, + 12, + 1, + 1, + 1 + ], + [ + 42, + 10, + 1, + 1, + 0 + ], + [ + 42, + 17, + 0, + 1, + 1 + ], + [ + 43, + 23, + 0, + 1, + 1 + ], + [ + 43, + 90, + 0, + 1, + 0 + ], + [ + 45, + 10, + 1, + 1, + 1 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 54, + 128, + 2833, + 1, + 1 + ], + [ + 55, + 46, + 369, + 1, + 1 + ], + [ + 57, + 10, + 2464, + 1, + 1 + ], + [ + 60, + 74, + 2193, + 1, + 1 + ], + [ + 62, + 10, + 271, + 1, + 1 + ], + [ + 70, + 27, + 851, + 1, + 1 + ], + [ + 73, + 10, + 271, + 1, + 1 + ], + [ + 75, + 30, + 70, + 1, + 1 + ], + [ + 79, + 10, + 271, + 1, + 1 + ], + [ + 79, + 16, + 201, + 1, + 1 + ], + [ + 83, + 10, + 271, + 1, + 1 + ], + [ + 86, + 12, + 271, + 1, + 1 + ], + [ + 88, + 10, + 271, + 1, + 0 + ], + [ + 88, + 17, + 0, + 1, + 1 + ], + [ + 89, + 23, + 0, + 1, + 1 + ], + [ + 89, + 90, + 0, + 1, + 0 + ], + [ + 90, + 10, + 271, + 1, + 1 + ], + [ + 92, + 36, + 271, + 1, + 0 + ], + [ + 93, + 6, + 0, + 0, + 0 + ], + [ + 96, + 62, + 851, + 1, + 1 + ], + [ + 102, + 30, + 268, + 1, + 1 + ], + [ + 104, + 14, + 583, + 1, + 1 + ], + [ + 110, + 25, + 282, + 1, + 1 + ], + [ + 113, + 14, + 583, + 1, + 1 + ], + [ + 113, + 20, + 301, + 1, + 1 + ], + [ + 115, + 14, + 583, + 1, + 1 + ], + [ + 118, + 49, + 583, + 1, + 0 + ], + [ + 119, + 6, + 0, + 0, + 0 + ], + [ + 122, + 80, + 583, + 1, + 1 + ], + [ + 128, + 29, + 2, + 1, + 1 + ], + [ + 131, + 14, + 581, + 1, + 1 + ], + [ + 136, + 88, + 255, + 1, + 1 + ], + [ + 145, + 14, + 581, + 1, + 1 + ], + [ + 145, + 101, + 25, + 1, + 1 + ], + [ + 154, + 14, + 581, + 1, + 1 + ], + [ + 156, + 62, + 581, + 1, + 0 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 160, + 43, + 840, + 1, + 1 + ], + [ + 163, + 47, + 353, + 1, + 1 + ], + [ + 163, + 67, + 840, + 1, + 0 + ], + [ + 163, + 68, + 353, + 1, + 1 + ], + [ + 165, + 10, + 840, + 1, + 1 + ], + [ + 166, + 6, + 0, + 0, + 0 + ], + [ + 169, + 63, + 282, + 1, + 1 + ], + [ + 173, + 9, + 13, + 1, + 1 + ], + [ + 174, + 59, + 282, + 1, + 0 + ], + [ + 175, + 9, + 12, + 1, + 1 + ], + [ + 176, + 32, + 12, + 1, + 1 + ], + [ + 178, + 14, + 0, + 1, + 1 + ], + [ + 179, + 47, + 0, + 1, + 0 + ], + [ + 179, + 50, + 282, + 1, + 0 + ], + [ + 180, + 9, + 13, + 1, + 1 + ], + [ + 181, + 32, + 13, + 1, + 1 + ], + [ + 183, + 14, + 0, + 1, + 1 + ], + [ + 184, + 62, + 0, + 1, + 0 + ], + [ + 184, + 67, + 282, + 1, + 0 + ], + [ + 185, + 9, + 244, + 1, + 1 + ], + [ + 186, + 47, + 282, + 1, + 0 + ], + [ + 187, + 10, + 282, + 1, + 1 + ], + [ + 188, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 141, + "covered": 134, + "percent": 95 + }, + "functions": { + "count": 9, + "covered": 7, + "percent": 77 + }, + "instantiations": { + "count": 9, + "covered": 7, + "percent": 77 + }, + "regions": { + "count": 48, + "covered": 42, + "notcovered": 6, + "percent": 87 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift", + "segments": [ + [ + 95, + 80, + 550, + 1, + 1 + ], + [ + 98, + 55, + 520, + 1, + 1 + ], + [ + 98, + 75, + 550, + 1, + 0 + ], + [ + 98, + 78, + 30, + 1, + 1 + ], + [ + 98, + 81, + 550, + 1, + 0 + ], + [ + 100, + 21, + 196, + 1, + 1 + ], + [ + 100, + 41, + 550, + 1, + 0 + ], + [ + 101, + 6, + 0, + 0, + 0 + ], + [ + 103, + 102, + 1905, + 1, + 1 + ], + [ + 109, + 6, + 0, + 0, + 0 + ], + [ + 111, + 140, + 920, + 1, + 1 + ], + [ + 118, + 6, + 0, + 0, + 0 + ], + [ + 128, + 37, + 9, + 1, + 1 + ], + [ + 129, + 12, + 9, + 1, + 1 + ], + [ + 131, + 10, + 9, + 1, + 0 + ], + [ + 131, + 17, + 0, + 1, + 1 + ], + [ + 133, + 10, + 0, + 1, + 1 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 155, + 67, + 170, + 1, + 1 + ], + [ + 155, + 89, + 0, + 0, + 0 + ], + [ + 186, + 67, + 102, + 1, + 1 + ], + [ + 186, + 89, + 0, + 0, + 0 + ], + [ + 186, + 104, + 14, + 1, + 1 + ], + [ + 186, + 127, + 0, + 0, + 0 + ], + [ + 200, + 16, + 2, + 1, + 1 + ], + [ + 201, + 56, + 2, + 1, + 1 + ], + [ + 203, + 14, + 2, + 1, + 1 + ], + [ + 204, + 10, + 0, + 0, + 0 + ], + [ + 225, + 59, + 21, + 1, + 1 + ], + [ + 226, + 36, + 19, + 1, + 1 + ], + [ + 228, + 10, + 21, + 1, + 1 + ], + [ + 229, + 45, + 8, + 1, + 1 + ], + [ + 231, + 10, + 21, + 1, + 1 + ], + [ + 233, + 6, + 0, + 0, + 0 + ], + [ + 247, + 61, + 12, + 1, + 1 + ], + [ + 248, + 48, + 12, + 1, + 1 + ], + [ + 252, + 10, + 0, + 1, + 1 + ], + [ + 254, + 6, + 0, + 0, + 0 + ], + [ + 256, + 81, + 23, + 1, + 1 + ], + [ + 259, + 6, + 0, + 0, + 0 + ], + [ + 271, + 95, + 18, + 1, + 1 + ], + [ + 279, + 6, + 0, + 0, + 0 + ], + [ + 293, + 95, + 20, + 1, + 1 + ], + [ + 300, + 6, + 0, + 0, + 0 + ], + [ + 302, + 118, + 38, + 1, + 1 + ], + [ + 304, + 58, + 2, + 1, + 1 + ], + [ + 306, + 10, + 36, + 1, + 1 + ], + [ + 308, + 79, + 6, + 1, + 1 + ], + [ + 309, + 38, + 2, + 1, + 1 + ], + [ + 311, + 14, + 4, + 1, + 1 + ], + [ + 313, + 89, + 6, + 1, + 0 + ], + [ + 314, + 10, + 30, + 1, + 1 + ], + [ + 315, + 30, + 36, + 1, + 0 + ], + [ + 316, + 6, + 0, + 0, + 0 + ], + [ + 318, + 86, + 30, + 1, + 1 + ], + [ + 320, + 89, + 30, + 1, + 1 + ], + [ + 322, + 10, + 30, + 1, + 1 + ], + [ + 322, + 16, + 0, + 1, + 1 + ], + [ + 323, + 25, + 0, + 1, + 1 + ], + [ + 323, + 72, + 0, + 1, + 0 + ], + [ + 325, + 10, + 30, + 1, + 1 + ], + [ + 327, + 83, + 30, + 1, + 0 + ], + [ + 328, + 6, + 0, + 0, + 0 + ], + [ + 330, + 65, + 50, + 1, + 1 + ], + [ + 333, + 86, + 2, + 1, + 1 + ], + [ + 335, + 10, + 48, + 1, + 1 + ], + [ + 337, + 46, + 50, + 1, + 0 + ], + [ + 338, + 6, + 0, + 0, + 0 + ], + [ + 341, + 114, + 88, + 1, + 1 + ], + [ + 345, + 52, + 2, + 1, + 1 + ], + [ + 347, + 10, + 86, + 1, + 1 + ], + [ + 349, + 38, + 4, + 1, + 1 + ], + [ + 350, + 59, + 4, + 1, + 1 + ], + [ + 350, + 61, + 4, + 1, + 0 + ], + [ + 353, + 10, + 86, + 1, + 1 + ], + [ + 353, + 16, + 82, + 1, + 1 + ], + [ + 356, + 10, + 86, + 1, + 1 + ], + [ + 358, + 92, + 86, + 1, + 0 + ], + [ + 359, + 6, + 0, + 0, + 0 + ], + [ + 379, + 113, + 159, + 1, + 1 + ], + [ + 384, + 6, + 0, + 0, + 0 + ], + [ + 417, + 89, + 2, + 1, + 1 + ], + [ + 419, + 6, + 0, + 0, + 0 + ], + [ + 447, + 92, + 1, + 1, + 1 + ], + [ + 449, + 6, + 0, + 0, + 0 + ], + [ + 485, + 92, + 6, + 1, + 1 + ], + [ + 486, + 27, + 6, + 1, + 1 + ], + [ + 487, + 52, + 6, + 1, + 1 + ], + [ + 489, + 14, + 6, + 1, + 1 + ], + [ + 489, + 20, + 0, + 1, + 1 + ], + [ + 491, + 14, + 6, + 1, + 1 + ], + [ + 492, + 10, + 6, + 1, + 1 + ], + [ + 493, + 20, + 6, + 1, + 0 + ], + [ + 494, + 6, + 0, + 0, + 0 + ], + [ + 513, + 109, + 96, + 1, + 1 + ], + [ + 514, + 61, + 0, + 1, + 1 + ], + [ + 515, + 23, + 0, + 1, + 1 + ], + [ + 515, + 84, + 0, + 1, + 0 + ], + [ + 518, + 10, + 96, + 1, + 1 + ], + [ + 520, + 38, + 92, + 1, + 1 + ], + [ + 526, + 38, + 82, + 1, + 1 + ], + [ + 526, + 66, + 92, + 1, + 0 + ], + [ + 526, + 72, + 0, + 1, + 1 + ], + [ + 527, + 27, + 0, + 1, + 1 + ], + [ + 527, + 58, + 0, + 1, + 0 + ], + [ + 530, + 14, + 92, + 1, + 1 + ], + [ + 534, + 10, + 96, + 1, + 1 + ], + [ + 537, + 55, + 60, + 1, + 1 + ], + [ + 541, + 10, + 96, + 1, + 0 + ], + [ + 542, + 6, + 0, + 0, + 0 + ], + [ + 556, + 74, + 774, + 1, + 1 + ], + [ + 558, + 125, + 764, + 1, + 1 + ], + [ + 560, + 10, + 774, + 1, + 1 + ], + [ + 567, + 57, + 644, + 1, + 1 + ], + [ + 568, + 46, + 0, + 1, + 1 + ], + [ + 569, + 27, + 0, + 1, + 1 + ], + [ + 569, + 64, + 0, + 1, + 0 + ], + [ + 571, + 14, + 644, + 1, + 1 + ], + [ + 572, + 48, + 0, + 1, + 1 + ], + [ + 573, + 27, + 0, + 1, + 1 + ], + [ + 573, + 68, + 0, + 1, + 0 + ], + [ + 575, + 14, + 644, + 1, + 1 + ], + [ + 576, + 50, + 0, + 1, + 1 + ], + [ + 577, + 27, + 0, + 1, + 1 + ], + [ + 577, + 69, + 0, + 1, + 0 + ], + [ + 579, + 14, + 644, + 1, + 1 + ], + [ + 580, + 16, + 644, + 1, + 1 + ], + [ + 581, + 49, + 548, + 1, + 1 + ], + [ + 582, + 62, + 66, + 1, + 1 + ], + [ + 582, + 90, + 548, + 1, + 0 + ], + [ + 582, + 91, + 66, + 1, + 1 + ], + [ + 584, + 22, + 548, + 1, + 1 + ], + [ + 585, + 53, + 482, + 1, + 1 + ], + [ + 587, + 22, + 548, + 1, + 1 + ], + [ + 588, + 18, + 644, + 1, + 1 + ], + [ + 589, + 14, + 644, + 1, + 0 + ], + [ + 589, + 21, + 0, + 1, + 1 + ], + [ + 591, + 27, + 0, + 1, + 1 + ], + [ + 591, + 66, + 0, + 1, + 0 + ], + [ + 592, + 14, + 644, + 1, + 1 + ], + [ + 593, + 10, + 774, + 1, + 0 + ], + [ + 594, + 6, + 0, + 0, + 0 + ], + [ + 606, + 23, + 0, + 1, + 1 + ], + [ + 606, + 85, + 0, + 0, + 0 + ], + [ + 640, + 27, + 0, + 1, + 1 + ], + [ + 640, + 78, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 265, + "covered": 234, + "percent": 88 + }, + "functions": { + "count": 38, + "covered": 29, + "percent": 76 + }, + "instantiations": { + "count": 38, + "covered": 29, + "percent": 76 + }, + "regions": { + "count": 98, + "covered": 78, + "notcovered": 20, + "percent": 79 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift", + "segments": [ + [ + 62, + 73, + 2825, + 1, + 1 + ], + [ + 64, + 51, + 369, + 1, + 1 + ], + [ + 64, + 55, + 2825, + 1, + 0 + ], + [ + 64, + 58, + 2749, + 1, + 1 + ], + [ + 64, + 65, + 2825, + 1, + 0 + ], + [ + 64, + 68, + 76, + 1, + 1 + ], + [ + 64, + 86, + 0, + 1, + 1 + ], + [ + 64, + 88, + 76, + 1, + 0 + ], + [ + 64, + 89, + 2825, + 1, + 0 + ], + [ + 72, + 6, + 0, + 0, + 0 + ], + [ + 76, + 53, + 1905, + 1, + 1 + ], + [ + 78, + 43, + 1967, + 1, + 1 + ], + [ + 78, + 83, + 1905, + 1, + 0 + ], + [ + 80, + 6, + 0, + 0, + 0 + ], + [ + 92, + 136, + 6548, + 1, + 1 + ], + [ + 93, + 58, + 0, + 1, + 1 + ], + [ + 94, + 23, + 0, + 1, + 1 + ], + [ + 94, + 64, + 0, + 1, + 0 + ], + [ + 97, + 10, + 6548, + 1, + 1 + ], + [ + 99, + 41, + 66, + 1, + 1 + ], + [ + 99, + 57, + 6548, + 1, + 0 + ], + [ + 100, + 16, + 6540, + 1, + 1 + ], + [ + 100, + 42, + 6482, + 1, + 1 + ], + [ + 100, + 71, + 3516, + 1, + 1 + ], + [ + 100, + 85, + 6482, + 1, + 0 + ], + [ + 100, + 86, + 6540, + 1, + 0 + ], + [ + 100, + 87, + 6548, + 1, + 0 + ], + [ + 100, + 93, + 1920, + 1, + 1 + ], + [ + 103, + 10, + 4628, + 1, + 1 + ], + [ + 106, + 36, + 3886, + 1, + 1 + ], + [ + 109, + 10, + 742, + 1, + 1 + ], + [ + 112, + 38, + 50, + 1, + 1 + ], + [ + 115, + 52, + 2, + 1, + 1 + ], + [ + 115, + 70, + 50, + 1, + 0 + ], + [ + 115, + 73, + 48, + 1, + 1 + ], + [ + 115, + 76, + 50, + 1, + 0 + ], + [ + 119, + 10, + 692, + 1, + 1 + ], + [ + 124, + 121, + 424, + 1, + 1 + ], + [ + 127, + 10, + 268, + 1, + 1 + ], + [ + 135, + 70, + 266, + 1, + 1 + ], + [ + 137, + 10, + 268, + 1, + 0 + ], + [ + 138, + 6, + 0, + 0, + 0 + ], + [ + 149, + 129, + 3886, + 1, + 1 + ], + [ + 150, + 42, + 0, + 1, + 1 + ], + [ + 153, + 10, + 3886, + 1, + 1 + ], + [ + 155, + 42, + 16, + 1, + 1 + ], + [ + 155, + 45, + 3886, + 1, + 0 + ], + [ + 155, + 48, + 3870, + 1, + 1 + ], + [ + 155, + 52, + 3886, + 1, + 0 + ], + [ + 159, + 30, + 1040, + 1, + 1 + ], + [ + 161, + 27, + 212, + 1, + 1 + ], + [ + 161, + 41, + 1040, + 1, + 0 + ], + [ + 161, + 42, + 118, + 1, + 1 + ], + [ + 163, + 53, + 86, + 1, + 1 + ], + [ + 165, + 18, + 118, + 1, + 1 + ], + [ + 166, + 14, + 1040, + 1, + 1 + ], + [ + 167, + 38, + 212, + 1, + 1 + ], + [ + 167, + 54, + 1040, + 1, + 0 + ], + [ + 167, + 58, + 212, + 1, + 1 + ], + [ + 167, + 72, + 1040, + 1, + 0 + ], + [ + 167, + 75, + 118, + 1, + 1 + ], + [ + 167, + 82, + 1040, + 1, + 0 + ], + [ + 167, + 85, + 922, + 1, + 1 + ], + [ + 167, + 87, + 1040, + 1, + 0 + ], + [ + 168, + 10, + 3886, + 1, + 1 + ], + [ + 169, + 14, + 2846, + 1, + 1 + ], + [ + 171, + 37, + 446, + 1, + 1 + ], + [ + 171, + 48, + 2846, + 1, + 0 + ], + [ + 171, + 51, + 2400, + 1, + 1 + ], + [ + 171, + 53, + 2846, + 1, + 0 + ], + [ + 172, + 10, + 3886, + 1, + 1 + ], + [ + 174, + 20, + 658, + 1, + 1 + ], + [ + 177, + 52, + 28, + 1, + 1 + ], + [ + 177, + 70, + 658, + 1, + 0 + ], + [ + 177, + 73, + 630, + 1, + 1 + ], + [ + 177, + 76, + 658, + 1, + 0 + ], + [ + 180, + 10, + 3886, + 1, + 1 + ], + [ + 181, + 14, + 3228, + 1, + 1 + ], + [ + 183, + 10, + 3886, + 1, + 1 + ], + [ + 184, + 6, + 0, + 0, + 0 + ], + [ + 191, + 110, + 974, + 1, + 1 + ], + [ + 194, + 6, + 0, + 0, + 0 + ], + [ + 200, + 127, + 268, + 1, + 1 + ], + [ + 201, + 44, + 4, + 1, + 1 + ], + [ + 201, + 62, + 268, + 1, + 0 + ], + [ + 201, + 65, + 264, + 1, + 1 + ], + [ + 201, + 68, + 268, + 1, + 0 + ], + [ + 203, + 28, + 268, + 1, + 1 + ], + [ + 204, + 41, + 284, + 1, + 1 + ], + [ + 207, + 60, + 258, + 1, + 1 + ], + [ + 207, + 85, + 284, + 1, + 0 + ], + [ + 207, + 87, + 258, + 1, + 1 + ], + [ + 209, + 81, + 258, + 1, + 1 + ], + [ + 211, + 22, + 258, + 1, + 1 + ], + [ + 211, + 28, + 0, + 1, + 1 + ], + [ + 212, + 37, + 0, + 1, + 1 + ], + [ + 212, + 80, + 0, + 1, + 0 + ], + [ + 213, + 22, + 258, + 1, + 1 + ], + [ + 215, + 18, + 284, + 1, + 1 + ], + [ + 216, + 14, + 268, + 1, + 1 + ], + [ + 217, + 10, + 268, + 1, + 1 + ], + [ + 219, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 139, + "covered": 130, + "percent": 93 + }, + "functions": { + "count": 19, + "covered": 16, + "percent": 84 + }, + "instantiations": { + "count": 19, + "covered": 16, + "percent": 84 + }, + "regions": { + "count": 68, + "covered": 62, + "notcovered": 6, + "percent": 91 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElementWalker.swift", + "segments": [ + [ + 43, + 91, + 866, + 1, + 1 + ], + [ + 51, + 6, + 0, + 0, + 0 + ], + [ + 54, + 17, + 7252, + 1, + 1 + ], + [ + 57, + 47, + 6548, + 1, + 1 + ], + [ + 63, + 56, + 6386, + 1, + 1 + ], + [ + 66, + 14, + 6548, + 1, + 0 + ], + [ + 67, + 10, + 7252, + 1, + 1 + ], + [ + 67, + 16, + 704, + 1, + 1 + ], + [ + 69, + 10, + 7252, + 1, + 1 + ], + [ + 70, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 30, + "covered": 30, + "percent": 100 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 7, + "covered": 7, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs+Error.swift", + "segments": [ + [ + 28, + 62, + 35, + 1, + 1 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 38, + 61, + 35, + 1, + 1 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 48, + 68, + 35, + 1, + 1 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 58, + 67, + 35, + 1, + 1 + ], + [ + 60, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 12, + "covered": 12, + "percent": 100 + }, + "functions": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "instantiations": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "regions": { + "count": 4, + "covered": 4, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift", + "segments": [ + [ + 31, + 79, + 58, + 1, + 1 + ], + [ + 33, + 6, + 0, + 0, + 0 + ], + [ + 44, + 78, + 1, + 1, + 1 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 59, + 117, + 795, + 1, + 1 + ], + [ + 61, + 6, + 0, + 0, + 0 + ], + [ + 74, + 116, + 1, + 1, + 1 + ], + [ + 76, + 6, + 0, + 0, + 0 + ], + [ + 88, + 79, + 1257, + 1, + 1 + ], + [ + 90, + 6, + 0, + 0, + 0 + ], + [ + 101, + 78, + 1, + 1, + 1 + ], + [ + 103, + 6, + 0, + 0, + 0 + ], + [ + 116, + 117, + 3, + 1, + 1 + ], + [ + 118, + 6, + 0, + 0, + 0 + ], + [ + 131, + 116, + 1, + 1, + 1 + ], + [ + 133, + 6, + 0, + 0, + 0 + ], + [ + 145, + 80, + 1, + 1, + 1 + ], + [ + 147, + 6, + 0, + 0, + 0 + ], + [ + 158, + 79, + 1, + 1, + 1 + ], + [ + 160, + 6, + 0, + 0, + 0 + ], + [ + 173, + 118, + 1, + 1, + 1 + ], + [ + 175, + 6, + 0, + 0, + 0 + ], + [ + 188, + 117, + 1, + 1, + 1 + ], + [ + 190, + 6, + 0, + 0, + 0 + ], + [ + 202, + 80, + 366, + 1, + 1 + ], + [ + 204, + 6, + 0, + 0, + 0 + ], + [ + 215, + 79, + 1, + 1, + 1 + ], + [ + 217, + 6, + 0, + 0, + 0 + ], + [ + 230, + 118, + 1, + 1, + 1 + ], + [ + 232, + 6, + 0, + 0, + 0 + ], + [ + 245, + 117, + 1, + 1, + 1 + ], + [ + 247, + 6, + 0, + 0, + 0 + ], + [ + 259, + 79, + 31, + 1, + 1 + ], + [ + 261, + 6, + 0, + 0, + 0 + ], + [ + 272, + 78, + 1, + 1, + 1 + ], + [ + 274, + 6, + 0, + 0, + 0 + ], + [ + 287, + 117, + 1, + 1, + 1 + ], + [ + 289, + 6, + 0, + 0, + 0 + ], + [ + 302, + 116, + 1, + 1, + 1 + ], + [ + 304, + 6, + 0, + 0, + 0 + ], + [ + 316, + 82, + 55, + 1, + 1 + ], + [ + 318, + 6, + 0, + 0, + 0 + ], + [ + 329, + 81, + 1, + 1, + 1 + ], + [ + 331, + 6, + 0, + 0, + 0 + ], + [ + 344, + 120, + 1, + 1, + 1 + ], + [ + 346, + 6, + 0, + 0, + 0 + ], + [ + 359, + 119, + 1, + 1, + 1 + ], + [ + 361, + 6, + 0, + 0, + 0 + ], + [ + 373, + 83, + 1, + 1, + 1 + ], + [ + 375, + 6, + 0, + 0, + 0 + ], + [ + 386, + 82, + 1, + 1, + 1 + ], + [ + 388, + 6, + 0, + 0, + 0 + ], + [ + 401, + 121, + 1, + 1, + 1 + ], + [ + 403, + 6, + 0, + 0, + 0 + ], + [ + 416, + 120, + 1, + 1, + 1 + ], + [ + 418, + 6, + 0, + 0, + 0 + ], + [ + 430, + 81, + 1, + 1, + 1 + ], + [ + 432, + 6, + 0, + 0, + 0 + ], + [ + 443, + 80, + 1, + 1, + 1 + ], + [ + 445, + 6, + 0, + 0, + 0 + ], + [ + 458, + 119, + 1, + 1, + 1 + ], + [ + 460, + 6, + 0, + 0, + 0 + ], + [ + 473, + 118, + 1, + 1, + 1 + ], + [ + 475, + 6, + 0, + 0, + 0 + ], + [ + 487, + 80, + 1, + 1, + 1 + ], + [ + 489, + 6, + 0, + 0, + 0 + ], + [ + 500, + 79, + 1, + 1, + 1 + ], + [ + 502, + 6, + 0, + 0, + 0 + ], + [ + 515, + 118, + 1, + 1, + 1 + ], + [ + 517, + 6, + 0, + 0, + 0 + ], + [ + 530, + 117, + 1, + 1, + 1 + ], + [ + 532, + 6, + 0, + 0, + 0 + ], + [ + 544, + 80, + 1, + 1, + 1 + ], + [ + 546, + 6, + 0, + 0, + 0 + ], + [ + 557, + 79, + 1, + 1, + 1 + ], + [ + 559, + 6, + 0, + 0, + 0 + ], + [ + 572, + 118, + 1, + 1, + 1 + ], + [ + 574, + 6, + 0, + 0, + 0 + ], + [ + 587, + 117, + 1, + 1, + 1 + ], + [ + 589, + 6, + 0, + 0, + 0 + ], + [ + 601, + 81, + 1, + 1, + 1 + ], + [ + 603, + 6, + 0, + 0, + 0 + ], + [ + 614, + 80, + 1, + 1, + 1 + ], + [ + 616, + 6, + 0, + 0, + 0 + ], + [ + 629, + 119, + 1, + 1, + 1 + ], + [ + 631, + 6, + 0, + 0, + 0 + ], + [ + 644, + 118, + 1, + 1, + 1 + ], + [ + 646, + 6, + 0, + 0, + 0 + ], + [ + 658, + 80, + 1, + 1, + 1 + ], + [ + 660, + 6, + 0, + 0, + 0 + ], + [ + 671, + 79, + 1, + 1, + 1 + ], + [ + 673, + 6, + 0, + 0, + 0 + ], + [ + 686, + 118, + 1, + 1, + 1 + ], + [ + 688, + 6, + 0, + 0, + 0 + ], + [ + 701, + 117, + 1, + 1, + 1 + ], + [ + 703, + 6, + 0, + 0, + 0 + ], + [ + 715, + 81, + 1, + 1, + 1 + ], + [ + 717, + 6, + 0, + 0, + 0 + ], + [ + 728, + 80, + 1, + 1, + 1 + ], + [ + 730, + 6, + 0, + 0, + 0 + ], + [ + 743, + 119, + 1, + 1, + 1 + ], + [ + 745, + 6, + 0, + 0, + 0 + ], + [ + 758, + 118, + 1, + 1, + 1 + ], + [ + 760, + 6, + 0, + 0, + 0 + ], + [ + 772, + 84, + 1, + 1, + 1 + ], + [ + 774, + 6, + 0, + 0, + 0 + ], + [ + 785, + 83, + 1, + 1, + 1 + ], + [ + 787, + 6, + 0, + 0, + 0 + ], + [ + 800, + 122, + 1, + 1, + 1 + ], + [ + 802, + 6, + 0, + 0, + 0 + ], + [ + 815, + 121, + 1, + 1, + 1 + ], + [ + 817, + 6, + 0, + 0, + 0 + ], + [ + 829, + 85, + 1, + 1, + 1 + ], + [ + 831, + 6, + 0, + 0, + 0 + ], + [ + 842, + 84, + 1, + 1, + 1 + ], + [ + 844, + 6, + 0, + 0, + 0 + ], + [ + 857, + 123, + 1, + 1, + 1 + ], + [ + 859, + 6, + 0, + 0, + 0 + ], + [ + 872, + 122, + 1, + 1, + 1 + ], + [ + 874, + 6, + 0, + 0, + 0 + ], + [ + 886, + 82, + 1, + 1, + 1 + ], + [ + 888, + 6, + 0, + 0, + 0 + ], + [ + 899, + 81, + 1, + 1, + 1 + ], + [ + 901, + 6, + 0, + 0, + 0 + ], + [ + 914, + 120, + 1, + 1, + 1 + ], + [ + 916, + 6, + 0, + 0, + 0 + ], + [ + 929, + 119, + 1, + 1, + 1 + ], + [ + 931, + 6, + 0, + 0, + 0 + ], + [ + 943, + 82, + 1, + 1, + 1 + ], + [ + 945, + 6, + 0, + 0, + 0 + ], + [ + 956, + 81, + 1, + 1, + 1 + ], + [ + 958, + 6, + 0, + 0, + 0 + ], + [ + 971, + 120, + 1, + 1, + 1 + ], + [ + 973, + 6, + 0, + 0, + 0 + ], + [ + 986, + 119, + 1, + 1, + 1 + ], + [ + 988, + 6, + 0, + 0, + 0 + ], + [ + 1000, + 86, + 1, + 1, + 1 + ], + [ + 1002, + 6, + 0, + 0, + 0 + ], + [ + 1013, + 85, + 1, + 1, + 1 + ], + [ + 1015, + 6, + 0, + 0, + 0 + ], + [ + 1028, + 124, + 1, + 1, + 1 + ], + [ + 1030, + 6, + 0, + 0, + 0 + ], + [ + 1043, + 123, + 1, + 1, + 1 + ], + [ + 1045, + 6, + 0, + 0, + 0 + ], + [ + 1057, + 84, + 1, + 1, + 1 + ], + [ + 1059, + 6, + 0, + 0, + 0 + ], + [ + 1070, + 83, + 1, + 1, + 1 + ], + [ + 1072, + 6, + 0, + 0, + 0 + ], + [ + 1085, + 122, + 1, + 1, + 1 + ], + [ + 1087, + 6, + 0, + 0, + 0 + ], + [ + 1100, + 121, + 1, + 1, + 1 + ], + [ + 1102, + 6, + 0, + 0, + 0 + ], + [ + 1114, + 81, + 1, + 1, + 1 + ], + [ + 1116, + 6, + 0, + 0, + 0 + ], + [ + 1127, + 80, + 1, + 1, + 1 + ], + [ + 1129, + 6, + 0, + 0, + 0 + ], + [ + 1142, + 119, + 1, + 1, + 1 + ], + [ + 1144, + 6, + 0, + 0, + 0 + ], + [ + 1157, + 118, + 1, + 1, + 1 + ], + [ + 1159, + 6, + 0, + 0, + 0 + ], + [ + 1171, + 83, + 1, + 1, + 1 + ], + [ + 1173, + 6, + 0, + 0, + 0 + ], + [ + 1184, + 82, + 1, + 1, + 1 + ], + [ + 1186, + 6, + 0, + 0, + 0 + ], + [ + 1199, + 121, + 1, + 1, + 1 + ], + [ + 1201, + 6, + 0, + 0, + 0 + ], + [ + 1214, + 120, + 1, + 1, + 1 + ], + [ + 1216, + 6, + 0, + 0, + 0 + ], + [ + 1228, + 82, + 1, + 1, + 1 + ], + [ + 1230, + 6, + 0, + 0, + 0 + ], + [ + 1241, + 81, + 1, + 1, + 1 + ], + [ + 1243, + 6, + 0, + 0, + 0 + ], + [ + 1256, + 120, + 1, + 1, + 1 + ], + [ + 1258, + 6, + 0, + 0, + 0 + ], + [ + 1271, + 119, + 1, + 1, + 1 + ], + [ + 1273, + 6, + 0, + 0, + 0 + ], + [ + 1285, + 85, + 1, + 1, + 1 + ], + [ + 1287, + 6, + 0, + 0, + 0 + ], + [ + 1298, + 84, + 1, + 1, + 1 + ], + [ + 1300, + 6, + 0, + 0, + 0 + ], + [ + 1313, + 123, + 1, + 1, + 1 + ], + [ + 1315, + 6, + 0, + 0, + 0 + ], + [ + 1328, + 122, + 1, + 1, + 1 + ], + [ + 1330, + 6, + 0, + 0, + 0 + ], + [ + 1342, + 87, + 1, + 1, + 1 + ], + [ + 1344, + 6, + 0, + 0, + 0 + ], + [ + 1355, + 86, + 1, + 1, + 1 + ], + [ + 1357, + 6, + 0, + 0, + 0 + ], + [ + 1370, + 125, + 1, + 1, + 1 + ], + [ + 1372, + 6, + 0, + 0, + 0 + ], + [ + 1385, + 124, + 1, + 1, + 1 + ], + [ + 1387, + 6, + 0, + 0, + 0 + ], + [ + 1399, + 81, + 20, + 1, + 1 + ], + [ + 1401, + 6, + 0, + 0, + 0 + ], + [ + 1412, + 80, + 1, + 1, + 1 + ], + [ + 1414, + 6, + 0, + 0, + 0 + ], + [ + 1427, + 119, + 1, + 1, + 1 + ], + [ + 1429, + 6, + 0, + 0, + 0 + ], + [ + 1442, + 118, + 1, + 1, + 1 + ], + [ + 1444, + 6, + 0, + 0, + 0 + ], + [ + 1456, + 82, + 1, + 1, + 1 + ], + [ + 1458, + 6, + 0, + 0, + 0 + ], + [ + 1469, + 81, + 1, + 1, + 1 + ], + [ + 1471, + 6, + 0, + 0, + 0 + ], + [ + 1484, + 120, + 1, + 1, + 1 + ], + [ + 1486, + 6, + 0, + 0, + 0 + ], + [ + 1499, + 119, + 1, + 1, + 1 + ], + [ + 1501, + 6, + 0, + 0, + 0 + ], + [ + 1513, + 83, + 1, + 1, + 1 + ], + [ + 1515, + 6, + 0, + 0, + 0 + ], + [ + 1526, + 82, + 1, + 1, + 1 + ], + [ + 1528, + 6, + 0, + 0, + 0 + ], + [ + 1541, + 121, + 1, + 1, + 1 + ], + [ + 1543, + 6, + 0, + 0, + 0 + ], + [ + 1556, + 120, + 1, + 1, + 1 + ], + [ + 1558, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 324, + "covered": 324, + "percent": 100 + }, + "functions": { + "count": 108, + "covered": 108, + "percent": 100 + }, + "instantiations": { + "count": 108, + "covered": 108, + "percent": 100 + }, + "regions": { + "count": 108, + "covered": 108, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMethod.swift", + "segments": [ + [ + 111, + 32, + 776, + 1, + 1 + ], + [ + 112, + 56, + 2, + 1, + 1 + ], + [ + 112, + 64, + 776, + 1, + 0 + ], + [ + 113, + 6, + 0, + 0, + 0 + ], + [ + 119, + 36, + 166, + 1, + 1 + ], + [ + 121, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 7, + "covered": 7, + "percent": 100 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 3, + "covered": 3, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareGenerator.swift", + "segments": [ + [ + 29, + 51, + 1977, + 1, + 1 + ], + [ + 31, + 6, + 0, + 0, + 0 + ], + [ + 42, + 109, + 670, + 1, + 1 + ], + [ + 44, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "functions": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "instantiations": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "regions": { + "count": 2, + "covered": 2, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift", + "segments": [ + [ + 44, + 147, + 974, + 1, + 1 + ], + [ + 51, + 6, + 0, + 0, + 0 + ], + [ + 54, + 17, + 978, + 1, + 1 + ], + [ + 57, + 51, + 976, + 1, + 1 + ], + [ + 57, + 77, + 8, + 1, + 1 + ], + [ + 57, + 93, + 976, + 1, + 0 + ], + [ + 57, + 94, + 978, + 1, + 0 + ], + [ + 57, + 95, + 976, + 1, + 1 + ], + [ + 58, + 16, + 976, + 1, + 1 + ], + [ + 59, + 72, + 974, + 1, + 1 + ], + [ + 59, + 80, + 976, + 1, + 0 + ], + [ + 59, + 83, + 2, + 1, + 1 + ], + [ + 62, + 18, + 976, + 1, + 0 + ], + [ + 68, + 21, + 2, + 1, + 1 + ], + [ + 72, + 27, + 2, + 1, + 1 + ], + [ + 72, + 37, + 2, + 1, + 0 + ], + [ + 74, + 14, + 976, + 1, + 1 + ], + [ + 76, + 10, + 978, + 1, + 1 + ], + [ + 76, + 16, + 2, + 1, + 1 + ], + [ + 78, + 10, + 978, + 1, + 1 + ], + [ + 79, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 41, + "covered": 41, + "percent": 100 + }, + "functions": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "instantiations": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "regions": { + "count": 14, + "covered": 14, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift", + "segments": [ + [ + 54, + 57, + 866, + 1, + 1 + ], + [ + 56, + 6, + 0, + 0, + 0 + ], + [ + 66, + 104, + 268, + 1, + 1 + ], + [ + 67, + 53, + 252, + 1, + 1 + ], + [ + 70, + 10, + 16, + 1, + 1 + ], + [ + 72, + 50, + 24, + 1, + 1 + ], + [ + 73, + 58, + 16, + 1, + 1 + ], + [ + 73, + 103, + 24, + 1, + 0 + ], + [ + 74, + 14, + 16, + 1, + 0 + ], + [ + 74, + 19, + 16, + 1, + 1 + ], + [ + 74, + 31, + 16, + 1, + 0 + ], + [ + 77, + 6, + 0, + 0, + 0 + ], + [ + 79, + 142, + 50, + 1, + 1 + ], + [ + 80, + 39, + 14, + 1, + 1 + ], + [ + 83, + 10, + 36, + 1, + 1 + ], + [ + 89, + 52, + 0, + 1, + 1 + ], + [ + 89, + 53, + 36, + 1, + 0 + ], + [ + 90, + 70, + 22, + 1, + 1 + ], + [ + 91, + 16, + 22, + 1, + 1 + ], + [ + 92, + 55, + 20, + 1, + 1 + ], + [ + 94, + 18, + 22, + 1, + 0 + ], + [ + 95, + 21, + 0, + 1, + 1 + ], + [ + 98, + 14, + 22, + 1, + 1 + ], + [ + 99, + 10, + 36, + 1, + 1 + ], + [ + 99, + 16, + 14, + 1, + 1 + ], + [ + 104, + 10, + 36, + 1, + 1 + ], + [ + 105, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 51, + "covered": 48, + "percent": 94 + }, + "functions": { + "count": 8, + "covered": 7, + "percent": 87 + }, + "instantiations": { + "count": 8, + "covered": 7, + "percent": 87 + }, + "regions": { + "count": 19, + "covered": 17, + "notcovered": 2, + "percent": 89 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift", + "segments": [ + [ + 52, + 33, + 44, + 1, + 1 + ], + [ + 53, + 31, + 0, + 1, + 1 + ], + [ + 53, + 33, + 44, + 1, + 0 + ], + [ + 54, + 6, + 0, + 0, + 0 + ], + [ + 57, + 26, + 2, + 1, + 1 + ], + [ + 58, + 31, + 0, + 1, + 1 + ], + [ + 58, + 59, + 0, + 1, + 1 + ], + [ + 58, + 62, + 0, + 1, + 0 + ], + [ + 58, + 65, + 0, + 1, + 1 + ], + [ + 58, + 67, + 0, + 1, + 0 + ], + [ + 58, + 68, + 2, + 1, + 0 + ], + [ + 59, + 6, + 0, + 0, + 0 + ], + [ + 62, + 51, + 6, + 1, + 1 + ], + [ + 64, + 12, + 6, + 1, + 1 + ], + [ + 69, + 110, + 2, + 1, + 1 + ], + [ + 71, + 14, + 4, + 1, + 1 + ], + [ + 75, + 74, + 6, + 1, + 0 + ], + [ + 76, + 17, + 0, + 1, + 1 + ], + [ + 77, + 23, + 0, + 1, + 1 + ], + [ + 77, + 81, + 0, + 1, + 0 + ], + [ + 79, + 10, + 0, + 1, + 1 + ], + [ + 80, + 10, + 0, + 0, + 0 + ], + [ + 83, + 57, + 6, + 1, + 1 + ], + [ + 93, + 34, + 20, + 1, + 1 + ], + [ + 93, + 49, + 6, + 1, + 0 + ], + [ + 94, + 10, + 0, + 0, + 0 + ], + [ + 106, + 38, + 2, + 1, + 1 + ], + [ + 106, + 76, + 0, + 0, + 0 + ], + [ + 114, + 57, + 88, + 1, + 1 + ], + [ + 115, + 41, + 0, + 1, + 1 + ], + [ + 117, + 10, + 88, + 1, + 1 + ], + [ + 117, + 16, + 88, + 1, + 1 + ], + [ + 121, + 10, + 0, + 1, + 1 + ], + [ + 122, + 10, + 0, + 0, + 0 + ], + [ + 133, + 36, + 0, + 1, + 1 + ], + [ + 133, + 82, + 0, + 0, + 0 + ], + [ + 140, + 28, + 0, + 1, + 1 + ], + [ + 140, + 62, + 0, + 0, + 0 + ], + [ + 146, + 45, + 0, + 1, + 1 + ], + [ + 146, + 83, + 0, + 0, + 0 + ], + [ + 149, + 28, + 186, + 1, + 1 + ], + [ + 149, + 59, + 0, + 0, + 0 + ], + [ + 160, + 53, + 10, + 1, + 1 + ], + [ + 162, + 10, + 0, + 0, + 0 + ], + [ + 167, + 56, + 114, + 1, + 1 + ], + [ + 168, + 64, + 16, + 1, + 1 + ], + [ + 168, + 67, + 114, + 1, + 0 + ], + [ + 169, + 10, + 0, + 0, + 0 + ], + [ + 172, + 70, + 2, + 1, + 1 + ], + [ + 173, + 69, + 0, + 1, + 1 + ], + [ + 173, + 72, + 2, + 1, + 0 + ], + [ + 174, + 6, + 0, + 0, + 0 + ], + [ + 180, + 75, + 4, + 1, + 1 + ], + [ + 182, + 6, + 0, + 0, + 0 + ], + [ + 203, + 57, + 774, + 1, + 1 + ], + [ + 206, + 76, + 0, + 1, + 1 + ], + [ + 206, + 77, + 774, + 1, + 0 + ], + [ + 206, + 120, + 0, + 1, + 1 + ], + [ + 206, + 121, + 774, + 1, + 0 + ], + [ + 210, + 6, + 0, + 0, + 0 + ], + [ + 217, + 59, + 58, + 1, + 1 + ], + [ + 219, + 6, + 0, + 0, + 0 + ], + [ + 244, + 65, + 90, + 1, + 1 + ], + [ + 247, + 39, + 2, + 1, + 1 + ], + [ + 247, + 52, + 90, + 1, + 0 + ], + [ + 249, + 6, + 0, + 0, + 0 + ], + [ + 255, + 48, + 2, + 1, + 1 + ], + [ + 257, + 6, + 0, + 0, + 0 + ], + [ + 267, + 80, + 56, + 1, + 1 + ], + [ + 268, + 60, + 2, + 1, + 1 + ], + [ + 270, + 10, + 54, + 1, + 1 + ], + [ + 275, + 68, + 38, + 1, + 1 + ], + [ + 277, + 10, + 54, + 1, + 1 + ], + [ + 277, + 16, + 16, + 1, + 1 + ], + [ + 279, + 10, + 54, + 1, + 1 + ], + [ + 280, + 116, + 54, + 1, + 0 + ], + [ + 281, + 6, + 0, + 0, + 0 + ], + [ + 289, + 81, + 32, + 1, + 1 + ], + [ + 291, + 6, + 0, + 0, + 0 + ], + [ + 299, + 77, + 6, + 1, + 1 + ], + [ + 301, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 113, + "covered": 98, + "percent": 86 + }, + "functions": { + "count": 30, + "covered": 21, + "percent": 70 + }, + "instantiations": { + "count": 30, + "covered": 21, + "percent": 70 + }, + "regions": { + "count": 47, + "covered": 32, + "notcovered": 15, + "percent": 68 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift", + "segments": [ + [ + 55, + 20, + 544, + 1, + 1 + ], + [ + 56, + 35, + 544, + 1, + 1 + ], + [ + 56, + 67, + 544, + 1, + 0 + ], + [ + 56, + 68, + 262, + 1, + 1 + ], + [ + 59, + 18, + 544, + 1, + 1 + ], + [ + 60, + 14, + 0, + 0, + 0 + ], + [ + 71, + 46, + 774, + 1, + 1 + ], + [ + 71, + 48, + 0, + 0, + 0 + ], + [ + 74, + 52, + 774, + 1, + 1 + ], + [ + 76, + 10, + 0, + 0, + 0 + ], + [ + 78, + 43, + 774, + 1, + 1 + ], + [ + 79, + 28, + 0, + 1, + 1 + ], + [ + 79, + 30, + 774, + 1, + 0 + ], + [ + 80, + 10, + 0, + 0, + 0 + ], + [ + 82, + 48, + 774, + 1, + 1 + ], + [ + 83, + 33, + 0, + 1, + 1 + ], + [ + 85, + 14, + 774, + 1, + 0 + ], + [ + 86, + 10, + 0, + 0, + 0 + ], + [ + 111, + 78, + 1, + 1, + 1 + ], + [ + 112, + 12, + 1, + 1, + 1 + ], + [ + 114, + 10, + 1, + 1, + 0 + ], + [ + 114, + 17, + 0, + 1, + 1 + ], + [ + 115, + 23, + 0, + 1, + 1 + ], + [ + 115, + 79, + 0, + 1, + 0 + ], + [ + 117, + 10, + 0, + 1, + 1 + ], + [ + 118, + 6, + 0, + 0, + 0 + ], + [ + 131, + 13, + 1876, + 1, + 1 + ], + [ + 132, + 43, + 0, + 1, + 1 + ], + [ + 132, + 51, + 1876, + 1, + 0 + ], + [ + 133, + 10, + 0, + 0, + 0 + ], + [ + 135, + 23, + 1096, + 1, + 1 + ], + [ + 137, + 10, + 0, + 0, + 0 + ], + [ + 153, + 167, + 774, + 1, + 1 + ], + [ + 162, + 6, + 0, + 0, + 0 + ], + [ + 164, + 12, + 774, + 1, + 1 + ], + [ + 165, + 30, + 0, + 1, + 1 + ], + [ + 166, + 38, + 2, + 1, + 1 + ], + [ + 166, + 60, + 0, + 1, + 0 + ], + [ + 166, + 61, + 0, + 1, + 1 + ], + [ + 168, + 14, + 0, + 1, + 1 + ], + [ + 170, + 16, + 0, + 1, + 1 + ], + [ + 172, + 14, + 0, + 1, + 0 + ], + [ + 172, + 21, + 0, + 1, + 1 + ], + [ + 173, + 29, + 0, + 1, + 1 + ], + [ + 173, + 70, + 0, + 1, + 0 + ], + [ + 174, + 14, + 0, + 1, + 1 + ], + [ + 175, + 10, + 774, + 1, + 1 + ], + [ + 176, + 6, + 0, + 0, + 0 + ], + [ + 183, + 30, + 778, + 1, + 1 + ], + [ + 184, + 38, + 4, + 1, + 1 + ], + [ + 185, + 25, + 4, + 1, + 1 + ], + [ + 185, + 97, + 4, + 1, + 0 + ], + [ + 187, + 10, + 774, + 1, + 1 + ], + [ + 192, + 35, + 2, + 1, + 1 + ], + [ + 194, + 10, + 774, + 1, + 1 + ], + [ + 200, + 34, + 774, + 1, + 1 + ], + [ + 202, + 10, + 774, + 1, + 1 + ], + [ + 204, + 30, + 4, + 1, + 1 + ], + [ + 206, + 10, + 774, + 1, + 1 + ], + [ + 208, + 37, + 772, + 1, + 1 + ], + [ + 210, + 10, + 774, + 1, + 1 + ], + [ + 213, + 6, + 0, + 0, + 0 + ], + [ + 216, + 31, + 4, + 1, + 1 + ], + [ + 219, + 37, + 6, + 1, + 1 + ], + [ + 221, + 54, + 2, + 1, + 1 + ], + [ + 223, + 14, + 6, + 1, + 1 + ], + [ + 225, + 33, + 2, + 1, + 1 + ], + [ + 227, + 14, + 6, + 1, + 1 + ], + [ + 230, + 10, + 4, + 1, + 1 + ], + [ + 232, + 6, + 0, + 0, + 0 + ], + [ + 246, + 94, + 124, + 1, + 1 + ], + [ + 249, + 13, + 6, + 1, + 1 + ], + [ + 249, + 32, + 124, + 1, + 0 + ], + [ + 250, + 13, + 6, + 1, + 1 + ], + [ + 250, + 32, + 124, + 1, + 0 + ], + [ + 251, + 13, + 6, + 1, + 1 + ], + [ + 251, + 34, + 124, + 1, + 0 + ], + [ + 251, + 35, + 122, + 1, + 1 + ], + [ + 252, + 72, + 122, + 1, + 1 + ], + [ + 254, + 14, + 0, + 1, + 1 + ], + [ + 254, + 20, + 0, + 1, + 1 + ], + [ + 256, + 14, + 0, + 1, + 1 + ], + [ + 257, + 10, + 2, + 1, + 1 + ], + [ + 258, + 60, + 4, + 1, + 1 + ], + [ + 258, + 78, + 2, + 1, + 0 + ], + [ + 262, + 18, + 0, + 1, + 1 + ], + [ + 263, + 76, + 0, + 1, + 1 + ], + [ + 265, + 18, + 0, + 1, + 1 + ], + [ + 265, + 24, + 0, + 1, + 1 + ], + [ + 267, + 18, + 0, + 1, + 1 + ], + [ + 268, + 10, + 2, + 1, + 1 + ], + [ + 269, + 46, + 2, + 1, + 0 + ], + [ + 270, + 6, + 0, + 0, + 0 + ], + [ + 279, + 68, + 530, + 1, + 1 + ], + [ + 282, + 6, + 0, + 0, + 0 + ], + [ + 293, + 111, + 16, + 1, + 1 + ], + [ + 297, + 6, + 0, + 0, + 0 + ], + [ + 311, + 101, + 6, + 1, + 1 + ], + [ + 312, + 76, + 0, + 1, + 1 + ], + [ + 314, + 10, + 6, + 1, + 1 + ], + [ + 316, + 38, + 6, + 1, + 0 + ], + [ + 317, + 6, + 0, + 0, + 0 + ], + [ + 330, + 101, + 6, + 1, + 1 + ], + [ + 332, + 76, + 0, + 1, + 1 + ], + [ + 334, + 10, + 6, + 1, + 1 + ], + [ + 337, + 38, + 6, + 1, + 0 + ], + [ + 338, + 6, + 0, + 0, + 0 + ], + [ + 351, + 113, + 2, + 1, + 1 + ], + [ + 352, + 76, + 0, + 1, + 1 + ], + [ + 354, + 10, + 2, + 1, + 1 + ], + [ + 355, + 37, + 2, + 1, + 1 + ], + [ + 355, + 45, + 2, + 1, + 0 + ], + [ + 359, + 6, + 0, + 0, + 0 + ], + [ + 361, + 70, + 14, + 1, + 1 + ], + [ + 364, + 15, + 14, + 1, + 1 + ], + [ + 364, + 51, + 14, + 1, + 0 + ], + [ + 364, + 52, + 14, + 1, + 1 + ], + [ + 367, + 68, + 14, + 1, + 1 + ], + [ + 369, + 14, + 0, + 1, + 1 + ], + [ + 370, + 10, + 0, + 1, + 1 + ], + [ + 371, + 19, + 14, + 1, + 0 + ], + [ + 372, + 6, + 0, + 0, + 0 + ], + [ + 377, + 31, + 96, + 1, + 1 + ], + [ + 379, + 6, + 0, + 0, + 0 + ], + [ + 382, + 22, + 60, + 1, + 1 + ], + [ + 384, + 6, + 0, + 0, + 0 + ], + [ + 392, + 100, + 2, + 1, + 1 + ], + [ + 396, + 6, + 0, + 0, + 0 + ], + [ + 402, + 112, + 2, + 1, + 1 + ], + [ + 406, + 6, + 0, + 0, + 0 + ], + [ + 419, + 96, + 6, + 1, + 1 + ], + [ + 421, + 67, + 4, + 1, + 1 + ], + [ + 424, + 10, + 6, + 1, + 1 + ], + [ + 424, + 62, + 2, + 1, + 1 + ], + [ + 426, + 10, + 6, + 1, + 1 + ], + [ + 426, + 16, + 4, + 1, + 1 + ], + [ + 428, + 10, + 6, + 1, + 1 + ], + [ + 429, + 6, + 0, + 0, + 0 + ], + [ + 438, + 55, + 244, + 1, + 1 + ], + [ + 439, + 38, + 2, + 1, + 1 + ], + [ + 440, + 25, + 2, + 1, + 1 + ], + [ + 440, + 99, + 2, + 1, + 0 + ], + [ + 442, + 10, + 242, + 1, + 1 + ], + [ + 446, + 76, + 242, + 1, + 1 + ], + [ + 450, + 10, + 242, + 1, + 1 + ], + [ + 451, + 20, + 242, + 1, + 0 + ], + [ + 452, + 6, + 0, + 0, + 0 + ], + [ + 460, + 56, + 6, + 1, + 1 + ], + [ + 461, + 38, + 2, + 1, + 1 + ], + [ + 462, + 25, + 2, + 1, + 1 + ], + [ + 462, + 99, + 2, + 1, + 0 + ], + [ + 464, + 10, + 4, + 1, + 1 + ], + [ + 465, + 34, + 2, + 1, + 1 + ], + [ + 466, + 25, + 2, + 1, + 1 + ], + [ + 466, + 77, + 2, + 1, + 0 + ], + [ + 468, + 10, + 2, + 1, + 1 + ], + [ + 469, + 25, + 4, + 1, + 0 + ], + [ + 470, + 6, + 0, + 0, + 0 + ], + [ + 476, + 64, + 8, + 1, + 1 + ], + [ + 477, + 38, + 2, + 1, + 1 + ], + [ + 478, + 25, + 2, + 1, + 1 + ], + [ + 478, + 102, + 2, + 1, + 0 + ], + [ + 480, + 10, + 6, + 1, + 1 + ], + [ + 483, + 20, + 8, + 1, + 0 + ], + [ + 484, + 6, + 0, + 0, + 0 + ], + [ + 493, + 52, + 304, + 1, + 1 + ], + [ + 494, + 38, + 2, + 1, + 1 + ], + [ + 495, + 25, + 2, + 1, + 1 + ], + [ + 495, + 100, + 2, + 1, + 0 + ], + [ + 497, + 10, + 302, + 1, + 1 + ], + [ + 500, + 20, + 304, + 1, + 0 + ], + [ + 501, + 6, + 0, + 0, + 0 + ], + [ + 512, + 65, + 56, + 1, + 1 + ], + [ + 513, + 38, + 2, + 1, + 1 + ], + [ + 514, + 25, + 2, + 1, + 1 + ], + [ + 514, + 104, + 2, + 1, + 0 + ], + [ + 516, + 10, + 54, + 1, + 1 + ], + [ + 520, + 43, + 54, + 1, + 1 + ], + [ + 522, + 10, + 54, + 1, + 1 + ], + [ + 526, + 20, + 54, + 1, + 0 + ], + [ + 527, + 6, + 0, + 0, + 0 + ], + [ + 533, + 47, + 4, + 1, + 1 + ], + [ + 534, + 38, + 2, + 1, + 1 + ], + [ + 535, + 25, + 2, + 1, + 1 + ], + [ + 535, + 104, + 2, + 1, + 0 + ], + [ + 537, + 10, + 2, + 1, + 1 + ], + [ + 540, + 6, + 0, + 0, + 0 + ], + [ + 550, + 53, + 4, + 1, + 1 + ], + [ + 551, + 38, + 2, + 1, + 1 + ], + [ + 552, + 25, + 2, + 1, + 1 + ], + [ + 552, + 100, + 2, + 1, + 0 + ], + [ + 554, + 10, + 2, + 1, + 1 + ], + [ + 556, + 12, + 2, + 1, + 1 + ], + [ + 560, + 10, + 2, + 1, + 0 + ], + [ + 560, + 17, + 0, + 1, + 1 + ], + [ + 561, + 25, + 0, + 1, + 1 + ], + [ + 561, + 92, + 0, + 1, + 0 + ], + [ + 562, + 10, + 2, + 1, + 1 + ], + [ + 564, + 20, + 2, + 1, + 0 + ], + [ + 565, + 6, + 0, + 0, + 0 + ], + [ + 574, + 61, + 2, + 1, + 1 + ], + [ + 575, + 38, + 0, + 1, + 1 + ], + [ + 576, + 25, + 0, + 1, + 1 + ], + [ + 576, + 100, + 0, + 1, + 0 + ], + [ + 578, + 10, + 2, + 1, + 1 + ], + [ + 580, + 12, + 2, + 1, + 1 + ], + [ + 584, + 10, + 2, + 1, + 0 + ], + [ + 584, + 17, + 0, + 1, + 1 + ], + [ + 585, + 25, + 0, + 1, + 1 + ], + [ + 585, + 92, + 0, + 1, + 0 + ], + [ + 586, + 10, + 2, + 1, + 1 + ], + [ + 588, + 20, + 2, + 1, + 0 + ], + [ + 589, + 6, + 0, + 0, + 0 + ], + [ + 604, + 65, + 124, + 1, + 1 + ], + [ + 605, + 38, + 0, + 1, + 1 + ], + [ + 606, + 25, + 0, + 1, + 1 + ], + [ + 606, + 101, + 0, + 1, + 0 + ], + [ + 608, + 10, + 124, + 1, + 1 + ], + [ + 609, + 12, + 124, + 1, + 1 + ], + [ + 613, + 10, + 124, + 1, + 0 + ], + [ + 613, + 17, + 0, + 1, + 1 + ], + [ + 614, + 25, + 0, + 1, + 1 + ], + [ + 614, + 101, + 0, + 1, + 0 + ], + [ + 616, + 10, + 124, + 1, + 1 + ], + [ + 618, + 20, + 124, + 1, + 0 + ], + [ + 619, + 6, + 0, + 0, + 0 + ], + [ + 627, + 64, + 70, + 1, + 1 + ], + [ + 628, + 38, + 4, + 1, + 1 + ], + [ + 629, + 25, + 4, + 1, + 1 + ], + [ + 629, + 101, + 4, + 1, + 0 + ], + [ + 631, + 10, + 66, + 1, + 1 + ], + [ + 632, + 12, + 66, + 1, + 1 + ], + [ + 634, + 51, + 0, + 1, + 1 + ], + [ + 634, + 64, + 66, + 1, + 0 + ], + [ + 635, + 17, + 0, + 1, + 1 + ], + [ + 636, + 25, + 0, + 1, + 1 + ], + [ + 636, + 101, + 0, + 1, + 0 + ], + [ + 638, + 10, + 66, + 1, + 1 + ], + [ + 640, + 20, + 66, + 1, + 0 + ], + [ + 641, + 6, + 0, + 0, + 0 + ], + [ + 655, + 112, + 12, + 1, + 1 + ], + [ + 656, + 38, + 2, + 1, + 1 + ], + [ + 657, + 25, + 2, + 1, + 1 + ], + [ + 657, + 101, + 2, + 1, + 0 + ], + [ + 659, + 10, + 10, + 1, + 1 + ], + [ + 660, + 62, + 8, + 1, + 1 + ], + [ + 663, + 10, + 10, + 1, + 0 + ], + [ + 664, + 65, + 10, + 1, + 1 + ], + [ + 665, + 32, + 8, + 1, + 1 + ], + [ + 666, + 38, + 8, + 1, + 1 + ], + [ + 666, + 72, + 8, + 1, + 0 + ], + [ + 666, + 73, + 6, + 1, + 1 + ], + [ + 668, + 18, + 2, + 1, + 1 + ], + [ + 669, + 14, + 4, + 1, + 1 + ], + [ + 670, + 23, + 10, + 1, + 0 + ], + [ + 672, + 49, + 6, + 1, + 1 + ], + [ + 676, + 10, + 10, + 1, + 0 + ], + [ + 677, + 63, + 0, + 1, + 1 + ], + [ + 677, + 76, + 10, + 1, + 0 + ], + [ + 681, + 79, + 6, + 1, + 1 + ], + [ + 688, + 10, + 10, + 1, + 1 + ], + [ + 688, + 16, + 4, + 1, + 1 + ], + [ + 690, + 10, + 6, + 1, + 1 + ], + [ + 691, + 20, + 10, + 1, + 0 + ], + [ + 692, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 421, + "covered": 371, + "percent": 88 + }, + "functions": { + "count": 70, + "covered": 57, + "percent": 81 + }, + "instantiations": { + "count": 70, + "covered": 57, + "percent": 81 + }, + "regions": { + "count": 175, + "covered": 135, + "notcovered": 40, + "percent": 77 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SSLConfig.swift", + "segments": [ + [ + 79, + 177, + 1, + 1, + 1 + ], + [ + 82, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "functions": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "instantiations": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "regions": { + "count": 1, + "covered": 1, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Stack.swift", + "segments": [ + [ + 28, + 27, + 23, + 1, + 1 + ], + [ + 29, + 32, + 2, + 1, + 1 + ], + [ + 29, + 35, + 23, + 1, + 0 + ], + [ + 29, + 38, + 21, + 1, + 1 + ], + [ + 29, + 60, + 23, + 1, + 0 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 35, + 41, + 874, + 1, + 1 + ], + [ + 37, + 6, + 0, + 0, + 0 + ], + [ + 42, + 36, + 78, + 1, + 1 + ], + [ + 44, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 9, + "covered": 9, + "percent": 100 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 5, + "covered": 5, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/String+Extensions.swift", + "segments": [ + [ + 25, + 53, + 102, + 1, + 1 + ], + [ + 27, + 55, + 188, + 1, + 1 + ], + [ + 29, + 34, + 188, + 1, + 1 + ], + [ + 31, + 52, + 4, + 1, + 1 + ], + [ + 33, + 18, + 188, + 1, + 1 + ], + [ + 34, + 22, + 184, + 1, + 1 + ], + [ + 36, + 18, + 188, + 1, + 1 + ], + [ + 37, + 14, + 188, + 1, + 1 + ], + [ + 38, + 10, + 102, + 1, + 1 + ], + [ + 39, + 22, + 102, + 1, + 0 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 44, + 60, + 4, + 1, + 1 + ], + [ + 47, + 55, + 14, + 1, + 1 + ], + [ + 49, + 34, + 14, + 1, + 1 + ], + [ + 50, + 38, + 8, + 1, + 1 + ], + [ + 50, + 40, + 14, + 1, + 0 + ], + [ + 51, + 14, + 14, + 1, + 1 + ], + [ + 52, + 10, + 4, + 1, + 1 + ], + [ + 54, + 22, + 4, + 1, + 0 + ], + [ + 55, + 6, + 0, + 0, + 0 + ], + [ + 70, + 25, + 0, + 1, + 1 + ], + [ + 70, + 102, + 0, + 0, + 0 + ], + [ + 72, + 50, + 0, + 1, + 1 + ], + [ + 72, + 68, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 31, + "covered": 29, + "percent": 93 + }, + "functions": { + "count": 5, + "covered": 3, + "percent": 60 + }, + "instantiations": { + "count": 5, + "covered": 3, + "percent": 60 + }, + "regions": { + "count": 17, + "covered": 15, + "notcovered": 2, + "percent": 88 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift", + "segments": [ + [ + 76, + 45, + 153, + 1, + 1 + ], + [ + 79, + 9, + 18, + 1, + 1 + ], + [ + 79, + 66, + 153, + 1, + 0 + ], + [ + 80, + 9, + 135, + 1, + 1 + ], + [ + 80, + 69, + 153, + 1, + 0 + ], + [ + 81, + 10, + 153, + 1, + 1 + ], + [ + 82, + 6, + 0, + 0, + 0 + ], + [ + 89, + 45, + 36, + 1, + 1 + ], + [ + 92, + 6, + 0, + 0, + 0 + ], + [ + 161, + 45, + 135, + 1, + 1 + ], + [ + 165, + 9, + 36, + 1, + 1 + ], + [ + 165, + 80, + 135, + 1, + 0 + ], + [ + 166, + 9, + 99, + 1, + 1 + ], + [ + 166, + 83, + 135, + 1, + 0 + ], + [ + 167, + 10, + 135, + 1, + 1 + ], + [ + 168, + 6, + 0, + 0, + 0 + ], + [ + 177, + 45, + 243, + 1, + 1 + ], + [ + 181, + 9, + 54, + 1, + 1 + ], + [ + 181, + 75, + 243, + 1, + 0 + ], + [ + 182, + 9, + 54, + 1, + 1 + ], + [ + 182, + 75, + 243, + 1, + 0 + ], + [ + 183, + 9, + 135, + 1, + 1 + ], + [ + 183, + 78, + 243, + 1, + 0 + ], + [ + 184, + 10, + 243, + 1, + 1 + ], + [ + 185, + 6, + 0, + 0, + 0 + ], + [ + 213, + 24, + 11, + 1, + 1 + ], + [ + 216, + 6, + 0, + 0, + 0 + ], + [ + 218, + 40, + 0, + 1, + 1 + ], + [ + 221, + 6, + 0, + 0, + 0 + ], + [ + 232, + 45, + 225, + 1, + 1 + ], + [ + 235, + 9, + 9, + 1, + 1 + ], + [ + 235, + 71, + 225, + 1, + 0 + ], + [ + 236, + 9, + 0, + 1, + 1 + ], + [ + 236, + 72, + 225, + 1, + 0 + ], + [ + 237, + 9, + 9, + 1, + 1 + ], + [ + 237, + 90, + 225, + 1, + 0 + ], + [ + 238, + 9, + 198, + 1, + 1 + ], + [ + 238, + 73, + 225, + 1, + 0 + ], + [ + 239, + 9, + 9, + 1, + 1 + ], + [ + 239, + 69, + 225, + 1, + 0 + ], + [ + 240, + 10, + 225, + 1, + 1 + ], + [ + 241, + 6, + 0, + 0, + 0 + ], + [ + 267, + 34, + 529, + 1, + 1 + ], + [ + 269, + 9, + 9, + 1, + 1 + ], + [ + 270, + 29, + 529, + 1, + 0 + ], + [ + 271, + 9, + 0, + 1, + 1 + ], + [ + 272, + 28, + 529, + 1, + 0 + ], + [ + 273, + 9, + 19, + 1, + 1 + ], + [ + 274, + 28, + 529, + 1, + 0 + ], + [ + 275, + 9, + 294, + 1, + 1 + ], + [ + 276, + 29, + 529, + 1, + 0 + ], + [ + 277, + 9, + 207, + 1, + 1 + ], + [ + 278, + 28, + 529, + 1, + 0 + ], + [ + 279, + 10, + 529, + 1, + 1 + ], + [ + 280, + 6, + 0, + 0, + 0 + ], + [ + 285, + 37, + 421, + 1, + 1 + ], + [ + 287, + 9, + 99, + 1, + 1 + ], + [ + 288, + 46, + 421, + 1, + 0 + ], + [ + 289, + 9, + 322, + 1, + 1 + ], + [ + 290, + 23, + 421, + 1, + 0 + ], + [ + 291, + 10, + 421, + 1, + 1 + ], + [ + 292, + 6, + 0, + 0, + 0 + ], + [ + 295, + 56, + 20, + 1, + 1 + ], + [ + 297, + 9, + 11, + 1, + 1 + ], + [ + 314, + 24, + 20, + 1, + 0 + ], + [ + 315, + 9, + 9, + 1, + 1 + ], + [ + 316, + 25, + 20, + 1, + 0 + ], + [ + 317, + 10, + 20, + 1, + 1 + ], + [ + 318, + 6, + 0, + 0, + 0 + ], + [ + 343, + 19, + 550, + 1, + 1 + ], + [ + 350, + 6, + 0, + 0, + 0 + ], + [ + 353, + 46, + 0, + 1, + 1 + ], + [ + 353, + 69, + 0, + 0, + 0 + ], + [ + 356, + 48, + 240, + 1, + 1 + ], + [ + 356, + 73, + 0, + 0, + 0 + ], + [ + 363, + 82, + 206, + 1, + 1 + ], + [ + 364, + 25, + 108, + 1, + 1 + ], + [ + 368, + 63, + 108, + 1, + 1 + ], + [ + 370, + 43, + 11, + 1, + 1 + ], + [ + 370, + 61, + 108, + 1, + 0 + ], + [ + 370, + 62, + 0, + 1, + 1 + ], + [ + 372, + 18, + 108, + 1, + 1 + ], + [ + 373, + 14, + 108, + 1, + 1 + ], + [ + 376, + 49, + 108, + 1, + 0 + ], + [ + 377, + 10, + 98, + 1, + 1 + ], + [ + 380, + 45, + 206, + 1, + 0 + ], + [ + 381, + 6, + 0, + 0, + 0 + ], + [ + 390, + 163, + 280, + 1, + 1 + ], + [ + 394, + 61, + 42, + 1, + 1 + ], + [ + 397, + 10, + 280, + 1, + 1 + ], + [ + 397, + 66, + 48, + 1, + 1 + ], + [ + 400, + 10, + 280, + 1, + 1 + ], + [ + 400, + 60, + 184, + 1, + 1 + ], + [ + 402, + 82, + 184, + 1, + 1 + ], + [ + 404, + 59, + 90, + 1, + 1 + ], + [ + 406, + 18, + 184, + 1, + 1 + ], + [ + 407, + 53, + 184, + 1, + 1 + ], + [ + 408, + 30, + 42, + 1, + 1 + ], + [ + 412, + 22, + 184, + 1, + 1 + ], + [ + 412, + 28, + 142, + 1, + 1 + ], + [ + 415, + 22, + 184, + 1, + 1 + ], + [ + 417, + 18, + 184, + 1, + 1 + ], + [ + 418, + 14, + 184, + 1, + 1 + ], + [ + 419, + 10, + 280, + 1, + 1 + ], + [ + 420, + 6, + 0, + 0, + 0 + ], + [ + 426, + 106, + 100, + 1, + 1 + ], + [ + 427, + 41, + 190, + 1, + 1 + ], + [ + 429, + 10, + 100, + 1, + 1 + ], + [ + 430, + 6, + 0, + 0, + 0 + ], + [ + 437, + 99, + 240, + 1, + 1 + ], + [ + 439, + 31, + 37, + 1, + 1 + ], + [ + 441, + 10, + 203, + 1, + 1 + ], + [ + 442, + 85, + 240, + 1, + 0 + ], + [ + 443, + 6, + 0, + 0, + 0 + ], + [ + 454, + 52, + 226, + 1, + 1 + ], + [ + 458, + 6, + 0, + 0, + 0 + ], + [ + 469, + 55, + 20, + 1, + 1 + ], + [ + 473, + 28, + 20, + 1, + 1 + ], + [ + 476, + 10, + 20, + 1, + 1 + ], + [ + 477, + 25, + 20, + 1, + 0 + ], + [ + 478, + 6, + 0, + 0, + 0 + ], + [ + 485, + 86, + 226, + 1, + 1 + ], + [ + 490, + 47, + 0, + 1, + 1 + ], + [ + 492, + 10, + 226, + 1, + 1 + ], + [ + 494, + 57, + 226, + 1, + 1 + ], + [ + 496, + 50, + 9, + 1, + 1 + ], + [ + 498, + 14, + 226, + 1, + 1 + ], + [ + 499, + 10, + 226, + 1, + 1 + ], + [ + 499, + 16, + 0, + 1, + 1 + ], + [ + 501, + 10, + 226, + 1, + 1 + ], + [ + 502, + 24, + 226, + 1, + 0 + ], + [ + 503, + 6, + 0, + 0, + 0 + ], + [ + 512, + 155, + 398, + 1, + 1 + ], + [ + 516, + 9, + 29, + 1, + 1 + ], + [ + 522, + 48, + 398, + 1, + 0 + ], + [ + 523, + 9, + 9, + 1, + 1 + ], + [ + 528, + 40, + 398, + 1, + 0 + ], + [ + 529, + 9, + 20, + 1, + 1 + ], + [ + 532, + 47, + 11, + 1, + 1 + ], + [ + 533, + 61, + 11, + 1, + 1 + ], + [ + 534, + 58, + 0, + 1, + 1 + ], + [ + 536, + 22, + 11, + 1, + 1 + ], + [ + 536, + 28, + 11, + 1, + 1 + ], + [ + 538, + 22, + 11, + 1, + 1 + ], + [ + 539, + 18, + 11, + 1, + 1 + ], + [ + 540, + 14, + 20, + 1, + 1 + ], + [ + 540, + 20, + 9, + 1, + 1 + ], + [ + 542, + 14, + 20, + 1, + 1 + ], + [ + 546, + 69, + 20, + 1, + 1 + ], + [ + 548, + 14, + 20, + 1, + 1 + ], + [ + 549, + 48, + 398, + 1, + 0 + ], + [ + 550, + 9, + 0, + 1, + 1 + ], + [ + 552, + 48, + 398, + 1, + 0 + ], + [ + 553, + 9, + 226, + 1, + 1 + ], + [ + 554, + 16, + 226, + 1, + 1 + ], + [ + 557, + 14, + 226, + 1, + 0 + ], + [ + 557, + 21, + 0, + 1, + 1 + ], + [ + 558, + 29, + 0, + 1, + 1 + ], + [ + 558, + 95, + 0, + 1, + 0 + ], + [ + 559, + 14, + 398, + 1, + 1 + ], + [ + 560, + 9, + 114, + 1, + 1 + ], + [ + 561, + 97, + 398, + 1, + 0 + ], + [ + 562, + 9, + 0, + 1, + 1 + ], + [ + 563, + 16, + 0, + 1, + 1 + ], + [ + 566, + 14, + 0, + 1, + 0 + ], + [ + 566, + 21, + 0, + 1, + 1 + ], + [ + 567, + 29, + 0, + 1, + 1 + ], + [ + 567, + 95, + 0, + 1, + 0 + ], + [ + 568, + 14, + 398, + 1, + 1 + ], + [ + 569, + 10, + 398, + 1, + 1 + ], + [ + 570, + 36, + 398, + 1, + 0 + ], + [ + 571, + 6, + 0, + 0, + 0 + ], + [ + 578, + 118, + 92, + 1, + 1 + ], + [ + 581, + 44, + 0, + 1, + 1 + ], + [ + 581, + 92, + 92, + 1, + 1 + ], + [ + 583, + 54, + 92, + 1, + 1 + ], + [ + 584, + 38, + 275, + 1, + 1 + ], + [ + 587, + 25, + 161, + 1, + 1 + ], + [ + 589, + 18, + 275, + 1, + 1 + ], + [ + 591, + 14, + 92, + 1, + 1 + ], + [ + 594, + 10, + 92, + 1, + 1 + ], + [ + 594, + 16, + 0, + 1, + 1 + ], + [ + 596, + 23, + 0, + 1, + 1 + ], + [ + 596, + 102, + 0, + 1, + 0 + ], + [ + 597, + 10, + 92, + 1, + 1 + ], + [ + 598, + 43, + 92, + 1, + 0 + ], + [ + 599, + 6, + 0, + 0, + 0 + ], + [ + 614, + 27, + 189, + 1, + 1 + ], + [ + 614, + 63, + 0, + 0, + 0 + ], + [ + 620, + 29, + 91, + 1, + 1 + ], + [ + 620, + 57, + 0, + 0, + 0 + ], + [ + 629, + 29, + 0, + 1, + 1 + ], + [ + 629, + 73, + 0, + 0, + 0 + ], + [ + 632, + 23, + 310, + 1, + 1 + ], + [ + 632, + 83, + 0, + 0, + 0 + ], + [ + 644, + 181, + 294, + 1, + 1 + ], + [ + 650, + 28, + 294, + 1, + 1 + ], + [ + 655, + 26, + 108, + 1, + 1 + ], + [ + 656, + 60, + 6, + 1, + 1 + ], + [ + 656, + 80, + 108, + 1, + 0 + ], + [ + 656, + 83, + 102, + 1, + 1 + ], + [ + 656, + 104, + 108, + 1, + 0 + ], + [ + 657, + 14, + 294, + 1, + 1 + ], + [ + 659, + 49, + 294, + 1, + 1 + ], + [ + 660, + 39, + 54, + 1, + 1 + ], + [ + 664, + 18, + 294, + 1, + 1 + ], + [ + 664, + 24, + 240, + 1, + 1 + ], + [ + 666, + 18, + 294, + 1, + 1 + ], + [ + 670, + 32, + 108, + 1, + 1 + ], + [ + 672, + 18, + 294, + 1, + 1 + ], + [ + 674, + 46, + 98, + 1, + 1 + ], + [ + 676, + 18, + 294, + 1, + 1 + ], + [ + 678, + 42, + 100, + 1, + 1 + ], + [ + 681, + 18, + 294, + 1, + 1 + ], + [ + 689, + 29, + 293, + 1, + 1 + ], + [ + 689, + 98, + 294, + 1, + 0 + ], + [ + 692, + 89, + 239, + 1, + 1 + ], + [ + 692, + 99, + 294, + 1, + 0 + ], + [ + 692, + 102, + 55, + 1, + 1 + ], + [ + 692, + 105, + 294, + 1, + 0 + ], + [ + 694, + 58, + 21, + 1, + 1 + ], + [ + 696, + 31, + 21, + 1, + 1 + ], + [ + 696, + 94, + 21, + 1, + 0 + ], + [ + 700, + 18, + 294, + 1, + 1 + ], + [ + 700, + 24, + 273, + 1, + 1 + ], + [ + 702, + 31, + 272, + 1, + 1 + ], + [ + 702, + 90, + 273, + 1, + 0 + ], + [ + 708, + 18, + 294, + 1, + 1 + ], + [ + 709, + 14, + 294, + 1, + 1 + ], + [ + 710, + 10, + 294, + 1, + 1 + ], + [ + 711, + 6, + 0, + 0, + 0 + ], + [ + 719, + 110, + 45, + 1, + 1 + ], + [ + 722, + 27, + 45, + 1, + 1 + ], + [ + 722, + 31, + 45, + 1, + 0 + ], + [ + 722, + 34, + 0, + 1, + 1 + ], + [ + 722, + 36, + 45, + 1, + 0 + ], + [ + 726, + 47, + 180, + 1, + 1 + ], + [ + 729, + 70, + 180, + 1, + 1 + ], + [ + 731, + 50, + 135, + 1, + 1 + ], + [ + 733, + 18, + 180, + 1, + 1 + ], + [ + 736, + 14, + 180, + 1, + 1 + ], + [ + 736, + 20, + 0, + 1, + 1 + ], + [ + 737, + 29, + 0, + 1, + 1 + ], + [ + 737, + 84, + 0, + 1, + 0 + ], + [ + 739, + 14, + 180, + 1, + 1 + ], + [ + 740, + 10, + 45, + 1, + 1 + ], + [ + 741, + 27, + 45, + 1, + 0 + ], + [ + 742, + 6, + 0, + 0, + 0 + ], + [ + 750, + 91, + 45, + 1, + 1 + ], + [ + 753, + 27, + 45, + 1, + 1 + ], + [ + 753, + 31, + 45, + 1, + 0 + ], + [ + 753, + 34, + 0, + 1, + 1 + ], + [ + 753, + 36, + 45, + 1, + 0 + ], + [ + 755, + 51, + 45, + 1, + 1 + ], + [ + 757, + 44, + 36, + 1, + 1 + ], + [ + 759, + 20, + 36, + 1, + 1 + ], + [ + 761, + 78, + 36, + 1, + 1 + ], + [ + 763, + 22, + 36, + 1, + 1 + ], + [ + 763, + 28, + 0, + 1, + 1 + ], + [ + 765, + 22, + 36, + 1, + 1 + ], + [ + 766, + 18, + 36, + 1, + 0 + ], + [ + 766, + 52, + 0, + 1, + 1 + ], + [ + 767, + 33, + 0, + 1, + 1 + ], + [ + 767, + 106, + 0, + 1, + 0 + ], + [ + 769, + 18, + 36, + 1, + 1 + ], + [ + 770, + 14, + 45, + 1, + 1 + ], + [ + 772, + 16, + 45, + 1, + 1 + ], + [ + 774, + 14, + 45, + 1, + 0 + ], + [ + 774, + 48, + 0, + 1, + 1 + ], + [ + 775, + 29, + 0, + 1, + 1 + ], + [ + 775, + 91, + 0, + 1, + 0 + ], + [ + 777, + 14, + 45, + 1, + 1 + ], + [ + 779, + 10, + 45, + 1, + 1 + ], + [ + 779, + 16, + 0, + 1, + 1 + ], + [ + 780, + 25, + 0, + 1, + 1 + ], + [ + 780, + 66, + 0, + 1, + 0 + ], + [ + 782, + 10, + 45, + 1, + 1 + ], + [ + 783, + 26, + 45, + 1, + 0 + ], + [ + 784, + 6, + 0, + 0, + 0 + ], + [ + 792, + 84, + 45, + 1, + 1 + ], + [ + 795, + 27, + 45, + 1, + 1 + ], + [ + 795, + 31, + 45, + 1, + 0 + ], + [ + 795, + 34, + 0, + 1, + 1 + ], + [ + 795, + 36, + 45, + 1, + 0 + ], + [ + 802, + 6, + 0, + 0, + 0 + ], + [ + 809, + 63, + 9, + 1, + 1 + ], + [ + 814, + 19, + 9, + 1, + 1 + ], + [ + 817, + 10, + 9, + 1, + 1 + ], + [ + 824, + 44, + 45, + 1, + 1 + ], + [ + 828, + 47, + 36, + 1, + 1 + ], + [ + 830, + 14, + 45, + 1, + 1 + ], + [ + 832, + 10, + 9, + 1, + 1 + ], + [ + 836, + 30, + 9, + 1, + 0 + ], + [ + 837, + 6, + 0, + 0, + 0 + ], + [ + 841, + 56, + 9, + 1, + 1 + ], + [ + 847, + 37, + 9, + 1, + 1 + ], + [ + 848, + 59, + 9, + 1, + 1 + ], + [ + 850, + 14, + 9, + 1, + 1 + ], + [ + 851, + 102, + 9, + 1, + 1 + ], + [ + 854, + 14, + 9, + 1, + 1 + ], + [ + 856, + 10, + 9, + 1, + 1 + ], + [ + 857, + 20, + 9, + 1, + 0 + ], + [ + 858, + 6, + 0, + 0, + 0 + ], + [ + 863, + 88, + 9, + 1, + 1 + ], + [ + 868, + 47, + 0, + 1, + 1 + ], + [ + 868, + 77, + 9, + 1, + 0 + ], + [ + 868, + 87, + 0, + 1, + 1 + ], + [ + 870, + 10, + 9, + 1, + 1 + ], + [ + 871, + 47, + 0, + 1, + 1 + ], + [ + 871, + 77, + 9, + 1, + 0 + ], + [ + 871, + 87, + 0, + 1, + 1 + ], + [ + 873, + 10, + 9, + 1, + 1 + ], + [ + 877, + 9, + 9, + 1, + 1 + ], + [ + 878, + 48, + 9, + 1, + 0 + ], + [ + 880, + 9, + 0, + 1, + 1 + ], + [ + 881, + 56, + 9, + 1, + 0 + ], + [ + 882, + 10, + 9, + 1, + 1 + ], + [ + 883, + 24, + 9, + 1, + 0 + ], + [ + 884, + 6, + 0, + 0, + 0 + ], + [ + 897, + 128, + 0, + 1, + 1 + ], + [ + 898, + 52, + 0, + 1, + 1 + ], + [ + 900, + 68, + 0, + 1, + 1 + ], + [ + 902, + 14, + 0, + 1, + 1 + ], + [ + 903, + 25, + 0, + 1, + 1 + ], + [ + 903, + 159, + 0, + 1, + 0 + ], + [ + 904, + 10, + 0, + 1, + 1 + ], + [ + 904, + 16, + 0, + 1, + 1 + ], + [ + 905, + 25, + 0, + 1, + 1 + ], + [ + 905, + 109, + 0, + 1, + 0 + ], + [ + 906, + 10, + 0, + 1, + 1 + ], + [ + 907, + 6, + 0, + 0, + 0 + ], + [ + 915, + 125, + 41, + 1, + 1 + ], + [ + 916, + 19, + 40, + 1, + 1 + ], + [ + 916, + 62, + 41, + 1, + 0 + ], + [ + 919, + 12, + 41, + 1, + 1 + ], + [ + 921, + 10, + 41, + 1, + 0 + ], + [ + 921, + 17, + 0, + 1, + 1 + ], + [ + 923, + 10, + 41, + 1, + 1 + ], + [ + 932, + 60, + 54, + 1, + 1 + ], + [ + 933, + 23, + 54, + 1, + 1 + ], + [ + 933, + 86, + 54, + 1, + 0 + ], + [ + 935, + 10, + 41, + 1, + 1 + ], + [ + 936, + 6, + 0, + 0, + 0 + ], + [ + 946, + 181, + 67, + 1, + 1 + ], + [ + 947, + 19, + 67, + 1, + 1 + ], + [ + 947, + 62, + 67, + 1, + 0 + ], + [ + 950, + 12, + 67, + 1, + 1 + ], + [ + 952, + 10, + 67, + 1, + 0 + ], + [ + 952, + 17, + 0, + 1, + 1 + ], + [ + 954, + 10, + 67, + 1, + 1 + ], + [ + 957, + 12, + 67, + 1, + 1 + ], + [ + 958, + 77, + 67, + 1, + 1 + ], + [ + 960, + 14, + 67, + 1, + 1 + ], + [ + 961, + 10, + 67, + 1, + 0 + ], + [ + 961, + 17, + 0, + 1, + 1 + ], + [ + 963, + 10, + 67, + 1, + 1 + ], + [ + 972, + 60, + 112, + 1, + 1 + ], + [ + 973, + 23, + 112, + 1, + 1 + ], + [ + 973, + 86, + 112, + 1, + 0 + ], + [ + 975, + 10, + 67, + 1, + 1 + ], + [ + 976, + 6, + 0, + 0, + 0 + ], + [ + 985, + 156, + 31, + 1, + 1 + ], + [ + 986, + 19, + 31, + 1, + 1 + ], + [ + 986, + 62, + 31, + 1, + 0 + ], + [ + 989, + 12, + 31, + 1, + 1 + ], + [ + 991, + 10, + 31, + 1, + 0 + ], + [ + 991, + 17, + 0, + 1, + 1 + ], + [ + 993, + 10, + 31, + 1, + 1 + ], + [ + 996, + 36, + 9, + 1, + 1 + ], + [ + 997, + 16, + 9, + 1, + 1 + ], + [ + 999, + 14, + 9, + 1, + 0 + ], + [ + 999, + 21, + 0, + 1, + 1 + ], + [ + 1001, + 14, + 9, + 1, + 1 + ], + [ + 1002, + 10, + 31, + 1, + 1 + ], + [ + 1009, + 48, + 9, + 1, + 1 + ], + [ + 1011, + 10, + 31, + 1, + 1 + ], + [ + 1014, + 60, + 36, + 1, + 1 + ], + [ + 1015, + 23, + 36, + 1, + 1 + ], + [ + 1015, + 86, + 36, + 1, + 0 + ], + [ + 1017, + 10, + 31, + 1, + 1 + ], + [ + 1018, + 6, + 0, + 0, + 0 + ], + [ + 1027, + 154, + 34, + 1, + 1 + ], + [ + 1028, + 19, + 34, + 1, + 1 + ], + [ + 1028, + 62, + 34, + 1, + 0 + ], + [ + 1031, + 12, + 34, + 1, + 1 + ], + [ + 1033, + 10, + 34, + 1, + 0 + ], + [ + 1033, + 17, + 0, + 1, + 1 + ], + [ + 1035, + 10, + 34, + 1, + 1 + ], + [ + 1044, + 60, + 36, + 1, + 1 + ], + [ + 1045, + 23, + 36, + 1, + 1 + ], + [ + 1045, + 86, + 36, + 1, + 0 + ], + [ + 1047, + 10, + 34, + 1, + 1 + ], + [ + 1048, + 6, + 0, + 0, + 0 + ], + [ + 1058, + 185, + 67, + 1, + 1 + ], + [ + 1059, + 19, + 67, + 1, + 1 + ], + [ + 1059, + 62, + 67, + 1, + 0 + ], + [ + 1062, + 12, + 67, + 1, + 1 + ], + [ + 1064, + 10, + 67, + 1, + 0 + ], + [ + 1064, + 17, + 0, + 1, + 1 + ], + [ + 1066, + 10, + 67, + 1, + 1 + ], + [ + 1069, + 36, + 3, + 1, + 1 + ], + [ + 1070, + 16, + 3, + 1, + 1 + ], + [ + 1072, + 14, + 3, + 1, + 0 + ], + [ + 1072, + 21, + 0, + 1, + 1 + ], + [ + 1074, + 14, + 3, + 1, + 1 + ], + [ + 1075, + 10, + 67, + 1, + 1 + ], + [ + 1082, + 48, + 3, + 1, + 1 + ], + [ + 1084, + 10, + 67, + 1, + 1 + ], + [ + 1087, + 60, + 72, + 1, + 1 + ], + [ + 1088, + 23, + 72, + 1, + 1 + ], + [ + 1088, + 86, + 72, + 1, + 0 + ], + [ + 1090, + 10, + 67, + 1, + 1 + ], + [ + 1091, + 6, + 0, + 0, + 0 + ], + [ + 1097, + 78, + 14, + 1, + 1 + ], + [ + 1098, + 19, + 14, + 1, + 1 + ], + [ + 1098, + 59, + 14, + 1, + 0 + ], + [ + 1102, + 6, + 0, + 0, + 0 + ], + [ + 1110, + 134, + 33, + 1, + 1 + ], + [ + 1111, + 19, + 33, + 1, + 1 + ], + [ + 1111, + 59, + 33, + 1, + 0 + ], + [ + 1115, + 12, + 33, + 1, + 1 + ], + [ + 1117, + 52, + 33, + 1, + 1 + ], + [ + 1119, + 14, + 33, + 1, + 1 + ], + [ + 1120, + 10, + 33, + 1, + 0 + ], + [ + 1120, + 17, + 0, + 1, + 1 + ], + [ + 1122, + 10, + 33, + 1, + 1 + ], + [ + 1126, + 6, + 0, + 0, + 0 + ], + [ + 1132, + 107, + 7, + 1, + 1 + ], + [ + 1133, + 19, + 7, + 1, + 1 + ], + [ + 1133, + 59, + 7, + 1, + 0 + ], + [ + 1137, + 6, + 0, + 0, + 0 + ], + [ + 1143, + 110, + 41, + 1, + 1 + ], + [ + 1148, + 6, + 0, + 0, + 0 + ], + [ + 1155, + 139, + 34, + 1, + 1 + ], + [ + 1160, + 6, + 0, + 0, + 0 + ], + [ + 1168, + 169, + 67, + 1, + 1 + ], + [ + 1173, + 6, + 0, + 0, + 0 + ], + [ + 1178, + 52, + 14, + 1, + 1 + ], + [ + 1183, + 6, + 0, + 0, + 0 + ], + [ + 1190, + 111, + 33, + 1, + 1 + ], + [ + 1195, + 6, + 0, + 0, + 0 + ], + [ + 1201, + 82, + 7, + 1, + 1 + ], + [ + 1206, + 6, + 0, + 0, + 0 + ], + [ + 1213, + 113, + 31, + 1, + 1 + ], + [ + 1218, + 6, + 0, + 0, + 0 + ], + [ + 1226, + 142, + 18, + 1, + 1 + ], + [ + 1231, + 6, + 0, + 0, + 0 + ], + [ + 1239, + 141, + 30, + 1, + 1 + ], + [ + 1244, + 6, + 0, + 0, + 0 + ], + [ + 1252, + 143, + 19, + 1, + 1 + ], + [ + 1257, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 762, + "covered": 698, + "percent": 91 + }, + "functions": { + "count": 79, + "covered": 65, + "percent": 82 + }, + "instantiations": { + "count": 79, + "covered": 65, + "percent": 82 + }, + "regions": { + "count": 308, + "covered": 252, + "notcovered": 56, + "percent": 81 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/TemplatingError.swift", + "segments": [ + [ + 25, + 29, + 0, + 1, + 1 + ], + [ + 27, + 9, + 0, + 1, + 1 + ], + [ + 28, + 84, + 0, + 1, + 0 + ], + [ + 29, + 9, + 0, + 1, + 1 + ], + [ + 30, + 79, + 0, + 1, + 0 + ], + [ + 31, + 10, + 0, + 1, + 1 + ], + [ + 32, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 8, + "covered": 0, + "percent": 0 + }, + "functions": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "instantiations": { + "count": 1, + "covered": 0, + "percent": 0 + }, + "regions": { + "count": 4, + "covered": 0, + "notcovered": 4, + "percent": 0 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift", + "segments": [ + [ + 76, + 19, + 178, + 1, + 1 + ], + [ + 76, + 21, + 0, + 0, + 0 + ], + [ + 85, + 109, + 28, + 1, + 1 + ], + [ + 86, + 40, + 2, + 1, + 1 + ], + [ + 88, + 10, + 26, + 1, + 1 + ], + [ + 91, + 68, + 0, + 1, + 1 + ], + [ + 93, + 10, + 26, + 1, + 1 + ], + [ + 97, + 6, + 0, + 0, + 0 + ], + [ + 110, + 92, + 28, + 1, + 1 + ], + [ + 111, + 50, + 0, + 1, + 1 + ], + [ + 113, + 10, + 28, + 1, + 1 + ], + [ + 115, + 61, + 28, + 1, + 1 + ], + [ + 117, + 10, + 0, + 1, + 1 + ], + [ + 119, + 19, + 28, + 1, + 0 + ], + [ + 120, + 6, + 0, + 0, + 0 + ], + [ + 122, + 70, + 44, + 1, + 1 + ], + [ + 127, + 77, + 16, + 1, + 1 + ], + [ + 129, + 10, + 44, + 1, + 1 + ], + [ + 130, + 65, + 12, + 1, + 1 + ], + [ + 132, + 10, + 32, + 1, + 1 + ], + [ + 132, + 82, + 22, + 1, + 1 + ], + [ + 134, + 10, + 10, + 1, + 1 + ], + [ + 134, + 64, + 8, + 1, + 1 + ], + [ + 135, + 78, + 0, + 1, + 1 + ], + [ + 137, + 14, + 8, + 1, + 1 + ], + [ + 148, + 61, + 2, + 1, + 1 + ], + [ + 150, + 14, + 8, + 1, + 1 + ], + [ + 151, + 59, + 8, + 1, + 0 + ], + [ + 152, + 10, + 2, + 1, + 1 + ], + [ + 152, + 16, + 2, + 1, + 1 + ], + [ + 154, + 10, + 0, + 1, + 1 + ], + [ + 155, + 6, + 0, + 0, + 0 + ], + [ + 167, + 99, + 28, + 1, + 1 + ], + [ + 169, + 12, + 28, + 1, + 1 + ], + [ + 172, + 10, + 28, + 1, + 0 + ], + [ + 172, + 17, + 0, + 1, + 1 + ], + [ + 173, + 23, + 0, + 1, + 1 + ], + [ + 173, + 67, + 0, + 1, + 0 + ], + [ + 174, + 10, + 0, + 1, + 1 + ], + [ + 175, + 19, + 28, + 1, + 0 + ], + [ + 176, + 6, + 0, + 0, + 0 + ], + [ + 187, + 79, + 28, + 1, + 1 + ], + [ + 191, + 16, + 56, + 1, + 1 + ], + [ + 193, + 10, + 28, + 1, + 1 + ], + [ + 193, + 17, + 56, + 1, + 1 + ], + [ + 193, + 28, + 28, + 1, + 0 + ], + [ + 196, + 6, + 0, + 0, + 0 + ], + [ + 209, + 79, + 2, + 1, + 1 + ], + [ + 210, + 71, + 2, + 1, + 1 + ], + [ + 212, + 10, + 0, + 1, + 1 + ], + [ + 213, + 14, + 0, + 1, + 1 + ], + [ + 215, + 10, + 0, + 1, + 1 + ], + [ + 216, + 6, + 0, + 0, + 0 + ], + [ + 225, + 118, + 2, + 1, + 1 + ], + [ + 226, + 40, + 0, + 1, + 1 + ], + [ + 228, + 10, + 2, + 1, + 1 + ], + [ + 231, + 68, + 0, + 1, + 1 + ], + [ + 233, + 10, + 2, + 1, + 1 + ], + [ + 237, + 6, + 0, + 0, + 0 + ], + [ + 241, + 42, + 26, + 1, + 1 + ], + [ + 242, + 36, + 0, + 1, + 1 + ], + [ + 244, + 10, + 26, + 1, + 1 + ], + [ + 245, + 58, + 26, + 1, + 0 + ], + [ + 246, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 107, + "covered": 90, + "percent": 84 + }, + "functions": { + "count": 10, + "covered": 9, + "percent": 90 + }, + "instantiations": { + "count": 10, + "covered": 9, + "percent": 90 + }, + "regions": { + "count": 48, + "covered": 34, + "notcovered": 14, + "percent": 70 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/JSONBodyParser.swift", + "segments": [ + [ + 20, + 45, + 8, + 1, + 1 + ], + [ + 22, + 55, + 0, + 1, + 1 + ], + [ + 24, + 8, + 8, + 1, + 1 + ], + [ + 25, + 25, + 8, + 1, + 0 + ], + [ + 26, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 7, + "covered": 6, + "percent": 85 + }, + "functions": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "instantiations": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "regions": { + "count": 3, + "covered": 2, + "notcovered": 1, + "percent": 66 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift", + "segments": [ + [ + 26, + 28, + 10, + 1, + 1 + ], + [ + 31, + 18, + 0, + 1, + 1 + ], + [ + 32, + 27, + 0, + 1, + 1 + ], + [ + 32, + 83, + 0, + 1, + 0 + ], + [ + 34, + 10, + 10, + 1, + 1 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 42, + 45, + 10, + 1, + 1 + ], + [ + 48, + 45, + 26, + 1, + 1 + ], + [ + 50, + 57, + 8, + 1, + 1 + ], + [ + 53, + 14, + 18, + 1, + 1 + ], + [ + 55, + 50, + 18, + 1, + 1 + ], + [ + 57, + 14, + 18, + 1, + 1 + ], + [ + 58, + 10, + 10, + 1, + 1 + ], + [ + 59, + 41, + 8, + 1, + 1 + ], + [ + 59, + 58, + 10, + 1, + 0 + ], + [ + 59, + 61, + 2, + 1, + 1 + ], + [ + 59, + 64, + 10, + 1, + 0 + ], + [ + 60, + 6, + 0, + 0, + 0 + ], + [ + 62, + 58, + 18, + 1, + 1 + ], + [ + 63, + 102, + 0, + 1, + 1 + ], + [ + 65, + 10, + 18, + 1, + 1 + ], + [ + 71, + 35, + 48, + 1, + 1 + ], + [ + 72, + 90, + 0, + 1, + 1 + ], + [ + 74, + 14, + 48, + 1, + 1 + ], + [ + 76, + 10, + 18, + 1, + 1 + ], + [ + 80, + 49, + 18, + 1, + 1 + ], + [ + 82, + 10, + 18, + 1, + 1 + ], + [ + 84, + 31, + 18, + 1, + 1 + ], + [ + 86, + 57, + 18, + 1, + 1 + ], + [ + 88, + 14, + 18, + 1, + 1 + ], + [ + 88, + 20, + 0, + 1, + 1 + ], + [ + 90, + 14, + 18, + 1, + 1 + ], + [ + 91, + 10, + 18, + 1, + 1 + ], + [ + 92, + 20, + 18, + 1, + 0 + ], + [ + 93, + 6, + 0, + 0, + 0 + ], + [ + 96, + 69, + 48, + 1, + 1 + ], + [ + 97, + 74, + 12, + 1, + 1 + ], + [ + 101, + 10, + 36, + 1, + 1 + ], + [ + 103, + 81, + 10, + 1, + 1 + ], + [ + 105, + 134, + 10, + 1, + 1 + ], + [ + 108, + 89, + 0, + 1, + 1 + ], + [ + 108, + 102, + 10, + 1, + 0 + ], + [ + 109, + 14, + 10, + 1, + 1 + ], + [ + 110, + 142, + 8, + 1, + 1 + ], + [ + 113, + 93, + 0, + 1, + 1 + ], + [ + 113, + 106, + 8, + 1, + 0 + ], + [ + 114, + 14, + 10, + 1, + 1 + ], + [ + 116, + 19, + 10, + 1, + 0 + ], + [ + 117, + 10, + 26, + 1, + 1 + ], + [ + 120, + 122, + 0, + 1, + 1 + ], + [ + 126, + 10, + 26, + 1, + 1 + ], + [ + 128, + 66, + 4, + 1, + 1 + ], + [ + 131, + 10, + 22, + 1, + 1 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 137, + 30, + 110, + 1, + 1 + ], + [ + 143, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 115, + "covered": 102, + "percent": 88 + }, + "functions": { + "count": 8, + "covered": 5, + "percent": 62 + }, + "instantiations": { + "count": 8, + "covered": 5, + "percent": 62 + }, + "regions": { + "count": 44, + "covered": 36, + "notcovered": 8, + "percent": 81 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift", + "segments": [ + [ + 55, + 39, + 4, + 1, + 1 + ], + [ + 57, + 9, + 2, + 1, + 1 + ], + [ + 58, + 24, + 4, + 1, + 0 + ], + [ + 59, + 9, + 2, + 1, + 1 + ], + [ + 60, + 23, + 4, + 1, + 0 + ], + [ + 61, + 10, + 4, + 1, + 1 + ], + [ + 62, + 6, + 0, + 0, + 0 + ], + [ + 68, + 37, + 6, + 1, + 1 + ], + [ + 70, + 9, + 6, + 1, + 1 + ], + [ + 71, + 24, + 6, + 1, + 0 + ], + [ + 72, + 9, + 0, + 1, + 1 + ], + [ + 73, + 23, + 6, + 1, + 0 + ], + [ + 74, + 10, + 6, + 1, + 1 + ], + [ + 75, + 6, + 0, + 0, + 0 + ], + [ + 80, + 29, + 2, + 1, + 1 + ], + [ + 82, + 9, + 2, + 1, + 1 + ], + [ + 83, + 24, + 2, + 1, + 0 + ], + [ + 84, + 9, + 0, + 1, + 1 + ], + [ + 85, + 23, + 2, + 1, + 0 + ], + [ + 86, + 10, + 2, + 1, + 1 + ], + [ + 87, + 6, + 0, + 0, + 0 + ], + [ + 92, + 32, + 12, + 1, + 1 + ], + [ + 94, + 9, + 8, + 1, + 1 + ], + [ + 95, + 24, + 12, + 1, + 0 + ], + [ + 96, + 9, + 4, + 1, + 1 + ], + [ + 97, + 23, + 12, + 1, + 0 + ], + [ + 98, + 10, + 12, + 1, + 1 + ], + [ + 99, + 6, + 0, + 0, + 0 + ], + [ + 106, + 47, + 14, + 1, + 1 + ], + [ + 108, + 9, + 4, + 1, + 1 + ], + [ + 109, + 24, + 14, + 1, + 0 + ], + [ + 110, + 9, + 10, + 1, + 1 + ], + [ + 111, + 23, + 14, + 1, + 0 + ], + [ + 112, + 10, + 14, + 1, + 1 + ], + [ + 113, + 6, + 0, + 0, + 0 + ], + [ + 120, + 60, + 10, + 1, + 1 + ], + [ + 122, + 9, + 2, + 1, + 1 + ], + [ + 123, + 24, + 10, + 1, + 0 + ], + [ + 124, + 9, + 8, + 1, + 1 + ], + [ + 125, + 23, + 10, + 1, + 0 + ], + [ + 126, + 10, + 10, + 1, + 1 + ], + [ + 127, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 48, + "covered": 46, + "percent": 95 + }, + "functions": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "instantiations": { + "count": 6, + "covered": 6, + "percent": 100 + }, + "regions": { + "count": 24, + "covered": 22, + "notcovered": 2, + "percent": 91 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/RawBodyParser.swift", + "segments": [ + [ + 20, + 45, + 2, + 1, + 1 + ], + [ + 22, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "functions": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "instantiations": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "regions": { + "count": 1, + "covered": 1, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/TextBodyParser.swift", + "segments": [ + [ + 21, + 45, + 22, + 1, + 1 + ], + [ + 23, + 75, + 22, + 1, + 1 + ], + [ + 25, + 10, + 0, + 1, + 1 + ], + [ + 27, + 19, + 22, + 1, + 0 + ], + [ + 28, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 8, + "covered": 6, + "percent": 75 + }, + "functions": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "instantiations": { + "count": 1, + "covered": 1, + "percent": 100 + }, + "regions": { + "count": 3, + "covered": 2, + "notcovered": 1, + "percent": 66 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/URLEncodedBodyParser.swift", + "segments": [ + [ + 20, + 45, + 4, + 1, + 1 + ], + [ + 21, + 75, + 0, + 1, + 1 + ], + [ + 23, + 10, + 4, + 1, + 1 + ], + [ + 26, + 39, + 4, + 1, + 1 + ], + [ + 26, + 62, + 4, + 1, + 0 + ], + [ + 26, + 65, + 0, + 1, + 1 + ], + [ + 26, + 68, + 4, + 1, + 0 + ], + [ + 27, + 6, + 0, + 0, + 0 + ], + [ + 31, + 45, + 2, + 1, + 1 + ], + [ + 32, + 75, + 0, + 1, + 1 + ], + [ + 34, + 10, + 2, + 1, + 1 + ], + [ + 37, + 39, + 2, + 1, + 1 + ], + [ + 37, + 72, + 2, + 1, + 0 + ], + [ + 37, + 75, + 0, + 1, + 1 + ], + [ + 37, + 78, + 2, + 1, + 0 + ], + [ + 38, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 16, + "covered": 14, + "percent": 87 + }, + "functions": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "instantiations": { + "count": 2, + "covered": 2, + "percent": 100 + }, + "regions": { + "count": 10, + "covered": 6, + "notcovered": 4, + "percent": 60 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift", + "segments": [ + [ + 42, + 21, + 1, + 1, + 1 + ], + [ + 44, + 44, + 0, + 1, + 1 + ], + [ + 45, + 23, + 0, + 1, + 1 + ], + [ + 45, + 60, + 0, + 1, + 0 + ], + [ + 47, + 10, + 1, + 1, + 1 + ], + [ + 56, + 70, + 0, + 1, + 1 + ], + [ + 57, + 27, + 0, + 1, + 1 + ], + [ + 57, + 53, + 0, + 1, + 0 + ], + [ + 59, + 10, + 1, + 1, + 1 + ], + [ + 61, + 45, + 785, + 1, + 1 + ], + [ + 62, + 29, + 1014, + 1, + 1 + ], + [ + 64, + 14, + 785, + 1, + 1 + ], + [ + 65, + 10, + 1, + 1, + 1 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 80, + 69, + 441, + 1, + 1 + ], + [ + 82, + 6, + 0, + 0, + 0 + ], + [ + 96, + 73, + 77, + 1, + 1 + ], + [ + 101, + 72, + 72, + 1, + 1 + ], + [ + 103, + 10, + 77, + 1, + 1 + ], + [ + 103, + 16, + 5, + 1, + 1 + ], + [ + 105, + 10, + 77, + 1, + 1 + ], + [ + 107, + 96, + 76, + 1, + 1 + ], + [ + 109, + 10, + 77, + 1, + 1 + ], + [ + 109, + 16, + 1, + 1, + 1 + ], + [ + 112, + 10, + 77, + 1, + 1 + ], + [ + 114, + 72, + 77, + 1, + 0 + ], + [ + 115, + 6, + 0, + 0, + 0 + ], + [ + 130, + 100, + 5, + 1, + 1 + ], + [ + 135, + 35, + 1, + 1, + 1 + ], + [ + 137, + 10, + 4, + 1, + 1 + ], + [ + 140, + 53, + 1, + 1, + 1 + ], + [ + 142, + 10, + 3, + 1, + 1 + ], + [ + 146, + 45, + 1, + 1, + 1 + ], + [ + 148, + 10, + 2, + 1, + 1 + ], + [ + 153, + 42, + 2, + 1, + 1 + ], + [ + 153, + 71, + 2, + 1, + 0 + ], + [ + 154, + 16, + 2, + 1, + 1 + ], + [ + 154, + 59, + 2, + 1, + 0 + ], + [ + 154, + 63, + 1, + 1, + 1 + ], + [ + 154, + 91, + 2, + 1, + 0 + ], + [ + 154, + 92, + 1, + 1, + 1 + ], + [ + 156, + 10, + 1, + 1, + 1 + ], + [ + 157, + 21, + 2, + 1, + 0 + ], + [ + 158, + 6, + 0, + 0, + 0 + ], + [ + 165, + 52, + 3, + 1, + 1 + ], + [ + 168, + 9, + 1, + 1, + 1 + ], + [ + 169, + 55, + 3, + 1, + 0 + ], + [ + 170, + 9, + 1, + 1, + 1 + ], + [ + 171, + 33, + 3, + 1, + 0 + ], + [ + 172, + 9, + 1, + 1, + 1 + ], + [ + 173, + 38, + 3, + 1, + 0 + ], + [ + 181, + 9, + 0, + 1, + 1 + ], + [ + 182, + 24, + 3, + 1, + 0 + ], + [ + 183, + 10, + 3, + 1, + 1 + ], + [ + 184, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 102, + "covered": 95, + "percent": 93 + }, + "functions": { + "count": 10, + "covered": 8, + "percent": 80 + }, + "instantiations": { + "count": 10, + "covered": 8, + "percent": 80 + }, + "regions": { + "count": 39, + "covered": 34, + "notcovered": 5, + "percent": 87 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/MediaType.swift", + "segments": [ + [ + 72, + 60, + 5, + 1, + 1 + ], + [ + 77, + 6, + 0, + 0, + 0 + ], + [ + 87, + 39, + 773, + 1, + 1 + ], + [ + 91, + 89, + 2, + 1, + 1 + ], + [ + 93, + 10, + 771, + 1, + 1 + ], + [ + 95, + 50, + 769, + 1, + 1 + ], + [ + 95, + 76, + 771, + 1, + 0 + ], + [ + 95, + 77, + 769, + 1, + 1 + ], + [ + 97, + 10, + 771, + 1, + 1 + ], + [ + 97, + 16, + 2, + 1, + 1 + ], + [ + 99, + 10, + 771, + 1, + 1 + ], + [ + 103, + 6, + 0, + 0, + 0 + ], + [ + 112, + 39, + 766, + 1, + 1 + ], + [ + 113, + 50, + 8879, + 1, + 1 + ], + [ + 116, + 10, + 766, + 1, + 0 + ], + [ + 118, + 6, + 0, + 0, + 0 + ], + [ + 157, + 68, + 876, + 1, + 1 + ], + [ + 159, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 38, + "covered": 38, + "percent": 100 + }, + "functions": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "instantiations": { + "count": 4, + "covered": 4, + "percent": 100 + }, + "regions": { + "count": 12, + "covered": 12, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CacheRelatedHeadersSetter.swift", + "segments": [ + [ + 33, + 94, + 421, + 1, + 1 + ], + [ + 37, + 10, + 0, + 0, + 0 + ], + [ + 40, + 81, + 60, + 1, + 1 + ], + [ + 44, + 10, + 0, + 0, + 0 + ], + [ + 47, + 80, + 60, + 1, + 1 + ], + [ + 48, + 38, + 44, + 1, + 1 + ], + [ + 50, + 36, + 44, + 1, + 1 + ], + [ + 52, + 18, + 44, + 1, + 1 + ], + [ + 53, + 14, + 60, + 1, + 1 + ], + [ + 54, + 10, + 0, + 0, + 0 + ], + [ + 57, + 72, + 60, + 1, + 1 + ], + [ + 59, + 90, + 44, + 1, + 1 + ], + [ + 61, + 14, + 60, + 1, + 1 + ], + [ + 62, + 10, + 0, + 0, + 0 + ], + [ + 64, + 58, + 60, + 1, + 1 + ], + [ + 66, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 27, + "covered": 27, + "percent": 100 + }, + "functions": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "instantiations": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "regions": { + "count": 11, + "covered": 11, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CompositeHeadersSetter.swift", + "segments": [ + [ + 24, + 46, + 421, + 1, + 1 + ], + [ + 25, + 49, + 842, + 1, + 1 + ], + [ + 25, + 62, + 421, + 1, + 0 + ], + [ + 25, + 67, + 541, + 1, + 1 + ], + [ + 25, + 74, + 421, + 1, + 0 + ], + [ + 26, + 6, + 0, + 0, + 0 + ], + [ + 29, + 77, + 60, + 1, + 1 + ], + [ + 30, + 40, + 104, + 1, + 1 + ], + [ + 33, + 10, + 60, + 1, + 0 + ], + [ + 34, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 15, + "covered": 15, + "percent": 100 + }, + "functions": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "instantiations": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "regions": { + "count": 5, + "covered": 5, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift", + "segments": [ + [ + 45, + 61, + 421, + 1, + 1 + ], + [ + 52, + 10, + 0, + 0, + 0 + ], + [ + 54, + 66, + 168, + 1, + 1 + ], + [ + 56, + 69, + 0, + 1, + 1 + ], + [ + 58, + 14, + 168, + 1, + 1 + ], + [ + 60, + 43, + 0, + 1, + 1 + ], + [ + 62, + 14, + 168, + 1, + 1 + ], + [ + 63, + 44, + 168, + 1, + 1 + ], + [ + 65, + 14, + 168, + 1, + 1 + ], + [ + 67, + 51, + 154, + 1, + 1 + ], + [ + 70, + 65, + 154, + 1, + 1 + ], + [ + 72, + 18, + 154, + 1, + 1 + ], + [ + 72, + 24, + 0, + 1, + 1 + ], + [ + 73, + 33, + 0, + 1, + 1 + ], + [ + 73, + 62, + 0, + 1, + 0 + ], + [ + 75, + 18, + 154, + 1, + 1 + ], + [ + 76, + 14, + 168, + 1, + 1 + ], + [ + 78, + 40, + 44, + 1, + 1 + ], + [ + 79, + 43, + 42, + 1, + 1 + ], + [ + 81, + 18, + 44, + 1, + 1 + ], + [ + 81, + 24, + 2, + 1, + 1 + ], + [ + 83, + 18, + 42, + 1, + 1 + ], + [ + 84, + 14, + 166, + 1, + 1 + ], + [ + 86, + 28, + 168, + 1, + 0 + ], + [ + 87, + 10, + 0, + 0, + 0 + ], + [ + 89, + 91, + 166, + 1, + 1 + ], + [ + 93, + 84, + 74, + 1, + 1 + ], + [ + 102, + 14, + 92, + 1, + 1 + ], + [ + 105, + 10, + 0, + 0, + 0 + ], + [ + 107, + 93, + 92, + 1, + 1 + ], + [ + 108, + 73, + 4, + 1, + 1 + ], + [ + 108, + 96, + 92, + 1, + 0 + ], + [ + 109, + 73, + 4, + 1, + 1 + ], + [ + 111, + 14, + 92, + 1, + 1 + ], + [ + 112, + 10, + 0, + 0, + 0 + ], + [ + 115, + 66, + 74, + 1, + 1 + ], + [ + 116, + 28, + 16, + 1, + 1 + ], + [ + 117, + 29, + 14, + 1, + 1 + ], + [ + 118, + 24, + 14, + 1, + 1 + ], + [ + 120, + 22, + 14, + 1, + 0 + ], + [ + 120, + 29, + 0, + 1, + 1 + ], + [ + 122, + 22, + 14, + 1, + 1 + ], + [ + 123, + 18, + 16, + 1, + 1 + ], + [ + 124, + 14, + 74, + 1, + 1 + ], + [ + 124, + 20, + 58, + 1, + 1 + ], + [ + 126, + 14, + 74, + 1, + 1 + ], + [ + 127, + 10, + 0, + 0, + 0 + ], + [ + 130, + 101, + 4, + 1, + 1 + ], + [ + 132, + 82, + 2, + 1, + 1 + ], + [ + 138, + 37, + 2, + 1, + 1 + ], + [ + 141, + 18, + 0, + 1, + 1 + ], + [ + 142, + 14, + 2, + 1, + 1 + ], + [ + 143, + 25, + 4, + 1, + 0 + ], + [ + 144, + 10, + 0, + 0, + 0 + ], + [ + 146, + 90, + 60, + 1, + 1 + ], + [ + 147, + 44, + 0, + 1, + 1 + ], + [ + 149, + 14, + 60, + 1, + 1 + ], + [ + 151, + 16, + 60, + 1, + 1 + ], + [ + 157, + 68, + 58, + 1, + 1 + ], + [ + 157, + 75, + 60, + 1, + 0 + ], + [ + 157, + 78, + 2, + 1, + 1 + ], + [ + 157, + 84, + 60, + 1, + 0 + ], + [ + 166, + 102, + 20, + 1, + 1 + ], + [ + 170, + 58, + 18, + 1, + 1 + ], + [ + 172, + 134, + 4, + 1, + 1 + ], + [ + 176, + 26, + 18, + 1, + 1 + ], + [ + 176, + 32, + 14, + 1, + 1 + ], + [ + 179, + 26, + 18, + 1, + 1 + ], + [ + 180, + 22, + 20, + 1, + 1 + ], + [ + 180, + 28, + 2, + 1, + 1 + ], + [ + 183, + 22, + 20, + 1, + 1 + ], + [ + 184, + 18, + 60, + 1, + 1 + ], + [ + 184, + 24, + 40, + 1, + 1 + ], + [ + 186, + 41, + 2, + 1, + 1 + ], + [ + 189, + 22, + 40, + 1, + 1 + ], + [ + 189, + 28, + 38, + 1, + 1 + ], + [ + 191, + 97, + 0, + 1, + 1 + ], + [ + 193, + 26, + 38, + 1, + 1 + ], + [ + 193, + 32, + 38, + 1, + 1 + ], + [ + 197, + 26, + 38, + 1, + 1 + ], + [ + 198, + 22, + 40, + 1, + 1 + ], + [ + 199, + 18, + 60, + 1, + 1 + ], + [ + 200, + 14, + 60, + 1, + 0 + ], + [ + 200, + 21, + 0, + 1, + 1 + ], + [ + 201, + 27, + 0, + 1, + 1 + ], + [ + 201, + 78, + 0, + 1, + 0 + ], + [ + 202, + 14, + 60, + 1, + 1 + ], + [ + 203, + 10, + 0, + 0, + 0 + ], + [ + 205, + 66, + 60, + 1, + 1 + ], + [ + 207, + 112, + 0, + 1, + 1 + ], + [ + 209, + 14, + 60, + 1, + 1 + ], + [ + 210, + 65, + 60, + 1, + 0 + ], + [ + 211, + 10, + 0, + 0, + 0 + ], + [ + 213, + 106, + 2, + 1, + 1 + ], + [ + 216, + 10, + 0, + 0, + 0 + ], + [ + 218, + 140, + 14, + 1, + 1 + ], + [ + 220, + 34, + 12, + 1, + 1 + ], + [ + 225, + 45, + 0, + 1, + 1 + ], + [ + 225, + 51, + 12, + 1, + 0 + ], + [ + 228, + 14, + 14, + 1, + 1 + ], + [ + 228, + 20, + 2, + 1, + 1 + ], + [ + 233, + 32, + 4, + 1, + 1 + ], + [ + 234, + 97, + 0, + 1, + 1 + ], + [ + 234, + 103, + 4, + 1, + 0 + ], + [ + 237, + 57, + 0, + 1, + 1 + ], + [ + 237, + 59, + 4, + 1, + 0 + ], + [ + 237, + 62, + 4, + 1, + 1 + ], + [ + 237, + 97, + 4, + 1, + 0 + ], + [ + 242, + 18, + 2, + 1, + 0 + ], + [ + 246, + 14, + 14, + 1, + 1 + ], + [ + 247, + 10, + 0, + 0, + 0 + ], + [ + 250, + 146, + 18, + 1, + 1 + ], + [ + 252, + 76, + 10, + 1, + 1 + ], + [ + 254, + 14, + 8, + 1, + 1 + ], + [ + 257, + 41, + 4, + 1, + 1 + ], + [ + 260, + 44, + 2, + 1, + 1 + ], + [ + 262, + 18, + 2, + 1, + 1 + ], + [ + 263, + 28, + 4, + 1, + 0 + ], + [ + 264, + 14, + 4, + 1, + 1 + ], + [ + 268, + 110, + 2, + 1, + 1 + ], + [ + 270, + 14, + 2, + 1, + 1 + ], + [ + 271, + 25, + 4, + 1, + 0 + ], + [ + 272, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 230, + "covered": 217, + "percent": 94 + }, + "functions": { + "count": 17, + "covered": 13, + "percent": 76 + }, + "instantiations": { + "count": 17, + "covered": 13, + "percent": 76 + }, + "regions": { + "count": 95, + "covered": 81, + "notcovered": 14, + "percent": 85 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift", + "segments": [ + [ + 39, + 72, + 27, + 1, + 1 + ], + [ + 44, + 12, + 27, + 1, + 1 + ], + [ + 46, + 10, + 27, + 1, + 0 + ], + [ + 46, + 17, + 0, + 1, + 1 + ], + [ + 47, + 23, + 0, + 1, + 1 + ], + [ + 47, + 94, + 0, + 1, + 0 + ], + [ + 49, + 10, + 27, + 1, + 1 + ], + [ + 51, + 32, + 27, + 1, + 0 + ], + [ + 52, + 6, + 0, + 0, + 0 + ], + [ + 60, + 108, + 40, + 1, + 1 + ], + [ + 62, + 71, + 1, + 1, + 1 + ], + [ + 65, + 10, + 39, + 1, + 1 + ], + [ + 79, + 30, + 53, + 1, + 1 + ], + [ + 81, + 40, + 1, + 1, + 1 + ], + [ + 84, + 14, + 52, + 1, + 1 + ], + [ + 90, + 40, + 47, + 1, + 1 + ], + [ + 90, + 58, + 52, + 1, + 0 + ], + [ + 90, + 59, + 41, + 1, + 1 + ], + [ + 94, + 14, + 52, + 1, + 1 + ], + [ + 94, + 43, + 5, + 1, + 1 + ], + [ + 97, + 31, + 1, + 1, + 1 + ], + [ + 99, + 18, + 5, + 1, + 1 + ], + [ + 99, + 24, + 4, + 1, + 1 + ], + [ + 102, + 18, + 5, + 1, + 1 + ], + [ + 103, + 14, + 52, + 1, + 1 + ], + [ + 103, + 20, + 47, + 1, + 1 + ], + [ + 107, + 14, + 52, + 1, + 1 + ], + [ + 110, + 30, + 51, + 1, + 1 + ], + [ + 110, + 47, + 52, + 1, + 0 + ], + [ + 110, + 48, + 11, + 1, + 1 + ], + [ + 112, + 14, + 52, + 1, + 1 + ], + [ + 115, + 108, + 10, + 1, + 1 + ], + [ + 117, + 14, + 42, + 1, + 1 + ], + [ + 119, + 10, + 39, + 1, + 0 + ], + [ + 121, + 36, + 8, + 1, + 1 + ], + [ + 124, + 10, + 31, + 1, + 1 + ], + [ + 126, + 26, + 20, + 1, + 1 + ], + [ + 129, + 10, + 11, + 1, + 1 + ], + [ + 129, + 16, + 11, + 1, + 1 + ], + [ + 131, + 10, + 0, + 1, + 1 + ], + [ + 132, + 6, + 0, + 0, + 0 + ], + [ + 147, + 34, + 29, + 1, + 1 + ], + [ + 151, + 14, + 0, + 0, + 0 + ], + [ + 151, + 22, + 12, + 1, + 1 + ], + [ + 153, + 14, + 0, + 0, + 0 + ], + [ + 174, + 39, + 6, + 1, + 1 + ], + [ + 176, + 14, + 0, + 0, + 0 + ], + [ + 176, + 19, + 25, + 1, + 1 + ], + [ + 178, + 14, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 145, + "covered": 141, + "percent": 97 + }, + "functions": { + "count": 10, + "covered": 9, + "percent": 90 + }, + "instantiations": { + "count": 10, + "covered": 9, + "percent": 90 + }, + "regions": { + "count": 37, + "covered": 34, + "notcovered": 3, + "percent": 91 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/ResourcePathHandler.swift", + "segments": [ + [ + 28, + 65, + 477, + 1, + 1 + ], + [ + 30, + 45, + 265, + 1, + 1 + ], + [ + 30, + 62, + 477, + 1, + 0 + ], + [ + 30, + 63, + 263, + 1, + 1 + ], + [ + 32, + 14, + 477, + 1, + 1 + ], + [ + 37, + 39, + 62, + 1, + 1 + ], + [ + 39, + 14, + 415, + 1, + 1 + ], + [ + 52, + 61, + 302, + 1, + 1 + ], + [ + 54, + 14, + 113, + 1, + 1 + ], + [ + 58, + 81, + 0, + 1, + 1 + ], + [ + 60, + 14, + 113, + 1, + 1 + ], + [ + 62, + 61, + 113, + 1, + 0 + ], + [ + 63, + 10, + 0, + 0, + 0 + ], + [ + 76, + 27, + 0, + 1, + 1 + ], + [ + 76, + 90, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 38, + "covered": 36, + "percent": 94 + }, + "functions": { + "count": 3, + "covered": 2, + "percent": 66 + }, + "instantiations": { + "count": 3, + "covered": 2, + "percent": 66 + }, + "regions": { + "count": 11, + "covered": 9, + "notcovered": 2, + "percent": 81 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/StaticFileServer.swift", + "segments": [ + [ + 53, + 41, + 241, + 1, + 1 + ], + [ + 57, + 10, + 0, + 0, + 0 + ], + [ + 80, + 109, + 421, + 1, + 1 + ], + [ + 86, + 10, + 0, + 0, + 0 + ], + [ + 105, + 77, + 421, + 1, + 1 + ], + [ + 119, + 6, + 0, + 0, + 0 + ], + [ + 131, + 100, + 172, + 1, + 1 + ], + [ + 136, + 64, + 8, + 1, + 1 + ], + [ + 136, + 94, + 172, + 1, + 0 + ], + [ + 136, + 100, + 4, + 1, + 1 + ], + [ + 138, + 10, + 168, + 1, + 1 + ], + [ + 140, + 73, + 2, + 1, + 1 + ], + [ + 142, + 10, + 166, + 1, + 1 + ], + [ + 144, + 61, + 0, + 1, + 1 + ], + [ + 146, + 10, + 166, + 1, + 1 + ], + [ + 149, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 47, + "covered": 46, + "percent": 97 + }, + "functions": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "instantiations": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "regions": { + "count": 11, + "covered": 10, + "notcovered": 1, + "percent": 90 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/ExternalSubrouter.swift", + "segments": [ + [ + 7, + 36, + 1, + 1, + 1 + ], + [ + 10, + 28, + 2, + 1, + 1 + ], + [ + 13, + 4, + 1, + 1, + 0 + ], + [ + 15, + 32, + 2, + 1, + 1 + ], + [ + 18, + 4, + 1, + 1, + 0 + ], + [ + 21, + 3, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 23, + "covered": 23, + "percent": 100 + }, + "functions": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "instantiations": { + "count": 3, + "covered": 3, + "percent": 100 + }, + "regions": { + "count": 3, + "covered": 3, + "notcovered": 0, + "percent": 100 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift", + "segments": [ + [ + 42, + 39, + 1, + 1, + 1 + ], + [ + 55, + 6, + 0, + 0, + 0 + ], + [ + 57, + 39, + 1, + 1, + 1 + ], + [ + 59, + 6, + 0, + 0, + 0 + ], + [ + 61, + 27, + 354, + 1, + 1 + ], + [ + 64, + 6, + 0, + 0, + 0 + ], + [ + 67, + 69, + 59, + 1, + 1 + ], + [ + 69, + 6, + 0, + 0, + 0 + ], + [ + 72, + 91, + 146, + 1, + 1 + ], + [ + 74, + 6, + 0, + 0, + 0 + ], + [ + 77, + 90, + 205, + 1, + 1 + ], + [ + 78, + 45, + 205, + 1, + 1 + ], + [ + 82, + 10, + 205, + 1, + 1 + ], + [ + 87, + 44, + 205, + 1, + 1 + ], + [ + 91, + 10, + 205, + 1, + 1 + ], + [ + 92, + 6, + 0, + 0, + 0 + ], + [ + 94, + 131, + 410, + 1, + 1 + ], + [ + 96, + 59, + 0, + 1, + 1 + ], + [ + 99, + 10, + 410, + 1, + 1 + ], + [ + 102, + 59, + 752, + 1, + 1 + ], + [ + 104, + 32, + 752, + 1, + 1 + ], + [ + 106, + 14, + 752, + 1, + 0 + ], + [ + 107, + 10, + 410, + 1, + 1 + ], + [ + 110, + 47, + 410, + 1, + 1 + ], + [ + 111, + 26, + 410, + 1, + 1 + ], + [ + 111, + 31, + 410, + 1, + 0 + ], + [ + 113, + 6, + 0, + 0, + 0 + ], + [ + 115, + 62, + 410, + 1, + 1 + ], + [ + 116, + 19, + 205, + 1, + 1 + ], + [ + 117, + 52, + 203, + 1, + 1 + ], + [ + 120, + 14, + 2, + 1, + 1 + ], + [ + 121, + 10, + 207, + 1, + 1 + ], + [ + 121, + 16, + 205, + 1, + 1 + ], + [ + 122, + 51, + 203, + 1, + 1 + ], + [ + 125, + 14, + 2, + 1, + 1 + ], + [ + 126, + 10, + 4, + 1, + 1 + ], + [ + 130, + 19, + 2, + 1, + 1 + ], + [ + 132, + 10, + 4, + 1, + 1 + ], + [ + 134, + 12, + 4, + 1, + 1 + ], + [ + 137, + 23, + 2, + 1, + 1 + ], + [ + 139, + 14, + 4, + 1, + 1 + ], + [ + 139, + 20, + 2, + 1, + 1 + ], + [ + 141, + 14, + 4, + 1, + 1 + ], + [ + 142, + 31, + 4, + 1, + 0 + ], + [ + 143, + 17, + 0, + 1, + 1 + ], + [ + 146, + 10, + 0, + 1, + 1 + ], + [ + 147, + 6, + 0, + 0, + 0 + ], + [ + 149, + 23, + 4, + 1, + 1 + ], + [ + 155, + 6, + 0, + 0, + 0 + ], + [ + 159, + 76, + 761, + 1, + 1 + ], + [ + 161, + 28, + 758, + 1, + 1 + ], + [ + 161, + 37, + 761, + 1, + 0 + ], + [ + 162, + 32, + 758, + 1, + 1 + ], + [ + 162, + 43, + 761, + 1, + 0 + ], + [ + 165, + 35, + 188, + 1, + 1 + ], + [ + 166, + 55, + 316, + 1, + 1 + ], + [ + 168, + 14, + 188, + 1, + 1 + ], + [ + 169, + 10, + 761, + 1, + 1 + ], + [ + 170, + 46, + 757, + 1, + 1 + ], + [ + 172, + 10, + 761, + 1, + 1 + ], + [ + 174, + 31, + 382, + 1, + 1 + ], + [ + 174, + 38, + 761, + 1, + 0 + ], + [ + 174, + 41, + 379, + 1, + 1 + ], + [ + 174, + 47, + 761, + 1, + 0 + ], + [ + 178, + 19, + 382, + 1, + 1 + ], + [ + 180, + 10, + 761, + 1, + 1 + ], + [ + 183, + 50, + 154, + 1, + 1 + ], + [ + 185, + 10, + 761, + 1, + 1 + ], + [ + 187, + 6, + 0, + 0, + 0 + ], + [ + 189, + 66, + 752, + 1, + 1 + ], + [ + 191, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 144, + "covered": 138, + "percent": 95 + }, + "functions": { + "count": 16, + "covered": 16, + "percent": 100 + }, + "instantiations": { + "count": 16, + "covered": 16, + "percent": 100 + }, + "regions": { + "count": 53, + "covered": 50, + "notcovered": 3, + "percent": 94 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift", + "segments": [ + [ + 80, + 101, + 106, + 1, + 1 + ], + [ + 82, + 28, + 212, + 1, + 1 + ], + [ + 84, + 14, + 106, + 1, + 0 + ], + [ + 85, + 10, + 0, + 0, + 0 + ], + [ + 87, + 126, + 50, + 1, + 1 + ], + [ + 89, + 28, + 100, + 1, + 1 + ], + [ + 91, + 112, + 100, + 1, + 1 + ], + [ + 94, + 18, + 100, + 1, + 0 + ], + [ + 95, + 14, + 50, + 1, + 0 + ], + [ + 96, + 10, + 0, + 0, + 0 + ], + [ + 98, + 194, + 5, + 1, + 1 + ], + [ + 100, + 28, + 10, + 1, + 1 + ], + [ + 102, + 112, + 10, + 1, + 1 + ], + [ + 105, + 18, + 10, + 1, + 0 + ], + [ + 106, + 14, + 5, + 1, + 0 + ], + [ + 107, + 10, + 0, + 0, + 0 + ], + [ + 109, + 129, + 4, + 1, + 1 + ], + [ + 111, + 28, + 8, + 1, + 1 + ], + [ + 112, + 112, + 8, + 1, + 1 + ], + [ + 115, + 18, + 8, + 1, + 0 + ], + [ + 116, + 14, + 4, + 1, + 0 + ], + [ + 117, + 10, + 0, + 0, + 0 + ], + [ + 125, + 42, + 425, + 1, + 1 + ], + [ + 125, + 66, + 0, + 0, + 0 + ], + [ + 127, + 115, + 59, + 1, + 1 + ], + [ + 133, + 6, + 0, + 0, + 0 + ], + [ + 135, + 81, + 57, + 1, + 1 + ], + [ + 137, + 6, + 0, + 0, + 0 + ], + [ + 139, + 108, + 106, + 1, + 1 + ], + [ + 142, + 6, + 0, + 0, + 0 + ], + [ + 144, + 104, + 34, + 1, + 1 + ], + [ + 146, + 6, + 0, + 0, + 0 + ], + [ + 148, + 131, + 50, + 1, + 1 + ], + [ + 151, + 6, + 0, + 0, + 0 + ], + [ + 153, + 169, + 5, + 1, + 1 + ], + [ + 156, + 6, + 0, + 0, + 0 + ], + [ + 158, + 107, + 4, + 1, + 1 + ], + [ + 160, + 6, + 0, + 0, + 0 + ], + [ + 162, + 134, + 4, + 1, + 1 + ], + [ + 165, + 6, + 0, + 0, + 0 + ], + [ + 167, + 75, + 425, + 1, + 1 + ], + [ + 170, + 6, + 0, + 0, + 0 + ], + [ + 172, + 65, + 165, + 1, + 1 + ], + [ + 173, + 20, + 330, + 1, + 1 + ], + [ + 173, + 37, + 330, + 1, + 1 + ], + [ + 173, + 50, + 330, + 1, + 0 + ], + [ + 173, + 52, + 330, + 1, + 1 + ], + [ + 173, + 62, + 330, + 1, + 0 + ], + [ + 173, + 65, + 165, + 1, + 0 + ], + [ + 174, + 6, + 0, + 0, + 0 + ], + [ + 176, + 78, + 71, + 1, + 1 + ], + [ + 178, + 6, + 0, + 0, + 0 + ], + [ + 180, + 86, + 71, + 1, + 1 + ], + [ + 181, + 20, + 142, + 1, + 1 + ], + [ + 182, + 60, + 0, + 1, + 1 + ], + [ + 185, + 14, + 142, + 1, + 1 + ], + [ + 186, + 42, + 0, + 1, + 1 + ], + [ + 189, + 14, + 142, + 1, + 1 + ], + [ + 190, + 41, + 142, + 1, + 1 + ], + [ + 190, + 73, + 142, + 1, + 0 + ], + [ + 191, + 23, + 142, + 1, + 1 + ], + [ + 191, + 40, + 142, + 1, + 0 + ], + [ + 191, + 42, + 0, + 1, + 1 + ], + [ + 191, + 182, + 142, + 1, + 0 + ], + [ + 192, + 10, + 71, + 1, + 0 + ], + [ + 193, + 6, + 0, + 0, + 0 + ], + [ + 195, + 79, + 4, + 1, + 1 + ], + [ + 196, + 20, + 8, + 1, + 1 + ], + [ + 197, + 60, + 0, + 1, + 1 + ], + [ + 200, + 14, + 8, + 1, + 1 + ], + [ + 201, + 74, + 0, + 1, + 1 + ], + [ + 204, + 14, + 8, + 1, + 1 + ], + [ + 205, + 28, + 8, + 1, + 1 + ], + [ + 205, + 39, + 8, + 1, + 0 + ], + [ + 205, + 41, + 8, + 1, + 1 + ], + [ + 205, + 54, + 8, + 1, + 0 + ], + [ + 205, + 56, + 0, + 1, + 1 + ], + [ + 205, + 157, + 8, + 1, + 0 + ], + [ + 206, + 10, + 4, + 1, + 0 + ], + [ + 207, + 6, + 0, + 0, + 0 + ], + [ + 209, + 120, + 330, + 1, + 1 + ], + [ + 211, + 72, + 0, + 1, + 1 + ], + [ + 214, + 10, + 330, + 1, + 1 + ], + [ + 215, + 29, + 154, + 1, + 1 + ], + [ + 215, + 39, + 330, + 1, + 0 + ], + [ + 215, + 45, + 0, + 1, + 1 + ], + [ + 218, + 10, + 330, + 1, + 1 + ], + [ + 219, + 30, + 330, + 1, + 0 + ], + [ + 220, + 6, + 0, + 0, + 0 + ], + [ + 222, + 37, + 88, + 1, + 1 + ], + [ + 223, + 20, + 176, + 1, + 1 + ], + [ + 224, + 96, + 0, + 1, + 1 + ], + [ + 224, + 106, + 176, + 1, + 1 + ], + [ + 225, + 28, + 176, + 1, + 1 + ], + [ + 225, + 34, + 176, + 1, + 0 + ], + [ + 225, + 36, + 176, + 1, + 1 + ], + [ + 225, + 37, + 176, + 1, + 0 + ], + [ + 225, + 39, + 0, + 1, + 1 + ], + [ + 225, + 118, + 176, + 1, + 0 + ], + [ + 226, + 10, + 88, + 1, + 0 + ], + [ + 227, + 6, + 0, + 0, + 0 + ], + [ + 229, + 35, + 6, + 1, + 1 + ], + [ + 230, + 20, + 12, + 1, + 1 + ], + [ + 232, + 10, + 6, + 1, + 0 + ], + [ + 233, + 6, + 0, + 0, + 0 + ], + [ + 235, + 51, + 0, + 1, + 1 + ], + [ + 236, + 20, + 0, + 1, + 1 + ], + [ + 237, + 76, + 0, + 1, + 1 + ], + [ + 237, + 86, + 0, + 1, + 1 + ], + [ + 238, + 28, + 0, + 1, + 1 + ], + [ + 238, + 32, + 0, + 1, + 0 + ], + [ + 238, + 34, + 0, + 1, + 1 + ], + [ + 238, + 42, + 0, + 1, + 0 + ], + [ + 238, + 44, + 0, + 1, + 1 + ], + [ + 238, + 83, + 0, + 1, + 0 + ], + [ + 240, + 6, + 0, + 0, + 0 + ], + [ + 242, + 53, + 0, + 1, + 1 + ], + [ + 243, + 20, + 0, + 1, + 1 + ], + [ + 244, + 76, + 0, + 1, + 1 + ], + [ + 244, + 86, + 0, + 1, + 1 + ], + [ + 245, + 73, + 0, + 1, + 1 + ], + [ + 248, + 14, + 0, + 1, + 1 + ], + [ + 249, + 28, + 0, + 1, + 1 + ], + [ + 249, + 36, + 0, + 1, + 0 + ], + [ + 249, + 38, + 0, + 1, + 1 + ], + [ + 249, + 44, + 0, + 1, + 0 + ], + [ + 249, + 46, + 0, + 1, + 1 + ], + [ + 249, + 134, + 0, + 1, + 0 + ], + [ + 251, + 6, + 0, + 0, + 0 + ], + [ + 253, + 76, + 11, + 1, + 1 + ], + [ + 254, + 49, + 22, + 1, + 1 + ], + [ + 254, + 73, + 11, + 1, + 0 + ], + [ + 255, + 6, + 0, + 0, + 0 + ], + [ + 256, + 74, + 44, + 1, + 1 + ], + [ + 257, + 49, + 88, + 1, + 1 + ], + [ + 257, + 73, + 44, + 1, + 0 + ], + [ + 258, + 6, + 0, + 0, + 0 + ], + [ + 259, + 87, + 5, + 1, + 1 + ], + [ + 260, + 49, + 10, + 1, + 1 + ], + [ + 260, + 73, + 5, + 1, + 0 + ], + [ + 261, + 6, + 0, + 0, + 0 + ], + [ + 263, + 120, + 13, + 1, + 1 + ], + [ + 264, + 20, + 26, + 1, + 1 + ], + [ + 265, + 76, + 0, + 1, + 1 + ], + [ + 265, + 86, + 26, + 1, + 1 + ], + [ + 266, + 16, + 26, + 1, + 1 + ], + [ + 268, + 32, + 26, + 1, + 1 + ], + [ + 268, + 40, + 26, + 1, + 0 + ], + [ + 268, + 42, + 26, + 1, + 1 + ], + [ + 268, + 48, + 26, + 1, + 0 + ], + [ + 268, + 50, + 0, + 1, + 1 + ], + [ + 268, + 138, + 26, + 1, + 0 + ], + [ + 269, + 21, + 0, + 1, + 1 + ], + [ + 271, + 14, + 26, + 1, + 1 + ], + [ + 272, + 10, + 13, + 1, + 0 + ], + [ + 273, + 6, + 0, + 0, + 0 + ], + [ + 275, + 118, + 52, + 1, + 1 + ], + [ + 276, + 20, + 104, + 1, + 1 + ], + [ + 277, + 76, + 0, + 1, + 1 + ], + [ + 277, + 86, + 104, + 1, + 1 + ], + [ + 278, + 16, + 104, + 1, + 1 + ], + [ + 280, + 32, + 104, + 1, + 1 + ], + [ + 280, + 40, + 104, + 1, + 0 + ], + [ + 280, + 42, + 104, + 1, + 1 + ], + [ + 280, + 48, + 104, + 1, + 0 + ], + [ + 280, + 50, + 0, + 1, + 1 + ], + [ + 280, + 138, + 104, + 1, + 0 + ], + [ + 281, + 21, + 0, + 1, + 1 + ], + [ + 283, + 14, + 104, + 1, + 1 + ], + [ + 284, + 10, + 52, + 1, + 0 + ], + [ + 285, + 6, + 0, + 0, + 0 + ], + [ + 287, + 124, + 6, + 1, + 1 + ], + [ + 288, + 20, + 12, + 1, + 1 + ], + [ + 289, + 76, + 0, + 1, + 1 + ], + [ + 289, + 86, + 12, + 1, + 1 + ], + [ + 290, + 16, + 12, + 1, + 1 + ], + [ + 292, + 59, + 32, + 1, + 1 + ], + [ + 295, + 36, + 32, + 1, + 1 + ], + [ + 295, + 44, + 32, + 1, + 0 + ], + [ + 295, + 46, + 32, + 1, + 1 + ], + [ + 295, + 57, + 32, + 1, + 0 + ], + [ + 295, + 59, + 0, + 1, + 1 + ], + [ + 295, + 150, + 32, + 1, + 0 + ], + [ + 296, + 36, + 32, + 1, + 1 + ], + [ + 296, + 51, + 32, + 1, + 0 + ], + [ + 296, + 53, + 32, + 1, + 1 + ], + [ + 296, + 81, + 32, + 1, + 0 + ], + [ + 296, + 83, + 0, + 1, + 1 + ], + [ + 296, + 240, + 32, + 1, + 0 + ], + [ + 297, + 18, + 12, + 1, + 1 + ], + [ + 298, + 14, + 12, + 1, + 0 + ], + [ + 298, + 21, + 0, + 1, + 1 + ], + [ + 300, + 14, + 12, + 1, + 1 + ], + [ + 301, + 10, + 6, + 1, + 0 + ], + [ + 302, + 6, + 0, + 0, + 0 + ], + [ + 304, + 23, + 59, + 1, + 1 + ], + [ + 307, + 34, + 165, + 1, + 1 + ], + [ + 308, + 20, + 330, + 1, + 1 + ], + [ + 309, + 20, + 330, + 1, + 1 + ], + [ + 310, + 43, + 330, + 1, + 1 + ], + [ + 311, + 60, + 0, + 1, + 1 + ], + [ + 315, + 26, + 330, + 1, + 1 + ], + [ + 316, + 61, + 850, + 1, + 1 + ], + [ + 318, + 26, + 330, + 1, + 1 + ], + [ + 320, + 22, + 330, + 1, + 0 + ], + [ + 321, + 25, + 0, + 1, + 1 + ], + [ + 324, + 18, + 330, + 1, + 1 + ], + [ + 325, + 14, + 165, + 1, + 0 + ], + [ + 326, + 10, + 59, + 1, + 0 + ], + [ + 328, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 408, + "covered": 347, + "percent": 85 + }, + "functions": { + "count": 80, + "covered": 63, + "percent": 78 + }, + "instantiations": { + "count": 80, + "covered": 63, + "percent": 78 + }, + "regions": { + "count": 127, + "covered": 89, + "notcovered": 38, + "percent": 70 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift", + "segments": [ + [ + 25, + 80, + 0, + 1, + 1 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 32, + 24, + 1, + 1, + 1 + ], + [ + 41, + 9, + 0, + 1, + 1 + ], + [ + 42, + 29, + 0, + 1, + 1 + ], + [ + 42, + 34, + 0, + 1, + 0 + ], + [ + 42, + 36, + 0, + 1, + 1 + ], + [ + 42, + 73, + 0, + 1, + 0 + ], + [ + 43, + 28, + 0, + 1, + 1 + ], + [ + 43, + 33, + 0, + 1, + 0 + ], + [ + 43, + 35, + 0, + 1, + 1 + ], + [ + 43, + 49, + 0, + 1, + 0 + ], + [ + 43, + 51, + 0, + 1, + 1 + ], + [ + 43, + 145, + 0, + 1, + 0 + ], + [ + 44, + 37, + 1, + 1, + 0 + ], + [ + 45, + 9, + 1, + 1, + 1 + ], + [ + 46, + 29, + 1, + 1, + 1 + ], + [ + 46, + 34, + 1, + 1, + 0 + ], + [ + 46, + 36, + 0, + 1, + 1 + ], + [ + 46, + 73, + 1, + 1, + 0 + ], + [ + 47, + 28, + 1, + 1, + 1 + ], + [ + 47, + 33, + 1, + 1, + 0 + ], + [ + 47, + 35, + 1, + 1, + 1 + ], + [ + 47, + 42, + 1, + 1, + 0 + ], + [ + 47, + 44, + 0, + 1, + 1 + ], + [ + 47, + 131, + 1, + 1, + 0 + ], + [ + 49, + 9, + 0, + 1, + 1 + ], + [ + 51, + 83, + 1, + 1, + 0 + ], + [ + 52, + 10, + 1, + 1, + 1 + ], + [ + 55, + 27, + 1, + 1, + 1 + ], + [ + 55, + 31, + 1, + 1, + 0 + ], + [ + 55, + 33, + 1, + 1, + 1 + ], + [ + 55, + 49, + 1, + 1, + 0 + ], + [ + 55, + 51, + 0, + 1, + 1 + ], + [ + 55, + 90, + 1, + 1, + 0 + ], + [ + 59, + 9, + 1, + 1, + 1 + ], + [ + 60, + 28, + 1, + 1, + 1 + ], + [ + 60, + 45, + 1, + 1, + 0 + ], + [ + 60, + 47, + 0, + 1, + 1 + ], + [ + 60, + 95, + 1, + 1, + 0 + ], + [ + 61, + 29, + 1, + 1, + 1 + ], + [ + 61, + 34, + 1, + 1, + 0 + ], + [ + 61, + 36, + 0, + 1, + 1 + ], + [ + 61, + 73, + 1, + 1, + 0 + ], + [ + 62, + 28, + 1, + 1, + 1 + ], + [ + 62, + 33, + 1, + 1, + 0 + ], + [ + 62, + 35, + 1, + 1, + 1 + ], + [ + 62, + 49, + 1, + 1, + 0 + ], + [ + 62, + 51, + 0, + 1, + 1 + ], + [ + 62, + 145, + 1, + 1, + 0 + ], + [ + 63, + 9, + 0, + 1, + 1 + ], + [ + 64, + 27, + 0, + 1, + 1 + ], + [ + 64, + 44, + 0, + 1, + 0 + ], + [ + 64, + 46, + 0, + 1, + 1 + ], + [ + 64, + 85, + 0, + 1, + 0 + ], + [ + 65, + 29, + 0, + 1, + 1 + ], + [ + 65, + 34, + 0, + 1, + 0 + ], + [ + 65, + 36, + 0, + 1, + 1 + ], + [ + 65, + 73, + 0, + 1, + 0 + ], + [ + 66, + 28, + 0, + 1, + 1 + ], + [ + 66, + 33, + 0, + 1, + 0 + ], + [ + 66, + 35, + 0, + 1, + 1 + ], + [ + 66, + 42, + 0, + 1, + 0 + ], + [ + 66, + 44, + 0, + 1, + 1 + ], + [ + 66, + 131, + 0, + 1, + 0 + ], + [ + 66, + 132, + 1, + 1, + 0 + ], + [ + 67, + 9, + 0, + 1, + 1 + ], + [ + 68, + 83, + 1, + 1, + 0 + ], + [ + 69, + 10, + 1, + 1, + 1 + ], + [ + 70, + 6, + 0, + 0, + 0 + ], + [ + 72, + 31, + 1, + 1, + 1 + ], + [ + 77, + 25, + 1, + 1, + 1 + ], + [ + 77, + 33, + 1, + 1, + 0 + ], + [ + 77, + 35, + 0, + 1, + 1 + ], + [ + 77, + 63, + 1, + 1, + 0 + ], + [ + 78, + 24, + 1, + 1, + 1 + ], + [ + 78, + 32, + 1, + 1, + 0 + ], + [ + 78, + 34, + 1, + 1, + 1 + ], + [ + 78, + 37, + 1, + 1, + 0 + ], + [ + 78, + 39, + 0, + 1, + 1 + ], + [ + 78, + 115, + 1, + 1, + 0 + ], + [ + 84, + 24, + 1, + 1, + 1 + ], + [ + 84, + 32, + 1, + 1, + 0 + ], + [ + 84, + 34, + 1, + 1, + 1 + ], + [ + 84, + 42, + 1, + 1, + 0 + ], + [ + 84, + 44, + 0, + 1, + 1 + ], + [ + 84, + 130, + 1, + 1, + 0 + ], + [ + 88, + 25, + 1, + 1, + 1 + ], + [ + 88, + 36, + 1, + 1, + 0 + ], + [ + 88, + 38, + 0, + 1, + 1 + ], + [ + 88, + 70, + 1, + 1, + 0 + ], + [ + 90, + 24, + 1, + 1, + 1 + ], + [ + 90, + 35, + 1, + 1, + 0 + ], + [ + 90, + 37, + 1, + 1, + 1 + ], + [ + 90, + 56, + 1, + 1, + 0 + ], + [ + 90, + 58, + 0, + 1, + 1 + ], + [ + 90, + 162, + 1, + 1, + 0 + ], + [ + 93, + 22, + 1, + 1, + 1 + ], + [ + 93, + 39, + 1, + 1, + 0 + ], + [ + 93, + 41, + 0, + 1, + 1 + ], + [ + 93, + 90, + 1, + 1, + 0 + ], + [ + 97, + 22, + 1, + 1, + 1 + ], + [ + 97, + 39, + 1, + 1, + 0 + ], + [ + 97, + 41, + 0, + 1, + 1 + ], + [ + 97, + 142, + 1, + 1, + 0 + ], + [ + 101, + 25, + 1, + 1, + 1 + ], + [ + 101, + 42, + 1, + 1, + 0 + ], + [ + 101, + 44, + 0, + 1, + 1 + ], + [ + 101, + 87, + 1, + 1, + 0 + ], + [ + 102, + 24, + 1, + 1, + 1 + ], + [ + 102, + 41, + 1, + 1, + 0 + ], + [ + 102, + 43, + 1, + 1, + 1 + ], + [ + 102, + 55, + 1, + 1, + 0 + ], + [ + 102, + 57, + 0, + 1, + 1 + ], + [ + 102, + 170, + 1, + 1, + 0 + ], + [ + 103, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 126, + "covered": 84, + "percent": 66 + }, + "functions": { + "count": 52, + "covered": 24, + "percent": 46 + }, + "instantiations": { + "count": 52, + "covered": 24, + "percent": 46 + }, + "regions": { + "count": 60, + "covered": 28, + "notcovered": 32, + "percent": 46 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/PrintLogger.swift", + "segments": [ + [ + 38, + 25, + 1, + 1, + 1 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 43, + 76, + 4412, + 1, + 1 + ], + [ + 46, + 28, + 0, + 1, + 1 + ], + [ + 49, + 10, + 4412, + 1, + 1 + ], + [ + 53, + 9, + 34, + 1, + 1 + ], + [ + 54, + 28, + 4412, + 1, + 0 + ], + [ + 55, + 9, + 46, + 1, + 1 + ], + [ + 56, + 25, + 4412, + 1, + 0 + ], + [ + 57, + 9, + 4332, + 1, + 1 + ], + [ + 58, + 32, + 4412, + 1, + 0 + ], + [ + 59, + 10, + 4412, + 1, + 1 + ], + [ + 62, + 6, + 0, + 0, + 0 + ], + [ + 64, + 73, + 5186, + 1, + 1 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 68, + 43, + 1, + 1, + 1 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 73, + 52, + 4412, + 1, + 1 + ], + [ + 74, + 73, + 0, + 1, + 1 + ], + [ + 76, + 10, + 4412, + 1, + 1 + ], + [ + 78, + 49, + 4412, + 1, + 0 + ], + [ + 79, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 37, + "covered": 34, + "percent": 91 + }, + "functions": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "instantiations": { + "count": 5, + "covered": 5, + "percent": 100 + }, + "regions": { + "count": 13, + "covered": 11, + "notcovered": 2, + "percent": 84 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift", + "segments": [ + [ + 35, + 88, + 0, + 1, + 1 + ], + [ + 39, + 6, + 0, + 0, + 0 + ], + [ + 43, + 31, + 1, + 1, + 1 + ], + [ + 44, + 32, + 2, + 1, + 1 + ], + [ + 45, + 64, + 2, + 1, + 1 + ], + [ + 46, + 33, + 2, + 1, + 1 + ], + [ + 46, + 41, + 2, + 1, + 0 + ], + [ + 46, + 43, + 0, + 1, + 1 + ], + [ + 46, + 91, + 2, + 1, + 0 + ], + [ + 47, + 32, + 2, + 1, + 1 + ], + [ + 47, + 52, + 2, + 1, + 0 + ], + [ + 47, + 54, + 2, + 1, + 1 + ], + [ + 47, + 71, + 2, + 1, + 0 + ], + [ + 47, + 73, + 0, + 1, + 1 + ], + [ + 47, + 139, + 2, + 1, + 0 + ], + [ + 48, + 33, + 2, + 1, + 1 + ], + [ + 48, + 58, + 2, + 1, + 0 + ], + [ + 48, + 60, + 0, + 1, + 1 + ], + [ + 48, + 102, + 2, + 1, + 0 + ], + [ + 50, + 20, + 2, + 1, + 1 + ], + [ + 52, + 36, + 2, + 1, + 1 + ], + [ + 52, + 40, + 2, + 1, + 0 + ], + [ + 52, + 42, + 2, + 1, + 1 + ], + [ + 52, + 104, + 2, + 1, + 0 + ], + [ + 53, + 25, + 0, + 1, + 1 + ], + [ + 55, + 18, + 2, + 1, + 1 + ], + [ + 57, + 14, + 2, + 1, + 0 + ], + [ + 58, + 10, + 1, + 1, + 0 + ], + [ + 59, + 6, + 0, + 0, + 0 + ], + [ + 63, + 29, + 2, + 1, + 1 + ], + [ + 65, + 16, + 2, + 1, + 1 + ], + [ + 67, + 14, + 2, + 1, + 0 + ], + [ + 67, + 21, + 0, + 1, + 1 + ], + [ + 69, + 14, + 2, + 1, + 1 + ], + [ + 71, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 68, + "covered": 58, + "percent": 85 + }, + "functions": { + "count": 14, + "covered": 10, + "percent": 71 + }, + "instantiations": { + "count": 14, + "covered": 10, + "percent": 71 + }, + "regions": { + "count": 20, + "covered": 14, + "notcovered": 6, + "percent": 70 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingRequestError.swift", + "segments": [ + [ + 35, + 86, + 0, + 1, + 1 + ], + [ + 39, + 6, + 0, + 0, + 0 + ], + [ + 46, + 118, + 2, + 1, + 1 + ], + [ + 48, + 10, + 0, + 0, + 0 + ], + [ + 65, + 29, + 1, + 1, + 1 + ], + [ + 72, + 6, + 0, + 0, + 0 + ], + [ + 76, + 32, + 2, + 1, + 1 + ], + [ + 79, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 20, + "covered": 15, + "percent": 75 + }, + "functions": { + "count": 4, + "covered": 3, + "percent": 75 + }, + "instantiations": { + "count": 4, + "covered": 3, + "percent": 75 + }, + "regions": { + "count": 4, + "covered": 3, + "notcovered": 1, + "percent": 75 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift", + "segments": [ + [ + 24, + 79, + 0, + 1, + 1 + ], + [ + 52, + 6, + 0, + 0, + 0 + ], + [ + 60, + 27, + 49, + 1, + 1 + ], + [ + 66, + 6, + 0, + 0, + 0 + ], + [ + 71, + 32, + 7, + 1, + 1 + ], + [ + 73, + 10, + 0, + 0, + 0 + ], + [ + 75, + 62, + 12, + 1, + 1 + ], + [ + 77, + 10, + 0, + 0, + 0 + ], + [ + 84, + 37, + 309, + 1, + 1 + ], + [ + 87, + 10, + 0, + 0, + 0 + ], + [ + 89, + 54, + 44, + 1, + 1 + ], + [ + 90, + 40, + 44, + 1, + 1 + ], + [ + 90, + 60, + 44, + 1, + 0 + ], + [ + 91, + 10, + 0, + 0, + 0 + ], + [ + 98, + 39, + 0, + 1, + 1 + ], + [ + 101, + 10, + 0, + 0, + 0 + ], + [ + 103, + 70, + 0, + 1, + 1 + ], + [ + 104, + 40, + 0, + 1, + 1 + ], + [ + 104, + 60, + 0, + 1, + 0 + ], + [ + 105, + 10, + 0, + 0, + 0 + ], + [ + 110, + 30, + 28, + 1, + 1 + ], + [ + 112, + 10, + 0, + 0, + 0 + ], + [ + 114, + 58, + 22, + 1, + 1 + ], + [ + 116, + 10, + 0, + 0, + 0 + ], + [ + 130, + 67, + 20, + 1, + 1 + ], + [ + 132, + 17, + 20, + 1, + 1 + ], + [ + 132, + 61, + 20, + 1, + 0 + ], + [ + 133, + 17, + 20, + 1, + 1 + ], + [ + 133, + 51, + 20, + 1, + 0 + ], + [ + 134, + 17, + 20, + 1, + 1 + ], + [ + 134, + 45, + 20, + 1, + 0 + ], + [ + 135, + 17, + 20, + 1, + 1 + ], + [ + 135, + 91, + 20, + 1, + 0 + ], + [ + 136, + 17, + 20, + 1, + 1 + ], + [ + 136, + 109, + 20, + 1, + 0 + ], + [ + 137, + 17, + 20, + 1, + 1 + ], + [ + 137, + 41, + 20, + 1, + 0 + ], + [ + 138, + 10, + 0, + 0, + 0 + ], + [ + 146, + 64, + 20, + 1, + 1 + ], + [ + 146, + 110, + 0, + 0, + 0 + ], + [ + 150, + 26, + 1, + 1, + 1 + ], + [ + 151, + 31, + 2, + 1, + 1 + ], + [ + 154, + 10, + 1, + 1, + 0 + ], + [ + 155, + 37, + 2, + 1, + 1 + ], + [ + 158, + 10, + 1, + 1, + 0 + ], + [ + 159, + 41, + 2, + 1, + 1 + ], + [ + 162, + 10, + 1, + 1, + 0 + ], + [ + 163, + 36, + 4, + 1, + 1 + ], + [ + 166, + 10, + 1, + 1, + 0 + ], + [ + 205, + 6, + 0, + 0, + 0 + ], + [ + 207, + 36, + 1, + 1, + 1 + ], + [ + 208, + 31, + 2, + 1, + 1 + ], + [ + 211, + 10, + 1, + 1, + 0 + ], + [ + 212, + 37, + 2, + 1, + 1 + ], + [ + 215, + 10, + 1, + 1, + 0 + ], + [ + 216, + 41, + 2, + 1, + 1 + ], + [ + 219, + 10, + 1, + 1, + 0 + ], + [ + 239, + 6, + 0, + 0, + 0 + ], + [ + 241, + 34, + 1, + 1, + 1 + ], + [ + 242, + 31, + 2, + 1, + 1 + ], + [ + 245, + 10, + 1, + 1, + 0 + ], + [ + 246, + 37, + 2, + 1, + 1 + ], + [ + 249, + 10, + 1, + 1, + 0 + ], + [ + 250, + 41, + 2, + 1, + 1 + ], + [ + 253, + 10, + 1, + 1, + 0 + ], + [ + 271, + 6, + 0, + 0, + 0 + ], + [ + 273, + 30, + 1, + 1, + 1 + ], + [ + 274, + 30, + 2, + 1, + 1 + ], + [ + 277, + 10, + 1, + 1, + 0 + ], + [ + 278, + 36, + 2, + 1, + 1 + ], + [ + 281, + 10, + 1, + 1, + 0 + ], + [ + 282, + 40, + 2, + 1, + 1 + ], + [ + 285, + 10, + 1, + 1, + 0 + ], + [ + 303, + 6, + 0, + 0, + 0 + ], + [ + 305, + 41, + 1, + 1, + 1 + ], + [ + 308, + 62, + 3, + 1, + 1 + ], + [ + 308, + 80, + 1, + 1, + 0 + ], + [ + 312, + 68, + 3, + 1, + 1 + ], + [ + 312, + 86, + 1, + 1, + 0 + ], + [ + 314, + 34, + 2, + 1, + 1 + ], + [ + 317, + 10, + 1, + 1, + 0 + ], + [ + 319, + 43, + 2, + 1, + 1 + ], + [ + 322, + 10, + 1, + 1, + 0 + ], + [ + 324, + 37, + 2, + 1, + 1 + ], + [ + 327, + 10, + 1, + 1, + 0 + ], + [ + 329, + 36, + 2, + 1, + 1 + ], + [ + 332, + 10, + 1, + 1, + 0 + ], + [ + 355, + 6, + 0, + 0, + 0 + ], + [ + 357, + 31, + 1, + 1, + 1 + ], + [ + 358, + 30, + 2, + 1, + 1 + ], + [ + 360, + 54, + 0, + 1, + 1 + ], + [ + 364, + 14, + 2, + 1, + 1 + ], + [ + 366, + 10, + 1, + 1, + 0 + ], + [ + 367, + 36, + 2, + 1, + 1 + ], + [ + 370, + 10, + 1, + 1, + 0 + ], + [ + 371, + 40, + 2, + 1, + 1 + ], + [ + 374, + 10, + 1, + 1, + 0 + ], + [ + 376, + 49, + 0, + 1, + 1 + ], + [ + 379, + 10, + 1, + 1, + 1 + ], + [ + 396, + 6, + 0, + 0, + 0 + ], + [ + 398, + 28, + 1, + 1, + 1 + ], + [ + 399, + 33, + 2, + 1, + 1 + ], + [ + 403, + 10, + 1, + 1, + 0 + ], + [ + 404, + 39, + 2, + 1, + 1 + ], + [ + 407, + 10, + 1, + 1, + 0 + ], + [ + 408, + 43, + 2, + 1, + 1 + ], + [ + 411, + 10, + 1, + 1, + 0 + ], + [ + 417, + 18, + 2, + 1, + 1 + ], + [ + 417, + 40, + 2, + 1, + 1 + ], + [ + 417, + 60, + 2, + 1, + 0 + ], + [ + 417, + 62, + 2, + 1, + 1 + ], + [ + 417, + 63, + 2, + 1, + 0 + ], + [ + 417, + 66, + 1, + 1, + 0 + ], + [ + 429, + 6, + 0, + 0, + 0 + ], + [ + 431, + 34, + 1, + 1, + 1 + ], + [ + 432, + 33, + 2, + 1, + 1 + ], + [ + 434, + 71, + 0, + 1, + 1 + ], + [ + 437, + 14, + 2, + 1, + 1 + ], + [ + 439, + 10, + 1, + 1, + 0 + ], + [ + 440, + 39, + 2, + 1, + 1 + ], + [ + 443, + 10, + 1, + 1, + 0 + ], + [ + 444, + 43, + 2, + 1, + 1 + ], + [ + 447, + 10, + 1, + 1, + 0 + ], + [ + 453, + 18, + 2, + 1, + 1 + ], + [ + 453, + 38, + 2, + 1, + 1 + ], + [ + 453, + 55, + 2, + 1, + 0 + ], + [ + 453, + 58, + 1, + 1, + 0 + ], + [ + 465, + 6, + 0, + 0, + 0 + ], + [ + 467, + 25, + 1, + 1, + 1 + ], + [ + 468, + 30, + 2, + 1, + 1 + ], + [ + 472, + 10, + 1, + 1, + 0 + ], + [ + 473, + 36, + 2, + 1, + 1 + ], + [ + 476, + 10, + 1, + 1, + 0 + ], + [ + 477, + 40, + 2, + 1, + 1 + ], + [ + 480, + 10, + 1, + 1, + 0 + ], + [ + 482, + 24, + 1, + 1, + 1 + ], + [ + 482, + 47, + 1, + 1, + 0 + ], + [ + 482, + 49, + 1, + 1, + 1 + ], + [ + 482, + 55, + 1, + 1, + 0 + ], + [ + 490, + 18, + 2, + 1, + 1 + ], + [ + 490, + 40, + 2, + 1, + 1 + ], + [ + 490, + 63, + 2, + 1, + 0 + ], + [ + 490, + 65, + 2, + 1, + 1 + ], + [ + 490, + 72, + 2, + 1, + 0 + ], + [ + 490, + 75, + 1, + 1, + 0 + ], + [ + 502, + 6, + 0, + 0, + 0 + ], + [ + 505, + 35, + 1, + 1, + 1 + ], + [ + 506, + 31, + 2, + 1, + 1 + ], + [ + 509, + 10, + 1, + 1, + 0 + ], + [ + 510, + 32, + 2, + 1, + 1 + ], + [ + 513, + 10, + 1, + 1, + 0 + ], + [ + 528, + 6, + 0, + 0, + 0 + ], + [ + 532, + 36, + 1, + 1, + 1 + ], + [ + 533, + 31, + 2, + 1, + 1 + ], + [ + 536, + 10, + 1, + 1, + 0 + ], + [ + 537, + 32, + 2, + 1, + 1 + ], + [ + 540, + 10, + 1, + 1, + 0 + ], + [ + 555, + 6, + 0, + 0, + 0 + ], + [ + 557, + 27, + 1, + 1, + 1 + ], + [ + 558, + 32, + 2, + 1, + 1 + ], + [ + 560, + 62, + 0, + 1, + 1 + ], + [ + 563, + 14, + 2, + 1, + 1 + ], + [ + 564, + 51, + 2, + 1, + 1 + ], + [ + 568, + 14, + 2, + 1, + 1 + ], + [ + 568, + 20, + 0, + 1, + 1 + ], + [ + 570, + 14, + 2, + 1, + 1 + ], + [ + 571, + 10, + 1, + 1, + 0 + ], + [ + 572, + 38, + 2, + 1, + 1 + ], + [ + 575, + 10, + 1, + 1, + 0 + ], + [ + 576, + 42, + 2, + 1, + 1 + ], + [ + 579, + 10, + 1, + 1, + 0 + ], + [ + 581, + 24, + 1, + 1, + 1 + ], + [ + 581, + 47, + 1, + 1, + 0 + ], + [ + 581, + 49, + 1, + 1, + 1 + ], + [ + 581, + 56, + 1, + 1, + 0 + ], + [ + 589, + 18, + 2, + 1, + 1 + ], + [ + 589, + 40, + 2, + 1, + 1 + ], + [ + 589, + 63, + 2, + 1, + 0 + ], + [ + 589, + 65, + 2, + 1, + 1 + ], + [ + 589, + 72, + 2, + 1, + 0 + ], + [ + 589, + 75, + 1, + 1, + 0 + ], + [ + 601, + 6, + 0, + 0, + 0 + ], + [ + 603, + 25, + 1, + 1, + 1 + ], + [ + 605, + 24, + 1, + 1, + 1 + ], + [ + 605, + 57, + 1, + 1, + 0 + ], + [ + 605, + 59, + 1, + 1, + 1 + ], + [ + 605, + 64, + 1, + 1, + 0 + ], + [ + 606, + 24, + 1, + 1, + 1 + ], + [ + 606, + 59, + 1, + 1, + 0 + ], + [ + 606, + 61, + 1, + 1, + 1 + ], + [ + 606, + 66, + 1, + 1, + 0 + ], + [ + 607, + 24, + 1, + 1, + 1 + ], + [ + 607, + 58, + 1, + 1, + 0 + ], + [ + 607, + 60, + 1, + 1, + 1 + ], + [ + 607, + 65, + 1, + 1, + 0 + ], + [ + 608, + 24, + 1, + 1, + 1 + ], + [ + 608, + 58, + 1, + 1, + 0 + ], + [ + 608, + 60, + 1, + 1, + 1 + ], + [ + 608, + 65, + 1, + 1, + 0 + ], + [ + 609, + 6, + 0, + 0, + 0 + ], + [ + 612, + 39, + 1, + 1, + 1 + ], + [ + 614, + 32, + 2, + 1, + 1 + ], + [ + 614, + 120, + 1, + 1, + 0 + ], + [ + 615, + 32, + 2, + 1, + 1 + ], + [ + 615, + 136, + 1, + 1, + 0 + ], + [ + 616, + 34, + 2, + 1, + 1 + ], + [ + 616, + 138, + 1, + 1, + 0 + ], + [ + 617, + 35, + 2, + 1, + 1 + ], + [ + 617, + 106, + 1, + 1, + 0 + ], + [ + 625, + 6, + 0, + 0, + 0 + ], + [ + 627, + 35, + 1, + 1, + 1 + ], + [ + 629, + 31, + 2, + 1, + 1 + ], + [ + 629, + 125, + 1, + 1, + 0 + ], + [ + 630, + 32, + 2, + 1, + 1 + ], + [ + 630, + 133, + 1, + 1, + 0 + ], + [ + 631, + 31, + 2, + 1, + 1 + ], + [ + 631, + 141, + 1, + 1, + 0 + ], + [ + 632, + 33, + 2, + 1, + 1 + ], + [ + 632, + 143, + 1, + 1, + 0 + ], + [ + 636, + 41, + 2, + 1, + 1 + ], + [ + 636, + 135, + 1, + 1, + 0 + ], + [ + 637, + 42, + 2, + 1, + 1 + ], + [ + 637, + 143, + 1, + 1, + 0 + ], + [ + 638, + 41, + 2, + 1, + 1 + ], + [ + 638, + 151, + 1, + 1, + 0 + ], + [ + 639, + 43, + 2, + 1, + 1 + ], + [ + 639, + 153, + 1, + 1, + 0 + ], + [ + 679, + 6, + 0, + 0, + 0 + ], + [ + 681, + 32, + 1, + 1, + 1 + ], + [ + 684, + 35, + 0, + 1, + 1 + ], + [ + 687, + 10, + 1, + 1, + 0 + ], + [ + 694, + 6, + 0, + 0, + 0 + ], + [ + 697, + 49, + 1, + 1, + 1 + ], + [ + 702, + 31, + 0, + 1, + 1 + ], + [ + 702, + 135, + 1, + 1, + 0 + ], + [ + 703, + 33, + 0, + 1, + 1 + ], + [ + 703, + 145, + 1, + 1, + 0 + ], + [ + 704, + 32, + 0, + 1, + 1 + ], + [ + 704, + 135, + 1, + 1, + 0 + ], + [ + 711, + 6, + 0, + 0, + 0 + ], + [ + 713, + 48, + 1, + 1, + 1 + ], + [ + 718, + 85, + 0, + 1, + 1 + ], + [ + 721, + 10, + 1, + 1, + 1 + ], + [ + 723, + 30, + 2, + 1, + 1 + ], + [ + 724, + 28, + 2, + 1, + 1 + ], + [ + 724, + 33, + 2, + 1, + 0 + ], + [ + 724, + 35, + 2, + 1, + 1 + ], + [ + 724, + 48, + 2, + 1, + 0 + ], + [ + 726, + 10, + 1, + 1, + 0 + ], + [ + 728, + 38, + 4, + 1, + 1 + ], + [ + 729, + 34, + 2, + 1, + 1 + ], + [ + 730, + 32, + 2, + 1, + 1 + ], + [ + 730, + 37, + 2, + 1, + 0 + ], + [ + 730, + 39, + 2, + 1, + 1 + ], + [ + 730, + 52, + 2, + 1, + 0 + ], + [ + 732, + 14, + 4, + 1, + 1 + ], + [ + 732, + 20, + 2, + 1, + 1 + ], + [ + 734, + 14, + 4, + 1, + 1 + ], + [ + 735, + 10, + 1, + 1, + 0 + ], + [ + 761, + 6, + 0, + 0, + 0 + ], + [ + 763, + 47, + 1, + 1, + 1 + ], + [ + 770, + 85, + 0, + 1, + 1 + ], + [ + 773, + 10, + 1, + 1, + 1 + ], + [ + 775, + 30, + 2, + 1, + 1 + ], + [ + 776, + 28, + 2, + 1, + 1 + ], + [ + 776, + 33, + 2, + 1, + 0 + ], + [ + 776, + 35, + 2, + 1, + 1 + ], + [ + 776, + 48, + 2, + 1, + 0 + ], + [ + 778, + 10, + 1, + 1, + 0 + ], + [ + 780, + 38, + 4, + 1, + 1 + ], + [ + 781, + 34, + 2, + 1, + 1 + ], + [ + 782, + 32, + 2, + 1, + 1 + ], + [ + 782, + 37, + 2, + 1, + 0 + ], + [ + 782, + 39, + 2, + 1, + 1 + ], + [ + 782, + 52, + 2, + 1, + 0 + ], + [ + 784, + 14, + 4, + 1, + 1 + ], + [ + 784, + 20, + 2, + 1, + 1 + ], + [ + 786, + 14, + 4, + 1, + 1 + ], + [ + 787, + 10, + 1, + 1, + 0 + ], + [ + 813, + 6, + 0, + 0, + 0 + ], + [ + 815, + 45, + 1, + 1, + 1 + ], + [ + 822, + 85, + 0, + 1, + 1 + ], + [ + 825, + 10, + 1, + 1, + 1 + ], + [ + 827, + 33, + 2, + 1, + 1 + ], + [ + 828, + 28, + 2, + 1, + 1 + ], + [ + 828, + 33, + 2, + 1, + 0 + ], + [ + 828, + 35, + 2, + 1, + 1 + ], + [ + 828, + 48, + 2, + 1, + 0 + ], + [ + 830, + 10, + 1, + 1, + 0 + ], + [ + 832, + 41, + 4, + 1, + 1 + ], + [ + 833, + 34, + 2, + 1, + 1 + ], + [ + 834, + 32, + 2, + 1, + 1 + ], + [ + 834, + 37, + 2, + 1, + 0 + ], + [ + 834, + 39, + 2, + 1, + 1 + ], + [ + 834, + 52, + 2, + 1, + 0 + ], + [ + 835, + 14, + 4, + 1, + 1 + ], + [ + 837, + 10, + 1, + 1, + 0 + ], + [ + 861, + 6, + 0, + 0, + 0 + ], + [ + 863, + 43, + 1, + 1, + 1 + ], + [ + 865, + 28, + 2, + 1, + 1 + ], + [ + 868, + 10, + 1, + 1, + 0 + ], + [ + 869, + 40, + 2, + 1, + 1 + ], + [ + 872, + 10, + 1, + 1, + 0 + ], + [ + 873, + 30, + 2, + 1, + 1 + ], + [ + 876, + 10, + 1, + 1, + 0 + ], + [ + 897, + 6, + 0, + 0, + 0 + ], + [ + 899, + 42, + 1, + 1, + 1 + ], + [ + 901, + 40, + 0, + 1, + 1 + ], + [ + 904, + 10, + 1, + 1, + 0 + ], + [ + 911, + 6, + 0, + 0, + 0 + ], + [ + 913, + 38, + 1, + 1, + 1 + ], + [ + 915, + 37, + 0, + 1, + 1 + ], + [ + 918, + 10, + 1, + 1, + 0 + ], + [ + 925, + 6, + 0, + 0, + 0 + ], + [ + 927, + 42, + 1, + 1, + 1 + ], + [ + 929, + 36, + 0, + 1, + 1 + ], + [ + 932, + 10, + 1, + 1, + 0 + ], + [ + 939, + 6, + 0, + 0, + 0 + ], + [ + 941, + 38, + 1, + 1, + 1 + ], + [ + 942, + 35, + 2, + 1, + 1 + ], + [ + 945, + 10, + 1, + 1, + 0 + ], + [ + 952, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 1137, + "covered": 1065, + "percent": 93 + }, + "functions": { + "count": 147, + "covered": 136, + "percent": 92 + }, + "instantiations": { + "count": 147, + "covered": 136, + "percent": 92 + }, + "regions": { + "count": 175, + "covered": 156, + "notcovered": 19, + "percent": 89 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift", + "segments": [ + [ + 24, + 77, + 0, + 1, + 1 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 34, + 27, + 1, + 1, + 1 + ], + [ + 38, + 24, + 1, + 1, + 1 + ], + [ + 38, + 31, + 1, + 1, + 0 + ], + [ + 38, + 33, + 1, + 1, + 1 + ], + [ + 38, + 44, + 1, + 1, + 0 + ], + [ + 39, + 27, + 1, + 1, + 1 + ], + [ + 39, + 34, + 1, + 1, + 0 + ], + [ + 39, + 36, + 1, + 1, + 1 + ], + [ + 39, + 60, + 1, + 1, + 0 + ], + [ + 43, + 24, + 1, + 1, + 1 + ], + [ + 43, + 32, + 1, + 1, + 0 + ], + [ + 43, + 34, + 1, + 1, + 1 + ], + [ + 43, + 45, + 1, + 1, + 0 + ], + [ + 44, + 27, + 1, + 1, + 1 + ], + [ + 44, + 34, + 1, + 1, + 0 + ], + [ + 44, + 36, + 1, + 1, + 1 + ], + [ + 44, + 60, + 1, + 1, + 0 + ], + [ + 48, + 24, + 1, + 1, + 1 + ], + [ + 48, + 30, + 1, + 1, + 0 + ], + [ + 48, + 32, + 1, + 1, + 1 + ], + [ + 48, + 56, + 1, + 1, + 0 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 52, + 25, + 1, + 1, + 1 + ], + [ + 55, + 24, + 1, + 1, + 1 + ], + [ + 55, + 30, + 1, + 1, + 0 + ], + [ + 55, + 32, + 1, + 1, + 1 + ], + [ + 55, + 43, + 1, + 1, + 0 + ], + [ + 58, + 24, + 1, + 1, + 1 + ], + [ + 58, + 30, + 1, + 1, + 0 + ], + [ + 58, + 32, + 1, + 1, + 1 + ], + [ + 58, + 43, + 1, + 1, + 0 + ], + [ + 61, + 24, + 1, + 1, + 1 + ], + [ + 61, + 30, + 1, + 1, + 0 + ], + [ + 61, + 32, + 1, + 1, + 1 + ], + [ + 61, + 43, + 1, + 1, + 0 + ], + [ + 64, + 24, + 1, + 1, + 1 + ], + [ + 64, + 30, + 1, + 1, + 0 + ], + [ + 64, + 32, + 1, + 1, + 1 + ], + [ + 64, + 43, + 1, + 1, + 0 + ], + [ + 67, + 24, + 1, + 1, + 1 + ], + [ + 67, + 30, + 1, + 1, + 0 + ], + [ + 67, + 32, + 1, + 1, + 1 + ], + [ + 67, + 43, + 1, + 1, + 0 + ], + [ + 70, + 24, + 1, + 1, + 1 + ], + [ + 70, + 30, + 1, + 1, + 0 + ], + [ + 70, + 32, + 1, + 1, + 1 + ], + [ + 70, + 43, + 1, + 1, + 0 + ], + [ + 73, + 24, + 1, + 1, + 1 + ], + [ + 73, + 30, + 1, + 1, + 0 + ], + [ + 73, + 32, + 1, + 1, + 1 + ], + [ + 73, + 43, + 1, + 1, + 0 + ], + [ + 74, + 6, + 0, + 0, + 0 + ], + [ + 76, + 30, + 1, + 1, + 1 + ], + [ + 78, + 23, + 1, + 1, + 1 + ], + [ + 78, + 29, + 1, + 1, + 0 + ], + [ + 81, + 23, + 1, + 1, + 1 + ], + [ + 81, + 29, + 1, + 1, + 0 + ], + [ + 84, + 24, + 1, + 1, + 1 + ], + [ + 84, + 30, + 1, + 1, + 0 + ], + [ + 87, + 23, + 1, + 1, + 1 + ], + [ + 87, + 29, + 1, + 1, + 0 + ], + [ + 90, + 23, + 1, + 1, + 1 + ], + [ + 90, + 29, + 1, + 1, + 0 + ], + [ + 92, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 93, + "covered": 86, + "percent": 92 + }, + "functions": { + "count": 33, + "covered": 32, + "percent": 96 + }, + "instantiations": { + "count": 33, + "covered": 32, + "percent": 96 + }, + "regions": { + "count": 33, + "covered": 32, + "notcovered": 1, + "percent": 96 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift", + "segments": [ + [ + 36, + 73, + 0, + 1, + 1 + ], + [ + 44, + 6, + 0, + 0, + 0 + ], + [ + 48, + 53, + 1, + 1, + 1 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 52, + 58, + 1, + 1, + 1 + ], + [ + 54, + 6, + 0, + 0, + 0 + ], + [ + 56, + 64, + 1, + 1, + 1 + ], + [ + 58, + 6, + 0, + 0, + 0 + ], + [ + 60, + 70, + 3, + 1, + 1 + ], + [ + 61, + 47, + 6, + 1, + 1 + ], + [ + 71, + 44, + 42, + 1, + 1 + ], + [ + 73, + 31, + 28, + 1, + 1 + ], + [ + 76, + 18, + 42, + 1, + 1 + ], + [ + 76, + 24, + 14, + 1, + 1 + ], + [ + 79, + 18, + 42, + 1, + 1 + ], + [ + 80, + 14, + 6, + 1, + 1 + ], + [ + 82, + 73, + 6, + 1, + 1 + ], + [ + 83, + 32, + 6, + 1, + 1 + ], + [ + 83, + 52, + 6, + 1, + 0 + ], + [ + 83, + 54, + 6, + 1, + 1 + ], + [ + 83, + 71, + 6, + 1, + 0 + ], + [ + 83, + 73, + 0, + 1, + 1 + ], + [ + 83, + 125, + 6, + 1, + 0 + ], + [ + 84, + 20, + 6, + 1, + 1 + ], + [ + 89, + 57, + 6, + 1, + 1 + ], + [ + 90, + 40, + 6, + 1, + 1 + ], + [ + 90, + 108, + 6, + 1, + 0 + ], + [ + 91, + 40, + 6, + 1, + 1 + ], + [ + 91, + 62, + 6, + 1, + 0 + ], + [ + 92, + 22, + 6, + 1, + 1 + ], + [ + 92, + 28, + 0, + 1, + 1 + ], + [ + 94, + 22, + 6, + 1, + 1 + ], + [ + 95, + 18, + 6, + 1, + 0 + ], + [ + 95, + 25, + 0, + 1, + 1 + ], + [ + 97, + 18, + 6, + 1, + 1 + ], + [ + 99, + 14, + 6, + 1, + 0 + ], + [ + 100, + 10, + 3, + 1, + 0 + ], + [ + 101, + 6, + 0, + 0, + 0 + ], + [ + 103, + 33, + 1, + 1, + 1 + ], + [ + 104, + 47, + 2, + 1, + 1 + ], + [ + 105, + 73, + 2, + 1, + 1 + ], + [ + 106, + 32, + 2, + 1, + 1 + ], + [ + 106, + 52, + 2, + 1, + 0 + ], + [ + 106, + 54, + 2, + 1, + 1 + ], + [ + 106, + 71, + 2, + 1, + 0 + ], + [ + 106, + 73, + 0, + 1, + 1 + ], + [ + 106, + 128, + 2, + 1, + 0 + ], + [ + 109, + 33, + 2, + 1, + 1 + ], + [ + 109, + 40, + 2, + 1, + 0 + ], + [ + 109, + 42, + 0, + 1, + 1 + ], + [ + 109, + 95, + 2, + 1, + 0 + ], + [ + 110, + 42, + 2, + 1, + 1 + ], + [ + 111, + 36, + 2, + 1, + 1 + ], + [ + 111, + 49, + 2, + 1, + 0 + ], + [ + 111, + 51, + 2, + 1, + 1 + ], + [ + 111, + 73, + 2, + 1, + 0 + ], + [ + 111, + 75, + 0, + 1, + 1 + ], + [ + 111, + 152, + 2, + 1, + 0 + ], + [ + 112, + 36, + 2, + 1, + 1 + ], + [ + 112, + 48, + 2, + 1, + 0 + ], + [ + 112, + 50, + 2, + 1, + 1 + ], + [ + 112, + 53, + 2, + 1, + 0 + ], + [ + 112, + 55, + 0, + 1, + 1 + ], + [ + 112, + 118, + 2, + 1, + 0 + ], + [ + 113, + 36, + 2, + 1, + 1 + ], + [ + 113, + 50, + 2, + 1, + 0 + ], + [ + 113, + 52, + 2, + 1, + 1 + ], + [ + 113, + 72, + 2, + 1, + 0 + ], + [ + 113, + 74, + 0, + 1, + 1 + ], + [ + 113, + 151, + 2, + 1, + 0 + ], + [ + 114, + 36, + 2, + 1, + 1 + ], + [ + 114, + 52, + 2, + 1, + 0 + ], + [ + 114, + 54, + 0, + 1, + 1 + ], + [ + 114, + 124, + 2, + 1, + 0 + ], + [ + 115, + 34, + 2, + 1, + 1 + ], + [ + 115, + 47, + 2, + 1, + 0 + ], + [ + 115, + 49, + 0, + 1, + 1 + ], + [ + 115, + 115, + 2, + 1, + 0 + ], + [ + 116, + 18, + 2, + 1, + 1 + ], + [ + 119, + 33, + 2, + 1, + 1 + ], + [ + 119, + 40, + 2, + 1, + 0 + ], + [ + 119, + 42, + 0, + 1, + 1 + ], + [ + 119, + 95, + 2, + 1, + 0 + ], + [ + 120, + 42, + 2, + 1, + 1 + ], + [ + 121, + 36, + 2, + 1, + 1 + ], + [ + 121, + 49, + 2, + 1, + 0 + ], + [ + 121, + 51, + 2, + 1, + 1 + ], + [ + 121, + 73, + 2, + 1, + 0 + ], + [ + 121, + 75, + 0, + 1, + 1 + ], + [ + 121, + 152, + 2, + 1, + 0 + ], + [ + 122, + 36, + 2, + 1, + 1 + ], + [ + 122, + 48, + 2, + 1, + 0 + ], + [ + 122, + 50, + 2, + 1, + 1 + ], + [ + 122, + 53, + 2, + 1, + 0 + ], + [ + 122, + 55, + 0, + 1, + 1 + ], + [ + 122, + 118, + 2, + 1, + 0 + ], + [ + 123, + 36, + 2, + 1, + 1 + ], + [ + 123, + 50, + 2, + 1, + 0 + ], + [ + 123, + 52, + 2, + 1, + 1 + ], + [ + 123, + 72, + 2, + 1, + 0 + ], + [ + 123, + 74, + 0, + 1, + 1 + ], + [ + 123, + 151, + 2, + 1, + 0 + ], + [ + 124, + 36, + 2, + 1, + 1 + ], + [ + 124, + 52, + 2, + 1, + 0 + ], + [ + 124, + 54, + 0, + 1, + 1 + ], + [ + 124, + 124, + 2, + 1, + 0 + ], + [ + 125, + 37, + 2, + 1, + 1 + ], + [ + 125, + 50, + 2, + 1, + 0 + ], + [ + 125, + 52, + 0, + 1, + 1 + ], + [ + 125, + 115, + 2, + 1, + 0 + ], + [ + 126, + 36, + 2, + 1, + 1 + ], + [ + 126, + 49, + 2, + 1, + 0 + ], + [ + 126, + 51, + 2, + 1, + 1 + ], + [ + 126, + 91, + 2, + 1, + 0 + ], + [ + 127, + 18, + 2, + 1, + 1 + ], + [ + 129, + 14, + 2, + 1, + 0 + ], + [ + 130, + 10, + 1, + 1, + 0 + ], + [ + 130, + 12, + 2, + 1, + 1 + ], + [ + 131, + 73, + 2, + 1, + 1 + ], + [ + 132, + 32, + 2, + 1, + 1 + ], + [ + 132, + 52, + 2, + 1, + 0 + ], + [ + 132, + 54, + 2, + 1, + 1 + ], + [ + 132, + 71, + 2, + 1, + 0 + ], + [ + 132, + 73, + 0, + 1, + 1 + ], + [ + 132, + 128, + 2, + 1, + 0 + ], + [ + 135, + 33, + 2, + 1, + 1 + ], + [ + 135, + 39, + 2, + 1, + 0 + ], + [ + 135, + 41, + 0, + 1, + 1 + ], + [ + 135, + 94, + 2, + 1, + 0 + ], + [ + 136, + 40, + 2, + 1, + 1 + ], + [ + 137, + 36, + 2, + 1, + 1 + ], + [ + 137, + 48, + 2, + 1, + 0 + ], + [ + 137, + 50, + 2, + 1, + 1 + ], + [ + 137, + 72, + 2, + 1, + 0 + ], + [ + 137, + 74, + 0, + 1, + 1 + ], + [ + 137, + 150, + 2, + 1, + 0 + ], + [ + 138, + 36, + 2, + 1, + 1 + ], + [ + 138, + 47, + 2, + 1, + 0 + ], + [ + 138, + 49, + 2, + 1, + 1 + ], + [ + 138, + 52, + 2, + 1, + 0 + ], + [ + 138, + 54, + 0, + 1, + 1 + ], + [ + 138, + 116, + 2, + 1, + 0 + ], + [ + 139, + 36, + 2, + 1, + 1 + ], + [ + 139, + 49, + 2, + 1, + 0 + ], + [ + 139, + 51, + 2, + 1, + 1 + ], + [ + 139, + 71, + 2, + 1, + 0 + ], + [ + 139, + 73, + 0, + 1, + 1 + ], + [ + 139, + 149, + 2, + 1, + 0 + ], + [ + 140, + 35, + 2, + 1, + 1 + ], + [ + 140, + 50, + 2, + 1, + 0 + ], + [ + 140, + 52, + 0, + 1, + 1 + ], + [ + 140, + 124, + 2, + 1, + 0 + ], + [ + 141, + 34, + 2, + 1, + 1 + ], + [ + 141, + 46, + 2, + 1, + 0 + ], + [ + 141, + 48, + 0, + 1, + 1 + ], + [ + 141, + 114, + 2, + 1, + 0 + ], + [ + 142, + 18, + 2, + 1, + 1 + ], + [ + 144, + 14, + 2, + 1, + 0 + ], + [ + 145, + 10, + 1, + 1, + 0 + ], + [ + 146, + 6, + 0, + 0, + 0 + ], + [ + 148, + 89, + 6, + 1, + 1 + ], + [ + 149, + 44, + 0, + 1, + 1 + ], + [ + 151, + 10, + 6, + 1, + 1 + ], + [ + 154, + 59, + 24, + 1, + 1 + ], + [ + 156, + 54, + 6, + 1, + 1 + ], + [ + 157, + 49, + 8, + 1, + 1 + ], + [ + 160, + 36, + 8, + 1, + 1 + ], + [ + 160, + 51, + 8, + 1, + 0 + ], + [ + 160, + 53, + 8, + 1, + 1 + ], + [ + 160, + 54, + 8, + 1, + 0 + ], + [ + 160, + 56, + 0, + 1, + 1 + ], + [ + 160, + 100, + 8, + 1, + 0 + ], + [ + 162, + 47, + 6, + 1, + 1 + ], + [ + 169, + 61, + 18, + 1, + 1 + ], + [ + 173, + 29, + 4, + 1, + 1 + ], + [ + 175, + 87, + 18, + 1, + 0 + ], + [ + 176, + 29, + 6, + 1, + 1 + ], + [ + 178, + 78, + 18, + 1, + 0 + ], + [ + 179, + 28, + 6, + 1, + 1 + ], + [ + 181, + 82, + 18, + 1, + 0 + ], + [ + 182, + 29, + 2, + 1, + 1 + ], + [ + 183, + 57, + 18, + 1, + 0 + ], + [ + 184, + 29, + 0, + 1, + 1 + ], + [ + 185, + 86, + 18, + 1, + 0 + ], + [ + 186, + 30, + 18, + 1, + 1 + ], + [ + 187, + 26, + 6, + 1, + 1 + ], + [ + 188, + 41, + 6, + 1, + 1 + ], + [ + 188, + 81, + 6, + 1, + 0 + ], + [ + 188, + 83, + 0, + 1, + 1 + ], + [ + 188, + 127, + 6, + 1, + 0 + ], + [ + 191, + 22, + 2, + 1, + 1 + ], + [ + 192, + 18, + 6, + 1, + 1 + ], + [ + 193, + 14, + 24, + 1, + 1 + ], + [ + 194, + 10, + 6, + 1, + 1 + ], + [ + 196, + 44, + 6, + 1, + 0 + ], + [ + 197, + 6, + 0, + 0, + 0 + ], + [ + 199, + 26, + 1, + 1, + 1 + ], + [ + 200, + 47, + 2, + 1, + 1 + ], + [ + 201, + 73, + 2, + 1, + 1 + ], + [ + 202, + 32, + 2, + 1, + 1 + ], + [ + 202, + 52, + 2, + 1, + 0 + ], + [ + 202, + 54, + 2, + 1, + 1 + ], + [ + 202, + 71, + 2, + 1, + 0 + ], + [ + 202, + 73, + 0, + 1, + 1 + ], + [ + 202, + 125, + 2, + 1, + 0 + ], + [ + 203, + 20, + 2, + 1, + 1 + ], + [ + 208, + 57, + 2, + 1, + 1 + ], + [ + 209, + 40, + 2, + 1, + 1 + ], + [ + 209, + 52, + 2, + 1, + 0 + ], + [ + 209, + 54, + 2, + 1, + 1 + ], + [ + 209, + 56, + 2, + 1, + 0 + ], + [ + 210, + 22, + 2, + 1, + 1 + ], + [ + 210, + 28, + 0, + 1, + 1 + ], + [ + 212, + 22, + 2, + 1, + 1 + ], + [ + 213, + 18, + 2, + 1, + 0 + ], + [ + 213, + 25, + 0, + 1, + 1 + ], + [ + 215, + 18, + 2, + 1, + 1 + ], + [ + 217, + 14, + 2, + 1, + 0 + ], + [ + 218, + 10, + 1, + 1, + 0 + ], + [ + 218, + 12, + 2, + 1, + 1 + ], + [ + 219, + 73, + 2, + 1, + 1 + ], + [ + 220, + 32, + 2, + 1, + 1 + ], + [ + 220, + 52, + 2, + 1, + 0 + ], + [ + 220, + 54, + 2, + 1, + 1 + ], + [ + 220, + 71, + 2, + 1, + 0 + ], + [ + 220, + 73, + 0, + 1, + 1 + ], + [ + 220, + 125, + 2, + 1, + 0 + ], + [ + 221, + 20, + 2, + 1, + 1 + ], + [ + 226, + 57, + 2, + 1, + 1 + ], + [ + 227, + 40, + 2, + 1, + 1 + ], + [ + 227, + 52, + 2, + 1, + 0 + ], + [ + 227, + 54, + 2, + 1, + 1 + ], + [ + 227, + 56, + 2, + 1, + 0 + ], + [ + 228, + 22, + 2, + 1, + 1 + ], + [ + 228, + 28, + 0, + 1, + 1 + ], + [ + 230, + 22, + 2, + 1, + 1 + ], + [ + 231, + 18, + 2, + 1, + 0 + ], + [ + 231, + 25, + 0, + 1, + 1 + ], + [ + 233, + 18, + 2, + 1, + 1 + ], + [ + 235, + 14, + 2, + 1, + 0 + ], + [ + 236, + 10, + 1, + 1, + 0 + ], + [ + 237, + 6, + 0, + 0, + 0 + ], + [ + 242, + 37, + 10, + 1, + 1 + ], + [ + 244, + 51, + 42, + 1, + 1 + ], + [ + 246, + 14, + 10, + 1, + 1 + ], + [ + 251, + 10, + 0, + 0, + 0 + ], + [ + 253, + 37, + 2, + 1, + 1 + ], + [ + 269, + 10, + 0, + 0, + 0 + ], + [ + 271, + 37, + 2, + 1, + 1 + ], + [ + 282, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 517, + "covered": 475, + "percent": 91 + }, + "functions": { + "count": 94, + "covered": 68, + "percent": 72 + }, + "instantiations": { + "count": 94, + "covered": 68, + "percent": 72 + }, + "regions": { + "count": 147, + "covered": 113, + "notcovered": 34, + "percent": 76 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift", + "segments": [ + [ + 24, + 78, + 0, + 1, + 1 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 34, + 26, + 14, + 1, + 1 + ], + [ + 36, + 10, + 0, + 0, + 0 + ], + [ + 37, + 76, + 6, + 1, + 1 + ], + [ + 39, + 10, + 0, + 0, + 0 + ], + [ + 44, + 28, + 1, + 1, + 1 + ], + [ + 45, + 46, + 6, + 1, + 1 + ], + [ + 49, + 10, + 1, + 1, + 0 + ], + [ + 50, + 46, + 6, + 1, + 1 + ], + [ + 54, + 10, + 1, + 1, + 0 + ], + [ + 62, + 42, + 2, + 1, + 1 + ], + [ + 65, + 10, + 1, + 1, + 0 + ], + [ + 66, + 43, + 2, + 1, + 1 + ], + [ + 68, + 28, + 2, + 1, + 1 + ], + [ + 68, + 34, + 2, + 1, + 0 + ], + [ + 68, + 36, + 2, + 1, + 1 + ], + [ + 68, + 47, + 2, + 1, + 0 + ], + [ + 70, + 10, + 1, + 1, + 0 + ], + [ + 84, + 6, + 0, + 0, + 0 + ], + [ + 86, + 31, + 1, + 1, + 1 + ], + [ + 89, + 46, + 0, + 1, + 1 + ], + [ + 93, + 10, + 1, + 1, + 0 + ], + [ + 94, + 46, + 2, + 1, + 1 + ], + [ + 98, + 10, + 1, + 1, + 0 + ], + [ + 104, + 37, + 2, + 1, + 1 + ], + [ + 109, + 10, + 1, + 1, + 0 + ], + [ + 111, + 39, + 2, + 1, + 1 + ], + [ + 113, + 28, + 0, + 1, + 1 + ], + [ + 113, + 39, + 2, + 1, + 0 + ], + [ + 113, + 41, + 0, + 1, + 1 + ], + [ + 113, + 52, + 2, + 1, + 0 + ], + [ + 115, + 10, + 1, + 1, + 0 + ], + [ + 117, + 41, + 2, + 1, + 1 + ], + [ + 118, + 67, + 2, + 1, + 1 + ], + [ + 119, + 93, + 2, + 1, + 1 + ], + [ + 120, + 36, + 2, + 1, + 1 + ], + [ + 120, + 50, + 2, + 1, + 0 + ], + [ + 120, + 52, + 2, + 1, + 1 + ], + [ + 120, + 75, + 2, + 1, + 0 + ], + [ + 121, + 18, + 2, + 1, + 1 + ], + [ + 121, + 24, + 0, + 1, + 1 + ], + [ + 123, + 18, + 2, + 1, + 1 + ], + [ + 125, + 14, + 2, + 1, + 0 + ], + [ + 126, + 10, + 1, + 1, + 0 + ], + [ + 128, + 41, + 2, + 1, + 1 + ], + [ + 129, + 69, + 2, + 1, + 1 + ], + [ + 131, + 14, + 2, + 1, + 0 + ], + [ + 132, + 10, + 1, + 1, + 0 + ], + [ + 133, + 6, + 0, + 0, + 0 + ], + [ + 136, + 35, + 1, + 1, + 1 + ], + [ + 139, + 47, + 4, + 1, + 1 + ], + [ + 139, + 72, + 1, + 1, + 0 + ], + [ + 141, + 37, + 6, + 1, + 1 + ], + [ + 146, + 10, + 1, + 1, + 0 + ], + [ + 148, + 39, + 4, + 1, + 1 + ], + [ + 153, + 10, + 1, + 1, + 0 + ], + [ + 155, + 41, + 2, + 1, + 1 + ], + [ + 156, + 67, + 2, + 1, + 1 + ], + [ + 160, + 17, + 2, + 1, + 1 + ], + [ + 164, + 36, + 2, + 1, + 1 + ], + [ + 164, + 48, + 2, + 1, + 0 + ], + [ + 164, + 50, + 2, + 1, + 1 + ], + [ + 164, + 62, + 2, + 1, + 0 + ], + [ + 165, + 18, + 2, + 1, + 1 + ], + [ + 165, + 24, + 0, + 1, + 1 + ], + [ + 167, + 18, + 2, + 1, + 1 + ], + [ + 169, + 14, + 2, + 1, + 0 + ], + [ + 170, + 10, + 1, + 1, + 0 + ], + [ + 172, + 41, + 2, + 1, + 1 + ], + [ + 173, + 67, + 2, + 1, + 1 + ], + [ + 174, + 93, + 2, + 1, + 1 + ], + [ + 175, + 36, + 2, + 1, + 1 + ], + [ + 175, + 50, + 2, + 1, + 0 + ], + [ + 175, + 52, + 2, + 1, + 1 + ], + [ + 175, + 74, + 2, + 1, + 0 + ], + [ + 176, + 18, + 2, + 1, + 1 + ], + [ + 176, + 24, + 0, + 1, + 1 + ], + [ + 178, + 18, + 2, + 1, + 1 + ], + [ + 180, + 14, + 2, + 1, + 0 + ], + [ + 181, + 10, + 1, + 1, + 0 + ], + [ + 185, + 41, + 2, + 1, + 1 + ], + [ + 186, + 67, + 2, + 1, + 1 + ], + [ + 190, + 17, + 2, + 1, + 1 + ], + [ + 194, + 36, + 2, + 1, + 1 + ], + [ + 194, + 48, + 2, + 1, + 0 + ], + [ + 194, + 50, + 2, + 1, + 1 + ], + [ + 194, + 62, + 2, + 1, + 0 + ], + [ + 195, + 18, + 2, + 1, + 1 + ], + [ + 195, + 24, + 0, + 1, + 1 + ], + [ + 197, + 18, + 2, + 1, + 1 + ], + [ + 199, + 14, + 2, + 1, + 0 + ], + [ + 200, + 10, + 1, + 1, + 0 + ], + [ + 202, + 41, + 2, + 1, + 1 + ], + [ + 203, + 69, + 2, + 1, + 1 + ], + [ + 204, + 93, + 2, + 1, + 1 + ], + [ + 205, + 36, + 2, + 1, + 1 + ], + [ + 205, + 50, + 2, + 1, + 0 + ], + [ + 205, + 52, + 2, + 1, + 1 + ], + [ + 205, + 74, + 2, + 1, + 0 + ], + [ + 206, + 18, + 2, + 1, + 1 + ], + [ + 206, + 24, + 0, + 1, + 1 + ], + [ + 208, + 18, + 2, + 1, + 1 + ], + [ + 210, + 14, + 2, + 1, + 0 + ], + [ + 211, + 10, + 1, + 1, + 0 + ], + [ + 213, + 46, + 2, + 1, + 1 + ], + [ + 217, + 10, + 1, + 1, + 0 + ], + [ + 220, + 41, + 2, + 1, + 1 + ], + [ + 221, + 69, + 2, + 1, + 1 + ], + [ + 222, + 93, + 2, + 1, + 1 + ], + [ + 223, + 36, + 2, + 1, + 1 + ], + [ + 223, + 50, + 2, + 1, + 0 + ], + [ + 223, + 52, + 2, + 1, + 1 + ], + [ + 223, + 75, + 2, + 1, + 0 + ], + [ + 224, + 18, + 2, + 1, + 1 + ], + [ + 224, + 24, + 0, + 1, + 1 + ], + [ + 226, + 18, + 2, + 1, + 1 + ], + [ + 228, + 14, + 2, + 1, + 0 + ], + [ + 229, + 10, + 1, + 1, + 0 + ], + [ + 230, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 411, + "covered": 391, + "percent": 95 + }, + "functions": { + "count": 48, + "covered": 44, + "percent": 91 + }, + "instantiations": { + "count": 48, + "covered": 44, + "percent": 91 + }, + "regions": { + "count": 72, + "covered": 62, + "notcovered": 10, + "percent": 86 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift", + "segments": [ + [ + 21, + 88, + 0, + 1, + 1 + ], + [ + 29, + 6, + 0, + 0, + 0 + ], + [ + 31, + 30, + 1, + 1, + 1 + ], + [ + 45, + 12, + 1, + 1, + 1 + ], + [ + 48, + 10, + 1, + 1, + 0 + ], + [ + 48, + 18, + 1, + 1, + 1 + ], + [ + 49, + 60, + 1, + 1, + 1 + ], + [ + 50, + 27, + 1, + 1, + 1 + ], + [ + 50, + 111, + 1, + 1, + 0 + ], + [ + 50, + 113, + 0, + 1, + 1 + ], + [ + 50, + 175, + 1, + 1, + 0 + ], + [ + 51, + 14, + 1, + 1, + 1 + ], + [ + 51, + 20, + 0, + 1, + 1 + ], + [ + 56, + 14, + 1, + 1, + 1 + ], + [ + 57, + 10, + 1, + 1, + 1 + ], + [ + 58, + 6, + 0, + 0, + 0 + ], + [ + 59, + 35, + 1, + 1, + 1 + ], + [ + 72, + 12, + 1, + 1, + 1 + ], + [ + 75, + 10, + 1, + 1, + 0 + ], + [ + 75, + 18, + 1, + 1, + 1 + ], + [ + 76, + 60, + 1, + 1, + 1 + ], + [ + 77, + 27, + 1, + 1, + 1 + ], + [ + 77, + 119, + 1, + 1, + 0 + ], + [ + 77, + 121, + 0, + 1, + 1 + ], + [ + 77, + 183, + 1, + 1, + 0 + ], + [ + 78, + 14, + 1, + 1, + 1 + ], + [ + 78, + 20, + 0, + 1, + 1 + ], + [ + 80, + 14, + 1, + 1, + 1 + ], + [ + 81, + 10, + 1, + 1, + 1 + ], + [ + 82, + 6, + 0, + 0, + 0 + ], + [ + 83, + 26, + 1, + 1, + 1 + ], + [ + 95, + 12, + 1, + 1, + 1 + ], + [ + 98, + 10, + 1, + 1, + 0 + ], + [ + 98, + 18, + 1, + 1, + 1 + ], + [ + 99, + 60, + 1, + 1, + 1 + ], + [ + 100, + 27, + 1, + 1, + 1 + ], + [ + 100, + 109, + 1, + 1, + 0 + ], + [ + 100, + 111, + 0, + 1, + 1 + ], + [ + 100, + 173, + 1, + 1, + 0 + ], + [ + 101, + 14, + 1, + 1, + 1 + ], + [ + 101, + 20, + 0, + 1, + 1 + ], + [ + 103, + 14, + 1, + 1, + 1 + ], + [ + 104, + 10, + 1, + 1, + 1 + ], + [ + 105, + 6, + 0, + 0, + 0 + ], + [ + 107, + 29, + 1, + 1, + 1 + ], + [ + 120, + 12, + 1, + 1, + 1 + ], + [ + 123, + 10, + 1, + 1, + 0 + ], + [ + 123, + 18, + 1, + 1, + 1 + ], + [ + 124, + 60, + 1, + 1, + 1 + ], + [ + 125, + 27, + 1, + 1, + 1 + ], + [ + 125, + 126, + 1, + 1, + 0 + ], + [ + 125, + 128, + 0, + 1, + 1 + ], + [ + 125, + 190, + 1, + 1, + 0 + ], + [ + 126, + 14, + 1, + 1, + 1 + ], + [ + 126, + 20, + 0, + 1, + 1 + ], + [ + 128, + 14, + 1, + 1, + 1 + ], + [ + 129, + 10, + 1, + 1, + 1 + ], + [ + 131, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 117, + "covered": 97, + "percent": 82 + }, + "functions": { + "count": 13, + "covered": 8, + "percent": 61 + }, + "instantiations": { + "count": 13, + "covered": 8, + "percent": 61 + }, + "regions": { + "count": 41, + "covered": 32, + "notcovered": 9, + "percent": 78 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift", + "segments": [ + [ + 32, + 72, + 0, + 1, + 1 + ], + [ + 38, + 6, + 0, + 0, + 0 + ], + [ + 42, + 30, + 1, + 1, + 1 + ], + [ + 43, + 47, + 2, + 1, + 1 + ], + [ + 44, + 69, + 2, + 1, + 1 + ], + [ + 45, + 33, + 2, + 1, + 1 + ], + [ + 45, + 41, + 2, + 1, + 0 + ], + [ + 45, + 43, + 0, + 1, + 1 + ], + [ + 45, + 91, + 2, + 1, + 0 + ], + [ + 46, + 32, + 2, + 1, + 1 + ], + [ + 46, + 52, + 2, + 1, + 0 + ], + [ + 46, + 54, + 2, + 1, + 1 + ], + [ + 46, + 79, + 2, + 1, + 0 + ], + [ + 46, + 81, + 0, + 1, + 1 + ], + [ + 46, + 147, + 2, + 1, + 0 + ], + [ + 49, + 10, + 1, + 1, + 0 + ], + [ + 49, + 12, + 2, + 1, + 1 + ], + [ + 51, + 28, + 2, + 1, + 1 + ], + [ + 51, + 34, + 2, + 1, + 0 + ], + [ + 51, + 36, + 2, + 1, + 1 + ], + [ + 51, + 44, + 2, + 1, + 0 + ], + [ + 51, + 46, + 0, + 1, + 1 + ], + [ + 51, + 98, + 2, + 1, + 0 + ], + [ + 53, + 10, + 1, + 1, + 0 + ], + [ + 54, + 6, + 0, + 0, + 0 + ], + [ + 56, + 32, + 1, + 1, + 1 + ], + [ + 57, + 35, + 2, + 1, + 1 + ], + [ + 58, + 68, + 2, + 1, + 1 + ], + [ + 59, + 33, + 2, + 1, + 1 + ], + [ + 59, + 41, + 2, + 1, + 0 + ], + [ + 59, + 43, + 0, + 1, + 1 + ], + [ + 59, + 91, + 2, + 1, + 0 + ], + [ + 60, + 32, + 2, + 1, + 1 + ], + [ + 60, + 52, + 2, + 1, + 0 + ], + [ + 60, + 54, + 2, + 1, + 1 + ], + [ + 60, + 77, + 2, + 1, + 0 + ], + [ + 60, + 79, + 0, + 1, + 1 + ], + [ + 60, + 145, + 2, + 1, + 0 + ], + [ + 63, + 10, + 1, + 1, + 0 + ], + [ + 64, + 6, + 0, + 0, + 0 + ], + [ + 66, + 30, + 1, + 1, + 1 + ], + [ + 67, + 35, + 2, + 1, + 1 + ], + [ + 68, + 65, + 2, + 1, + 1 + ], + [ + 69, + 33, + 2, + 1, + 1 + ], + [ + 69, + 41, + 2, + 1, + 0 + ], + [ + 69, + 43, + 0, + 1, + 1 + ], + [ + 69, + 91, + 2, + 1, + 0 + ], + [ + 72, + 16, + 2, + 1, + 1 + ], + [ + 74, + 14, + 2, + 1, + 0 + ], + [ + 75, + 10, + 1, + 1, + 0 + ], + [ + 76, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 101, + "covered": 88, + "percent": 87 + }, + "functions": { + "count": 27, + "covered": 20, + "percent": 74 + }, + "instantiations": { + "count": 27, + "covered": 20, + "percent": 74 + }, + "regions": { + "count": 27, + "covered": 20, + "notcovered": 7, + "percent": 74 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift", + "segments": [ + [ + 25, + 75, + 0, + 1, + 1 + ], + [ + 37, + 6, + 0, + 0, + 0 + ], + [ + 39, + 40, + 1, + 1, + 1 + ], + [ + 41, + 24, + 1, + 1, + 1 + ], + [ + 41, + 50, + 1, + 1, + 0 + ], + [ + 41, + 52, + 1, + 1, + 1 + ], + [ + 41, + 60, + 1, + 1, + 0 + ], + [ + 42, + 24, + 1, + 1, + 1 + ], + [ + 42, + 51, + 1, + 1, + 0 + ], + [ + 42, + 53, + 1, + 1, + 1 + ], + [ + 42, + 58, + 1, + 1, + 0 + ], + [ + 43, + 24, + 1, + 1, + 1 + ], + [ + 43, + 46, + 1, + 1, + 0 + ], + [ + 43, + 48, + 1, + 1, + 1 + ], + [ + 43, + 51, + 1, + 1, + 0 + ], + [ + 44, + 6, + 0, + 0, + 0 + ], + [ + 46, + 45, + 1, + 1, + 1 + ], + [ + 48, + 24, + 1, + 1, + 1 + ], + [ + 48, + 50, + 1, + 1, + 0 + ], + [ + 48, + 52, + 1, + 1, + 1 + ], + [ + 48, + 60, + 1, + 1, + 0 + ], + [ + 49, + 24, + 1, + 1, + 1 + ], + [ + 49, + 51, + 1, + 1, + 0 + ], + [ + 49, + 53, + 1, + 1, + 1 + ], + [ + 49, + 58, + 1, + 1, + 0 + ], + [ + 50, + 24, + 1, + 1, + 1 + ], + [ + 50, + 46, + 1, + 1, + 0 + ], + [ + 50, + 48, + 1, + 1, + 1 + ], + [ + 50, + 51, + 1, + 1, + 0 + ], + [ + 51, + 6, + 0, + 0, + 0 + ], + [ + 53, + 37, + 1, + 1, + 1 + ], + [ + 55, + 24, + 1, + 1, + 1 + ], + [ + 55, + 50, + 1, + 1, + 0 + ], + [ + 55, + 52, + 1, + 1, + 1 + ], + [ + 55, + 63, + 1, + 1, + 0 + ], + [ + 56, + 24, + 1, + 1, + 1 + ], + [ + 56, + 51, + 1, + 1, + 0 + ], + [ + 56, + 53, + 1, + 1, + 1 + ], + [ + 56, + 58, + 1, + 1, + 0 + ], + [ + 57, + 24, + 1, + 1, + 1 + ], + [ + 57, + 46, + 1, + 1, + 0 + ], + [ + 57, + 48, + 1, + 1, + 1 + ], + [ + 57, + 54, + 1, + 1, + 0 + ], + [ + 58, + 6, + 0, + 0, + 0 + ], + [ + 60, + 37, + 1, + 1, + 1 + ], + [ + 62, + 24, + 1, + 1, + 1 + ], + [ + 62, + 50, + 1, + 1, + 0 + ], + [ + 62, + 52, + 1, + 1, + 1 + ], + [ + 62, + 63, + 1, + 1, + 0 + ], + [ + 63, + 24, + 1, + 1, + 1 + ], + [ + 63, + 51, + 1, + 1, + 0 + ], + [ + 63, + 53, + 1, + 1, + 1 + ], + [ + 63, + 58, + 1, + 1, + 0 + ], + [ + 64, + 24, + 1, + 1, + 1 + ], + [ + 64, + 46, + 1, + 1, + 0 + ], + [ + 64, + 48, + 1, + 1, + 1 + ], + [ + 64, + 54, + 1, + 1, + 0 + ], + [ + 65, + 6, + 0, + 0, + 0 + ], + [ + 67, + 38, + 1, + 1, + 1 + ], + [ + 68, + 22, + 1, + 1, + 1 + ], + [ + 68, + 45, + 1, + 1, + 0 + ], + [ + 69, + 6, + 0, + 0, + 0 + ], + [ + 71, + 45, + 1, + 1, + 1 + ], + [ + 73, + 24, + 1, + 1, + 1 + ], + [ + 73, + 49, + 1, + 1, + 0 + ], + [ + 73, + 51, + 1, + 1, + 1 + ], + [ + 73, + 59, + 1, + 1, + 0 + ], + [ + 74, + 24, + 1, + 1, + 1 + ], + [ + 74, + 50, + 1, + 1, + 0 + ], + [ + 74, + 52, + 1, + 1, + 1 + ], + [ + 74, + 57, + 1, + 1, + 0 + ], + [ + 75, + 24, + 1, + 1, + 1 + ], + [ + 75, + 45, + 1, + 1, + 0 + ], + [ + 75, + 47, + 1, + 1, + 1 + ], + [ + 75, + 50, + 1, + 1, + 0 + ], + [ + 76, + 6, + 0, + 0, + 0 + ], + [ + 78, + 42, + 1, + 1, + 1 + ], + [ + 80, + 24, + 1, + 1, + 1 + ], + [ + 80, + 49, + 1, + 1, + 0 + ], + [ + 80, + 51, + 1, + 1, + 1 + ], + [ + 80, + 62, + 1, + 1, + 0 + ], + [ + 81, + 24, + 1, + 1, + 1 + ], + [ + 81, + 50, + 1, + 1, + 0 + ], + [ + 81, + 52, + 1, + 1, + 1 + ], + [ + 81, + 57, + 1, + 1, + 0 + ], + [ + 82, + 24, + 1, + 1, + 1 + ], + [ + 82, + 45, + 1, + 1, + 0 + ], + [ + 82, + 47, + 1, + 1, + 1 + ], + [ + 82, + 53, + 1, + 1, + 0 + ], + [ + 83, + 6, + 0, + 0, + 0 + ], + [ + 85, + 42, + 1, + 1, + 1 + ], + [ + 87, + 24, + 1, + 1, + 1 + ], + [ + 87, + 49, + 1, + 1, + 0 + ], + [ + 87, + 51, + 1, + 1, + 1 + ], + [ + 87, + 62, + 1, + 1, + 0 + ], + [ + 88, + 24, + 1, + 1, + 1 + ], + [ + 88, + 50, + 1, + 1, + 0 + ], + [ + 88, + 52, + 1, + 1, + 1 + ], + [ + 88, + 57, + 1, + 1, + 0 + ], + [ + 89, + 24, + 1, + 1, + 1 + ], + [ + 89, + 45, + 1, + 1, + 0 + ], + [ + 89, + 47, + 1, + 1, + 1 + ], + [ + 89, + 53, + 1, + 1, + 0 + ], + [ + 90, + 6, + 0, + 0, + 0 + ], + [ + 92, + 31, + 1, + 1, + 1 + ], + [ + 94, + 24, + 1, + 1, + 1 + ], + [ + 94, + 50, + 1, + 1, + 0 + ], + [ + 94, + 52, + 1, + 1, + 1 + ], + [ + 94, + 63, + 1, + 1, + 0 + ], + [ + 95, + 24, + 1, + 1, + 1 + ], + [ + 95, + 51, + 1, + 1, + 0 + ], + [ + 95, + 53, + 1, + 1, + 1 + ], + [ + 95, + 58, + 1, + 1, + 0 + ], + [ + 96, + 24, + 1, + 1, + 1 + ], + [ + 96, + 46, + 1, + 1, + 0 + ], + [ + 96, + 48, + 1, + 1, + 1 + ], + [ + 96, + 54, + 1, + 1, + 0 + ], + [ + 97, + 6, + 0, + 0, + 0 + ], + [ + 99, + 33, + 1, + 1, + 1 + ], + [ + 100, + 22, + 1, + 1, + 1 + ], + [ + 100, + 84, + 1, + 1, + 0 + ], + [ + 101, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 117, + "covered": 104, + "percent": 88 + }, + "functions": { + "count": 61, + "covered": 60, + "percent": 98 + }, + "instantiations": { + "count": 61, + "covered": 60, + "percent": 98 + }, + "regions": { + "count": 61, + "covered": 60, + "notcovered": 1, + "percent": 98 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift", + "segments": [ + [ + 24, + 78, + 0, + 1, + 1 + ], + [ + 31, + 6, + 0, + 0, + 0 + ], + [ + 35, + 21, + 1, + 1, + 1 + ], + [ + 36, + 47, + 2, + 1, + 1 + ], + [ + 37, + 67, + 2, + 1, + 1 + ], + [ + 38, + 32, + 2, + 1, + 1 + ], + [ + 38, + 52, + 2, + 1, + 0 + ], + [ + 38, + 54, + 2, + 1, + 1 + ], + [ + 38, + 71, + 2, + 1, + 0 + ], + [ + 38, + 73, + 0, + 1, + 1 + ], + [ + 38, + 119, + 2, + 1, + 0 + ], + [ + 41, + 10, + 1, + 1, + 0 + ], + [ + 41, + 12, + 2, + 1, + 1 + ], + [ + 42, + 72, + 2, + 1, + 1 + ], + [ + 43, + 36, + 2, + 1, + 1 + ], + [ + 43, + 56, + 2, + 1, + 0 + ], + [ + 43, + 58, + 2, + 1, + 1 + ], + [ + 43, + 75, + 2, + 1, + 0 + ], + [ + 43, + 77, + 0, + 1, + 1 + ], + [ + 43, + 125, + 2, + 1, + 0 + ], + [ + 46, + 10, + 1, + 1, + 0 + ], + [ + 46, + 12, + 2, + 1, + 1 + ], + [ + 47, + 62, + 2, + 1, + 1 + ], + [ + 48, + 36, + 2, + 1, + 1 + ], + [ + 48, + 56, + 2, + 1, + 0 + ], + [ + 48, + 58, + 2, + 1, + 1 + ], + [ + 48, + 81, + 2, + 1, + 0 + ], + [ + 48, + 83, + 0, + 1, + 1 + ], + [ + 48, + 127, + 2, + 1, + 0 + ], + [ + 51, + 10, + 1, + 1, + 0 + ], + [ + 52, + 6, + 0, + 0, + 0 + ], + [ + 54, + 21, + 1, + 1, + 1 + ], + [ + 55, + 47, + 2, + 1, + 1 + ], + [ + 56, + 67, + 2, + 1, + 1 + ], + [ + 57, + 36, + 2, + 1, + 1 + ], + [ + 57, + 56, + 2, + 1, + 0 + ], + [ + 57, + 58, + 2, + 1, + 1 + ], + [ + 57, + 75, + 2, + 1, + 0 + ], + [ + 57, + 77, + 0, + 1, + 1 + ], + [ + 57, + 123, + 2, + 1, + 0 + ], + [ + 60, + 10, + 1, + 1, + 0 + ], + [ + 60, + 12, + 2, + 1, + 1 + ], + [ + 61, + 72, + 2, + 1, + 1 + ], + [ + 62, + 36, + 2, + 1, + 1 + ], + [ + 62, + 56, + 2, + 1, + 0 + ], + [ + 62, + 58, + 2, + 1, + 1 + ], + [ + 62, + 75, + 2, + 1, + 0 + ], + [ + 62, + 77, + 0, + 1, + 1 + ], + [ + 62, + 125, + 2, + 1, + 0 + ], + [ + 65, + 10, + 1, + 1, + 0 + ], + [ + 65, + 12, + 2, + 1, + 1 + ], + [ + 66, + 62, + 2, + 1, + 1 + ], + [ + 67, + 36, + 2, + 1, + 1 + ], + [ + 67, + 56, + 2, + 1, + 0 + ], + [ + 67, + 58, + 2, + 1, + 1 + ], + [ + 67, + 75, + 2, + 1, + 0 + ], + [ + 67, + 77, + 0, + 1, + 1 + ], + [ + 67, + 122, + 2, + 1, + 0 + ], + [ + 70, + 10, + 1, + 1, + 0 + ], + [ + 71, + 6, + 0, + 0, + 0 + ], + [ + 73, + 25, + 1, + 1, + 1 + ], + [ + 74, + 47, + 2, + 1, + 1 + ], + [ + 75, + 71, + 2, + 1, + 1 + ], + [ + 76, + 36, + 2, + 1, + 1 + ], + [ + 76, + 56, + 2, + 1, + 0 + ], + [ + 76, + 58, + 2, + 1, + 1 + ], + [ + 76, + 75, + 2, + 1, + 0 + ], + [ + 76, + 77, + 0, + 1, + 1 + ], + [ + 76, + 127, + 2, + 1, + 0 + ], + [ + 79, + 10, + 1, + 1, + 0 + ], + [ + 79, + 12, + 2, + 1, + 1 + ], + [ + 80, + 80, + 2, + 1, + 1 + ], + [ + 81, + 36, + 2, + 1, + 1 + ], + [ + 81, + 56, + 2, + 1, + 0 + ], + [ + 81, + 58, + 2, + 1, + 1 + ], + [ + 81, + 81, + 2, + 1, + 0 + ], + [ + 81, + 83, + 0, + 1, + 1 + ], + [ + 81, + 134, + 2, + 1, + 0 + ], + [ + 84, + 10, + 1, + 1, + 0 + ], + [ + 84, + 12, + 2, + 1, + 1 + ], + [ + 85, + 62, + 2, + 1, + 1 + ], + [ + 86, + 36, + 2, + 1, + 1 + ], + [ + 86, + 56, + 2, + 1, + 0 + ], + [ + 86, + 58, + 2, + 1, + 1 + ], + [ + 86, + 75, + 2, + 1, + 0 + ], + [ + 86, + 77, + 0, + 1, + 1 + ], + [ + 86, + 126, + 2, + 1, + 0 + ], + [ + 89, + 10, + 1, + 1, + 0 + ], + [ + 90, + 6, + 0, + 0, + 0 + ], + [ + 92, + 25, + 1, + 1, + 1 + ], + [ + 93, + 47, + 2, + 1, + 1 + ], + [ + 94, + 76, + 2, + 1, + 1 + ], + [ + 95, + 36, + 2, + 1, + 1 + ], + [ + 95, + 56, + 2, + 1, + 0 + ], + [ + 95, + 58, + 2, + 1, + 1 + ], + [ + 95, + 75, + 2, + 1, + 0 + ], + [ + 95, + 77, + 0, + 1, + 1 + ], + [ + 95, + 126, + 2, + 1, + 0 + ], + [ + 98, + 10, + 1, + 1, + 0 + ], + [ + 98, + 12, + 2, + 1, + 1 + ], + [ + 99, + 77, + 2, + 1, + 1 + ], + [ + 100, + 36, + 2, + 1, + 1 + ], + [ + 100, + 56, + 2, + 1, + 0 + ], + [ + 100, + 58, + 2, + 1, + 1 + ], + [ + 100, + 75, + 2, + 1, + 0 + ], + [ + 100, + 77, + 0, + 1, + 1 + ], + [ + 100, + 142, + 2, + 1, + 0 + ], + [ + 103, + 10, + 1, + 1, + 0 + ], + [ + 103, + 12, + 2, + 1, + 1 + ], + [ + 104, + 103, + 2, + 1, + 1 + ], + [ + 105, + 36, + 2, + 1, + 1 + ], + [ + 105, + 56, + 2, + 1, + 0 + ], + [ + 105, + 58, + 2, + 1, + 1 + ], + [ + 105, + 75, + 2, + 1, + 0 + ], + [ + 105, + 77, + 0, + 1, + 1 + ], + [ + 105, + 153, + 2, + 1, + 0 + ], + [ + 108, + 10, + 1, + 1, + 0 + ], + [ + 109, + 6, + 0, + 0, + 0 + ], + [ + 114, + 34, + 4, + 1, + 1 + ], + [ + 115, + 16, + 4, + 1, + 1 + ], + [ + 117, + 14, + 4, + 1, + 0 + ], + [ + 117, + 21, + 0, + 1, + 1 + ], + [ + 117, + 23, + 4, + 1, + 1 + ], + [ + 120, + 10, + 0, + 0, + 0 + ], + [ + 122, + 34, + 6, + 1, + 1 + ], + [ + 123, + 16, + 6, + 1, + 1 + ], + [ + 125, + 14, + 6, + 1, + 0 + ], + [ + 125, + 21, + 0, + 1, + 1 + ], + [ + 125, + 23, + 6, + 1, + 1 + ], + [ + 127, + 10, + 0, + 0, + 0 + ], + [ + 129, + 38, + 4, + 1, + 1 + ], + [ + 130, + 16, + 4, + 1, + 1 + ], + [ + 132, + 14, + 4, + 1, + 0 + ], + [ + 132, + 21, + 0, + 1, + 1 + ], + [ + 132, + 23, + 4, + 1, + 1 + ], + [ + 135, + 10, + 0, + 0, + 0 + ], + [ + 137, + 56, + 6, + 1, + 1 + ], + [ + 138, + 16, + 6, + 1, + 1 + ], + [ + 140, + 14, + 6, + 1, + 0 + ], + [ + 140, + 21, + 0, + 1, + 1 + ], + [ + 140, + 23, + 6, + 1, + 1 + ], + [ + 143, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 263, + "covered": 243, + "percent": 92 + }, + "functions": { + "count": 69, + "covered": 56, + "percent": 81 + }, + "instantiations": { + "count": 69, + "covered": 56, + "percent": 81 + }, + "regions": { + "count": 81, + "covered": 64, + "notcovered": 17, + "percent": 79 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift", + "segments": [ + [ + 23, + 83, + 0, + 1, + 1 + ], + [ + 43, + 6, + 0, + 0, + 0 + ], + [ + 48, + 94, + 13, + 1, + 1 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 52, + 164, + 7, + 1, + 1 + ], + [ + 53, + 12, + 7, + 1, + 1 + ], + [ + 56, + 10, + 7, + 1, + 0 + ], + [ + 56, + 46, + 7, + 1, + 1 + ], + [ + 57, + 28, + 7, + 1, + 1 + ], + [ + 57, + 29, + 7, + 1, + 0 + ], + [ + 57, + 31, + 7, + 1, + 1 + ], + [ + 57, + 36, + 7, + 1, + 0 + ], + [ + 58, + 25, + 0, + 1, + 1 + ], + [ + 60, + 10, + 7, + 1, + 1 + ], + [ + 61, + 6, + 0, + 0, + 0 + ], + [ + 63, + 35, + 1, + 1, + 1 + ], + [ + 64, + 23, + 1, + 1, + 1 + ], + [ + 64, + 66, + 1, + 1, + 0 + ], + [ + 65, + 23, + 1, + 1, + 1 + ], + [ + 65, + 65, + 1, + 1, + 0 + ], + [ + 66, + 23, + 1, + 1, + 1 + ], + [ + 66, + 65, + 1, + 1, + 0 + ], + [ + 67, + 24, + 1, + 1, + 1 + ], + [ + 67, + 63, + 1, + 1, + 0 + ], + [ + 68, + 24, + 1, + 1, + 1 + ], + [ + 68, + 69, + 1, + 1, + 0 + ], + [ + 69, + 6, + 0, + 0, + 0 + ], + [ + 71, + 43, + 1, + 1, + 1 + ], + [ + 73, + 6, + 0, + 0, + 0 + ], + [ + 75, + 41, + 1, + 1, + 1 + ], + [ + 79, + 6, + 0, + 0, + 0 + ], + [ + 81, + 50, + 1, + 1, + 1 + ], + [ + 85, + 6, + 0, + 0, + 0 + ], + [ + 87, + 28, + 1, + 1, + 1 + ], + [ + 89, + 24, + 1, + 1, + 1 + ], + [ + 89, + 35, + 1, + 1, + 0 + ], + [ + 89, + 37, + 1, + 1, + 1 + ], + [ + 89, + 44, + 1, + 1, + 0 + ], + [ + 90, + 24, + 1, + 1, + 1 + ], + [ + 90, + 43, + 1, + 1, + 0 + ], + [ + 90, + 45, + 1, + 1, + 1 + ], + [ + 90, + 46, + 1, + 1, + 0 + ], + [ + 91, + 24, + 1, + 1, + 1 + ], + [ + 91, + 40, + 1, + 1, + 0 + ], + [ + 91, + 42, + 1, + 1, + 1 + ], + [ + 91, + 49, + 1, + 1, + 0 + ], + [ + 92, + 6, + 0, + 0, + 0 + ], + [ + 94, + 35, + 1, + 1, + 1 + ], + [ + 96, + 24, + 1, + 1, + 1 + ], + [ + 96, + 35, + 1, + 1, + 0 + ], + [ + 96, + 37, + 1, + 1, + 1 + ], + [ + 96, + 44, + 1, + 1, + 0 + ], + [ + 97, + 24, + 1, + 1, + 1 + ], + [ + 97, + 43, + 1, + 1, + 0 + ], + [ + 97, + 45, + 1, + 1, + 1 + ], + [ + 97, + 46, + 1, + 1, + 0 + ], + [ + 98, + 24, + 1, + 1, + 1 + ], + [ + 98, + 40, + 1, + 1, + 0 + ], + [ + 98, + 42, + 1, + 1, + 1 + ], + [ + 98, + 49, + 1, + 1, + 0 + ], + [ + 99, + 6, + 0, + 0, + 0 + ], + [ + 101, + 40, + 1, + 1, + 1 + ], + [ + 103, + 24, + 1, + 1, + 1 + ], + [ + 103, + 35, + 1, + 1, + 0 + ], + [ + 103, + 37, + 1, + 1, + 1 + ], + [ + 103, + 44, + 1, + 1, + 0 + ], + [ + 104, + 24, + 1, + 1, + 1 + ], + [ + 104, + 43, + 1, + 1, + 0 + ], + [ + 104, + 45, + 1, + 1, + 1 + ], + [ + 104, + 46, + 1, + 1, + 0 + ], + [ + 105, + 24, + 1, + 1, + 1 + ], + [ + 105, + 40, + 1, + 1, + 0 + ], + [ + 105, + 42, + 1, + 1, + 1 + ], + [ + 105, + 49, + 1, + 1, + 0 + ], + [ + 106, + 6, + 0, + 0, + 0 + ], + [ + 108, + 45, + 1, + 1, + 1 + ], + [ + 110, + 24, + 1, + 1, + 1 + ], + [ + 110, + 35, + 1, + 1, + 0 + ], + [ + 110, + 37, + 1, + 1, + 1 + ], + [ + 110, + 44, + 1, + 1, + 0 + ], + [ + 111, + 24, + 1, + 1, + 1 + ], + [ + 111, + 43, + 1, + 1, + 0 + ], + [ + 111, + 45, + 1, + 1, + 1 + ], + [ + 111, + 46, + 1, + 1, + 0 + ], + [ + 112, + 24, + 1, + 1, + 1 + ], + [ + 112, + 40, + 1, + 1, + 0 + ], + [ + 112, + 42, + 1, + 1, + 1 + ], + [ + 112, + 51, + 1, + 1, + 0 + ], + [ + 113, + 6, + 0, + 0, + 0 + ], + [ + 115, + 47, + 1, + 1, + 1 + ], + [ + 117, + 24, + 1, + 1, + 1 + ], + [ + 117, + 35, + 1, + 1, + 0 + ], + [ + 117, + 37, + 1, + 1, + 1 + ], + [ + 117, + 44, + 1, + 1, + 0 + ], + [ + 118, + 24, + 1, + 1, + 1 + ], + [ + 118, + 43, + 1, + 1, + 0 + ], + [ + 118, + 45, + 1, + 1, + 1 + ], + [ + 118, + 46, + 1, + 1, + 0 + ], + [ + 119, + 24, + 1, + 1, + 1 + ], + [ + 119, + 40, + 1, + 1, + 0 + ], + [ + 119, + 42, + 1, + 1, + 1 + ], + [ + 119, + 51, + 1, + 1, + 0 + ], + [ + 120, + 6, + 0, + 0, + 0 + ], + [ + 122, + 54, + 1, + 1, + 1 + ], + [ + 124, + 24, + 1, + 1, + 1 + ], + [ + 124, + 35, + 1, + 1, + 0 + ], + [ + 124, + 37, + 1, + 1, + 1 + ], + [ + 124, + 44, + 1, + 1, + 0 + ], + [ + 125, + 24, + 1, + 1, + 1 + ], + [ + 125, + 43, + 1, + 1, + 0 + ], + [ + 125, + 45, + 1, + 1, + 1 + ], + [ + 125, + 46, + 1, + 1, + 0 + ], + [ + 126, + 24, + 1, + 1, + 1 + ], + [ + 126, + 40, + 1, + 1, + 0 + ], + [ + 126, + 42, + 1, + 1, + 1 + ], + [ + 126, + 49, + 1, + 1, + 0 + ], + [ + 127, + 6, + 0, + 0, + 0 + ], + [ + 129, + 56, + 1, + 1, + 1 + ], + [ + 131, + 24, + 1, + 1, + 1 + ], + [ + 131, + 35, + 1, + 1, + 0 + ], + [ + 131, + 37, + 1, + 1, + 1 + ], + [ + 131, + 44, + 1, + 1, + 0 + ], + [ + 132, + 24, + 1, + 1, + 1 + ], + [ + 132, + 43, + 1, + 1, + 0 + ], + [ + 132, + 45, + 1, + 1, + 1 + ], + [ + 132, + 46, + 1, + 1, + 0 + ], + [ + 133, + 24, + 1, + 1, + 1 + ], + [ + 133, + 40, + 1, + 1, + 0 + ], + [ + 133, + 42, + 1, + 1, + 1 + ], + [ + 133, + 47, + 1, + 1, + 0 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 136, + 51, + 1, + 1, + 1 + ], + [ + 138, + 24, + 1, + 1, + 1 + ], + [ + 138, + 35, + 1, + 1, + 0 + ], + [ + 138, + 37, + 1, + 1, + 1 + ], + [ + 138, + 44, + 1, + 1, + 0 + ], + [ + 139, + 24, + 1, + 1, + 1 + ], + [ + 139, + 43, + 1, + 1, + 0 + ], + [ + 139, + 45, + 1, + 1, + 1 + ], + [ + 139, + 46, + 1, + 1, + 0 + ], + [ + 140, + 24, + 1, + 1, + 1 + ], + [ + 140, + 40, + 1, + 1, + 0 + ], + [ + 140, + 42, + 1, + 1, + 1 + ], + [ + 140, + 51, + 1, + 1, + 0 + ], + [ + 141, + 6, + 0, + 0, + 0 + ], + [ + 143, + 52, + 1, + 1, + 1 + ], + [ + 145, + 24, + 1, + 1, + 1 + ], + [ + 145, + 35, + 1, + 1, + 0 + ], + [ + 145, + 37, + 1, + 1, + 1 + ], + [ + 145, + 44, + 1, + 1, + 0 + ], + [ + 146, + 24, + 1, + 1, + 1 + ], + [ + 146, + 43, + 1, + 1, + 0 + ], + [ + 146, + 45, + 1, + 1, + 1 + ], + [ + 146, + 46, + 1, + 1, + 0 + ], + [ + 147, + 24, + 1, + 1, + 1 + ], + [ + 147, + 40, + 1, + 1, + 0 + ], + [ + 147, + 42, + 1, + 1, + 1 + ], + [ + 147, + 49, + 1, + 1, + 0 + ], + [ + 148, + 24, + 1, + 1, + 1 + ], + [ + 148, + 40, + 1, + 1, + 0 + ], + [ + 148, + 42, + 1, + 1, + 1 + ], + [ + 148, + 49, + 1, + 1, + 0 + ], + [ + 149, + 24, + 1, + 1, + 1 + ], + [ + 149, + 40, + 1, + 1, + 0 + ], + [ + 149, + 42, + 1, + 1, + 1 + ], + [ + 149, + 51, + 1, + 1, + 0 + ], + [ + 150, + 6, + 0, + 0, + 0 + ], + [ + 152, + 55, + 1, + 1, + 1 + ], + [ + 154, + 24, + 1, + 1, + 1 + ], + [ + 154, + 35, + 1, + 1, + 0 + ], + [ + 154, + 37, + 1, + 1, + 1 + ], + [ + 154, + 44, + 1, + 1, + 0 + ], + [ + 155, + 24, + 1, + 1, + 1 + ], + [ + 155, + 43, + 1, + 1, + 0 + ], + [ + 155, + 45, + 1, + 1, + 1 + ], + [ + 155, + 46, + 1, + 1, + 0 + ], + [ + 156, + 24, + 1, + 1, + 1 + ], + [ + 156, + 40, + 1, + 1, + 0 + ], + [ + 156, + 42, + 1, + 1, + 1 + ], + [ + 156, + 49, + 1, + 1, + 0 + ], + [ + 157, + 6, + 0, + 0, + 0 + ], + [ + 159, + 41, + 1, + 1, + 1 + ], + [ + 161, + 24, + 1, + 1, + 1 + ], + [ + 161, + 35, + 1, + 1, + 0 + ], + [ + 161, + 37, + 1, + 1, + 1 + ], + [ + 161, + 44, + 1, + 1, + 0 + ], + [ + 162, + 24, + 1, + 1, + 1 + ], + [ + 162, + 43, + 1, + 1, + 0 + ], + [ + 162, + 45, + 1, + 1, + 1 + ], + [ + 162, + 46, + 1, + 1, + 0 + ], + [ + 163, + 24, + 1, + 1, + 1 + ], + [ + 163, + 40, + 1, + 1, + 0 + ], + [ + 163, + 42, + 1, + 1, + 1 + ], + [ + 163, + 47, + 1, + 1, + 0 + ], + [ + 164, + 6, + 0, + 0, + 0 + ], + [ + 166, + 47, + 1, + 1, + 1 + ], + [ + 168, + 24, + 1, + 1, + 1 + ], + [ + 168, + 34, + 1, + 1, + 0 + ], + [ + 168, + 36, + 1, + 1, + 1 + ], + [ + 168, + 43, + 1, + 1, + 0 + ], + [ + 169, + 24, + 1, + 1, + 1 + ], + [ + 169, + 42, + 1, + 1, + 0 + ], + [ + 169, + 44, + 1, + 1, + 1 + ], + [ + 169, + 45, + 1, + 1, + 0 + ], + [ + 170, + 24, + 1, + 1, + 1 + ], + [ + 170, + 39, + 1, + 1, + 0 + ], + [ + 170, + 41, + 1, + 1, + 1 + ], + [ + 170, + 47, + 1, + 1, + 0 + ], + [ + 171, + 24, + 1, + 1, + 1 + ], + [ + 171, + 39, + 1, + 1, + 0 + ], + [ + 171, + 41, + 1, + 1, + 1 + ], + [ + 171, + 49, + 1, + 1, + 0 + ], + [ + 172, + 6, + 0, + 0, + 0 + ], + [ + 174, + 69, + 1, + 1, + 1 + ], + [ + 176, + 24, + 1, + 1, + 1 + ], + [ + 176, + 34, + 1, + 1, + 0 + ], + [ + 176, + 36, + 1, + 1, + 1 + ], + [ + 176, + 43, + 1, + 1, + 0 + ], + [ + 177, + 24, + 1, + 1, + 1 + ], + [ + 177, + 42, + 1, + 1, + 0 + ], + [ + 177, + 44, + 1, + 1, + 1 + ], + [ + 177, + 45, + 1, + 1, + 0 + ], + [ + 178, + 24, + 1, + 1, + 1 + ], + [ + 178, + 39, + 1, + 1, + 0 + ], + [ + 178, + 41, + 1, + 1, + 1 + ], + [ + 178, + 50, + 1, + 1, + 0 + ], + [ + 179, + 24, + 1, + 1, + 1 + ], + [ + 179, + 39, + 1, + 1, + 0 + ], + [ + 179, + 41, + 1, + 1, + 1 + ], + [ + 179, + 49, + 1, + 1, + 0 + ], + [ + 180, + 24, + 1, + 1, + 1 + ], + [ + 180, + 39, + 1, + 1, + 0 + ], + [ + 180, + 41, + 1, + 1, + 1 + ], + [ + 180, + 46, + 1, + 1, + 0 + ], + [ + 181, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 232, + "covered": 210, + "percent": 90 + }, + "functions": { + "count": 115, + "covered": 114, + "percent": 99 + }, + "instantiations": { + "count": 115, + "covered": 114, + "percent": 99 + }, + "regions": { + "count": 119, + "covered": 117, + "notcovered": 2, + "percent": 98 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift", + "segments": [ + [ + 28, + 27, + 3, + 1, + 1 + ], + [ + 31, + 56, + 187, + 1, + 1 + ], + [ + 32, + 35, + 175, + 1, + 1 + ], + [ + 32, + 46, + 187, + 1, + 0 + ], + [ + 33, + 10, + 3, + 1, + 0 + ], + [ + 37, + 6, + 0, + 0, + 0 + ], + [ + 39, + 30, + 3, + 1, + 1 + ], + [ + 42, + 65, + 3, + 1, + 1 + ], + [ + 44, + 10, + 3, + 1, + 1 + ], + [ + 45, + 6, + 0, + 0, + 0 + ], + [ + 47, + 75, + 2, + 1, + 1 + ], + [ + 49, + 23, + 2, + 1, + 1 + ], + [ + 49, + 29, + 2, + 1, + 0 + ], + [ + 49, + 31, + 0, + 1, + 1 + ], + [ + 49, + 57, + 2, + 1, + 0 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 52, + 53, + 1, + 1, + 1 + ], + [ + 54, + 22, + 1, + 1, + 1 + ], + [ + 54, + 26, + 1, + 1, + 0 + ], + [ + 55, + 6, + 0, + 0, + 0 + ], + [ + 57, + 32, + 1, + 1, + 1 + ], + [ + 60, + 25, + 1, + 1, + 1 + ], + [ + 60, + 29, + 1, + 1, + 0 + ], + [ + 61, + 24, + 1, + 1, + 1 + ], + [ + 61, + 35, + 1, + 1, + 0 + ], + [ + 61, + 37, + 1, + 1, + 1 + ], + [ + 61, + 39, + 1, + 1, + 0 + ], + [ + 62, + 6, + 0, + 0, + 0 + ], + [ + 64, + 42, + 1, + 1, + 1 + ], + [ + 67, + 25, + 1, + 1, + 1 + ], + [ + 67, + 29, + 1, + 1, + 0 + ], + [ + 69, + 63, + 0, + 1, + 1 + ], + [ + 69, + 64, + 1, + 1, + 0 + ], + [ + 70, + 23, + 1, + 1, + 1 + ], + [ + 70, + 36, + 1, + 1, + 0 + ], + [ + 70, + 38, + 0, + 1, + 1 + ], + [ + 70, + 90, + 1, + 1, + 0 + ], + [ + 71, + 24, + 1, + 1, + 1 + ], + [ + 71, + 35, + 1, + 1, + 0 + ], + [ + 71, + 37, + 1, + 1, + 1 + ], + [ + 71, + 46, + 1, + 1, + 0 + ], + [ + 72, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 56, + "covered": 53, + "percent": 94 + }, + "functions": { + "count": 20, + "covered": 17, + "percent": 85 + }, + "instantiations": { + "count": 20, + "covered": 17, + "percent": 85 + }, + "regions": { + "count": 22, + "covered": 19, + "notcovered": 3, + "percent": 86 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift", + "segments": [ + [ + 26, + 74, + 0, + 1, + 1 + ], + [ + 35, + 6, + 0, + 0, + 0 + ], + [ + 39, + 32, + 1, + 1, + 1 + ], + [ + 43, + 33, + 2, + 1, + 1 + ], + [ + 45, + 29, + 2, + 1, + 1 + ], + [ + 45, + 38, + 2, + 1, + 0 + ], + [ + 45, + 40, + 0, + 1, + 1 + ], + [ + 45, + 66, + 2, + 1, + 0 + ], + [ + 46, + 28, + 2, + 1, + 1 + ], + [ + 46, + 44, + 2, + 1, + 0 + ], + [ + 46, + 46, + 2, + 1, + 1 + ], + [ + 46, + 57, + 2, + 1, + 0 + ], + [ + 46, + 59, + 0, + 1, + 1 + ], + [ + 46, + 128, + 2, + 1, + 0 + ], + [ + 47, + 28, + 2, + 1, + 1 + ], + [ + 47, + 40, + 2, + 1, + 0 + ], + [ + 47, + 42, + 2, + 1, + 1 + ], + [ + 47, + 51, + 2, + 1, + 0 + ], + [ + 47, + 53, + 0, + 1, + 1 + ], + [ + 47, + 117, + 2, + 1, + 0 + ], + [ + 48, + 27, + 2, + 1, + 1 + ], + [ + 48, + 67, + 0, + 1, + 1 + ], + [ + 48, + 97, + 2, + 1, + 0 + ], + [ + 48, + 99, + 0, + 1, + 1 + ], + [ + 48, + 191, + 2, + 1, + 0 + ], + [ + 50, + 10, + 1, + 1, + 0 + ], + [ + 51, + 35, + 2, + 1, + 1 + ], + [ + 53, + 26, + 2, + 1, + 1 + ], + [ + 53, + 35, + 2, + 1, + 0 + ], + [ + 53, + 37, + 0, + 1, + 1 + ], + [ + 53, + 116, + 2, + 1, + 0 + ], + [ + 55, + 10, + 1, + 1, + 0 + ], + [ + 56, + 20, + 2, + 1, + 1 + ], + [ + 59, + 10, + 1, + 1, + 0 + ], + [ + 61, + 35, + 2, + 1, + 1 + ], + [ + 62, + 71, + 2, + 1, + 1 + ], + [ + 63, + 33, + 2, + 1, + 1 + ], + [ + 63, + 41, + 2, + 1, + 0 + ], + [ + 63, + 43, + 0, + 1, + 1 + ], + [ + 63, + 91, + 2, + 1, + 0 + ], + [ + 66, + 10, + 1, + 1, + 0 + ], + [ + 67, + 6, + 0, + 0, + 0 + ], + [ + 69, + 32, + 1, + 1, + 1 + ], + [ + 80, + 28, + 2, + 1, + 1 + ], + [ + 82, + 87, + 0, + 1, + 1 + ], + [ + 85, + 14, + 2, + 1, + 1 + ], + [ + 86, + 23, + 2, + 1, + 1 + ], + [ + 86, + 56, + 2, + 1, + 1 + ], + [ + 86, + 85, + 2, + 1, + 0 + ], + [ + 86, + 89, + 2, + 1, + 1 + ], + [ + 86, + 118, + 2, + 1, + 0 + ], + [ + 87, + 28, + 2, + 1, + 1 + ], + [ + 87, + 53, + 2, + 1, + 0 + ], + [ + 87, + 55, + 2, + 1, + 1 + ], + [ + 87, + 84, + 2, + 1, + 0 + ], + [ + 87, + 86, + 0, + 1, + 1 + ], + [ + 87, + 126, + 2, + 1, + 0 + ], + [ + 88, + 53, + 6, + 1, + 1 + ], + [ + 89, + 65, + 0, + 1, + 1 + ], + [ + 92, + 18, + 6, + 1, + 1 + ], + [ + 93, + 32, + 6, + 1, + 1 + ], + [ + 93, + 33, + 6, + 1, + 0 + ], + [ + 93, + 35, + 6, + 1, + 1 + ], + [ + 93, + 40, + 6, + 1, + 0 + ], + [ + 94, + 14, + 2, + 1, + 1 + ], + [ + 96, + 10, + 1, + 1, + 0 + ], + [ + 105, + 28, + 2, + 1, + 1 + ], + [ + 107, + 88, + 0, + 1, + 1 + ], + [ + 110, + 14, + 2, + 1, + 1 + ], + [ + 111, + 23, + 2, + 1, + 1 + ], + [ + 111, + 56, + 2, + 1, + 1 + ], + [ + 111, + 85, + 2, + 1, + 0 + ], + [ + 111, + 89, + 2, + 1, + 1 + ], + [ + 111, + 144, + 2, + 1, + 0 + ], + [ + 112, + 28, + 2, + 1, + 1 + ], + [ + 112, + 53, + 2, + 1, + 0 + ], + [ + 112, + 55, + 2, + 1, + 1 + ], + [ + 112, + 84, + 2, + 1, + 0 + ], + [ + 112, + 86, + 0, + 1, + 1 + ], + [ + 112, + 126, + 2, + 1, + 0 + ], + [ + 113, + 53, + 6, + 1, + 1 + ], + [ + 114, + 65, + 0, + 1, + 1 + ], + [ + 117, + 18, + 6, + 1, + 1 + ], + [ + 118, + 32, + 6, + 1, + 1 + ], + [ + 118, + 33, + 6, + 1, + 0 + ], + [ + 118, + 35, + 6, + 1, + 1 + ], + [ + 118, + 40, + 6, + 1, + 0 + ], + [ + 119, + 14, + 2, + 1, + 1 + ], + [ + 121, + 10, + 1, + 1, + 0 + ], + [ + 125, + 28, + 2, + 1, + 1 + ], + [ + 127, + 28, + 2, + 1, + 1 + ], + [ + 127, + 53, + 2, + 1, + 0 + ], + [ + 127, + 55, + 2, + 1, + 1 + ], + [ + 127, + 95, + 2, + 1, + 0 + ], + [ + 127, + 97, + 0, + 1, + 1 + ], + [ + 127, + 137, + 2, + 1, + 0 + ], + [ + 128, + 53, + 6, + 1, + 1 + ], + [ + 129, + 76, + 0, + 1, + 1 + ], + [ + 132, + 18, + 6, + 1, + 1 + ], + [ + 133, + 32, + 6, + 1, + 1 + ], + [ + 133, + 33, + 6, + 1, + 0 + ], + [ + 133, + 35, + 6, + 1, + 1 + ], + [ + 133, + 40, + 6, + 1, + 0 + ], + [ + 134, + 14, + 2, + 1, + 1 + ], + [ + 136, + 10, + 1, + 1, + 0 + ], + [ + 138, + 20, + 4, + 1, + 1 + ], + [ + 141, + 10, + 1, + 1, + 0 + ], + [ + 143, + 47, + 2, + 1, + 1 + ], + [ + 144, + 130, + 2, + 1, + 1 + ], + [ + 145, + 33, + 2, + 1, + 1 + ], + [ + 145, + 41, + 2, + 1, + 0 + ], + [ + 145, + 43, + 0, + 1, + 1 + ], + [ + 145, + 91, + 2, + 1, + 0 + ], + [ + 148, + 10, + 1, + 1, + 0 + ], + [ + 149, + 9, + 2, + 1, + 1 + ], + [ + 150, + 100, + 2, + 1, + 1 + ], + [ + 151, + 33, + 2, + 1, + 1 + ], + [ + 151, + 41, + 2, + 1, + 0 + ], + [ + 151, + 43, + 0, + 1, + 1 + ], + [ + 151, + 91, + 2, + 1, + 0 + ], + [ + 154, + 10, + 1, + 1, + 0 + ], + [ + 155, + 6, + 0, + 0, + 0 + ], + [ + 157, + 50, + 2, + 1, + 1 + ], + [ + 161, + 103, + 4, + 1, + 1 + ], + [ + 163, + 33, + 4, + 1, + 1 + ], + [ + 163, + 35, + 4, + 1, + 0 + ], + [ + 163, + 37, + 0, + 1, + 1 + ], + [ + 163, + 86, + 4, + 1, + 0 + ], + [ + 164, + 32, + 4, + 1, + 1 + ], + [ + 164, + 46, + 4, + 1, + 0 + ], + [ + 164, + 48, + 4, + 1, + 1 + ], + [ + 164, + 50, + 4, + 1, + 0 + ], + [ + 164, + 52, + 0, + 1, + 1 + ], + [ + 164, + 103, + 4, + 1, + 0 + ], + [ + 167, + 14, + 2, + 1, + 0 + ], + [ + 173, + 33, + 4, + 1, + 1 + ], + [ + 175, + 29, + 4, + 1, + 1 + ], + [ + 175, + 31, + 4, + 1, + 0 + ], + [ + 175, + 33, + 0, + 1, + 1 + ], + [ + 175, + 83, + 4, + 1, + 0 + ], + [ + 176, + 28, + 4, + 1, + 1 + ], + [ + 176, + 42, + 4, + 1, + 0 + ], + [ + 176, + 44, + 4, + 1, + 1 + ], + [ + 176, + 46, + 4, + 1, + 0 + ], + [ + 176, + 48, + 0, + 1, + 1 + ], + [ + 176, + 100, + 4, + 1, + 0 + ], + [ + 179, + 10, + 2, + 1, + 0 + ], + [ + 181, + 35, + 4, + 1, + 1 + ], + [ + 182, + 62, + 4, + 1, + 1 + ], + [ + 183, + 33, + 4, + 1, + 1 + ], + [ + 183, + 41, + 4, + 1, + 0 + ], + [ + 183, + 43, + 0, + 1, + 1 + ], + [ + 183, + 91, + 4, + 1, + 0 + ], + [ + 186, + 10, + 2, + 1, + 0 + ], + [ + 187, + 6, + 0, + 0, + 0 + ], + [ + 189, + 45, + 1, + 1, + 1 + ], + [ + 191, + 6, + 0, + 0, + 0 + ], + [ + 193, + 59, + 1, + 1, + 1 + ], + [ + 195, + 6, + 0, + 0, + 0 + ], + [ + 200, + 33, + 0, + 1, + 1 + ], + [ + 202, + 50, + 0, + 1, + 1 + ], + [ + 202, + 57, + 0, + 1, + 0 + ], + [ + 203, + 53, + 0, + 1, + 1 + ], + [ + 203, + 60, + 0, + 1, + 0 + ], + [ + 204, + 61, + 0, + 1, + 1 + ], + [ + 204, + 68, + 0, + 1, + 0 + ], + [ + 205, + 16, + 0, + 1, + 1 + ], + [ + 207, + 14, + 0, + 1, + 0 + ], + [ + 207, + 21, + 0, + 1, + 1 + ], + [ + 207, + 23, + 0, + 1, + 1 + ], + [ + 209, + 10, + 0, + 0, + 0 + ], + [ + 214, + 27, + 1, + 1, + 1 + ], + [ + 217, + 34, + 2, + 1, + 1 + ], + [ + 218, + 29, + 2, + 1, + 1 + ], + [ + 218, + 34, + 2, + 1, + 0 + ], + [ + 219, + 28, + 2, + 1, + 1 + ], + [ + 219, + 54, + 2, + 1, + 0 + ], + [ + 219, + 56, + 2, + 1, + 1 + ], + [ + 219, + 61, + 2, + 1, + 0 + ], + [ + 220, + 26, + 2, + 1, + 1 + ], + [ + 220, + 50, + 2, + 1, + 0 + ], + [ + 225, + 10, + 1, + 1, + 0 + ], + [ + 227, + 34, + 4, + 1, + 1 + ], + [ + 228, + 29, + 4, + 1, + 1 + ], + [ + 228, + 34, + 4, + 1, + 0 + ], + [ + 229, + 28, + 4, + 1, + 1 + ], + [ + 229, + 52, + 4, + 1, + 0 + ], + [ + 229, + 54, + 4, + 1, + 1 + ], + [ + 229, + 59, + 4, + 1, + 0 + ], + [ + 230, + 26, + 4, + 1, + 1 + ], + [ + 230, + 53, + 4, + 1, + 0 + ], + [ + 235, + 10, + 1, + 1, + 0 + ], + [ + 238, + 39, + 2, + 1, + 1 + ], + [ + 239, + 29, + 2, + 1, + 1 + ], + [ + 239, + 55, + 2, + 1, + 0 + ], + [ + 240, + 29, + 2, + 1, + 1 + ], + [ + 240, + 53, + 2, + 1, + 0 + ], + [ + 243, + 10, + 1, + 1, + 0 + ], + [ + 248, + 37, + 2, + 1, + 1 + ], + [ + 249, + 29, + 2, + 1, + 1 + ], + [ + 249, + 55, + 2, + 1, + 0 + ], + [ + 250, + 29, + 2, + 1, + 1 + ], + [ + 250, + 53, + 2, + 1, + 0 + ], + [ + 253, + 10, + 1, + 1, + 0 + ], + [ + 255, + 38, + 2, + 1, + 1 + ], + [ + 256, + 29, + 2, + 1, + 1 + ], + [ + 256, + 53, + 2, + 1, + 0 + ], + [ + 259, + 10, + 1, + 1, + 0 + ], + [ + 261, + 47, + 2, + 1, + 1 + ], + [ + 262, + 77, + 2, + 1, + 1 + ], + [ + 263, + 33, + 2, + 1, + 1 + ], + [ + 263, + 41, + 2, + 1, + 0 + ], + [ + 263, + 43, + 0, + 1, + 1 + ], + [ + 263, + 91, + 2, + 1, + 0 + ], + [ + 264, + 33, + 2, + 1, + 1 + ], + [ + 264, + 58, + 2, + 1, + 0 + ], + [ + 265, + 33, + 2, + 1, + 1 + ], + [ + 265, + 61, + 2, + 1, + 0 + ], + [ + 266, + 32, + 2, + 1, + 1 + ], + [ + 266, + 64, + 2, + 1, + 0 + ], + [ + 266, + 66, + 2, + 1, + 1 + ], + [ + 266, + 74, + 2, + 1, + 0 + ], + [ + 267, + 32, + 2, + 1, + 1 + ], + [ + 267, + 67, + 2, + 1, + 0 + ], + [ + 267, + 69, + 2, + 1, + 1 + ], + [ + 267, + 75, + 2, + 1, + 0 + ], + [ + 270, + 10, + 1, + 1, + 0 + ], + [ + 270, + 12, + 2, + 1, + 1 + ], + [ + 271, + 78, + 2, + 1, + 1 + ], + [ + 272, + 33, + 2, + 1, + 1 + ], + [ + 272, + 41, + 2, + 1, + 0 + ], + [ + 272, + 43, + 0, + 1, + 1 + ], + [ + 272, + 91, + 2, + 1, + 0 + ], + [ + 273, + 30, + 2, + 1, + 1 + ], + [ + 273, + 55, + 2, + 1, + 0 + ], + [ + 274, + 33, + 2, + 1, + 1 + ], + [ + 274, + 61, + 2, + 1, + 0 + ], + [ + 275, + 32, + 2, + 1, + 1 + ], + [ + 275, + 67, + 2, + 1, + 0 + ], + [ + 275, + 69, + 2, + 1, + 1 + ], + [ + 275, + 76, + 2, + 1, + 0 + ], + [ + 277, + 20, + 2, + 1, + 1 + ], + [ + 279, + 37, + 2, + 1, + 1 + ], + [ + 279, + 41, + 2, + 1, + 0 + ], + [ + 280, + 36, + 2, + 1, + 1 + ], + [ + 280, + 40, + 2, + 1, + 0 + ], + [ + 280, + 42, + 2, + 1, + 1 + ], + [ + 280, + 51, + 2, + 1, + 0 + ], + [ + 281, + 25, + 0, + 1, + 1 + ], + [ + 283, + 18, + 2, + 1, + 1 + ], + [ + 286, + 14, + 2, + 1, + 0 + ], + [ + 287, + 10, + 1, + 1, + 0 + ], + [ + 288, + 6, + 0, + 0, + 0 + ], + [ + 290, + 45, + 1, + 1, + 1 + ], + [ + 294, + 13, + 2, + 1, + 1 + ], + [ + 297, + 14, + 1, + 1, + 0 + ], + [ + 298, + 13, + 2, + 1, + 1 + ], + [ + 301, + 10, + 1, + 1, + 0 + ], + [ + 303, + 33, + 2, + 1, + 1 + ], + [ + 305, + 27, + 2, + 1, + 1 + ], + [ + 305, + 68, + 0, + 1, + 1 + ], + [ + 305, + 73, + 2, + 1, + 0 + ], + [ + 306, + 27, + 2, + 1, + 1 + ], + [ + 306, + 68, + 0, + 1, + 1 + ], + [ + 306, + 73, + 2, + 1, + 0 + ], + [ + 308, + 10, + 1, + 1, + 0 + ], + [ + 310, + 35, + 2, + 1, + 1 + ], + [ + 311, + 69, + 2, + 1, + 1 + ], + [ + 313, + 14, + 2, + 1, + 0 + ], + [ + 314, + 10, + 1, + 1, + 0 + ], + [ + 315, + 6, + 0, + 0, + 0 + ], + [ + 317, + 51, + 1, + 1, + 1 + ], + [ + 321, + 13, + 2, + 1, + 1 + ], + [ + 324, + 14, + 1, + 1, + 0 + ], + [ + 325, + 13, + 2, + 1, + 1 + ], + [ + 328, + 14, + 1, + 1, + 0 + ], + [ + 331, + 13, + 2, + 1, + 1 + ], + [ + 334, + 14, + 1, + 1, + 0 + ], + [ + 335, + 13, + 2, + 1, + 1 + ], + [ + 338, + 14, + 1, + 1, + 0 + ], + [ + 340, + 33, + 2, + 1, + 1 + ], + [ + 342, + 27, + 2, + 1, + 1 + ], + [ + 342, + 68, + 0, + 1, + 1 + ], + [ + 342, + 73, + 2, + 1, + 0 + ], + [ + 343, + 27, + 2, + 1, + 1 + ], + [ + 343, + 68, + 0, + 1, + 1 + ], + [ + 343, + 73, + 2, + 1, + 0 + ], + [ + 344, + 26, + 2, + 1, + 1 + ], + [ + 344, + 54, + 2, + 1, + 0 + ], + [ + 345, + 26, + 2, + 1, + 1 + ], + [ + 345, + 54, + 2, + 1, + 0 + ], + [ + 347, + 10, + 1, + 1, + 0 + ], + [ + 349, + 35, + 2, + 1, + 1 + ], + [ + 351, + 27, + 2, + 1, + 1 + ], + [ + 351, + 68, + 0, + 1, + 1 + ], + [ + 351, + 73, + 2, + 1, + 0 + ], + [ + 352, + 27, + 2, + 1, + 1 + ], + [ + 352, + 68, + 0, + 1, + 1 + ], + [ + 352, + 73, + 2, + 1, + 0 + ], + [ + 353, + 26, + 2, + 1, + 1 + ], + [ + 353, + 54, + 2, + 1, + 0 + ], + [ + 354, + 26, + 2, + 1, + 1 + ], + [ + 354, + 54, + 2, + 1, + 0 + ], + [ + 356, + 10, + 1, + 1, + 0 + ], + [ + 358, + 47, + 2, + 1, + 1 + ], + [ + 359, + 69, + 2, + 1, + 1 + ], + [ + 361, + 14, + 2, + 1, + 0 + ], + [ + 362, + 10, + 1, + 1, + 0 + ], + [ + 362, + 13, + 2, + 1, + 1 + ], + [ + 363, + 68, + 2, + 1, + 1 + ], + [ + 365, + 14, + 2, + 1, + 0 + ], + [ + 366, + 10, + 1, + 1, + 0 + ], + [ + 367, + 6, + 0, + 0, + 0 + ], + [ + 369, + 30, + 1, + 1, + 1 + ], + [ + 372, + 32, + 4, + 1, + 1 + ], + [ + 373, + 29, + 4, + 1, + 1 + ], + [ + 373, + 34, + 4, + 1, + 0 + ], + [ + 374, + 28, + 4, + 1, + 1 + ], + [ + 374, + 52, + 4, + 1, + 0 + ], + [ + 374, + 54, + 4, + 1, + 1 + ], + [ + 374, + 59, + 4, + 1, + 0 + ], + [ + 376, + 42, + 2, + 1, + 1 + ], + [ + 379, + 14, + 2, + 1, + 1 + ], + [ + 383, + 10, + 1, + 1, + 0 + ], + [ + 386, + 39, + 2, + 1, + 1 + ], + [ + 387, + 29, + 2, + 1, + 1 + ], + [ + 387, + 53, + 2, + 1, + 0 + ], + [ + 388, + 50, + 2, + 1, + 1 + ], + [ + 390, + 14, + 2, + 1, + 1 + ], + [ + 392, + 10, + 1, + 1, + 0 + ], + [ + 394, + 47, + 2, + 1, + 1 + ], + [ + 395, + 77, + 2, + 1, + 1 + ], + [ + 396, + 33, + 2, + 1, + 1 + ], + [ + 396, + 41, + 2, + 1, + 0 + ], + [ + 396, + 43, + 0, + 1, + 1 + ], + [ + 396, + 91, + 2, + 1, + 0 + ], + [ + 397, + 33, + 2, + 1, + 1 + ], + [ + 397, + 61, + 2, + 1, + 0 + ], + [ + 398, + 32, + 2, + 1, + 1 + ], + [ + 398, + 67, + 2, + 1, + 0 + ], + [ + 398, + 69, + 2, + 1, + 1 + ], + [ + 398, + 75, + 2, + 1, + 0 + ], + [ + 400, + 20, + 2, + 1, + 1 + ], + [ + 402, + 37, + 2, + 1, + 1 + ], + [ + 402, + 41, + 2, + 1, + 0 + ], + [ + 403, + 36, + 2, + 1, + 1 + ], + [ + 403, + 40, + 2, + 1, + 0 + ], + [ + 403, + 42, + 2, + 1, + 1 + ], + [ + 403, + 48, + 2, + 1, + 0 + ], + [ + 404, + 25, + 0, + 1, + 1 + ], + [ + 406, + 18, + 2, + 1, + 1 + ], + [ + 409, + 14, + 2, + 1, + 0 + ], + [ + 410, + 10, + 1, + 1, + 0 + ], + [ + 410, + 12, + 2, + 1, + 1 + ], + [ + 411, + 76, + 2, + 1, + 1 + ], + [ + 412, + 33, + 2, + 1, + 1 + ], + [ + 412, + 41, + 2, + 1, + 0 + ], + [ + 412, + 43, + 0, + 1, + 1 + ], + [ + 412, + 91, + 2, + 1, + 0 + ], + [ + 413, + 30, + 2, + 1, + 1 + ], + [ + 413, + 58, + 2, + 1, + 0 + ], + [ + 414, + 32, + 2, + 1, + 1 + ], + [ + 414, + 52, + 2, + 1, + 0 + ], + [ + 414, + 54, + 2, + 1, + 1 + ], + [ + 414, + 68, + 2, + 1, + 0 + ], + [ + 416, + 20, + 2, + 1, + 1 + ], + [ + 418, + 34, + 2, + 1, + 1 + ], + [ + 418, + 38, + 2, + 1, + 0 + ], + [ + 419, + 25, + 0, + 1, + 1 + ], + [ + 421, + 18, + 2, + 1, + 1 + ], + [ + 424, + 14, + 2, + 1, + 0 + ], + [ + 425, + 10, + 1, + 1, + 0 + ], + [ + 426, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 861, + "covered": 798, + "percent": 92 + }, + "functions": { + "count": 177, + "covered": 145, + "percent": 81 + }, + "instantiations": { + "count": 177, + "covered": 145, + "percent": 81 + }, + "regions": { + "count": 209, + "covered": 166, + "notcovered": 43, + "percent": 79 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift", + "segments": [ + [ + 31, + 74, + 0, + 1, + 1 + ], + [ + 69, + 6, + 0, + 0, + 0 + ], + [ + 74, + 38, + 29, + 1, + 1 + ], + [ + 76, + 10, + 0, + 0, + 0 + ], + [ + 78, + 62, + 10, + 1, + 1 + ], + [ + 80, + 10, + 0, + 0, + 0 + ], + [ + 89, + 31, + 1, + 1, + 1 + ], + [ + 90, + 32, + 2, + 1, + 1 + ], + [ + 91, + 64, + 2, + 1, + 1 + ], + [ + 92, + 33, + 2, + 1, + 1 + ], + [ + 92, + 41, + 2, + 1, + 0 + ], + [ + 92, + 43, + 0, + 1, + 1 + ], + [ + 92, + 91, + 2, + 1, + 0 + ], + [ + 93, + 32, + 2, + 1, + 1 + ], + [ + 93, + 52, + 2, + 1, + 0 + ], + [ + 93, + 54, + 2, + 1, + 1 + ], + [ + 93, + 71, + 2, + 1, + 0 + ], + [ + 93, + 73, + 0, + 1, + 1 + ], + [ + 93, + 139, + 2, + 1, + 0 + ], + [ + 94, + 33, + 2, + 1, + 1 + ], + [ + 94, + 58, + 2, + 1, + 0 + ], + [ + 94, + 60, + 0, + 1, + 1 + ], + [ + 94, + 102, + 2, + 1, + 0 + ], + [ + 96, + 20, + 2, + 1, + 1 + ], + [ + 98, + 36, + 2, + 1, + 1 + ], + [ + 98, + 40, + 2, + 1, + 0 + ], + [ + 98, + 42, + 2, + 1, + 1 + ], + [ + 98, + 104, + 2, + 1, + 0 + ], + [ + 99, + 25, + 0, + 1, + 1 + ], + [ + 101, + 18, + 2, + 1, + 1 + ], + [ + 103, + 14, + 2, + 1, + 0 + ], + [ + 104, + 10, + 1, + 1, + 0 + ], + [ + 105, + 6, + 0, + 0, + 0 + ], + [ + 107, + 42, + 1, + 1, + 1 + ], + [ + 108, + 35, + 2, + 1, + 1 + ], + [ + 109, + 74, + 2, + 1, + 1 + ], + [ + 110, + 32, + 2, + 1, + 1 + ], + [ + 110, + 52, + 2, + 1, + 0 + ], + [ + 110, + 54, + 2, + 1, + 1 + ], + [ + 110, + 71, + 2, + 1, + 0 + ], + [ + 110, + 73, + 0, + 1, + 1 + ], + [ + 110, + 139, + 2, + 1, + 0 + ], + [ + 112, + 20, + 2, + 1, + 1 + ], + [ + 115, + 36, + 2, + 1, + 1 + ], + [ + 115, + 40, + 2, + 1, + 0 + ], + [ + 115, + 42, + 2, + 1, + 1 + ], + [ + 115, + 43, + 2, + 1, + 0 + ], + [ + 115, + 45, + 0, + 1, + 1 + ], + [ + 115, + 102, + 2, + 1, + 0 + ], + [ + 116, + 25, + 0, + 1, + 1 + ], + [ + 118, + 18, + 2, + 1, + 1 + ], + [ + 120, + 14, + 2, + 1, + 0 + ], + [ + 121, + 10, + 1, + 1, + 0 + ], + [ + 122, + 6, + 0, + 0, + 0 + ], + [ + 124, + 39, + 1, + 1, + 1 + ], + [ + 125, + 35, + 2, + 1, + 1 + ], + [ + 126, + 77, + 2, + 1, + 1 + ], + [ + 127, + 32, + 2, + 1, + 1 + ], + [ + 127, + 52, + 2, + 1, + 0 + ], + [ + 127, + 54, + 2, + 1, + 1 + ], + [ + 127, + 71, + 2, + 1, + 0 + ], + [ + 127, + 73, + 0, + 1, + 1 + ], + [ + 127, + 139, + 2, + 1, + 0 + ], + [ + 129, + 20, + 2, + 1, + 1 + ], + [ + 131, + 36, + 2, + 1, + 1 + ], + [ + 131, + 40, + 2, + 1, + 0 + ], + [ + 131, + 42, + 2, + 1, + 1 + ], + [ + 131, + 48, + 2, + 1, + 0 + ], + [ + 132, + 25, + 0, + 1, + 1 + ], + [ + 134, + 18, + 2, + 1, + 1 + ], + [ + 136, + 14, + 2, + 1, + 0 + ], + [ + 137, + 10, + 1, + 1, + 0 + ], + [ + 138, + 6, + 0, + 0, + 0 + ], + [ + 140, + 25, + 1, + 1, + 1 + ], + [ + 141, + 48, + 2, + 1, + 1 + ], + [ + 145, + 98, + 2, + 1, + 1 + ], + [ + 146, + 33, + 2, + 1, + 1 + ], + [ + 146, + 41, + 2, + 1, + 0 + ], + [ + 146, + 43, + 0, + 1, + 1 + ], + [ + 146, + 91, + 2, + 1, + 0 + ], + [ + 147, + 32, + 2, + 1, + 1 + ], + [ + 147, + 52, + 2, + 1, + 0 + ], + [ + 147, + 54, + 2, + 1, + 1 + ], + [ + 147, + 71, + 2, + 1, + 0 + ], + [ + 147, + 73, + 0, + 1, + 1 + ], + [ + 147, + 139, + 2, + 1, + 0 + ], + [ + 149, + 20, + 2, + 1, + 1 + ], + [ + 152, + 36, + 2, + 1, + 1 + ], + [ + 152, + 42, + 2, + 1, + 0 + ], + [ + 152, + 44, + 2, + 1, + 1 + ], + [ + 152, + 49, + 2, + 1, + 0 + ], + [ + 152, + 51, + 0, + 1, + 1 + ], + [ + 152, + 117, + 2, + 1, + 0 + ], + [ + 153, + 36, + 2, + 1, + 1 + ], + [ + 153, + 40, + 2, + 1, + 0 + ], + [ + 153, + 42, + 2, + 1, + 1 + ], + [ + 153, + 78, + 2, + 1, + 0 + ], + [ + 153, + 80, + 0, + 1, + 1 + ], + [ + 153, + 124, + 2, + 1, + 0 + ], + [ + 154, + 25, + 0, + 1, + 1 + ], + [ + 156, + 18, + 2, + 1, + 1 + ], + [ + 159, + 14, + 2, + 1, + 0 + ], + [ + 160, + 10, + 1, + 1, + 0 + ], + [ + 161, + 6, + 0, + 0, + 0 + ], + [ + 163, + 26, + 1, + 1, + 1 + ], + [ + 164, + 48, + 2, + 1, + 1 + ], + [ + 168, + 71, + 2, + 1, + 1 + ], + [ + 169, + 33, + 2, + 1, + 1 + ], + [ + 169, + 41, + 2, + 1, + 0 + ], + [ + 169, + 43, + 0, + 1, + 1 + ], + [ + 169, + 91, + 2, + 1, + 0 + ], + [ + 170, + 32, + 2, + 1, + 1 + ], + [ + 170, + 52, + 2, + 1, + 0 + ], + [ + 170, + 54, + 2, + 1, + 1 + ], + [ + 170, + 71, + 2, + 1, + 0 + ], + [ + 170, + 73, + 0, + 1, + 1 + ], + [ + 170, + 139, + 2, + 1, + 0 + ], + [ + 172, + 20, + 2, + 1, + 1 + ], + [ + 175, + 36, + 2, + 1, + 1 + ], + [ + 175, + 42, + 2, + 1, + 0 + ], + [ + 175, + 44, + 2, + 1, + 1 + ], + [ + 175, + 49, + 2, + 1, + 0 + ], + [ + 175, + 51, + 0, + 1, + 1 + ], + [ + 175, + 117, + 2, + 1, + 0 + ], + [ + 176, + 36, + 2, + 1, + 1 + ], + [ + 176, + 40, + 2, + 1, + 0 + ], + [ + 176, + 42, + 2, + 1, + 1 + ], + [ + 176, + 50, + 2, + 1, + 0 + ], + [ + 176, + 52, + 0, + 1, + 1 + ], + [ + 176, + 94, + 2, + 1, + 0 + ], + [ + 177, + 25, + 0, + 1, + 1 + ], + [ + 179, + 18, + 2, + 1, + 1 + ], + [ + 182, + 14, + 2, + 1, + 0 + ], + [ + 182, + 33, + 2, + 1, + 1 + ], + [ + 184, + 14, + 2, + 1, + 0 + ], + [ + 185, + 10, + 1, + 1, + 0 + ], + [ + 186, + 6, + 0, + 0, + 0 + ], + [ + 188, + 36, + 1, + 1, + 1 + ], + [ + 189, + 35, + 2, + 1, + 1 + ], + [ + 190, + 71, + 2, + 1, + 1 + ], + [ + 191, + 32, + 2, + 1, + 1 + ], + [ + 191, + 52, + 2, + 1, + 0 + ], + [ + 191, + 54, + 2, + 1, + 1 + ], + [ + 191, + 71, + 2, + 1, + 0 + ], + [ + 191, + 73, + 0, + 1, + 1 + ], + [ + 191, + 139, + 2, + 1, + 0 + ], + [ + 192, + 33, + 2, + 1, + 1 + ], + [ + 192, + 58, + 2, + 1, + 0 + ], + [ + 192, + 60, + 0, + 1, + 1 + ], + [ + 192, + 102, + 2, + 1, + 0 + ], + [ + 193, + 20, + 2, + 1, + 1 + ], + [ + 195, + 36, + 2, + 1, + 1 + ], + [ + 195, + 40, + 2, + 1, + 0 + ], + [ + 195, + 42, + 2, + 1, + 1 + ], + [ + 195, + 107, + 2, + 1, + 0 + ], + [ + 196, + 25, + 0, + 1, + 1 + ], + [ + 198, + 18, + 2, + 1, + 1 + ], + [ + 200, + 14, + 2, + 1, + 0 + ], + [ + 201, + 10, + 1, + 1, + 0 + ], + [ + 202, + 6, + 0, + 0, + 0 + ], + [ + 204, + 29, + 1, + 1, + 1 + ], + [ + 205, + 35, + 2, + 1, + 1 + ], + [ + 206, + 72, + 2, + 1, + 1 + ], + [ + 207, + 32, + 2, + 1, + 1 + ], + [ + 207, + 52, + 2, + 1, + 0 + ], + [ + 207, + 54, + 2, + 1, + 1 + ], + [ + 207, + 87, + 2, + 1, + 0 + ], + [ + 207, + 89, + 0, + 1, + 1 + ], + [ + 207, + 155, + 2, + 1, + 0 + ], + [ + 208, + 33, + 2, + 1, + 1 + ], + [ + 208, + 58, + 2, + 1, + 0 + ], + [ + 208, + 60, + 0, + 1, + 1 + ], + [ + 208, + 102, + 2, + 1, + 0 + ], + [ + 209, + 20, + 2, + 1, + 1 + ], + [ + 211, + 34, + 2, + 1, + 1 + ], + [ + 211, + 38, + 2, + 1, + 0 + ], + [ + 211, + 40, + 0, + 1, + 1 + ], + [ + 211, + 88, + 2, + 1, + 0 + ], + [ + 212, + 25, + 0, + 1, + 1 + ], + [ + 214, + 18, + 2, + 1, + 1 + ], + [ + 216, + 14, + 2, + 1, + 0 + ], + [ + 217, + 10, + 1, + 1, + 0 + ], + [ + 218, + 6, + 0, + 0, + 0 + ], + [ + 220, + 28, + 1, + 1, + 1 + ], + [ + 221, + 32, + 2, + 1, + 1 + ], + [ + 222, + 70, + 2, + 1, + 1 + ], + [ + 223, + 33, + 2, + 1, + 1 + ], + [ + 223, + 41, + 2, + 1, + 0 + ], + [ + 223, + 43, + 0, + 1, + 1 + ], + [ + 223, + 91, + 2, + 1, + 0 + ], + [ + 225, + 33, + 2, + 1, + 1 + ], + [ + 225, + 58, + 2, + 1, + 0 + ], + [ + 225, + 60, + 0, + 1, + 1 + ], + [ + 225, + 102, + 2, + 1, + 0 + ], + [ + 226, + 20, + 2, + 1, + 1 + ], + [ + 228, + 36, + 2, + 1, + 1 + ], + [ + 228, + 40, + 2, + 1, + 0 + ], + [ + 228, + 42, + 2, + 1, + 1 + ], + [ + 228, + 131, + 2, + 1, + 0 + ], + [ + 229, + 25, + 0, + 1, + 1 + ], + [ + 231, + 18, + 2, + 1, + 1 + ], + [ + 233, + 14, + 2, + 1, + 0 + ], + [ + 233, + 16, + 2, + 1, + 1 + ], + [ + 236, + 14, + 2, + 1, + 0 + ], + [ + 237, + 10, + 1, + 1, + 0 + ], + [ + 238, + 6, + 0, + 0, + 0 + ], + [ + 240, + 38, + 1, + 1, + 1 + ], + [ + 241, + 35, + 2, + 1, + 1 + ], + [ + 242, + 77, + 2, + 1, + 1 + ], + [ + 243, + 33, + 2, + 1, + 1 + ], + [ + 243, + 41, + 2, + 1, + 0 + ], + [ + 243, + 43, + 0, + 1, + 1 + ], + [ + 243, + 91, + 2, + 1, + 0 + ], + [ + 244, + 20, + 2, + 1, + 1 + ], + [ + 246, + 36, + 2, + 1, + 1 + ], + [ + 246, + 40, + 2, + 1, + 0 + ], + [ + 246, + 42, + 2, + 1, + 1 + ], + [ + 246, + 57, + 2, + 1, + 0 + ], + [ + 247, + 25, + 0, + 1, + 1 + ], + [ + 249, + 18, + 2, + 1, + 1 + ], + [ + 251, + 14, + 2, + 1, + 0 + ], + [ + 251, + 16, + 2, + 1, + 1 + ], + [ + 254, + 14, + 2, + 1, + 0 + ], + [ + 255, + 10, + 1, + 1, + 0 + ], + [ + 256, + 6, + 0, + 0, + 0 + ], + [ + 258, + 32, + 1, + 1, + 1 + ], + [ + 261, + 35, + 2, + 1, + 1 + ], + [ + 262, + 70, + 2, + 1, + 1 + ], + [ + 263, + 52, + 0, + 1, + 1 + ], + [ + 267, + 18, + 2, + 1, + 1 + ], + [ + 268, + 33, + 2, + 1, + 1 + ], + [ + 268, + 57, + 2, + 1, + 0 + ], + [ + 268, + 59, + 0, + 1, + 1 + ], + [ + 268, + 101, + 2, + 1, + 0 + ], + [ + 269, + 20, + 2, + 1, + 1 + ], + [ + 271, + 68, + 0, + 1, + 1 + ], + [ + 275, + 22, + 2, + 1, + 1 + ], + [ + 277, + 36, + 2, + 1, + 1 + ], + [ + 277, + 48, + 2, + 1, + 0 + ], + [ + 277, + 50, + 2, + 1, + 1 + ], + [ + 277, + 60, + 2, + 1, + 0 + ], + [ + 278, + 25, + 0, + 1, + 1 + ], + [ + 280, + 18, + 2, + 1, + 1 + ], + [ + 282, + 14, + 2, + 1, + 0 + ], + [ + 282, + 63, + 2, + 1, + 1 + ], + [ + 283, + 20, + 2, + 1, + 1 + ], + [ + 287, + 18, + 2, + 1, + 0 + ], + [ + 287, + 25, + 0, + 1, + 1 + ], + [ + 289, + 18, + 2, + 1, + 1 + ], + [ + 290, + 14, + 2, + 1, + 0 + ], + [ + 291, + 10, + 1, + 1, + 0 + ], + [ + 292, + 6, + 0, + 0, + 0 + ], + [ + 294, + 48, + 1, + 1, + 1 + ], + [ + 295, + 35, + 2, + 1, + 1 + ], + [ + 296, + 76, + 2, + 1, + 1 + ], + [ + 297, + 33, + 2, + 1, + 1 + ], + [ + 297, + 41, + 2, + 1, + 0 + ], + [ + 297, + 43, + 0, + 1, + 1 + ], + [ + 297, + 91, + 2, + 1, + 0 + ], + [ + 299, + 33, + 2, + 1, + 1 + ], + [ + 299, + 58, + 2, + 1, + 0 + ], + [ + 299, + 60, + 0, + 1, + 1 + ], + [ + 299, + 102, + 2, + 1, + 0 + ], + [ + 300, + 20, + 2, + 1, + 1 + ], + [ + 302, + 36, + 2, + 1, + 1 + ], + [ + 302, + 40, + 2, + 1, + 0 + ], + [ + 302, + 42, + 2, + 1, + 1 + ], + [ + 302, + 131, + 2, + 1, + 0 + ], + [ + 303, + 25, + 0, + 1, + 1 + ], + [ + 305, + 18, + 2, + 1, + 1 + ], + [ + 307, + 14, + 2, + 1, + 0 + ], + [ + 307, + 16, + 2, + 1, + 1 + ], + [ + 310, + 14, + 2, + 1, + 0 + ], + [ + 311, + 10, + 1, + 1, + 0 + ], + [ + 312, + 6, + 0, + 0, + 0 + ], + [ + 314, + 38, + 1, + 1, + 1 + ], + [ + 315, + 35, + 2, + 1, + 1 + ], + [ + 316, + 70, + 2, + 1, + 1 + ], + [ + 317, + 33, + 2, + 1, + 1 + ], + [ + 317, + 41, + 2, + 1, + 0 + ], + [ + 317, + 43, + 0, + 1, + 1 + ], + [ + 317, + 91, + 2, + 1, + 0 + ], + [ + 318, + 33, + 2, + 1, + 1 + ], + [ + 318, + 58, + 2, + 1, + 0 + ], + [ + 318, + 60, + 0, + 1, + 1 + ], + [ + 318, + 102, + 2, + 1, + 0 + ], + [ + 319, + 20, + 2, + 1, + 1 + ], + [ + 321, + 36, + 2, + 1, + 1 + ], + [ + 321, + 40, + 2, + 1, + 0 + ], + [ + 321, + 42, + 2, + 1, + 1 + ], + [ + 321, + 149, + 2, + 1, + 0 + ], + [ + 322, + 25, + 0, + 1, + 1 + ], + [ + 324, + 18, + 2, + 1, + 1 + ], + [ + 326, + 14, + 2, + 1, + 0 + ], + [ + 326, + 16, + 2, + 1, + 1 + ], + [ + 329, + 14, + 2, + 1, + 0 + ], + [ + 330, + 10, + 1, + 1, + 0 + ], + [ + 332, + 35, + 2, + 1, + 1 + ], + [ + 333, + 70, + 2, + 1, + 1 + ], + [ + 334, + 33, + 2, + 1, + 1 + ], + [ + 334, + 41, + 2, + 1, + 0 + ], + [ + 334, + 43, + 0, + 1, + 1 + ], + [ + 334, + 91, + 2, + 1, + 0 + ], + [ + 335, + 33, + 2, + 1, + 1 + ], + [ + 335, + 58, + 2, + 1, + 0 + ], + [ + 335, + 60, + 0, + 1, + 1 + ], + [ + 335, + 102, + 2, + 1, + 0 + ], + [ + 336, + 20, + 2, + 1, + 1 + ], + [ + 338, + 36, + 2, + 1, + 1 + ], + [ + 338, + 40, + 2, + 1, + 0 + ], + [ + 338, + 42, + 2, + 1, + 1 + ], + [ + 338, + 149, + 2, + 1, + 0 + ], + [ + 339, + 25, + 0, + 1, + 1 + ], + [ + 341, + 18, + 2, + 1, + 1 + ], + [ + 343, + 14, + 2, + 1, + 0 + ], + [ + 343, + 16, + 2, + 1, + 1 + ], + [ + 346, + 14, + 2, + 1, + 0 + ], + [ + 347, + 10, + 1, + 1, + 0 + ], + [ + 349, + 35, + 2, + 1, + 1 + ], + [ + 350, + 80, + 2, + 1, + 1 + ], + [ + 351, + 33, + 2, + 1, + 1 + ], + [ + 351, + 41, + 2, + 1, + 0 + ], + [ + 351, + 43, + 0, + 1, + 1 + ], + [ + 351, + 91, + 2, + 1, + 0 + ], + [ + 352, + 33, + 2, + 1, + 1 + ], + [ + 352, + 58, + 2, + 1, + 0 + ], + [ + 352, + 60, + 0, + 1, + 1 + ], + [ + 352, + 102, + 2, + 1, + 0 + ], + [ + 353, + 20, + 2, + 1, + 1 + ], + [ + 355, + 36, + 2, + 1, + 1 + ], + [ + 355, + 40, + 2, + 1, + 0 + ], + [ + 355, + 42, + 2, + 1, + 1 + ], + [ + 355, + 162, + 2, + 1, + 0 + ], + [ + 356, + 25, + 0, + 1, + 1 + ], + [ + 358, + 18, + 2, + 1, + 1 + ], + [ + 360, + 14, + 2, + 1, + 0 + ], + [ + 360, + 16, + 2, + 1, + 1 + ], + [ + 363, + 14, + 2, + 1, + 0 + ], + [ + 364, + 10, + 1, + 1, + 0 + ], + [ + 366, + 6, + 0, + 0, + 0 + ], + [ + 368, + 72, + 5, + 1, + 1 + ], + [ + 373, + 52, + 5, + 1, + 1 + ], + [ + 375, + 10, + 5, + 1, + 1 + ], + [ + 377, + 55, + 5, + 1, + 1 + ], + [ + 379, + 10, + 5, + 1, + 1 + ], + [ + 382, + 19, + 5, + 1, + 1 + ], + [ + 382, + 53, + 5, + 1, + 0 + ], + [ + 384, + 41, + 20, + 1, + 1 + ], + [ + 386, + 28, + 20, + 1, + 1 + ], + [ + 386, + 41, + 20, + 1, + 0 + ], + [ + 386, + 43, + 20, + 1, + 1 + ], + [ + 386, + 53, + 20, + 1, + 0 + ], + [ + 387, + 10, + 5, + 1, + 1 + ], + [ + 388, + 6, + 0, + 0, + 0 + ], + [ + 390, + 37, + 1, + 1, + 1 + ], + [ + 399, + 35, + 2, + 1, + 1 + ], + [ + 400, + 75, + 2, + 1, + 1 + ], + [ + 401, + 33, + 2, + 1, + 1 + ], + [ + 401, + 41, + 2, + 1, + 0 + ], + [ + 401, + 43, + 0, + 1, + 1 + ], + [ + 401, + 91, + 2, + 1, + 0 + ], + [ + 402, + 20, + 2, + 1, + 1 + ], + [ + 404, + 36, + 2, + 1, + 1 + ], + [ + 404, + 40, + 2, + 1, + 0 + ], + [ + 404, + 42, + 2, + 1, + 1 + ], + [ + 404, + 185, + 2, + 1, + 0 + ], + [ + 405, + 25, + 0, + 1, + 1 + ], + [ + 407, + 18, + 2, + 1, + 1 + ], + [ + 409, + 14, + 2, + 1, + 0 + ], + [ + 409, + 16, + 2, + 1, + 1 + ], + [ + 423, + 14, + 2, + 1, + 0 + ], + [ + 424, + 10, + 1, + 1, + 0 + ], + [ + 426, + 35, + 2, + 1, + 1 + ], + [ + 427, + 75, + 2, + 1, + 1 + ], + [ + 428, + 33, + 2, + 1, + 1 + ], + [ + 428, + 41, + 2, + 1, + 0 + ], + [ + 428, + 43, + 0, + 1, + 1 + ], + [ + 428, + 91, + 2, + 1, + 0 + ], + [ + 429, + 20, + 2, + 1, + 1 + ], + [ + 431, + 36, + 2, + 1, + 1 + ], + [ + 431, + 40, + 2, + 1, + 0 + ], + [ + 431, + 42, + 2, + 1, + 1 + ], + [ + 431, + 181, + 2, + 1, + 0 + ], + [ + 432, + 25, + 0, + 1, + 1 + ], + [ + 434, + 18, + 2, + 1, + 1 + ], + [ + 436, + 14, + 2, + 1, + 0 + ], + [ + 436, + 16, + 2, + 1, + 1 + ], + [ + 453, + 14, + 2, + 1, + 0 + ], + [ + 454, + 10, + 1, + 1, + 0 + ], + [ + 456, + 35, + 2, + 1, + 1 + ], + [ + 457, + 75, + 2, + 1, + 1 + ], + [ + 458, + 33, + 2, + 1, + 1 + ], + [ + 458, + 41, + 2, + 1, + 0 + ], + [ + 458, + 43, + 0, + 1, + 1 + ], + [ + 458, + 91, + 2, + 1, + 0 + ], + [ + 459, + 20, + 2, + 1, + 1 + ], + [ + 461, + 36, + 2, + 1, + 1 + ], + [ + 461, + 40, + 2, + 1, + 0 + ], + [ + 461, + 42, + 2, + 1, + 1 + ], + [ + 461, + 69, + 2, + 1, + 0 + ], + [ + 462, + 25, + 0, + 1, + 1 + ], + [ + 464, + 18, + 2, + 1, + 1 + ], + [ + 466, + 14, + 2, + 1, + 0 + ], + [ + 466, + 16, + 2, + 1, + 1 + ], + [ + 473, + 14, + 2, + 1, + 0 + ], + [ + 474, + 10, + 1, + 1, + 0 + ], + [ + 477, + 35, + 2, + 1, + 1 + ], + [ + 478, + 75, + 2, + 1, + 1 + ], + [ + 479, + 33, + 2, + 1, + 1 + ], + [ + 479, + 41, + 2, + 1, + 0 + ], + [ + 479, + 43, + 0, + 1, + 1 + ], + [ + 479, + 91, + 2, + 1, + 0 + ], + [ + 480, + 20, + 2, + 1, + 1 + ], + [ + 482, + 36, + 2, + 1, + 1 + ], + [ + 482, + 40, + 2, + 1, + 0 + ], + [ + 482, + 42, + 2, + 1, + 1 + ], + [ + 482, + 71, + 2, + 1, + 0 + ], + [ + 483, + 25, + 0, + 1, + 1 + ], + [ + 485, + 18, + 2, + 1, + 1 + ], + [ + 487, + 14, + 2, + 1, + 0 + ], + [ + 487, + 16, + 2, + 1, + 1 + ], + [ + 490, + 14, + 2, + 1, + 0 + ], + [ + 491, + 10, + 1, + 1, + 0 + ], + [ + 493, + 6, + 0, + 0, + 0 + ], + [ + 495, + 28, + 1, + 1, + 1 + ], + [ + 496, + 35, + 2, + 1, + 1 + ], + [ + 499, + 43, + 2, + 1, + 1 + ], + [ + 500, + 72, + 0, + 1, + 1 + ], + [ + 504, + 38, + 2, + 1, + 1 + ], + [ + 506, + 53, + 2, + 1, + 1 + ], + [ + 506, + 77, + 2, + 1, + 0 + ], + [ + 506, + 79, + 0, + 1, + 1 + ], + [ + 506, + 121, + 2, + 1, + 0 + ], + [ + 507, + 40, + 2, + 1, + 1 + ], + [ + 509, + 56, + 2, + 1, + 1 + ], + [ + 509, + 70, + 2, + 1, + 0 + ], + [ + 509, + 72, + 2, + 1, + 1 + ], + [ + 509, + 86, + 2, + 1, + 0 + ], + [ + 510, + 45, + 0, + 1, + 1 + ], + [ + 512, + 38, + 2, + 1, + 1 + ], + [ + 514, + 34, + 2, + 1, + 0 + ], + [ + 516, + 50, + 2, + 1, + 1 + ], + [ + 518, + 91, + 4096, + 1, + 1 + ], + [ + 518, + 101, + 2, + 1, + 0 + ], + [ + 522, + 10, + 1, + 1, + 0 + ], + [ + 523, + 6, + 0, + 0, + 0 + ], + [ + 527, + 83, + 6, + 1, + 1 + ], + [ + 528, + 78, + 3, + 1, + 1 + ], + [ + 528, + 91, + 6, + 1, + 0 + ], + [ + 529, + 80, + 3, + 1, + 1 + ], + [ + 529, + 94, + 6, + 1, + 0 + ], + [ + 530, + 35, + 12, + 1, + 1 + ], + [ + 532, + 27, + 12, + 1, + 1 + ], + [ + 533, + 52, + 0, + 1, + 1 + ], + [ + 537, + 18, + 12, + 1, + 1 + ], + [ + 539, + 20, + 12, + 1, + 1 + ], + [ + 541, + 36, + 12, + 1, + 1 + ], + [ + 541, + 40, + 12, + 1, + 0 + ], + [ + 541, + 42, + 12, + 1, + 1 + ], + [ + 544, + 63, + 12, + 1, + 0 + ], + [ + 545, + 25, + 0, + 1, + 1 + ], + [ + 547, + 18, + 12, + 1, + 1 + ], + [ + 549, + 14, + 12, + 1, + 0 + ], + [ + 550, + 10, + 6, + 1, + 0 + ], + [ + 551, + 6, + 0, + 0, + 0 + ], + [ + 553, + 27, + 1, + 1, + 1 + ], + [ + 555, + 6, + 0, + 0, + 0 + ], + [ + 557, + 42, + 1, + 1, + 1 + ], + [ + 560, + 6, + 0, + 0, + 0 + ], + [ + 562, + 37, + 1, + 1, + 1 + ], + [ + 565, + 6, + 0, + 0, + 0 + ], + [ + 567, + 43, + 1, + 1, + 1 + ], + [ + 570, + 6, + 0, + 0, + 0 + ], + [ + 572, + 38, + 1, + 1, + 1 + ], + [ + 575, + 6, + 0, + 0, + 0 + ], + [ + 577, + 45, + 1, + 1, + 1 + ], + [ + 581, + 6, + 0, + 0, + 0 + ], + [ + 583, + 25, + 1, + 1, + 1 + ], + [ + 584, + 35, + 2, + 1, + 1 + ], + [ + 585, + 69, + 2, + 1, + 1 + ], + [ + 586, + 33, + 2, + 1, + 1 + ], + [ + 586, + 41, + 2, + 1, + 0 + ], + [ + 586, + 43, + 0, + 1, + 1 + ], + [ + 586, + 91, + 2, + 1, + 0 + ], + [ + 587, + 20, + 2, + 1, + 1 + ], + [ + 589, + 36, + 2, + 1, + 1 + ], + [ + 589, + 40, + 2, + 1, + 0 + ], + [ + 589, + 42, + 2, + 1, + 1 + ], + [ + 589, + 67, + 2, + 1, + 0 + ], + [ + 590, + 25, + 0, + 1, + 1 + ], + [ + 592, + 18, + 2, + 1, + 1 + ], + [ + 594, + 14, + 2, + 1, + 0 + ], + [ + 595, + 10, + 1, + 1, + 0 + ], + [ + 596, + 6, + 0, + 0, + 0 + ], + [ + 598, + 29, + 1, + 1, + 1 + ], + [ + 599, + 35, + 2, + 1, + 1 + ], + [ + 600, + 66, + 2, + 1, + 1 + ], + [ + 601, + 33, + 2, + 1, + 1 + ], + [ + 601, + 41, + 2, + 1, + 0 + ], + [ + 601, + 43, + 0, + 1, + 1 + ], + [ + 601, + 91, + 2, + 1, + 0 + ], + [ + 602, + 20, + 2, + 1, + 1 + ], + [ + 605, + 36, + 2, + 1, + 1 + ], + [ + 605, + 40, + 2, + 1, + 0 + ], + [ + 605, + 42, + 2, + 1, + 1 + ], + [ + 605, + 81, + 2, + 1, + 0 + ], + [ + 606, + 25, + 0, + 1, + 1 + ], + [ + 608, + 18, + 2, + 1, + 1 + ], + [ + 610, + 14, + 2, + 1, + 0 + ], + [ + 611, + 10, + 1, + 1, + 0 + ], + [ + 612, + 6, + 0, + 0, + 0 + ], + [ + 614, + 26, + 1, + 1, + 1 + ], + [ + 615, + 47, + 2, + 1, + 1 + ], + [ + 616, + 66, + 2, + 1, + 1 + ], + [ + 617, + 33, + 2, + 1, + 1 + ], + [ + 617, + 41, + 2, + 1, + 0 + ], + [ + 617, + 43, + 0, + 1, + 1 + ], + [ + 617, + 91, + 2, + 1, + 0 + ], + [ + 618, + 32, + 2, + 1, + 1 + ], + [ + 618, + 52, + 2, + 1, + 0 + ], + [ + 618, + 54, + 2, + 1, + 1 + ], + [ + 618, + 71, + 2, + 1, + 0 + ], + [ + 618, + 73, + 0, + 1, + 1 + ], + [ + 618, + 139, + 2, + 1, + 0 + ], + [ + 619, + 20, + 2, + 1, + 1 + ], + [ + 621, + 36, + 2, + 1, + 1 + ], + [ + 621, + 40, + 2, + 1, + 0 + ], + [ + 621, + 42, + 2, + 1, + 1 + ], + [ + 621, + 58, + 2, + 1, + 0 + ], + [ + 622, + 25, + 0, + 1, + 1 + ], + [ + 624, + 18, + 2, + 1, + 1 + ], + [ + 626, + 14, + 2, + 1, + 0 + ], + [ + 627, + 10, + 1, + 1, + 0 + ], + [ + 627, + 12, + 2, + 1, + 1 + ], + [ + 628, + 67, + 2, + 1, + 1 + ], + [ + 629, + 33, + 2, + 1, + 1 + ], + [ + 629, + 41, + 2, + 1, + 0 + ], + [ + 629, + 43, + 0, + 1, + 1 + ], + [ + 629, + 91, + 2, + 1, + 0 + ], + [ + 630, + 32, + 2, + 1, + 1 + ], + [ + 630, + 52, + 2, + 1, + 0 + ], + [ + 630, + 54, + 2, + 1, + 1 + ], + [ + 630, + 71, + 2, + 1, + 0 + ], + [ + 630, + 73, + 0, + 1, + 1 + ], + [ + 630, + 139, + 2, + 1, + 0 + ], + [ + 631, + 20, + 2, + 1, + 1 + ], + [ + 633, + 36, + 2, + 1, + 1 + ], + [ + 633, + 40, + 2, + 1, + 0 + ], + [ + 633, + 42, + 2, + 1, + 1 + ], + [ + 633, + 57, + 2, + 1, + 0 + ], + [ + 634, + 25, + 0, + 1, + 1 + ], + [ + 636, + 18, + 2, + 1, + 1 + ], + [ + 638, + 14, + 2, + 1, + 0 + ], + [ + 639, + 10, + 1, + 1, + 0 + ], + [ + 640, + 6, + 0, + 0, + 0 + ], + [ + 642, + 32, + 1, + 1, + 1 + ], + [ + 644, + 35, + 2, + 1, + 1 + ], + [ + 647, + 28, + 2, + 1, + 1 + ], + [ + 647, + 60, + 2, + 1, + 0 + ], + [ + 647, + 62, + 2, + 1, + 1 + ], + [ + 647, + 73, + 2, + 1, + 0 + ], + [ + 650, + 28, + 2, + 1, + 1 + ], + [ + 650, + 60, + 2, + 1, + 0 + ], + [ + 650, + 62, + 2, + 1, + 1 + ], + [ + 650, + 73, + 2, + 1, + 0 + ], + [ + 653, + 26, + 2, + 1, + 1 + ], + [ + 653, + 58, + 2, + 1, + 0 + ], + [ + 656, + 28, + 2, + 1, + 1 + ], + [ + 656, + 60, + 2, + 1, + 0 + ], + [ + 656, + 62, + 2, + 1, + 1 + ], + [ + 656, + 85, + 2, + 1, + 0 + ], + [ + 659, + 28, + 2, + 1, + 1 + ], + [ + 659, + 60, + 2, + 1, + 0 + ], + [ + 659, + 62, + 2, + 1, + 1 + ], + [ + 659, + 85, + 2, + 1, + 0 + ], + [ + 662, + 28, + 2, + 1, + 1 + ], + [ + 662, + 60, + 2, + 1, + 0 + ], + [ + 662, + 62, + 2, + 1, + 1 + ], + [ + 662, + 85, + 2, + 1, + 0 + ], + [ + 667, + 28, + 2, + 1, + 1 + ], + [ + 667, + 60, + 2, + 1, + 0 + ], + [ + 667, + 62, + 2, + 1, + 1 + ], + [ + 667, + 73, + 2, + 1, + 0 + ], + [ + 670, + 28, + 2, + 1, + 1 + ], + [ + 670, + 60, + 2, + 1, + 0 + ], + [ + 670, + 62, + 2, + 1, + 1 + ], + [ + 670, + 73, + 2, + 1, + 0 + ], + [ + 672, + 16, + 2, + 1, + 1 + ], + [ + 674, + 14, + 2, + 1, + 0 + ], + [ + 674, + 21, + 0, + 1, + 1 + ], + [ + 674, + 23, + 2, + 1, + 1 + ], + [ + 676, + 10, + 1, + 1, + 0 + ], + [ + 678, + 35, + 2, + 1, + 1 + ], + [ + 679, + 71, + 2, + 1, + 1 + ], + [ + 680, + 33, + 2, + 1, + 1 + ], + [ + 680, + 41, + 2, + 1, + 0 + ], + [ + 680, + 43, + 0, + 1, + 1 + ], + [ + 680, + 91, + 2, + 1, + 0 + ], + [ + 683, + 10, + 1, + 1, + 0 + ], + [ + 685, + 6, + 0, + 0, + 0 + ], + [ + 687, + 28, + 1, + 1, + 1 + ], + [ + 689, + 35, + 2, + 1, + 1 + ], + [ + 691, + 28, + 2, + 1, + 1 + ], + [ + 691, + 57, + 2, + 1, + 0 + ], + [ + 691, + 59, + 2, + 1, + 1 + ], + [ + 691, + 65, + 2, + 1, + 0 + ], + [ + 691, + 67, + 0, + 1, + 1 + ], + [ + 691, + 106, + 2, + 1, + 0 + ], + [ + 692, + 28, + 2, + 1, + 1 + ], + [ + 692, + 63, + 2, + 1, + 0 + ], + [ + 692, + 65, + 2, + 1, + 1 + ], + [ + 692, + 76, + 2, + 1, + 0 + ], + [ + 692, + 78, + 0, + 1, + 1 + ], + [ + 692, + 117, + 2, + 1, + 0 + ], + [ + 693, + 28, + 2, + 1, + 1 + ], + [ + 693, + 68, + 2, + 1, + 0 + ], + [ + 693, + 70, + 2, + 1, + 1 + ], + [ + 693, + 76, + 2, + 1, + 0 + ], + [ + 693, + 78, + 0, + 1, + 1 + ], + [ + 693, + 117, + 2, + 1, + 0 + ], + [ + 694, + 28, + 2, + 1, + 1 + ], + [ + 694, + 70, + 2, + 1, + 0 + ], + [ + 694, + 72, + 2, + 1, + 1 + ], + [ + 694, + 90, + 2, + 1, + 0 + ], + [ + 694, + 92, + 0, + 1, + 1 + ], + [ + 694, + 131, + 2, + 1, + 0 + ], + [ + 697, + 28, + 2, + 1, + 1 + ], + [ + 697, + 69, + 2, + 1, + 0 + ], + [ + 697, + 71, + 2, + 1, + 1 + ], + [ + 697, + 88, + 2, + 1, + 0 + ], + [ + 697, + 90, + 0, + 1, + 1 + ], + [ + 697, + 129, + 2, + 1, + 0 + ], + [ + 698, + 28, + 2, + 1, + 1 + ], + [ + 698, + 65, + 2, + 1, + 0 + ], + [ + 698, + 67, + 2, + 1, + 1 + ], + [ + 698, + 73, + 2, + 1, + 0 + ], + [ + 698, + 75, + 0, + 1, + 1 + ], + [ + 698, + 114, + 2, + 1, + 0 + ], + [ + 699, + 28, + 2, + 1, + 1 + ], + [ + 699, + 72, + 2, + 1, + 0 + ], + [ + 699, + 74, + 2, + 1, + 1 + ], + [ + 699, + 80, + 2, + 1, + 0 + ], + [ + 699, + 82, + 0, + 1, + 1 + ], + [ + 699, + 121, + 2, + 1, + 0 + ], + [ + 702, + 26, + 2, + 1, + 1 + ], + [ + 702, + 61, + 2, + 1, + 0 + ], + [ + 702, + 63, + 0, + 1, + 1 + ], + [ + 702, + 108, + 2, + 1, + 0 + ], + [ + 703, + 26, + 2, + 1, + 1 + ], + [ + 703, + 55, + 2, + 1, + 0 + ], + [ + 703, + 57, + 0, + 1, + 1 + ], + [ + 703, + 102, + 2, + 1, + 0 + ], + [ + 704, + 26, + 2, + 1, + 1 + ], + [ + 704, + 58, + 2, + 1, + 0 + ], + [ + 704, + 60, + 0, + 1, + 1 + ], + [ + 704, + 93, + 2, + 1, + 0 + ], + [ + 706, + 16, + 2, + 1, + 1 + ], + [ + 708, + 14, + 2, + 1, + 0 + ], + [ + 708, + 21, + 0, + 1, + 1 + ], + [ + 708, + 23, + 2, + 1, + 1 + ], + [ + 710, + 10, + 1, + 1, + 0 + ], + [ + 712, + 36, + 2, + 1, + 1 + ], + [ + 714, + 28, + 2, + 1, + 1 + ], + [ + 714, + 63, + 2, + 1, + 0 + ], + [ + 714, + 65, + 2, + 1, + 1 + ], + [ + 714, + 76, + 2, + 1, + 0 + ], + [ + 714, + 78, + 0, + 1, + 1 + ], + [ + 714, + 123, + 2, + 1, + 0 + ], + [ + 715, + 28, + 2, + 1, + 1 + ], + [ + 715, + 64, + 2, + 1, + 0 + ], + [ + 715, + 66, + 2, + 1, + 1 + ], + [ + 715, + 78, + 2, + 1, + 0 + ], + [ + 715, + 80, + 0, + 1, + 1 + ], + [ + 715, + 125, + 2, + 1, + 0 + ], + [ + 716, + 28, + 2, + 1, + 1 + ], + [ + 716, + 74, + 2, + 1, + 0 + ], + [ + 716, + 76, + 2, + 1, + 1 + ], + [ + 716, + 82, + 2, + 1, + 0 + ], + [ + 716, + 84, + 0, + 1, + 1 + ], + [ + 716, + 123, + 2, + 1, + 0 + ], + [ + 717, + 28, + 2, + 1, + 1 + ], + [ + 717, + 67, + 2, + 1, + 0 + ], + [ + 717, + 69, + 2, + 1, + 1 + ], + [ + 717, + 75, + 2, + 1, + 0 + ], + [ + 717, + 77, + 0, + 1, + 1 + ], + [ + 717, + 116, + 2, + 1, + 0 + ], + [ + 718, + 28, + 2, + 1, + 1 + ], + [ + 718, + 77, + 2, + 1, + 0 + ], + [ + 718, + 79, + 2, + 1, + 1 + ], + [ + 718, + 85, + 2, + 1, + 0 + ], + [ + 718, + 87, + 0, + 1, + 1 + ], + [ + 718, + 126, + 2, + 1, + 0 + ], + [ + 720, + 16, + 2, + 1, + 1 + ], + [ + 722, + 14, + 2, + 1, + 0 + ], + [ + 722, + 21, + 0, + 1, + 1 + ], + [ + 722, + 23, + 2, + 1, + 1 + ], + [ + 724, + 10, + 1, + 1, + 0 + ], + [ + 726, + 47, + 2, + 1, + 1 + ], + [ + 727, + 71, + 2, + 1, + 1 + ], + [ + 728, + 33, + 2, + 1, + 1 + ], + [ + 728, + 41, + 2, + 1, + 0 + ], + [ + 728, + 43, + 0, + 1, + 1 + ], + [ + 728, + 91, + 2, + 1, + 0 + ], + [ + 730, + 16, + 2, + 1, + 1 + ], + [ + 732, + 14, + 2, + 1, + 0 + ], + [ + 733, + 10, + 1, + 1, + 0 + ], + [ + 733, + 12, + 2, + 1, + 1 + ], + [ + 734, + 71, + 2, + 1, + 1 + ], + [ + 735, + 33, + 2, + 1, + 1 + ], + [ + 735, + 41, + 2, + 1, + 0 + ], + [ + 735, + 43, + 0, + 1, + 1 + ], + [ + 735, + 91, + 2, + 1, + 0 + ], + [ + 737, + 16, + 2, + 1, + 1 + ], + [ + 739, + 14, + 2, + 1, + 0 + ], + [ + 740, + 10, + 1, + 1, + 0 + ], + [ + 741, + 6, + 0, + 0, + 0 + ], + [ + 743, + 36, + 1, + 1, + 1 + ], + [ + 744, + 35, + 2, + 1, + 1 + ], + [ + 745, + 28, + 2, + 1, + 1 + ], + [ + 745, + 84, + 2, + 1, + 0 + ], + [ + 745, + 86, + 2, + 1, + 1 + ], + [ + 745, + 92, + 2, + 1, + 0 + ], + [ + 745, + 94, + 0, + 1, + 1 + ], + [ + 745, + 133, + 2, + 1, + 0 + ], + [ + 746, + 28, + 2, + 1, + 1 + ], + [ + 746, + 89, + 2, + 1, + 0 + ], + [ + 746, + 91, + 2, + 1, + 1 + ], + [ + 746, + 101, + 2, + 1, + 0 + ], + [ + 746, + 103, + 0, + 1, + 1 + ], + [ + 746, + 142, + 2, + 1, + 0 + ], + [ + 747, + 28, + 2, + 1, + 1 + ], + [ + 747, + 99, + 2, + 1, + 0 + ], + [ + 747, + 101, + 2, + 1, + 1 + ], + [ + 747, + 107, + 2, + 1, + 0 + ], + [ + 747, + 109, + 0, + 1, + 1 + ], + [ + 747, + 148, + 2, + 1, + 0 + ], + [ + 750, + 26, + 2, + 1, + 1 + ], + [ + 750, + 86, + 2, + 1, + 0 + ], + [ + 750, + 88, + 0, + 1, + 1 + ], + [ + 750, + 133, + 2, + 1, + 0 + ], + [ + 752, + 16, + 2, + 1, + 1 + ], + [ + 754, + 14, + 2, + 1, + 0 + ], + [ + 754, + 21, + 0, + 1, + 1 + ], + [ + 754, + 23, + 2, + 1, + 1 + ], + [ + 756, + 10, + 1, + 1, + 0 + ], + [ + 758, + 36, + 2, + 1, + 1 + ], + [ + 759, + 28, + 2, + 1, + 1 + ], + [ + 759, + 84, + 2, + 1, + 0 + ], + [ + 759, + 86, + 2, + 1, + 1 + ], + [ + 759, + 92, + 2, + 1, + 0 + ], + [ + 759, + 94, + 0, + 1, + 1 + ], + [ + 759, + 133, + 2, + 1, + 0 + ], + [ + 760, + 28, + 2, + 1, + 1 + ], + [ + 760, + 89, + 2, + 1, + 0 + ], + [ + 760, + 91, + 2, + 1, + 1 + ], + [ + 760, + 101, + 2, + 1, + 0 + ], + [ + 760, + 103, + 0, + 1, + 1 + ], + [ + 760, + 142, + 2, + 1, + 0 + ], + [ + 762, + 28, + 2, + 1, + 1 + ], + [ + 762, + 99, + 2, + 1, + 0 + ], + [ + 762, + 101, + 2, + 1, + 1 + ], + [ + 762, + 111, + 2, + 1, + 0 + ], + [ + 762, + 113, + 0, + 1, + 1 + ], + [ + 762, + 152, + 2, + 1, + 0 + ], + [ + 765, + 28, + 2, + 1, + 1 + ], + [ + 765, + 88, + 2, + 1, + 0 + ], + [ + 765, + 90, + 2, + 1, + 1 + ], + [ + 765, + 99, + 2, + 1, + 0 + ], + [ + 765, + 101, + 0, + 1, + 1 + ], + [ + 765, + 140, + 2, + 1, + 0 + ], + [ + 768, + 26, + 2, + 1, + 1 + ], + [ + 768, + 85, + 2, + 1, + 0 + ], + [ + 768, + 87, + 0, + 1, + 1 + ], + [ + 768, + 132, + 2, + 1, + 0 + ], + [ + 770, + 16, + 2, + 1, + 1 + ], + [ + 772, + 14, + 2, + 1, + 0 + ], + [ + 772, + 21, + 0, + 1, + 1 + ], + [ + 772, + 23, + 2, + 1, + 1 + ], + [ + 774, + 10, + 1, + 1, + 0 + ], + [ + 776, + 47, + 2, + 1, + 1 + ], + [ + 777, + 71, + 2, + 1, + 1 + ], + [ + 778, + 33, + 2, + 1, + 1 + ], + [ + 778, + 41, + 2, + 1, + 0 + ], + [ + 778, + 43, + 0, + 1, + 1 + ], + [ + 778, + 91, + 2, + 1, + 0 + ], + [ + 780, + 16, + 2, + 1, + 1 + ], + [ + 782, + 14, + 2, + 1, + 0 + ], + [ + 783, + 10, + 1, + 1, + 0 + ], + [ + 783, + 12, + 2, + 1, + 1 + ], + [ + 784, + 71, + 2, + 1, + 1 + ], + [ + 785, + 33, + 2, + 1, + 1 + ], + [ + 785, + 41, + 2, + 1, + 0 + ], + [ + 785, + 43, + 0, + 1, + 1 + ], + [ + 785, + 91, + 2, + 1, + 0 + ], + [ + 787, + 16, + 2, + 1, + 1 + ], + [ + 789, + 14, + 2, + 1, + 0 + ], + [ + 790, + 10, + 1, + 1, + 0 + ], + [ + 791, + 6, + 0, + 0, + 0 + ], + [ + 793, + 23, + 1, + 1, + 1 + ], + [ + 794, + 35, + 2, + 1, + 1 + ], + [ + 795, + 66, + 2, + 1, + 1 + ], + [ + 796, + 33, + 2, + 1, + 1 + ], + [ + 796, + 41, + 2, + 1, + 0 + ], + [ + 796, + 43, + 0, + 1, + 1 + ], + [ + 796, + 91, + 2, + 1, + 0 + ], + [ + 797, + 32, + 2, + 1, + 1 + ], + [ + 797, + 52, + 2, + 1, + 0 + ], + [ + 797, + 54, + 2, + 1, + 1 + ], + [ + 797, + 71, + 2, + 1, + 0 + ], + [ + 797, + 73, + 0, + 1, + 1 + ], + [ + 797, + 139, + 2, + 1, + 0 + ], + [ + 798, + 32, + 2, + 1, + 1 + ], + [ + 798, + 72, + 2, + 1, + 0 + ], + [ + 798, + 74, + 2, + 1, + 1 + ], + [ + 798, + 85, + 2, + 1, + 0 + ], + [ + 799, + 20, + 2, + 1, + 1 + ], + [ + 801, + 36, + 2, + 1, + 1 + ], + [ + 801, + 40, + 2, + 1, + 0 + ], + [ + 801, + 42, + 2, + 1, + 1 + ], + [ + 801, + 104, + 2, + 1, + 0 + ], + [ + 802, + 25, + 0, + 1, + 1 + ], + [ + 804, + 18, + 2, + 1, + 1 + ], + [ + 806, + 18, + 2, + 1, + 0 + ], + [ + 807, + 10, + 1, + 1, + 0 + ], + [ + 809, + 35, + 2, + 1, + 1 + ], + [ + 810, + 66, + 2, + 1, + 1 + ], + [ + 811, + 33, + 2, + 1, + 1 + ], + [ + 811, + 41, + 2, + 1, + 0 + ], + [ + 811, + 43, + 0, + 1, + 1 + ], + [ + 811, + 91, + 2, + 1, + 0 + ], + [ + 812, + 32, + 2, + 1, + 1 + ], + [ + 812, + 52, + 2, + 1, + 0 + ], + [ + 812, + 54, + 2, + 1, + 1 + ], + [ + 812, + 71, + 2, + 1, + 0 + ], + [ + 812, + 73, + 0, + 1, + 1 + ], + [ + 812, + 139, + 2, + 1, + 0 + ], + [ + 813, + 32, + 2, + 1, + 1 + ], + [ + 813, + 72, + 2, + 1, + 0 + ], + [ + 813, + 74, + 2, + 1, + 1 + ], + [ + 813, + 86, + 2, + 1, + 0 + ], + [ + 814, + 20, + 2, + 1, + 1 + ], + [ + 816, + 36, + 2, + 1, + 1 + ], + [ + 816, + 40, + 2, + 1, + 0 + ], + [ + 816, + 42, + 2, + 1, + 1 + ], + [ + 816, + 59, + 2, + 1, + 0 + ], + [ + 817, + 25, + 0, + 1, + 1 + ], + [ + 819, + 18, + 2, + 1, + 1 + ], + [ + 821, + 18, + 2, + 1, + 0 + ], + [ + 822, + 10, + 1, + 1, + 0 + ], + [ + 824, + 35, + 2, + 1, + 1 + ], + [ + 825, + 66, + 2, + 1, + 1 + ], + [ + 826, + 33, + 2, + 1, + 1 + ], + [ + 826, + 41, + 2, + 1, + 0 + ], + [ + 826, + 43, + 0, + 1, + 1 + ], + [ + 826, + 91, + 2, + 1, + 0 + ], + [ + 827, + 32, + 2, + 1, + 1 + ], + [ + 827, + 52, + 2, + 1, + 0 + ], + [ + 827, + 54, + 2, + 1, + 1 + ], + [ + 827, + 71, + 2, + 1, + 0 + ], + [ + 827, + 73, + 0, + 1, + 1 + ], + [ + 827, + 139, + 2, + 1, + 0 + ], + [ + 828, + 20, + 2, + 1, + 1 + ], + [ + 830, + 36, + 2, + 1, + 1 + ], + [ + 830, + 40, + 2, + 1, + 0 + ], + [ + 830, + 42, + 2, + 1, + 1 + ], + [ + 830, + 51, + 2, + 1, + 0 + ], + [ + 831, + 25, + 0, + 1, + 1 + ], + [ + 833, + 18, + 2, + 1, + 1 + ], + [ + 835, + 18, + 2, + 1, + 0 + ], + [ + 836, + 10, + 1, + 1, + 0 + ], + [ + 838, + 6, + 0, + 0, + 0 + ], + [ + 840, + 21, + 1, + 1, + 1 + ], + [ + 841, + 35, + 2, + 1, + 1 + ], + [ + 842, + 72, + 2, + 1, + 1 + ], + [ + 843, + 33, + 2, + 1, + 1 + ], + [ + 843, + 41, + 2, + 1, + 0 + ], + [ + 843, + 43, + 0, + 1, + 1 + ], + [ + 843, + 91, + 2, + 1, + 0 + ], + [ + 844, + 32, + 2, + 1, + 1 + ], + [ + 844, + 52, + 2, + 1, + 0 + ], + [ + 844, + 54, + 2, + 1, + 1 + ], + [ + 844, + 71, + 2, + 1, + 0 + ], + [ + 844, + 73, + 0, + 1, + 1 + ], + [ + 844, + 139, + 2, + 1, + 0 + ], + [ + 846, + 33, + 2, + 1, + 1 + ], + [ + 846, + 39, + 2, + 1, + 0 + ], + [ + 846, + 41, + 0, + 1, + 1 + ], + [ + 846, + 72, + 2, + 1, + 0 + ], + [ + 847, + 32, + 2, + 1, + 1 + ], + [ + 847, + 38, + 2, + 1, + 0 + ], + [ + 847, + 40, + 2, + 1, + 1 + ], + [ + 847, + 89, + 2, + 1, + 0 + ], + [ + 850, + 10, + 1, + 1, + 0 + ], + [ + 852, + 35, + 2, + 1, + 1 + ], + [ + 853, + 75, + 2, + 1, + 1 + ], + [ + 854, + 33, + 2, + 1, + 1 + ], + [ + 854, + 41, + 2, + 1, + 0 + ], + [ + 854, + 43, + 0, + 1, + 1 + ], + [ + 854, + 91, + 2, + 1, + 0 + ], + [ + 855, + 32, + 2, + 1, + 1 + ], + [ + 855, + 52, + 2, + 1, + 0 + ], + [ + 855, + 54, + 2, + 1, + 1 + ], + [ + 855, + 71, + 2, + 1, + 0 + ], + [ + 855, + 73, + 0, + 1, + 1 + ], + [ + 855, + 139, + 2, + 1, + 0 + ], + [ + 859, + 33, + 2, + 1, + 1 + ], + [ + 859, + 39, + 2, + 1, + 0 + ], + [ + 859, + 41, + 0, + 1, + 1 + ], + [ + 859, + 72, + 2, + 1, + 0 + ], + [ + 860, + 33, + 2, + 1, + 1 + ], + [ + 860, + 61, + 2, + 1, + 0 + ], + [ + 860, + 63, + 0, + 1, + 1 + ], + [ + 860, + 102, + 2, + 1, + 0 + ], + [ + 861, + 33, + 2, + 1, + 1 + ], + [ + 861, + 62, + 2, + 1, + 0 + ], + [ + 861, + 64, + 0, + 1, + 1 + ], + [ + 861, + 104, + 2, + 1, + 0 + ], + [ + 864, + 10, + 1, + 1, + 0 + ], + [ + 865, + 6, + 0, + 0, + 0 + ], + [ + 867, + 22, + 1, + 1, + 1 + ], + [ + 868, + 35, + 2, + 1, + 1 + ], + [ + 869, + 82, + 2, + 1, + 1 + ], + [ + 870, + 33, + 2, + 1, + 1 + ], + [ + 870, + 41, + 2, + 1, + 0 + ], + [ + 870, + 43, + 0, + 1, + 1 + ], + [ + 870, + 91, + 2, + 1, + 0 + ], + [ + 871, + 32, + 2, + 1, + 1 + ], + [ + 871, + 52, + 2, + 1, + 0 + ], + [ + 871, + 54, + 2, + 1, + 1 + ], + [ + 871, + 71, + 2, + 1, + 0 + ], + [ + 871, + 73, + 0, + 1, + 1 + ], + [ + 871, + 139, + 2, + 1, + 0 + ], + [ + 872, + 20, + 2, + 1, + 1 + ], + [ + 876, + 36, + 2, + 1, + 1 + ], + [ + 876, + 40, + 2, + 1, + 0 + ], + [ + 876, + 42, + 2, + 1, + 1 + ], + [ + 876, + 68, + 2, + 1, + 0 + ], + [ + 877, + 36, + 2, + 1, + 1 + ], + [ + 877, + 76, + 2, + 1, + 0 + ], + [ + 877, + 78, + 2, + 1, + 1 + ], + [ + 877, + 102, + 2, + 1, + 0 + ], + [ + 878, + 25, + 0, + 1, + 1 + ], + [ + 880, + 18, + 2, + 1, + 1 + ], + [ + 882, + 14, + 2, + 1, + 0 + ], + [ + 883, + 10, + 1, + 1, + 0 + ], + [ + 885, + 35, + 2, + 1, + 1 + ], + [ + 886, + 83, + 2, + 1, + 1 + ], + [ + 887, + 33, + 2, + 1, + 1 + ], + [ + 887, + 41, + 2, + 1, + 0 + ], + [ + 887, + 43, + 0, + 1, + 1 + ], + [ + 887, + 91, + 2, + 1, + 0 + ], + [ + 888, + 32, + 2, + 1, + 1 + ], + [ + 888, + 52, + 2, + 1, + 0 + ], + [ + 888, + 54, + 2, + 1, + 1 + ], + [ + 888, + 79, + 2, + 1, + 0 + ], + [ + 888, + 81, + 0, + 1, + 1 + ], + [ + 888, + 147, + 2, + 1, + 0 + ], + [ + 891, + 10, + 1, + 1, + 0 + ], + [ + 893, + 35, + 2, + 1, + 1 + ], + [ + 894, + 66, + 2, + 1, + 1 + ], + [ + 895, + 33, + 2, + 1, + 1 + ], + [ + 895, + 41, + 2, + 1, + 0 + ], + [ + 895, + 43, + 0, + 1, + 1 + ], + [ + 895, + 91, + 2, + 1, + 0 + ], + [ + 896, + 32, + 2, + 1, + 1 + ], + [ + 896, + 52, + 2, + 1, + 0 + ], + [ + 896, + 54, + 2, + 1, + 1 + ], + [ + 896, + 79, + 2, + 1, + 0 + ], + [ + 896, + 81, + 0, + 1, + 1 + ], + [ + 896, + 147, + 2, + 1, + 0 + ], + [ + 899, + 10, + 1, + 1, + 0 + ], + [ + 901, + 35, + 2, + 1, + 1 + ], + [ + 902, + 79, + 2, + 1, + 1 + ], + [ + 903, + 33, + 2, + 1, + 1 + ], + [ + 903, + 41, + 2, + 1, + 0 + ], + [ + 903, + 43, + 0, + 1, + 1 + ], + [ + 903, + 91, + 2, + 1, + 0 + ], + [ + 904, + 32, + 2, + 1, + 1 + ], + [ + 904, + 52, + 2, + 1, + 0 + ], + [ + 904, + 54, + 2, + 1, + 1 + ], + [ + 904, + 71, + 2, + 1, + 0 + ], + [ + 904, + 73, + 0, + 1, + 1 + ], + [ + 904, + 139, + 2, + 1, + 0 + ], + [ + 905, + 20, + 2, + 1, + 1 + ], + [ + 909, + 36, + 2, + 1, + 1 + ], + [ + 909, + 40, + 2, + 1, + 0 + ], + [ + 909, + 42, + 2, + 1, + 1 + ], + [ + 909, + 68, + 2, + 1, + 0 + ], + [ + 910, + 36, + 2, + 1, + 1 + ], + [ + 910, + 76, + 2, + 1, + 0 + ], + [ + 910, + 78, + 2, + 1, + 1 + ], + [ + 910, + 102, + 2, + 1, + 0 + ], + [ + 911, + 25, + 0, + 1, + 1 + ], + [ + 913, + 18, + 2, + 1, + 1 + ], + [ + 915, + 14, + 2, + 1, + 0 + ], + [ + 916, + 10, + 1, + 1, + 0 + ], + [ + 918, + 35, + 2, + 1, + 1 + ], + [ + 919, + 90, + 2, + 1, + 1 + ], + [ + 920, + 33, + 2, + 1, + 1 + ], + [ + 920, + 41, + 2, + 1, + 0 + ], + [ + 920, + 43, + 0, + 1, + 1 + ], + [ + 920, + 91, + 2, + 1, + 0 + ], + [ + 921, + 32, + 2, + 1, + 1 + ], + [ + 921, + 52, + 2, + 1, + 0 + ], + [ + 921, + 54, + 2, + 1, + 1 + ], + [ + 921, + 71, + 2, + 1, + 0 + ], + [ + 921, + 73, + 0, + 1, + 1 + ], + [ + 921, + 139, + 2, + 1, + 0 + ], + [ + 922, + 20, + 2, + 1, + 1 + ], + [ + 926, + 36, + 2, + 1, + 1 + ], + [ + 926, + 40, + 2, + 1, + 0 + ], + [ + 926, + 42, + 2, + 1, + 1 + ], + [ + 926, + 68, + 2, + 1, + 0 + ], + [ + 927, + 36, + 2, + 1, + 1 + ], + [ + 927, + 76, + 2, + 1, + 0 + ], + [ + 927, + 78, + 2, + 1, + 1 + ], + [ + 927, + 102, + 2, + 1, + 0 + ], + [ + 928, + 25, + 0, + 1, + 1 + ], + [ + 930, + 18, + 2, + 1, + 1 + ], + [ + 932, + 14, + 2, + 1, + 0 + ], + [ + 933, + 10, + 1, + 1, + 0 + ], + [ + 934, + 6, + 0, + 0, + 0 + ], + [ + 936, + 27, + 1, + 1, + 1 + ], + [ + 937, + 35, + 2, + 1, + 1 + ], + [ + 938, + 71, + 2, + 1, + 1 + ], + [ + 939, + 33, + 2, + 1, + 1 + ], + [ + 939, + 41, + 2, + 1, + 0 + ], + [ + 939, + 43, + 0, + 1, + 1 + ], + [ + 939, + 91, + 2, + 1, + 0 + ], + [ + 940, + 32, + 2, + 1, + 1 + ], + [ + 940, + 52, + 2, + 1, + 0 + ], + [ + 940, + 54, + 2, + 1, + 1 + ], + [ + 940, + 71, + 2, + 1, + 0 + ], + [ + 940, + 73, + 0, + 1, + 1 + ], + [ + 940, + 139, + 2, + 1, + 0 + ], + [ + 945, + 32, + 2, + 1, + 1 + ], + [ + 945, + 42, + 2, + 1, + 0 + ], + [ + 945, + 44, + 2, + 1, + 1 + ], + [ + 945, + 55, + 2, + 1, + 0 + ], + [ + 945, + 57, + 0, + 1, + 1 + ], + [ + 945, + 83, + 2, + 1, + 0 + ], + [ + 946, + 32, + 2, + 1, + 1 + ], + [ + 946, + 44, + 2, + 1, + 0 + ], + [ + 946, + 46, + 2, + 1, + 1 + ], + [ + 946, + 57, + 2, + 1, + 0 + ], + [ + 946, + 59, + 0, + 1, + 1 + ], + [ + 946, + 87, + 2, + 1, + 0 + ], + [ + 947, + 32, + 2, + 1, + 1 + ], + [ + 947, + 48, + 2, + 1, + 0 + ], + [ + 947, + 50, + 2, + 1, + 1 + ], + [ + 947, + 52, + 2, + 1, + 0 + ], + [ + 947, + 54, + 0, + 1, + 1 + ], + [ + 947, + 86, + 2, + 1, + 0 + ], + [ + 950, + 10, + 1, + 1, + 0 + ], + [ + 952, + 35, + 2, + 1, + 1 + ], + [ + 953, + 71, + 2, + 1, + 1 + ], + [ + 954, + 33, + 2, + 1, + 1 + ], + [ + 954, + 41, + 2, + 1, + 0 + ], + [ + 954, + 43, + 0, + 1, + 1 + ], + [ + 954, + 91, + 2, + 1, + 0 + ], + [ + 955, + 32, + 2, + 1, + 1 + ], + [ + 955, + 52, + 2, + 1, + 0 + ], + [ + 955, + 54, + 2, + 1, + 1 + ], + [ + 955, + 71, + 2, + 1, + 0 + ], + [ + 955, + 73, + 0, + 1, + 1 + ], + [ + 955, + 139, + 2, + 1, + 0 + ], + [ + 960, + 32, + 2, + 1, + 1 + ], + [ + 960, + 42, + 2, + 1, + 0 + ], + [ + 960, + 44, + 2, + 1, + 1 + ], + [ + 960, + 63, + 2, + 1, + 0 + ], + [ + 960, + 65, + 0, + 1, + 1 + ], + [ + 960, + 91, + 2, + 1, + 0 + ], + [ + 961, + 32, + 2, + 1, + 1 + ], + [ + 961, + 44, + 2, + 1, + 0 + ], + [ + 961, + 46, + 2, + 1, + 1 + ], + [ + 961, + 59, + 2, + 1, + 0 + ], + [ + 961, + 61, + 0, + 1, + 1 + ], + [ + 961, + 89, + 2, + 1, + 0 + ], + [ + 962, + 32, + 2, + 1, + 1 + ], + [ + 962, + 48, + 2, + 1, + 0 + ], + [ + 962, + 50, + 2, + 1, + 1 + ], + [ + 962, + 59, + 2, + 1, + 0 + ], + [ + 962, + 61, + 0, + 1, + 1 + ], + [ + 962, + 93, + 2, + 1, + 0 + ], + [ + 965, + 10, + 1, + 1, + 0 + ], + [ + 967, + 35, + 2, + 1, + 1 + ], + [ + 968, + 71, + 2, + 1, + 1 + ], + [ + 969, + 33, + 2, + 1, + 1 + ], + [ + 969, + 41, + 2, + 1, + 0 + ], + [ + 969, + 43, + 0, + 1, + 1 + ], + [ + 969, + 91, + 2, + 1, + 0 + ], + [ + 970, + 32, + 2, + 1, + 1 + ], + [ + 970, + 52, + 2, + 1, + 0 + ], + [ + 970, + 54, + 2, + 1, + 1 + ], + [ + 970, + 71, + 2, + 1, + 0 + ], + [ + 970, + 73, + 0, + 1, + 1 + ], + [ + 970, + 139, + 2, + 1, + 0 + ], + [ + 975, + 32, + 2, + 1, + 1 + ], + [ + 975, + 42, + 2, + 1, + 0 + ], + [ + 975, + 44, + 2, + 1, + 1 + ], + [ + 975, + 67, + 2, + 1, + 0 + ], + [ + 975, + 69, + 0, + 1, + 1 + ], + [ + 975, + 95, + 2, + 1, + 0 + ], + [ + 976, + 32, + 2, + 1, + 1 + ], + [ + 976, + 44, + 2, + 1, + 0 + ], + [ + 976, + 46, + 2, + 1, + 1 + ], + [ + 976, + 61, + 2, + 1, + 0 + ], + [ + 976, + 63, + 0, + 1, + 1 + ], + [ + 976, + 91, + 2, + 1, + 0 + ], + [ + 977, + 32, + 2, + 1, + 1 + ], + [ + 977, + 48, + 2, + 1, + 0 + ], + [ + 977, + 50, + 2, + 1, + 1 + ], + [ + 977, + 62, + 2, + 1, + 0 + ], + [ + 977, + 64, + 0, + 1, + 1 + ], + [ + 977, + 96, + 2, + 1, + 0 + ], + [ + 980, + 10, + 1, + 1, + 0 + ], + [ + 981, + 6, + 0, + 0, + 0 + ], + [ + 983, + 26, + 1, + 1, + 1 + ], + [ + 984, + 35, + 2, + 1, + 1 + ], + [ + 985, + 70, + 2, + 1, + 1 + ], + [ + 986, + 33, + 2, + 1, + 1 + ], + [ + 986, + 41, + 2, + 1, + 0 + ], + [ + 986, + 43, + 0, + 1, + 1 + ], + [ + 986, + 91, + 2, + 1, + 0 + ], + [ + 987, + 32, + 2, + 1, + 1 + ], + [ + 987, + 52, + 2, + 1, + 0 + ], + [ + 987, + 54, + 2, + 1, + 1 + ], + [ + 987, + 71, + 2, + 1, + 0 + ], + [ + 987, + 73, + 0, + 1, + 1 + ], + [ + 987, + 139, + 2, + 1, + 0 + ], + [ + 988, + 32, + 2, + 1, + 1 + ], + [ + 988, + 71, + 2, + 1, + 0 + ], + [ + 988, + 73, + 2, + 1, + 1 + ], + [ + 988, + 81, + 2, + 1, + 0 + ], + [ + 988, + 83, + 0, + 1, + 1 + ], + [ + 988, + 107, + 2, + 1, + 0 + ], + [ + 989, + 20, + 2, + 1, + 1 + ], + [ + 991, + 36, + 2, + 1, + 1 + ], + [ + 991, + 40, + 2, + 1, + 0 + ], + [ + 991, + 42, + 2, + 1, + 1 + ], + [ + 991, + 104, + 2, + 1, + 0 + ], + [ + 992, + 25, + 0, + 1, + 1 + ], + [ + 994, + 18, + 2, + 1, + 1 + ], + [ + 996, + 14, + 2, + 1, + 0 + ], + [ + 997, + 10, + 1, + 1, + 0 + ], + [ + 998, + 6, + 0, + 0, + 0 + ], + [ + 1000, + 21, + 1, + 1, + 1 + ], + [ + 1001, + 35, + 2, + 1, + 1 + ], + [ + 1002, + 65, + 2, + 1, + 1 + ], + [ + 1003, + 33, + 2, + 1, + 1 + ], + [ + 1003, + 41, + 2, + 1, + 0 + ], + [ + 1003, + 43, + 0, + 1, + 1 + ], + [ + 1003, + 91, + 2, + 1, + 0 + ], + [ + 1004, + 32, + 2, + 1, + 1 + ], + [ + 1004, + 52, + 2, + 1, + 0 + ], + [ + 1004, + 54, + 2, + 1, + 1 + ], + [ + 1004, + 71, + 2, + 1, + 0 + ], + [ + 1004, + 73, + 0, + 1, + 1 + ], + [ + 1004, + 139, + 2, + 1, + 0 + ], + [ + 1005, + 20, + 2, + 1, + 1 + ], + [ + 1008, + 36, + 2, + 1, + 1 + ], + [ + 1008, + 40, + 2, + 1, + 0 + ], + [ + 1008, + 42, + 2, + 1, + 1 + ], + [ + 1008, + 124, + 2, + 1, + 0 + ], + [ + 1009, + 25, + 0, + 1, + 1 + ], + [ + 1011, + 18, + 2, + 1, + 1 + ], + [ + 1013, + 14, + 2, + 1, + 0 + ], + [ + 1014, + 10, + 1, + 1, + 0 + ], + [ + 1016, + 47, + 2, + 1, + 1 + ], + [ + 1017, + 65, + 2, + 1, + 1 + ], + [ + 1018, + 33, + 2, + 1, + 1 + ], + [ + 1018, + 41, + 2, + 1, + 0 + ], + [ + 1018, + 43, + 0, + 1, + 1 + ], + [ + 1018, + 91, + 2, + 1, + 0 + ], + [ + 1019, + 32, + 2, + 1, + 1 + ], + [ + 1019, + 52, + 2, + 1, + 0 + ], + [ + 1019, + 54, + 2, + 1, + 1 + ], + [ + 1019, + 71, + 2, + 1, + 0 + ], + [ + 1019, + 73, + 0, + 1, + 1 + ], + [ + 1019, + 139, + 2, + 1, + 0 + ], + [ + 1020, + 32, + 2, + 1, + 1 + ], + [ + 1020, + 72, + 2, + 1, + 0 + ], + [ + 1020, + 74, + 2, + 1, + 1 + ], + [ + 1020, + 92, + 2, + 1, + 0 + ], + [ + 1020, + 94, + 0, + 1, + 1 + ], + [ + 1020, + 121, + 2, + 1, + 0 + ], + [ + 1021, + 20, + 2, + 1, + 1 + ], + [ + 1025, + 36, + 2, + 1, + 1 + ], + [ + 1025, + 46, + 2, + 1, + 0 + ], + [ + 1025, + 48, + 2, + 1, + 1 + ], + [ + 1025, + 52, + 2, + 1, + 0 + ], + [ + 1026, + 25, + 0, + 1, + 1 + ], + [ + 1028, + 18, + 2, + 1, + 1 + ], + [ + 1030, + 14, + 2, + 1, + 0 + ], + [ + 1031, + 10, + 1, + 1, + 0 + ], + [ + 1032, + 9, + 2, + 1, + 1 + ], + [ + 1033, + 75, + 2, + 1, + 1 + ], + [ + 1034, + 33, + 2, + 1, + 1 + ], + [ + 1034, + 41, + 2, + 1, + 0 + ], + [ + 1034, + 43, + 0, + 1, + 1 + ], + [ + 1034, + 91, + 2, + 1, + 0 + ], + [ + 1035, + 32, + 2, + 1, + 1 + ], + [ + 1035, + 52, + 2, + 1, + 0 + ], + [ + 1035, + 54, + 2, + 1, + 1 + ], + [ + 1035, + 71, + 2, + 1, + 0 + ], + [ + 1035, + 73, + 0, + 1, + 1 + ], + [ + 1035, + 139, + 2, + 1, + 0 + ], + [ + 1036, + 32, + 2, + 1, + 1 + ], + [ + 1036, + 72, + 2, + 1, + 0 + ], + [ + 1036, + 74, + 2, + 1, + 1 + ], + [ + 1036, + 92, + 2, + 1, + 0 + ], + [ + 1036, + 94, + 0, + 1, + 1 + ], + [ + 1036, + 121, + 2, + 1, + 0 + ], + [ + 1037, + 20, + 2, + 1, + 1 + ], + [ + 1039, + 36, + 2, + 1, + 1 + ], + [ + 1039, + 57, + 2, + 1, + 0 + ], + [ + 1039, + 59, + 2, + 1, + 1 + ], + [ + 1039, + 63, + 2, + 1, + 0 + ], + [ + 1040, + 25, + 0, + 1, + 1 + ], + [ + 1042, + 18, + 2, + 1, + 1 + ], + [ + 1044, + 14, + 2, + 1, + 0 + ], + [ + 1045, + 10, + 1, + 1, + 0 + ], + [ + 1046, + 9, + 2, + 1, + 1 + ], + [ + 1047, + 82, + 2, + 1, + 1 + ], + [ + 1048, + 33, + 2, + 1, + 1 + ], + [ + 1048, + 41, + 2, + 1, + 0 + ], + [ + 1048, + 43, + 0, + 1, + 1 + ], + [ + 1048, + 91, + 2, + 1, + 0 + ], + [ + 1049, + 32, + 2, + 1, + 1 + ], + [ + 1049, + 52, + 2, + 1, + 0 + ], + [ + 1049, + 54, + 2, + 1, + 1 + ], + [ + 1049, + 71, + 2, + 1, + 0 + ], + [ + 1049, + 73, + 0, + 1, + 1 + ], + [ + 1049, + 139, + 2, + 1, + 0 + ], + [ + 1050, + 32, + 2, + 1, + 1 + ], + [ + 1050, + 72, + 2, + 1, + 0 + ], + [ + 1050, + 74, + 2, + 1, + 1 + ], + [ + 1050, + 92, + 2, + 1, + 0 + ], + [ + 1050, + 94, + 0, + 1, + 1 + ], + [ + 1050, + 121, + 2, + 1, + 0 + ], + [ + 1051, + 20, + 2, + 1, + 1 + ], + [ + 1055, + 36, + 2, + 1, + 1 + ], + [ + 1055, + 56, + 2, + 1, + 0 + ], + [ + 1055, + 58, + 2, + 1, + 1 + ], + [ + 1055, + 62, + 2, + 1, + 0 + ], + [ + 1056, + 25, + 0, + 1, + 1 + ], + [ + 1058, + 18, + 2, + 1, + 1 + ], + [ + 1060, + 14, + 2, + 1, + 0 + ], + [ + 1061, + 10, + 1, + 1, + 0 + ], + [ + 1062, + 9, + 2, + 1, + 1 + ], + [ + 1063, + 70, + 2, + 1, + 1 + ], + [ + 1064, + 33, + 2, + 1, + 1 + ], + [ + 1064, + 41, + 2, + 1, + 0 + ], + [ + 1064, + 43, + 0, + 1, + 1 + ], + [ + 1064, + 91, + 2, + 1, + 0 + ], + [ + 1065, + 32, + 2, + 1, + 1 + ], + [ + 1065, + 52, + 2, + 1, + 0 + ], + [ + 1065, + 54, + 2, + 1, + 1 + ], + [ + 1065, + 71, + 2, + 1, + 0 + ], + [ + 1065, + 73, + 0, + 1, + 1 + ], + [ + 1065, + 139, + 2, + 1, + 0 + ], + [ + 1066, + 32, + 2, + 1, + 1 + ], + [ + 1066, + 72, + 2, + 1, + 0 + ], + [ + 1066, + 74, + 2, + 1, + 1 + ], + [ + 1066, + 92, + 2, + 1, + 0 + ], + [ + 1066, + 94, + 0, + 1, + 1 + ], + [ + 1066, + 121, + 2, + 1, + 0 + ], + [ + 1067, + 20, + 2, + 1, + 1 + ], + [ + 1069, + 36, + 2, + 1, + 1 + ], + [ + 1069, + 74, + 2, + 1, + 0 + ], + [ + 1069, + 76, + 2, + 1, + 1 + ], + [ + 1069, + 80, + 2, + 1, + 0 + ], + [ + 1070, + 25, + 0, + 1, + 1 + ], + [ + 1072, + 18, + 2, + 1, + 1 + ], + [ + 1074, + 14, + 2, + 1, + 0 + ], + [ + 1075, + 10, + 1, + 1, + 0 + ], + [ + 1076, + 9, + 2, + 1, + 1 + ], + [ + 1077, + 77, + 2, + 1, + 1 + ], + [ + 1078, + 33, + 2, + 1, + 1 + ], + [ + 1078, + 41, + 2, + 1, + 0 + ], + [ + 1078, + 43, + 0, + 1, + 1 + ], + [ + 1078, + 91, + 2, + 1, + 0 + ], + [ + 1079, + 32, + 2, + 1, + 1 + ], + [ + 1079, + 52, + 2, + 1, + 0 + ], + [ + 1079, + 54, + 2, + 1, + 1 + ], + [ + 1079, + 71, + 2, + 1, + 0 + ], + [ + 1079, + 73, + 0, + 1, + 1 + ], + [ + 1079, + 139, + 2, + 1, + 0 + ], + [ + 1080, + 32, + 2, + 1, + 1 + ], + [ + 1080, + 72, + 2, + 1, + 0 + ], + [ + 1080, + 74, + 2, + 1, + 1 + ], + [ + 1080, + 92, + 2, + 1, + 0 + ], + [ + 1080, + 94, + 0, + 1, + 1 + ], + [ + 1080, + 121, + 2, + 1, + 0 + ], + [ + 1081, + 20, + 2, + 1, + 1 + ], + [ + 1085, + 36, + 2, + 1, + 1 + ], + [ + 1085, + 60, + 2, + 1, + 0 + ], + [ + 1085, + 62, + 2, + 1, + 1 + ], + [ + 1085, + 66, + 2, + 1, + 0 + ], + [ + 1086, + 25, + 0, + 1, + 1 + ], + [ + 1088, + 18, + 2, + 1, + 1 + ], + [ + 1090, + 14, + 2, + 1, + 0 + ], + [ + 1091, + 10, + 1, + 1, + 0 + ], + [ + 1093, + 35, + 2, + 1, + 1 + ], + [ + 1094, + 69, + 2, + 1, + 1 + ], + [ + 1095, + 33, + 2, + 1, + 1 + ], + [ + 1095, + 41, + 2, + 1, + 0 + ], + [ + 1095, + 43, + 0, + 1, + 1 + ], + [ + 1095, + 91, + 2, + 1, + 0 + ], + [ + 1096, + 32, + 2, + 1, + 1 + ], + [ + 1096, + 52, + 2, + 1, + 0 + ], + [ + 1096, + 54, + 2, + 1, + 1 + ], + [ + 1096, + 71, + 2, + 1, + 0 + ], + [ + 1096, + 73, + 0, + 1, + 1 + ], + [ + 1096, + 139, + 2, + 1, + 0 + ], + [ + 1097, + 32, + 2, + 1, + 1 + ], + [ + 1097, + 72, + 2, + 1, + 0 + ], + [ + 1097, + 74, + 2, + 1, + 1 + ], + [ + 1097, + 85, + 2, + 1, + 0 + ], + [ + 1097, + 87, + 0, + 1, + 1 + ], + [ + 1097, + 114, + 2, + 1, + 0 + ], + [ + 1098, + 20, + 2, + 1, + 1 + ], + [ + 1100, + 36, + 2, + 1, + 1 + ], + [ + 1100, + 40, + 2, + 1, + 0 + ], + [ + 1100, + 42, + 2, + 1, + 1 + ], + [ + 1100, + 99, + 2, + 1, + 0 + ], + [ + 1101, + 25, + 0, + 1, + 1 + ], + [ + 1103, + 18, + 2, + 1, + 1 + ], + [ + 1106, + 14, + 2, + 1, + 0 + ], + [ + 1107, + 10, + 1, + 1, + 0 + ], + [ + 1109, + 6, + 0, + 0, + 0 + ], + [ + 1111, + 29, + 1, + 1, + 1 + ], + [ + 1112, + 35, + 2, + 1, + 1 + ], + [ + 1113, + 75, + 2, + 1, + 1 + ], + [ + 1114, + 33, + 2, + 1, + 1 + ], + [ + 1114, + 41, + 2, + 1, + 0 + ], + [ + 1114, + 43, + 0, + 1, + 1 + ], + [ + 1114, + 91, + 2, + 1, + 0 + ], + [ + 1115, + 32, + 2, + 1, + 1 + ], + [ + 1115, + 52, + 2, + 1, + 0 + ], + [ + 1115, + 54, + 2, + 1, + 1 + ], + [ + 1115, + 78, + 2, + 1, + 0 + ], + [ + 1115, + 80, + 0, + 1, + 1 + ], + [ + 1115, + 146, + 2, + 1, + 0 + ], + [ + 1116, + 20, + 2, + 1, + 1 + ], + [ + 1118, + 36, + 2, + 1, + 1 + ], + [ + 1118, + 54, + 2, + 1, + 0 + ], + [ + 1118, + 56, + 2, + 1, + 1 + ], + [ + 1118, + 141, + 2, + 1, + 0 + ], + [ + 1119, + 25, + 0, + 1, + 1 + ], + [ + 1121, + 18, + 2, + 1, + 1 + ], + [ + 1123, + 14, + 2, + 1, + 0 + ], + [ + 1124, + 10, + 1, + 1, + 0 + ], + [ + 1125, + 6, + 0, + 0, + 0 + ], + [ + 1127, + 46, + 1, + 1, + 1 + ], + [ + 1128, + 47, + 2, + 1, + 1 + ], + [ + 1129, + 79, + 2, + 1, + 1 + ], + [ + 1130, + 33, + 2, + 1, + 1 + ], + [ + 1130, + 41, + 2, + 1, + 0 + ], + [ + 1130, + 43, + 0, + 1, + 1 + ], + [ + 1130, + 91, + 2, + 1, + 0 + ], + [ + 1131, + 32, + 2, + 1, + 1 + ], + [ + 1131, + 52, + 2, + 1, + 0 + ], + [ + 1131, + 54, + 2, + 1, + 1 + ], + [ + 1131, + 57, + 2, + 1, + 0 + ], + [ + 1131, + 59, + 0, + 1, + 1 + ], + [ + 1131, + 125, + 2, + 1, + 0 + ], + [ + 1134, + 10, + 1, + 1, + 0 + ], + [ + 1135, + 9, + 2, + 1, + 1 + ], + [ + 1136, + 84, + 2, + 1, + 1 + ], + [ + 1137, + 33, + 2, + 1, + 1 + ], + [ + 1137, + 41, + 2, + 1, + 0 + ], + [ + 1137, + 43, + 0, + 1, + 1 + ], + [ + 1137, + 91, + 2, + 1, + 0 + ], + [ + 1138, + 32, + 2, + 1, + 1 + ], + [ + 1138, + 52, + 2, + 1, + 0 + ], + [ + 1138, + 54, + 2, + 1, + 1 + ], + [ + 1138, + 63, + 2, + 1, + 0 + ], + [ + 1138, + 65, + 0, + 1, + 1 + ], + [ + 1138, + 131, + 2, + 1, + 0 + ], + [ + 1141, + 10, + 1, + 1, + 0 + ], + [ + 1142, + 6, + 0, + 0, + 0 + ], + [ + 1144, + 25, + 1, + 1, + 1 + ], + [ + 1145, + 35, + 2, + 1, + 1 + ], + [ + 1146, + 70, + 2, + 1, + 1 + ], + [ + 1147, + 33, + 2, + 1, + 1 + ], + [ + 1147, + 41, + 2, + 1, + 0 + ], + [ + 1147, + 43, + 0, + 1, + 1 + ], + [ + 1147, + 91, + 2, + 1, + 0 + ], + [ + 1148, + 32, + 2, + 1, + 1 + ], + [ + 1148, + 52, + 2, + 1, + 0 + ], + [ + 1148, + 54, + 2, + 1, + 1 + ], + [ + 1148, + 71, + 2, + 1, + 0 + ], + [ + 1148, + 73, + 0, + 1, + 1 + ], + [ + 1148, + 139, + 2, + 1, + 0 + ], + [ + 1149, + 20, + 2, + 1, + 1 + ], + [ + 1151, + 36, + 2, + 1, + 1 + ], + [ + 1151, + 40, + 2, + 1, + 0 + ], + [ + 1151, + 42, + 2, + 1, + 1 + ], + [ + 1151, + 55, + 2, + 1, + 0 + ], + [ + 1152, + 25, + 0, + 1, + 1 + ], + [ + 1154, + 18, + 2, + 1, + 1 + ], + [ + 1156, + 14, + 2, + 1, + 0 + ], + [ + 1157, + 10, + 1, + 1, + 0 + ], + [ + 1158, + 6, + 0, + 0, + 0 + ], + [ + 1164, + 34, + 6, + 1, + 1 + ], + [ + 1174, + 10, + 0, + 0, + 0 + ], + [ + 1177, + 33, + 12, + 1, + 1 + ], + [ + 1180, + 10, + 0, + 0, + 0 + ], + [ + 1182, + 29, + 2, + 1, + 1 + ], + [ + 1184, + 16, + 2, + 1, + 1 + ], + [ + 1186, + 14, + 2, + 1, + 0 + ], + [ + 1186, + 21, + 0, + 1, + 1 + ], + [ + 1188, + 14, + 2, + 1, + 1 + ], + [ + 1190, + 10, + 0, + 0, + 0 + ], + [ + 1192, + 33, + 2, + 1, + 1 + ], + [ + 1193, + 16, + 2, + 1, + 1 + ], + [ + 1194, + 71, + 0, + 1, + 1 + ], + [ + 1194, + 75, + 2, + 1, + 0 + ], + [ + 1195, + 69, + 0, + 1, + 1 + ], + [ + 1195, + 73, + 2, + 1, + 0 + ], + [ + 1196, + 57, + 2, + 1, + 1 + ], + [ + 1198, + 18, + 2, + 1, + 1 + ], + [ + 1200, + 14, + 2, + 1, + 0 + ], + [ + 1200, + 21, + 0, + 1, + 1 + ], + [ + 1202, + 14, + 2, + 1, + 1 + ], + [ + 1203, + 10, + 0, + 0, + 0 + ], + [ + 1205, + 35, + 2, + 1, + 1 + ], + [ + 1206, + 16, + 2, + 1, + 1 + ], + [ + 1210, + 14, + 2, + 1, + 0 + ], + [ + 1210, + 21, + 0, + 1, + 1 + ], + [ + 1212, + 14, + 2, + 1, + 1 + ], + [ + 1213, + 10, + 0, + 0, + 0 + ], + [ + 1215, + 39, + 2, + 1, + 1 + ], + [ + 1216, + 16, + 2, + 1, + 1 + ], + [ + 1219, + 14, + 2, + 1, + 0 + ], + [ + 1219, + 21, + 0, + 1, + 1 + ], + [ + 1221, + 14, + 2, + 1, + 1 + ], + [ + 1222, + 10, + 0, + 0, + 0 + ], + [ + 1224, + 42, + 2, + 1, + 1 + ], + [ + 1225, + 16, + 2, + 1, + 1 + ], + [ + 1228, + 14, + 2, + 1, + 0 + ], + [ + 1228, + 21, + 0, + 1, + 1 + ], + [ + 1230, + 14, + 2, + 1, + 1 + ], + [ + 1231, + 10, + 0, + 0, + 0 + ], + [ + 1233, + 36, + 2, + 1, + 1 + ], + [ + 1236, + 10, + 0, + 0, + 0 + ], + [ + 1238, + 37, + 2, + 1, + 1 + ], + [ + 1239, + 10, + 0, + 0, + 0 + ], + [ + 1241, + 33, + 12, + 1, + 1 + ], + [ + 1243, + 50, + 0, + 1, + 1 + ], + [ + 1243, + 57, + 12, + 1, + 0 + ], + [ + 1244, + 53, + 0, + 1, + 1 + ], + [ + 1244, + 60, + 12, + 1, + 0 + ], + [ + 1245, + 59, + 0, + 1, + 1 + ], + [ + 1245, + 66, + 12, + 1, + 0 + ], + [ + 1246, + 16, + 12, + 1, + 1 + ], + [ + 1248, + 14, + 12, + 1, + 0 + ], + [ + 1248, + 21, + 0, + 1, + 1 + ], + [ + 1250, + 14, + 12, + 1, + 1 + ], + [ + 1252, + 10, + 0, + 0, + 0 + ], + [ + 1254, + 33, + 2, + 1, + 1 + ], + [ + 1255, + 16, + 2, + 1, + 1 + ], + [ + 1257, + 14, + 2, + 1, + 0 + ], + [ + 1257, + 21, + 0, + 1, + 1 + ], + [ + 1259, + 14, + 2, + 1, + 1 + ], + [ + 1262, + 10, + 0, + 0, + 0 + ], + [ + 1264, + 35, + 2, + 1, + 1 + ], + [ + 1265, + 16, + 2, + 1, + 1 + ], + [ + 1267, + 14, + 2, + 1, + 0 + ], + [ + 1267, + 21, + 0, + 1, + 1 + ], + [ + 1270, + 14, + 2, + 1, + 1 + ], + [ + 1271, + 10, + 0, + 0, + 0 + ], + [ + 1274, + 30, + 2, + 1, + 1 + ], + [ + 1278, + 10, + 0, + 0, + 0 + ], + [ + 1281, + 14, + 2, + 1, + 1 + ], + [ + 1284, + 10, + 0, + 0, + 0 + ], + [ + 1285, + 15, + 2, + 1, + 1 + ], + [ + 1288, + 10, + 0, + 0, + 0 + ], + [ + 1289, + 14, + 2, + 1, + 1 + ], + [ + 1292, + 10, + 0, + 0, + 0 + ], + [ + 1294, + 46, + 14, + 1, + 1 + ], + [ + 1295, + 55, + 0, + 1, + 1 + ], + [ + 1298, + 14, + 14, + 1, + 1 + ], + [ + 1300, + 58, + 4, + 1, + 1 + ], + [ + 1301, + 20, + 4, + 1, + 1 + ], + [ + 1304, + 18, + 4, + 1, + 0 + ], + [ + 1304, + 25, + 0, + 1, + 1 + ], + [ + 1306, + 18, + 4, + 1, + 1 + ], + [ + 1307, + 14, + 14, + 1, + 1 + ], + [ + 1307, + 75, + 2, + 1, + 1 + ], + [ + 1308, + 20, + 2, + 1, + 1 + ], + [ + 1311, + 18, + 2, + 1, + 0 + ], + [ + 1311, + 25, + 0, + 1, + 1 + ], + [ + 1313, + 18, + 2, + 1, + 1 + ], + [ + 1314, + 14, + 14, + 1, + 1 + ], + [ + 1314, + 53, + 4, + 1, + 1 + ], + [ + 1315, + 20, + 4, + 1, + 1 + ], + [ + 1318, + 18, + 4, + 1, + 0 + ], + [ + 1318, + 25, + 0, + 1, + 1 + ], + [ + 1320, + 18, + 4, + 1, + 1 + ], + [ + 1321, + 14, + 14, + 1, + 1 + ], + [ + 1321, + 53, + 2, + 1, + 1 + ], + [ + 1322, + 20, + 2, + 1, + 1 + ], + [ + 1325, + 18, + 2, + 1, + 0 + ], + [ + 1325, + 25, + 0, + 1, + 1 + ], + [ + 1327, + 18, + 2, + 1, + 1 + ], + [ + 1328, + 14, + 14, + 1, + 1 + ], + [ + 1328, + 52, + 2, + 1, + 1 + ], + [ + 1329, + 33, + 2, + 1, + 1 + ], + [ + 1329, + 37, + 2, + 1, + 0 + ], + [ + 1333, + 14, + 14, + 1, + 1 + ], + [ + 1333, + 20, + 12, + 1, + 1 + ], + [ + 1335, + 14, + 14, + 1, + 1 + ], + [ + 1338, + 10, + 0, + 0, + 0 + ], + [ + 1346, + 41, + 2, + 1, + 1 + ], + [ + 1348, + 62, + 0, + 1, + 1 + ], + [ + 1348, + 63, + 2, + 1, + 0 + ], + [ + 1350, + 10, + 0, + 0, + 0 + ], + [ + 1359, + 39, + 8, + 1, + 1 + ], + [ + 1360, + 48, + 2, + 1, + 1 + ], + [ + 1363, + 14, + 6, + 1, + 1 + ], + [ + 1364, + 53, + 0, + 1, + 1 + ], + [ + 1368, + 14, + 6, + 1, + 1 + ], + [ + 1369, + 31, + 14, + 1, + 1 + ], + [ + 1371, + 14, + 6, + 1, + 1 + ], + [ + 1374, + 10, + 0, + 0, + 0 + ], + [ + 1376, + 77, + 2, + 1, + 1 + ], + [ + 1377, + 16, + 2, + 1, + 1 + ], + [ + 1379, + 14, + 2, + 1, + 0 + ], + [ + 1379, + 21, + 0, + 1, + 1 + ], + [ + 1379, + 23, + 2, + 1, + 1 + ], + [ + 1381, + 10, + 0, + 0, + 0 + ], + [ + 1383, + 77, + 2, + 1, + 1 + ], + [ + 1384, + 16, + 2, + 1, + 1 + ], + [ + 1386, + 14, + 2, + 1, + 0 + ], + [ + 1386, + 21, + 0, + 1, + 1 + ], + [ + 1386, + 23, + 2, + 1, + 1 + ], + [ + 1388, + 10, + 0, + 0, + 0 + ], + [ + 1390, + 80, + 2, + 1, + 1 + ], + [ + 1391, + 16, + 2, + 1, + 1 + ], + [ + 1394, + 14, + 2, + 1, + 0 + ], + [ + 1394, + 21, + 0, + 1, + 1 + ], + [ + 1394, + 23, + 2, + 1, + 1 + ], + [ + 1396, + 10, + 0, + 0, + 0 + ], + [ + 1398, + 31, + 6, + 1, + 1 + ], + [ + 1399, + 16, + 6, + 1, + 1 + ], + [ + 1404, + 14, + 6, + 1, + 0 + ], + [ + 1404, + 21, + 0, + 1, + 1 + ], + [ + 1404, + 23, + 6, + 1, + 1 + ], + [ + 1405, + 10, + 0, + 0, + 0 + ], + [ + 1407, + 36, + 2, + 1, + 1 + ], + [ + 1408, + 16, + 2, + 1, + 1 + ], + [ + 1412, + 14, + 2, + 1, + 0 + ], + [ + 1412, + 21, + 0, + 1, + 1 + ], + [ + 1412, + 23, + 2, + 1, + 1 + ], + [ + 1413, + 10, + 0, + 0, + 0 + ], + [ + 1415, + 39, + 2, + 1, + 1 + ], + [ + 1416, + 16, + 2, + 1, + 1 + ], + [ + 1422, + 14, + 2, + 1, + 0 + ], + [ + 1422, + 21, + 0, + 1, + 1 + ], + [ + 1422, + 23, + 2, + 1, + 1 + ], + [ + 1423, + 10, + 0, + 0, + 0 + ], + [ + 1425, + 30, + 6, + 1, + 1 + ], + [ + 1428, + 16, + 6, + 1, + 1 + ], + [ + 1429, + 20, + 6, + 1, + 1 + ], + [ + 1431, + 18, + 6, + 1, + 0 + ], + [ + 1431, + 56, + 4, + 1, + 1 + ], + [ + 1433, + 18, + 6, + 1, + 1 + ], + [ + 1434, + 14, + 6, + 1, + 0 + ], + [ + 1434, + 21, + 0, + 1, + 1 + ], + [ + 1434, + 23, + 6, + 1, + 1 + ], + [ + 1435, + 10, + 0, + 0, + 0 + ], + [ + 1437, + 33, + 2, + 1, + 1 + ], + [ + 1440, + 16, + 2, + 1, + 1 + ], + [ + 1441, + 20, + 2, + 1, + 1 + ], + [ + 1443, + 18, + 2, + 1, + 0 + ], + [ + 1443, + 56, + 0, + 1, + 1 + ], + [ + 1445, + 18, + 2, + 1, + 1 + ], + [ + 1446, + 14, + 2, + 1, + 0 + ], + [ + 1446, + 21, + 0, + 1, + 1 + ], + [ + 1446, + 23, + 2, + 1, + 1 + ], + [ + 1447, + 10, + 0, + 0, + 0 + ], + [ + 1449, + 38, + 2, + 1, + 1 + ], + [ + 1455, + 16, + 2, + 1, + 1 + ], + [ + 1456, + 20, + 2, + 1, + 1 + ], + [ + 1458, + 18, + 2, + 1, + 0 + ], + [ + 1458, + 56, + 0, + 1, + 1 + ], + [ + 1460, + 18, + 2, + 1, + 1 + ], + [ + 1461, + 14, + 2, + 1, + 0 + ], + [ + 1461, + 21, + 0, + 1, + 1 + ], + [ + 1461, + 23, + 2, + 1, + 1 + ], + [ + 1462, + 10, + 0, + 0, + 0 + ], + [ + 1464, + 34, + 2, + 1, + 1 + ], + [ + 1466, + 32, + 2, + 1, + 1 + ], + [ + 1469, + 14, + 2, + 1, + 0 + ], + [ + 1473, + 56, + 2, + 1, + 1 + ], + [ + 1476, + 14, + 2, + 1, + 0 + ], + [ + 1480, + 16, + 2, + 1, + 1 + ], + [ + 1482, + 14, + 2, + 1, + 0 + ], + [ + 1482, + 21, + 0, + 1, + 1 + ], + [ + 1482, + 23, + 2, + 1, + 1 + ], + [ + 1484, + 10, + 0, + 0, + 0 + ], + [ + 1486, + 29, + 2, + 1, + 1 + ], + [ + 1487, + 16, + 2, + 1, + 1 + ], + [ + 1489, + 14, + 2, + 1, + 0 + ], + [ + 1489, + 21, + 0, + 1, + 1 + ], + [ + 1489, + 23, + 2, + 1, + 1 + ], + [ + 1491, + 10, + 0, + 0, + 0 + ], + [ + 1493, + 29, + 2, + 1, + 1 + ], + [ + 1495, + 16, + 2, + 1, + 1 + ], + [ + 1497, + 14, + 2, + 1, + 0 + ], + [ + 1497, + 21, + 0, + 1, + 1 + ], + [ + 1499, + 14, + 2, + 1, + 1 + ], + [ + 1501, + 10, + 0, + 0, + 0 + ], + [ + 1503, + 39, + 2, + 1, + 1 + ], + [ + 1505, + 16, + 2, + 1, + 1 + ], + [ + 1507, + 14, + 2, + 1, + 0 + ], + [ + 1507, + 21, + 0, + 1, + 1 + ], + [ + 1509, + 14, + 2, + 1, + 1 + ], + [ + 1511, + 10, + 0, + 0, + 0 + ], + [ + 1513, + 34, + 2, + 1, + 1 + ], + [ + 1515, + 16, + 2, + 1, + 1 + ], + [ + 1517, + 14, + 2, + 1, + 0 + ], + [ + 1517, + 21, + 0, + 1, + 1 + ], + [ + 1519, + 14, + 2, + 1, + 1 + ], + [ + 1521, + 10, + 0, + 0, + 0 + ], + [ + 1523, + 46, + 2, + 1, + 1 + ], + [ + 1525, + 16, + 2, + 1, + 1 + ], + [ + 1527, + 14, + 2, + 1, + 0 + ], + [ + 1527, + 21, + 0, + 1, + 1 + ], + [ + 1529, + 14, + 2, + 1, + 1 + ], + [ + 1531, + 10, + 0, + 0, + 0 + ], + [ + 1533, + 41, + 2, + 1, + 1 + ], + [ + 1535, + 16, + 2, + 1, + 1 + ], + [ + 1537, + 14, + 2, + 1, + 0 + ], + [ + 1537, + 21, + 0, + 1, + 1 + ], + [ + 1539, + 14, + 2, + 1, + 1 + ], + [ + 1541, + 10, + 0, + 0, + 0 + ], + [ + 1543, + 33, + 2, + 1, + 1 + ], + [ + 1544, + 16, + 2, + 1, + 1 + ], + [ + 1546, + 14, + 2, + 1, + 0 + ], + [ + 1546, + 21, + 0, + 1, + 1 + ], + [ + 1548, + 14, + 2, + 1, + 1 + ], + [ + 1550, + 10, + 0, + 0, + 0 + ], + [ + 1552, + 39, + 2, + 1, + 1 + ], + [ + 1553, + 16, + 2, + 1, + 1 + ], + [ + 1571, + 14, + 2, + 1, + 0 + ], + [ + 1571, + 21, + 0, + 1, + 1 + ], + [ + 1571, + 23, + 2, + 1, + 1 + ], + [ + 1573, + 10, + 0, + 0, + 0 + ], + [ + 1575, + 43, + 2, + 1, + 1 + ], + [ + 1576, + 23, + 2, + 1, + 1 + ], + [ + 1576, + 54, + 2, + 1, + 0 + ], + [ + 1580, + 23, + 2, + 1, + 1 + ], + [ + 1580, + 49, + 2, + 1, + 0 + ], + [ + 1581, + 10, + 0, + 0, + 0 + ], + [ + 1583, + 48, + 2, + 1, + 1 + ], + [ + 1586, + 23, + 2, + 1, + 1 + ], + [ + 1586, + 55, + 2, + 1, + 0 + ], + [ + 1590, + 23, + 2, + 1, + 1 + ], + [ + 1590, + 55, + 2, + 1, + 0 + ], + [ + 1591, + 10, + 0, + 0, + 0 + ], + [ + 1594, + 42, + 2, + 1, + 1 + ], + [ + 1599, + 10, + 0, + 0, + 0 + ], + [ + 1599, + 12, + 2, + 1, + 1 + ], + [ + 1602, + 80, + 0, + 1, + 1 + ], + [ + 1604, + 14, + 2, + 1, + 1 + ], + [ + 1607, + 10, + 0, + 0, + 0 + ], + [ + 1609, + 22, + 2, + 1, + 1 + ], + [ + 1611, + 16, + 2, + 1, + 1 + ], + [ + 1613, + 47, + 2, + 1, + 1 + ], + [ + 1615, + 18, + 2, + 1, + 1 + ], + [ + 1615, + 24, + 0, + 1, + 1 + ], + [ + 1617, + 18, + 2, + 1, + 1 + ], + [ + 1619, + 14, + 2, + 1, + 0 + ], + [ + 1619, + 21, + 0, + 1, + 1 + ], + [ + 1619, + 23, + 2, + 1, + 1 + ], + [ + 1621, + 10, + 0, + 0, + 0 + ], + [ + 1623, + 24, + 2, + 1, + 1 + ], + [ + 1626, + 10, + 0, + 0, + 0 + ], + [ + 1636, + 106, + 4, + 1, + 1 + ], + [ + 1638, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 3549, + "covered": 3282, + "percent": 92 + }, + "functions": { + "count": 688, + "covered": 540, + "percent": 78 + }, + "instantiations": { + "count": 688, + "covered": 540, + "percent": 78 + }, + "regions": { + "count": 970, + "covered": 735, + "notcovered": 235, + "percent": 75 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift", + "segments": [ + [ + 29, + 31, + 4, + 1, + 1 + ], + [ + 30, + 12, + 82, + 1, + 1 + ], + [ + 34, + 31, + 32, + 1, + 1 + ], + [ + 36, + 10, + 82, + 1, + 1 + ], + [ + 36, + 16, + 50, + 1, + 1 + ], + [ + 38, + 10, + 82, + 1, + 1 + ], + [ + 39, + 6, + 4, + 1, + 0 + ], + [ + 40, + 2, + 0, + 0, + 0 + ], + [ + 44, + 29, + 1, + 1, + 1 + ], + [ + 49, + 2, + 0, + 0, + 0 + ], + [ + 52, + 76, + 0, + 1, + 1 + ], + [ + 62, + 6, + 0, + 0, + 0 + ], + [ + 67, + 38, + 1, + 1, + 1 + ], + [ + 78, + 22, + 1, + 1, + 1 + ], + [ + 78, + 27, + 1, + 1, + 0 + ], + [ + 79, + 19, + 1, + 1, + 1 + ], + [ + 79, + 33, + 1, + 1, + 0 + ], + [ + 80, + 22, + 1, + 1, + 1 + ], + [ + 80, + 29, + 1, + 1, + 0 + ], + [ + 85, + 22, + 1, + 1, + 1 + ], + [ + 85, + 27, + 1, + 1, + 0 + ], + [ + 86, + 19, + 1, + 1, + 1 + ], + [ + 86, + 33, + 1, + 1, + 0 + ], + [ + 87, + 22, + 1, + 1, + 1 + ], + [ + 87, + 29, + 1, + 1, + 0 + ], + [ + 91, + 25, + 1, + 1, + 1 + ], + [ + 91, + 30, + 1, + 1, + 0 + ], + [ + 94, + 24, + 1, + 1, + 1 + ], + [ + 94, + 38, + 1, + 1, + 0 + ], + [ + 94, + 40, + 1, + 1, + 1 + ], + [ + 94, + 79, + 1, + 1, + 0 + ], + [ + 95, + 24, + 1, + 1, + 1 + ], + [ + 95, + 38, + 1, + 1, + 0 + ], + [ + 96, + 25, + 1, + 1, + 1 + ], + [ + 96, + 32, + 1, + 1, + 0 + ], + [ + 97, + 24, + 1, + 1, + 1 + ], + [ + 97, + 40, + 1, + 1, + 0 + ], + [ + 98, + 24, + 1, + 1, + 1 + ], + [ + 98, + 35, + 1, + 1, + 0 + ], + [ + 98, + 37, + 1, + 1, + 1 + ], + [ + 98, + 41, + 1, + 1, + 0 + ], + [ + 99, + 24, + 1, + 1, + 1 + ], + [ + 99, + 38, + 1, + 1, + 0 + ], + [ + 99, + 40, + 1, + 1, + 1 + ], + [ + 99, + 41, + 1, + 1, + 0 + ], + [ + 100, + 24, + 1, + 1, + 1 + ], + [ + 100, + 36, + 1, + 1, + 0 + ], + [ + 100, + 38, + 1, + 1, + 1 + ], + [ + 100, + 39, + 1, + 1, + 0 + ], + [ + 103, + 25, + 1, + 1, + 1 + ], + [ + 103, + 30, + 1, + 1, + 0 + ], + [ + 104, + 24, + 1, + 1, + 1 + ], + [ + 104, + 38, + 1, + 1, + 0 + ], + [ + 104, + 40, + 1, + 1, + 1 + ], + [ + 104, + 81, + 1, + 1, + 0 + ], + [ + 105, + 24, + 1, + 1, + 1 + ], + [ + 105, + 38, + 1, + 1, + 0 + ], + [ + 106, + 25, + 1, + 1, + 1 + ], + [ + 106, + 32, + 1, + 1, + 0 + ], + [ + 107, + 24, + 1, + 1, + 1 + ], + [ + 107, + 40, + 1, + 1, + 0 + ], + [ + 108, + 24, + 1, + 1, + 1 + ], + [ + 108, + 35, + 1, + 1, + 0 + ], + [ + 108, + 37, + 1, + 1, + 1 + ], + [ + 108, + 41, + 1, + 1, + 0 + ], + [ + 111, + 25, + 1, + 1, + 1 + ], + [ + 111, + 30, + 1, + 1, + 0 + ], + [ + 112, + 24, + 1, + 1, + 1 + ], + [ + 112, + 38, + 1, + 1, + 0 + ], + [ + 112, + 40, + 1, + 1, + 1 + ], + [ + 112, + 86, + 1, + 1, + 0 + ], + [ + 113, + 24, + 1, + 1, + 1 + ], + [ + 113, + 38, + 1, + 1, + 0 + ], + [ + 114, + 25, + 1, + 1, + 1 + ], + [ + 114, + 32, + 1, + 1, + 0 + ], + [ + 115, + 24, + 1, + 1, + 1 + ], + [ + 115, + 40, + 1, + 1, + 0 + ], + [ + 116, + 24, + 1, + 1, + 1 + ], + [ + 116, + 35, + 1, + 1, + 0 + ], + [ + 116, + 37, + 1, + 1, + 1 + ], + [ + 116, + 41, + 1, + 1, + 0 + ], + [ + 119, + 25, + 1, + 1, + 1 + ], + [ + 119, + 30, + 1, + 1, + 0 + ], + [ + 120, + 24, + 1, + 1, + 1 + ], + [ + 120, + 38, + 1, + 1, + 0 + ], + [ + 120, + 40, + 1, + 1, + 1 + ], + [ + 120, + 71, + 1, + 1, + 0 + ], + [ + 121, + 24, + 1, + 1, + 1 + ], + [ + 121, + 38, + 1, + 1, + 0 + ], + [ + 122, + 25, + 1, + 1, + 1 + ], + [ + 122, + 32, + 1, + 1, + 0 + ], + [ + 123, + 24, + 1, + 1, + 1 + ], + [ + 123, + 40, + 1, + 1, + 0 + ], + [ + 124, + 24, + 1, + 1, + 1 + ], + [ + 124, + 35, + 1, + 1, + 0 + ], + [ + 124, + 37, + 1, + 1, + 1 + ], + [ + 124, + 41, + 1, + 1, + 0 + ], + [ + 127, + 25, + 1, + 1, + 1 + ], + [ + 127, + 30, + 1, + 1, + 0 + ], + [ + 128, + 24, + 1, + 1, + 1 + ], + [ + 128, + 38, + 1, + 1, + 0 + ], + [ + 128, + 40, + 1, + 1, + 1 + ], + [ + 128, + 77, + 1, + 1, + 0 + ], + [ + 129, + 24, + 1, + 1, + 1 + ], + [ + 129, + 38, + 1, + 1, + 0 + ], + [ + 130, + 25, + 1, + 1, + 1 + ], + [ + 130, + 32, + 1, + 1, + 0 + ], + [ + 131, + 24, + 1, + 1, + 1 + ], + [ + 131, + 40, + 1, + 1, + 0 + ], + [ + 132, + 24, + 1, + 1, + 1 + ], + [ + 132, + 35, + 1, + 1, + 0 + ], + [ + 132, + 37, + 1, + 1, + 1 + ], + [ + 132, + 41, + 1, + 1, + 0 + ], + [ + 135, + 25, + 1, + 1, + 1 + ], + [ + 135, + 30, + 1, + 1, + 0 + ], + [ + 136, + 24, + 1, + 1, + 1 + ], + [ + 136, + 38, + 1, + 1, + 0 + ], + [ + 136, + 40, + 1, + 1, + 1 + ], + [ + 136, + 77, + 1, + 1, + 0 + ], + [ + 137, + 24, + 1, + 1, + 1 + ], + [ + 137, + 38, + 1, + 1, + 0 + ], + [ + 138, + 25, + 1, + 1, + 1 + ], + [ + 138, + 32, + 1, + 1, + 0 + ], + [ + 139, + 24, + 1, + 1, + 1 + ], + [ + 139, + 40, + 1, + 1, + 0 + ], + [ + 140, + 24, + 1, + 1, + 1 + ], + [ + 140, + 35, + 1, + 1, + 0 + ], + [ + 140, + 37, + 1, + 1, + 1 + ], + [ + 140, + 40, + 1, + 1, + 0 + ], + [ + 141, + 6, + 0, + 0, + 0 + ], + [ + 147, + 28, + 1, + 1, + 1 + ], + [ + 152, + 47, + 2, + 1, + 1 + ], + [ + 153, + 60, + 2, + 1, + 1 + ], + [ + 154, + 32, + 2, + 1, + 1 + ], + [ + 154, + 52, + 2, + 1, + 0 + ], + [ + 154, + 54, + 2, + 1, + 1 + ], + [ + 154, + 57, + 2, + 1, + 0 + ], + [ + 156, + 20, + 2, + 1, + 1 + ], + [ + 158, + 36, + 2, + 1, + 1 + ], + [ + 158, + 40, + 2, + 1, + 0 + ], + [ + 158, + 42, + 2, + 1, + 1 + ], + [ + 158, + 52, + 2, + 1, + 0 + ], + [ + 159, + 25, + 0, + 1, + 1 + ], + [ + 161, + 18, + 2, + 1, + 1 + ], + [ + 164, + 14, + 2, + 1, + 0 + ], + [ + 165, + 10, + 1, + 1, + 0 + ], + [ + 171, + 47, + 2, + 1, + 1 + ], + [ + 172, + 71, + 2, + 1, + 1 + ], + [ + 173, + 32, + 2, + 1, + 1 + ], + [ + 173, + 52, + 2, + 1, + 0 + ], + [ + 173, + 54, + 2, + 1, + 1 + ], + [ + 173, + 57, + 2, + 1, + 0 + ], + [ + 175, + 20, + 2, + 1, + 1 + ], + [ + 177, + 36, + 2, + 1, + 1 + ], + [ + 177, + 40, + 2, + 1, + 0 + ], + [ + 177, + 42, + 2, + 1, + 1 + ], + [ + 177, + 52, + 2, + 1, + 0 + ], + [ + 178, + 25, + 0, + 1, + 1 + ], + [ + 180, + 18, + 2, + 1, + 1 + ], + [ + 183, + 14, + 2, + 1, + 0 + ], + [ + 184, + 10, + 1, + 1, + 0 + ], + [ + 190, + 47, + 2, + 1, + 1 + ], + [ + 191, + 60, + 2, + 1, + 1 + ], + [ + 197, + 14, + 2, + 1, + 0 + ], + [ + 198, + 10, + 1, + 1, + 0 + ], + [ + 198, + 12, + 2, + 1, + 1 + ], + [ + 199, + 71, + 2, + 1, + 1 + ], + [ + 200, + 32, + 2, + 1, + 1 + ], + [ + 200, + 52, + 2, + 1, + 0 + ], + [ + 200, + 54, + 2, + 1, + 1 + ], + [ + 200, + 63, + 2, + 1, + 0 + ], + [ + 204, + 10, + 1, + 1, + 0 + ], + [ + 210, + 47, + 2, + 1, + 1 + ], + [ + 211, + 60, + 2, + 1, + 1 + ], + [ + 212, + 32, + 2, + 1, + 1 + ], + [ + 212, + 52, + 2, + 1, + 0 + ], + [ + 212, + 54, + 2, + 1, + 1 + ], + [ + 212, + 57, + 2, + 1, + 0 + ], + [ + 214, + 20, + 2, + 1, + 1 + ], + [ + 216, + 36, + 2, + 1, + 1 + ], + [ + 216, + 40, + 2, + 1, + 0 + ], + [ + 216, + 42, + 2, + 1, + 1 + ], + [ + 216, + 52, + 2, + 1, + 0 + ], + [ + 217, + 25, + 0, + 1, + 1 + ], + [ + 219, + 18, + 2, + 1, + 1 + ], + [ + 222, + 14, + 2, + 1, + 0 + ], + [ + 223, + 10, + 1, + 1, + 0 + ], + [ + 229, + 47, + 2, + 1, + 1 + ], + [ + 230, + 67, + 2, + 1, + 1 + ], + [ + 231, + 32, + 2, + 1, + 1 + ], + [ + 231, + 52, + 2, + 1, + 0 + ], + [ + 231, + 54, + 2, + 1, + 1 + ], + [ + 231, + 57, + 2, + 1, + 0 + ], + [ + 233, + 20, + 2, + 1, + 1 + ], + [ + 235, + 36, + 2, + 1, + 1 + ], + [ + 235, + 40, + 2, + 1, + 0 + ], + [ + 235, + 42, + 2, + 1, + 1 + ], + [ + 235, + 52, + 2, + 1, + 0 + ], + [ + 236, + 25, + 0, + 1, + 1 + ], + [ + 238, + 18, + 2, + 1, + 1 + ], + [ + 241, + 14, + 2, + 1, + 0 + ], + [ + 242, + 10, + 1, + 1, + 0 + ], + [ + 248, + 47, + 2, + 1, + 1 + ], + [ + 249, + 76, + 2, + 1, + 1 + ], + [ + 250, + 32, + 2, + 1, + 1 + ], + [ + 250, + 52, + 2, + 1, + 0 + ], + [ + 250, + 54, + 2, + 1, + 1 + ], + [ + 250, + 57, + 2, + 1, + 0 + ], + [ + 252, + 20, + 2, + 1, + 1 + ], + [ + 254, + 36, + 2, + 1, + 1 + ], + [ + 254, + 40, + 2, + 1, + 0 + ], + [ + 254, + 42, + 2, + 1, + 1 + ], + [ + 254, + 52, + 2, + 1, + 0 + ], + [ + 255, + 25, + 0, + 1, + 1 + ], + [ + 257, + 18, + 2, + 1, + 1 + ], + [ + 260, + 14, + 2, + 1, + 0 + ], + [ + 261, + 10, + 1, + 1, + 0 + ], + [ + 267, + 47, + 2, + 1, + 1 + ], + [ + 268, + 67, + 2, + 1, + 1 + ], + [ + 269, + 32, + 2, + 1, + 1 + ], + [ + 269, + 52, + 2, + 1, + 0 + ], + [ + 269, + 54, + 2, + 1, + 1 + ], + [ + 269, + 63, + 2, + 1, + 0 + ], + [ + 273, + 10, + 1, + 1, + 0 + ], + [ + 274, + 6, + 0, + 0, + 0 + ], + [ + 279, + 30, + 1, + 1, + 1 + ], + [ + 284, + 47, + 2, + 1, + 1 + ], + [ + 285, + 65, + 2, + 1, + 1 + ], + [ + 286, + 32, + 2, + 1, + 1 + ], + [ + 286, + 52, + 2, + 1, + 0 + ], + [ + 286, + 54, + 2, + 1, + 1 + ], + [ + 286, + 57, + 2, + 1, + 0 + ], + [ + 288, + 20, + 2, + 1, + 1 + ], + [ + 290, + 36, + 2, + 1, + 1 + ], + [ + 290, + 40, + 2, + 1, + 0 + ], + [ + 290, + 42, + 2, + 1, + 1 + ], + [ + 290, + 52, + 2, + 1, + 0 + ], + [ + 291, + 25, + 0, + 1, + 1 + ], + [ + 293, + 18, + 2, + 1, + 1 + ], + [ + 296, + 14, + 2, + 1, + 0 + ], + [ + 297, + 10, + 1, + 1, + 0 + ], + [ + 303, + 47, + 2, + 1, + 1 + ], + [ + 304, + 77, + 2, + 1, + 1 + ], + [ + 305, + 32, + 2, + 1, + 1 + ], + [ + 305, + 52, + 2, + 1, + 0 + ], + [ + 305, + 54, + 2, + 1, + 1 + ], + [ + 305, + 57, + 2, + 1, + 0 + ], + [ + 307, + 20, + 2, + 1, + 1 + ], + [ + 309, + 36, + 2, + 1, + 1 + ], + [ + 309, + 40, + 2, + 1, + 0 + ], + [ + 309, + 42, + 2, + 1, + 1 + ], + [ + 309, + 52, + 2, + 1, + 0 + ], + [ + 310, + 25, + 0, + 1, + 1 + ], + [ + 312, + 18, + 2, + 1, + 1 + ], + [ + 315, + 14, + 2, + 1, + 0 + ], + [ + 316, + 10, + 1, + 1, + 0 + ], + [ + 322, + 47, + 2, + 1, + 1 + ], + [ + 323, + 66, + 2, + 1, + 1 + ], + [ + 324, + 32, + 2, + 1, + 1 + ], + [ + 324, + 52, + 2, + 1, + 0 + ], + [ + 324, + 54, + 2, + 1, + 1 + ], + [ + 324, + 57, + 2, + 1, + 0 + ], + [ + 328, + 20, + 2, + 1, + 1 + ], + [ + 331, + 36, + 2, + 1, + 1 + ], + [ + 331, + 46, + 2, + 1, + 0 + ], + [ + 331, + 48, + 2, + 1, + 1 + ], + [ + 331, + 50, + 2, + 1, + 0 + ], + [ + 333, + 25, + 0, + 1, + 1 + ], + [ + 335, + 18, + 2, + 1, + 1 + ], + [ + 338, + 14, + 2, + 1, + 0 + ], + [ + 339, + 10, + 1, + 1, + 0 + ], + [ + 345, + 47, + 2, + 1, + 1 + ], + [ + 346, + 78, + 2, + 1, + 1 + ], + [ + 347, + 32, + 2, + 1, + 1 + ], + [ + 347, + 52, + 2, + 1, + 0 + ], + [ + 347, + 54, + 2, + 1, + 1 + ], + [ + 347, + 57, + 2, + 1, + 0 + ], + [ + 351, + 20, + 2, + 1, + 1 + ], + [ + 354, + 36, + 2, + 1, + 1 + ], + [ + 354, + 46, + 2, + 1, + 0 + ], + [ + 354, + 48, + 2, + 1, + 1 + ], + [ + 354, + 50, + 2, + 1, + 0 + ], + [ + 356, + 25, + 0, + 1, + 1 + ], + [ + 358, + 18, + 2, + 1, + 1 + ], + [ + 361, + 14, + 2, + 1, + 0 + ], + [ + 362, + 10, + 1, + 1, + 0 + ], + [ + 368, + 47, + 2, + 1, + 1 + ], + [ + 369, + 67, + 2, + 1, + 1 + ], + [ + 370, + 32, + 2, + 1, + 1 + ], + [ + 370, + 52, + 2, + 1, + 0 + ], + [ + 370, + 54, + 2, + 1, + 1 + ], + [ + 370, + 57, + 2, + 1, + 0 + ], + [ + 374, + 20, + 2, + 1, + 1 + ], + [ + 377, + 36, + 2, + 1, + 1 + ], + [ + 377, + 46, + 2, + 1, + 0 + ], + [ + 377, + 48, + 2, + 1, + 1 + ], + [ + 377, + 77, + 2, + 1, + 0 + ], + [ + 379, + 25, + 0, + 1, + 1 + ], + [ + 381, + 18, + 2, + 1, + 1 + ], + [ + 384, + 14, + 2, + 1, + 0 + ], + [ + 385, + 10, + 1, + 1, + 0 + ], + [ + 386, + 6, + 0, + 0, + 0 + ], + [ + 392, + 32, + 1, + 1, + 1 + ], + [ + 397, + 47, + 2, + 1, + 1 + ], + [ + 398, + 60, + 2, + 1, + 1 + ], + [ + 399, + 32, + 2, + 1, + 1 + ], + [ + 399, + 52, + 2, + 1, + 0 + ], + [ + 399, + 54, + 2, + 1, + 1 + ], + [ + 399, + 57, + 2, + 1, + 0 + ], + [ + 401, + 20, + 2, + 1, + 1 + ], + [ + 403, + 36, + 2, + 1, + 1 + ], + [ + 403, + 40, + 2, + 1, + 0 + ], + [ + 403, + 42, + 2, + 1, + 1 + ], + [ + 403, + 52, + 2, + 1, + 0 + ], + [ + 404, + 25, + 0, + 1, + 1 + ], + [ + 406, + 18, + 2, + 1, + 1 + ], + [ + 409, + 14, + 2, + 1, + 0 + ], + [ + 410, + 10, + 1, + 1, + 0 + ], + [ + 410, + 12, + 2, + 1, + 1 + ], + [ + 411, + 66, + 2, + 1, + 1 + ], + [ + 412, + 32, + 2, + 1, + 1 + ], + [ + 412, + 52, + 2, + 1, + 0 + ], + [ + 412, + 54, + 2, + 1, + 1 + ], + [ + 412, + 57, + 2, + 1, + 0 + ], + [ + 416, + 20, + 2, + 1, + 1 + ], + [ + 419, + 36, + 2, + 1, + 1 + ], + [ + 419, + 46, + 2, + 1, + 0 + ], + [ + 419, + 48, + 2, + 1, + 1 + ], + [ + 419, + 50, + 2, + 1, + 0 + ], + [ + 421, + 25, + 0, + 1, + 1 + ], + [ + 423, + 18, + 2, + 1, + 1 + ], + [ + 426, + 14, + 2, + 1, + 0 + ], + [ + 427, + 10, + 1, + 1, + 0 + ], + [ + 433, + 47, + 2, + 1, + 1 + ], + [ + 434, + 67, + 2, + 1, + 1 + ], + [ + 435, + 32, + 2, + 1, + 1 + ], + [ + 435, + 52, + 2, + 1, + 0 + ], + [ + 435, + 54, + 2, + 1, + 1 + ], + [ + 435, + 57, + 2, + 1, + 0 + ], + [ + 437, + 20, + 2, + 1, + 1 + ], + [ + 439, + 36, + 2, + 1, + 1 + ], + [ + 439, + 40, + 2, + 1, + 0 + ], + [ + 439, + 42, + 2, + 1, + 1 + ], + [ + 439, + 52, + 2, + 1, + 0 + ], + [ + 440, + 25, + 0, + 1, + 1 + ], + [ + 442, + 18, + 2, + 1, + 1 + ], + [ + 445, + 14, + 2, + 1, + 0 + ], + [ + 446, + 10, + 1, + 1, + 0 + ], + [ + 446, + 12, + 2, + 1, + 1 + ], + [ + 447, + 78, + 2, + 1, + 1 + ], + [ + 448, + 32, + 2, + 1, + 1 + ], + [ + 448, + 52, + 2, + 1, + 0 + ], + [ + 448, + 54, + 2, + 1, + 1 + ], + [ + 448, + 57, + 2, + 1, + 0 + ], + [ + 452, + 20, + 2, + 1, + 1 + ], + [ + 455, + 36, + 2, + 1, + 1 + ], + [ + 455, + 46, + 2, + 1, + 0 + ], + [ + 455, + 48, + 2, + 1, + 1 + ], + [ + 455, + 50, + 2, + 1, + 0 + ], + [ + 457, + 25, + 0, + 1, + 1 + ], + [ + 459, + 18, + 2, + 1, + 1 + ], + [ + 462, + 14, + 2, + 1, + 0 + ], + [ + 463, + 10, + 1, + 1, + 0 + ], + [ + 469, + 47, + 2, + 1, + 1 + ], + [ + 470, + 60, + 2, + 1, + 1 + ], + [ + 471, + 32, + 2, + 1, + 1 + ], + [ + 471, + 52, + 2, + 1, + 0 + ], + [ + 471, + 54, + 2, + 1, + 1 + ], + [ + 471, + 57, + 2, + 1, + 0 + ], + [ + 473, + 20, + 2, + 1, + 1 + ], + [ + 475, + 36, + 2, + 1, + 1 + ], + [ + 475, + 40, + 2, + 1, + 0 + ], + [ + 475, + 42, + 2, + 1, + 1 + ], + [ + 475, + 52, + 2, + 1, + 0 + ], + [ + 476, + 25, + 0, + 1, + 1 + ], + [ + 478, + 18, + 2, + 1, + 1 + ], + [ + 481, + 14, + 2, + 1, + 0 + ], + [ + 482, + 10, + 1, + 1, + 0 + ], + [ + 482, + 12, + 2, + 1, + 1 + ], + [ + 483, + 66, + 2, + 1, + 1 + ], + [ + 484, + 32, + 2, + 1, + 1 + ], + [ + 484, + 52, + 2, + 1, + 0 + ], + [ + 484, + 54, + 2, + 1, + 1 + ], + [ + 484, + 57, + 2, + 1, + 0 + ], + [ + 488, + 20, + 2, + 1, + 1 + ], + [ + 491, + 36, + 2, + 1, + 1 + ], + [ + 491, + 46, + 2, + 1, + 0 + ], + [ + 491, + 48, + 2, + 1, + 1 + ], + [ + 491, + 50, + 2, + 1, + 0 + ], + [ + 493, + 25, + 0, + 1, + 1 + ], + [ + 495, + 18, + 2, + 1, + 1 + ], + [ + 498, + 14, + 2, + 1, + 0 + ], + [ + 499, + 10, + 1, + 1, + 0 + ], + [ + 499, + 12, + 2, + 1, + 1 + ], + [ + 500, + 72, + 2, + 1, + 1 + ], + [ + 501, + 32, + 2, + 1, + 1 + ], + [ + 501, + 52, + 2, + 1, + 0 + ], + [ + 501, + 54, + 2, + 1, + 1 + ], + [ + 501, + 57, + 2, + 1, + 0 + ], + [ + 505, + 20, + 2, + 1, + 1 + ], + [ + 508, + 36, + 2, + 1, + 1 + ], + [ + 508, + 46, + 2, + 1, + 0 + ], + [ + 508, + 48, + 2, + 1, + 1 + ], + [ + 508, + 61, + 2, + 1, + 0 + ], + [ + 510, + 25, + 0, + 1, + 1 + ], + [ + 512, + 18, + 2, + 1, + 1 + ], + [ + 515, + 14, + 2, + 1, + 0 + ], + [ + 516, + 10, + 1, + 1, + 0 + ], + [ + 522, + 47, + 2, + 1, + 1 + ], + [ + 523, + 67, + 2, + 1, + 1 + ], + [ + 524, + 32, + 2, + 1, + 1 + ], + [ + 524, + 52, + 2, + 1, + 0 + ], + [ + 524, + 54, + 2, + 1, + 1 + ], + [ + 524, + 57, + 2, + 1, + 0 + ], + [ + 526, + 20, + 2, + 1, + 1 + ], + [ + 528, + 36, + 2, + 1, + 1 + ], + [ + 528, + 40, + 2, + 1, + 0 + ], + [ + 528, + 42, + 2, + 1, + 1 + ], + [ + 528, + 52, + 2, + 1, + 0 + ], + [ + 529, + 25, + 0, + 1, + 1 + ], + [ + 531, + 18, + 2, + 1, + 1 + ], + [ + 534, + 14, + 2, + 1, + 0 + ], + [ + 535, + 10, + 1, + 1, + 0 + ], + [ + 535, + 12, + 2, + 1, + 1 + ], + [ + 536, + 78, + 2, + 1, + 1 + ], + [ + 537, + 32, + 2, + 1, + 1 + ], + [ + 537, + 52, + 2, + 1, + 0 + ], + [ + 537, + 54, + 2, + 1, + 1 + ], + [ + 537, + 57, + 2, + 1, + 0 + ], + [ + 541, + 20, + 2, + 1, + 1 + ], + [ + 544, + 36, + 2, + 1, + 1 + ], + [ + 544, + 46, + 2, + 1, + 0 + ], + [ + 544, + 48, + 2, + 1, + 1 + ], + [ + 544, + 50, + 2, + 1, + 0 + ], + [ + 546, + 25, + 0, + 1, + 1 + ], + [ + 548, + 18, + 2, + 1, + 1 + ], + [ + 551, + 14, + 2, + 1, + 0 + ], + [ + 552, + 10, + 1, + 1, + 0 + ], + [ + 552, + 12, + 2, + 1, + 1 + ], + [ + 553, + 84, + 2, + 1, + 1 + ], + [ + 554, + 32, + 2, + 1, + 1 + ], + [ + 554, + 52, + 2, + 1, + 0 + ], + [ + 554, + 54, + 2, + 1, + 1 + ], + [ + 554, + 57, + 2, + 1, + 0 + ], + [ + 558, + 20, + 2, + 1, + 1 + ], + [ + 561, + 36, + 2, + 1, + 1 + ], + [ + 561, + 46, + 2, + 1, + 0 + ], + [ + 561, + 48, + 2, + 1, + 1 + ], + [ + 561, + 61, + 2, + 1, + 0 + ], + [ + 563, + 25, + 0, + 1, + 1 + ], + [ + 565, + 18, + 2, + 1, + 1 + ], + [ + 568, + 14, + 2, + 1, + 0 + ], + [ + 569, + 10, + 1, + 1, + 0 + ], + [ + 575, + 47, + 2, + 1, + 1 + ], + [ + 576, + 60, + 2, + 1, + 1 + ], + [ + 582, + 14, + 2, + 1, + 0 + ], + [ + 583, + 10, + 1, + 1, + 0 + ], + [ + 583, + 12, + 2, + 1, + 1 + ], + [ + 584, + 66, + 2, + 1, + 1 + ], + [ + 585, + 32, + 2, + 1, + 1 + ], + [ + 585, + 52, + 2, + 1, + 0 + ], + [ + 585, + 54, + 2, + 1, + 1 + ], + [ + 585, + 57, + 2, + 1, + 0 + ], + [ + 589, + 20, + 2, + 1, + 1 + ], + [ + 592, + 36, + 2, + 1, + 1 + ], + [ + 592, + 46, + 2, + 1, + 0 + ], + [ + 592, + 48, + 2, + 1, + 1 + ], + [ + 592, + 50, + 2, + 1, + 0 + ], + [ + 594, + 25, + 0, + 1, + 1 + ], + [ + 596, + 18, + 2, + 1, + 1 + ], + [ + 599, + 14, + 2, + 1, + 0 + ], + [ + 600, + 10, + 1, + 1, + 0 + ], + [ + 600, + 12, + 2, + 1, + 1 + ], + [ + 601, + 72, + 2, + 1, + 1 + ], + [ + 602, + 32, + 2, + 1, + 1 + ], + [ + 602, + 52, + 2, + 1, + 0 + ], + [ + 602, + 54, + 2, + 1, + 1 + ], + [ + 602, + 57, + 2, + 1, + 0 + ], + [ + 606, + 20, + 2, + 1, + 1 + ], + [ + 609, + 36, + 2, + 1, + 1 + ], + [ + 609, + 46, + 2, + 1, + 0 + ], + [ + 609, + 48, + 2, + 1, + 1 + ], + [ + 609, + 61, + 2, + 1, + 0 + ], + [ + 611, + 25, + 0, + 1, + 1 + ], + [ + 613, + 18, + 2, + 1, + 1 + ], + [ + 616, + 14, + 2, + 1, + 0 + ], + [ + 617, + 10, + 1, + 1, + 0 + ], + [ + 623, + 47, + 2, + 1, + 1 + ], + [ + 624, + 67, + 2, + 1, + 1 + ], + [ + 625, + 32, + 2, + 1, + 1 + ], + [ + 625, + 52, + 2, + 1, + 0 + ], + [ + 625, + 54, + 2, + 1, + 1 + ], + [ + 625, + 63, + 2, + 1, + 0 + ], + [ + 629, + 10, + 1, + 1, + 0 + ], + [ + 629, + 12, + 2, + 1, + 1 + ], + [ + 630, + 78, + 2, + 1, + 1 + ], + [ + 631, + 32, + 2, + 1, + 1 + ], + [ + 631, + 52, + 2, + 1, + 0 + ], + [ + 631, + 54, + 2, + 1, + 1 + ], + [ + 631, + 57, + 2, + 1, + 0 + ], + [ + 635, + 20, + 2, + 1, + 1 + ], + [ + 638, + 36, + 2, + 1, + 1 + ], + [ + 638, + 46, + 2, + 1, + 0 + ], + [ + 638, + 48, + 2, + 1, + 1 + ], + [ + 638, + 50, + 2, + 1, + 0 + ], + [ + 640, + 25, + 0, + 1, + 1 + ], + [ + 642, + 18, + 2, + 1, + 1 + ], + [ + 645, + 14, + 2, + 1, + 0 + ], + [ + 646, + 10, + 1, + 1, + 0 + ], + [ + 646, + 12, + 2, + 1, + 1 + ], + [ + 647, + 84, + 2, + 1, + 1 + ], + [ + 648, + 32, + 2, + 1, + 1 + ], + [ + 648, + 52, + 2, + 1, + 0 + ], + [ + 648, + 54, + 2, + 1, + 1 + ], + [ + 648, + 57, + 2, + 1, + 0 + ], + [ + 652, + 20, + 2, + 1, + 1 + ], + [ + 655, + 36, + 2, + 1, + 1 + ], + [ + 655, + 46, + 2, + 1, + 0 + ], + [ + 655, + 48, + 2, + 1, + 1 + ], + [ + 655, + 61, + 2, + 1, + 0 + ], + [ + 657, + 25, + 0, + 1, + 1 + ], + [ + 659, + 18, + 2, + 1, + 1 + ], + [ + 662, + 14, + 2, + 1, + 0 + ], + [ + 663, + 10, + 1, + 1, + 0 + ], + [ + 664, + 6, + 0, + 0, + 0 + ], + [ + 668, + 36, + 1, + 1, + 1 + ], + [ + 673, + 47, + 2, + 1, + 1 + ], + [ + 674, + 66, + 2, + 1, + 1 + ], + [ + 675, + 32, + 2, + 1, + 1 + ], + [ + 675, + 52, + 2, + 1, + 0 + ], + [ + 675, + 54, + 2, + 1, + 1 + ], + [ + 675, + 57, + 2, + 1, + 0 + ], + [ + 679, + 20, + 2, + 1, + 1 + ], + [ + 682, + 36, + 2, + 1, + 1 + ], + [ + 682, + 46, + 2, + 1, + 0 + ], + [ + 682, + 48, + 2, + 1, + 1 + ], + [ + 682, + 50, + 2, + 1, + 0 + ], + [ + 684, + 25, + 0, + 1, + 1 + ], + [ + 686, + 18, + 2, + 1, + 1 + ], + [ + 689, + 14, + 2, + 1, + 0 + ], + [ + 690, + 10, + 1, + 1, + 0 + ], + [ + 690, + 12, + 2, + 1, + 1 + ], + [ + 691, + 64, + 2, + 1, + 1 + ], + [ + 692, + 32, + 2, + 1, + 1 + ], + [ + 692, + 52, + 2, + 1, + 0 + ], + [ + 692, + 54, + 2, + 1, + 1 + ], + [ + 692, + 63, + 2, + 1, + 0 + ], + [ + 696, + 10, + 1, + 1, + 0 + ], + [ + 702, + 47, + 2, + 1, + 1 + ], + [ + 703, + 78, + 2, + 1, + 1 + ], + [ + 704, + 32, + 2, + 1, + 1 + ], + [ + 704, + 52, + 2, + 1, + 0 + ], + [ + 704, + 54, + 2, + 1, + 1 + ], + [ + 704, + 57, + 2, + 1, + 0 + ], + [ + 708, + 20, + 2, + 1, + 1 + ], + [ + 711, + 36, + 2, + 1, + 1 + ], + [ + 711, + 46, + 2, + 1, + 0 + ], + [ + 711, + 48, + 2, + 1, + 1 + ], + [ + 711, + 50, + 2, + 1, + 0 + ], + [ + 713, + 25, + 0, + 1, + 1 + ], + [ + 715, + 18, + 2, + 1, + 1 + ], + [ + 718, + 14, + 2, + 1, + 0 + ], + [ + 719, + 10, + 1, + 1, + 0 + ], + [ + 719, + 12, + 2, + 1, + 1 + ], + [ + 720, + 76, + 2, + 1, + 1 + ], + [ + 721, + 32, + 2, + 1, + 1 + ], + [ + 721, + 52, + 2, + 1, + 0 + ], + [ + 721, + 54, + 2, + 1, + 1 + ], + [ + 721, + 63, + 2, + 1, + 0 + ], + [ + 725, + 10, + 1, + 1, + 0 + ], + [ + 726, + 6, + 0, + 0, + 0 + ], + [ + 732, + 43, + 1, + 1, + 1 + ], + [ + 737, + 47, + 2, + 1, + 1 + ], + [ + 738, + 60, + 2, + 1, + 1 + ], + [ + 739, + 32, + 2, + 1, + 1 + ], + [ + 739, + 52, + 2, + 1, + 0 + ], + [ + 739, + 54, + 2, + 1, + 1 + ], + [ + 739, + 57, + 2, + 1, + 0 + ], + [ + 741, + 20, + 2, + 1, + 1 + ], + [ + 743, + 36, + 2, + 1, + 1 + ], + [ + 743, + 40, + 2, + 1, + 0 + ], + [ + 743, + 42, + 2, + 1, + 1 + ], + [ + 743, + 52, + 2, + 1, + 0 + ], + [ + 744, + 25, + 0, + 1, + 1 + ], + [ + 746, + 18, + 2, + 1, + 1 + ], + [ + 749, + 14, + 2, + 1, + 0 + ], + [ + 750, + 10, + 1, + 1, + 0 + ], + [ + 750, + 12, + 2, + 1, + 1 + ], + [ + 751, + 66, + 2, + 1, + 1 + ], + [ + 752, + 32, + 2, + 1, + 1 + ], + [ + 752, + 52, + 2, + 1, + 0 + ], + [ + 752, + 54, + 2, + 1, + 1 + ], + [ + 752, + 57, + 2, + 1, + 0 + ], + [ + 756, + 20, + 2, + 1, + 1 + ], + [ + 759, + 36, + 2, + 1, + 1 + ], + [ + 759, + 46, + 2, + 1, + 0 + ], + [ + 759, + 48, + 2, + 1, + 1 + ], + [ + 759, + 50, + 2, + 1, + 0 + ], + [ + 761, + 25, + 0, + 1, + 1 + ], + [ + 763, + 18, + 2, + 1, + 1 + ], + [ + 766, + 14, + 2, + 1, + 0 + ], + [ + 767, + 10, + 1, + 1, + 0 + ], + [ + 767, + 12, + 2, + 1, + 1 + ], + [ + 768, + 64, + 2, + 1, + 1 + ], + [ + 769, + 32, + 2, + 1, + 1 + ], + [ + 769, + 52, + 2, + 1, + 0 + ], + [ + 769, + 54, + 2, + 1, + 1 + ], + [ + 769, + 63, + 2, + 1, + 0 + ], + [ + 773, + 10, + 1, + 1, + 0 + ], + [ + 779, + 47, + 2, + 1, + 1 + ], + [ + 780, + 67, + 2, + 1, + 1 + ], + [ + 781, + 32, + 2, + 1, + 1 + ], + [ + 781, + 52, + 2, + 1, + 0 + ], + [ + 781, + 54, + 2, + 1, + 1 + ], + [ + 781, + 57, + 2, + 1, + 0 + ], + [ + 783, + 20, + 2, + 1, + 1 + ], + [ + 785, + 36, + 2, + 1, + 1 + ], + [ + 785, + 40, + 2, + 1, + 0 + ], + [ + 785, + 42, + 2, + 1, + 1 + ], + [ + 785, + 52, + 2, + 1, + 0 + ], + [ + 786, + 25, + 0, + 1, + 1 + ], + [ + 788, + 18, + 2, + 1, + 1 + ], + [ + 791, + 14, + 2, + 1, + 0 + ], + [ + 792, + 10, + 1, + 1, + 0 + ], + [ + 792, + 12, + 2, + 1, + 1 + ], + [ + 793, + 78, + 2, + 1, + 1 + ], + [ + 794, + 32, + 2, + 1, + 1 + ], + [ + 794, + 52, + 2, + 1, + 0 + ], + [ + 794, + 54, + 2, + 1, + 1 + ], + [ + 794, + 57, + 2, + 1, + 0 + ], + [ + 798, + 20, + 2, + 1, + 1 + ], + [ + 801, + 36, + 2, + 1, + 1 + ], + [ + 801, + 46, + 2, + 1, + 0 + ], + [ + 801, + 48, + 2, + 1, + 1 + ], + [ + 801, + 50, + 2, + 1, + 0 + ], + [ + 803, + 25, + 0, + 1, + 1 + ], + [ + 805, + 18, + 2, + 1, + 1 + ], + [ + 808, + 14, + 2, + 1, + 0 + ], + [ + 809, + 10, + 1, + 1, + 0 + ], + [ + 809, + 12, + 2, + 1, + 1 + ], + [ + 810, + 76, + 2, + 1, + 1 + ], + [ + 811, + 32, + 2, + 1, + 1 + ], + [ + 811, + 52, + 2, + 1, + 0 + ], + [ + 811, + 54, + 2, + 1, + 1 + ], + [ + 811, + 63, + 2, + 1, + 0 + ], + [ + 815, + 10, + 1, + 1, + 0 + ], + [ + 821, + 47, + 2, + 1, + 1 + ], + [ + 822, + 60, + 2, + 1, + 1 + ], + [ + 823, + 32, + 2, + 1, + 1 + ], + [ + 823, + 52, + 2, + 1, + 0 + ], + [ + 823, + 54, + 2, + 1, + 1 + ], + [ + 823, + 57, + 2, + 1, + 0 + ], + [ + 825, + 20, + 2, + 1, + 1 + ], + [ + 827, + 36, + 2, + 1, + 1 + ], + [ + 827, + 40, + 2, + 1, + 0 + ], + [ + 827, + 42, + 2, + 1, + 1 + ], + [ + 827, + 52, + 2, + 1, + 0 + ], + [ + 828, + 25, + 0, + 1, + 1 + ], + [ + 830, + 18, + 2, + 1, + 1 + ], + [ + 833, + 14, + 2, + 1, + 0 + ], + [ + 834, + 10, + 1, + 1, + 0 + ], + [ + 834, + 12, + 2, + 1, + 1 + ], + [ + 835, + 66, + 2, + 1, + 1 + ], + [ + 836, + 32, + 2, + 1, + 1 + ], + [ + 836, + 52, + 2, + 1, + 0 + ], + [ + 836, + 54, + 2, + 1, + 1 + ], + [ + 836, + 57, + 2, + 1, + 0 + ], + [ + 840, + 20, + 2, + 1, + 1 + ], + [ + 843, + 36, + 2, + 1, + 1 + ], + [ + 843, + 46, + 2, + 1, + 0 + ], + [ + 843, + 48, + 2, + 1, + 1 + ], + [ + 843, + 50, + 2, + 1, + 0 + ], + [ + 845, + 25, + 0, + 1, + 1 + ], + [ + 847, + 18, + 2, + 1, + 1 + ], + [ + 850, + 14, + 2, + 1, + 0 + ], + [ + 851, + 10, + 1, + 1, + 0 + ], + [ + 851, + 12, + 2, + 1, + 1 + ], + [ + 852, + 72, + 2, + 1, + 1 + ], + [ + 853, + 32, + 2, + 1, + 1 + ], + [ + 853, + 52, + 2, + 1, + 0 + ], + [ + 853, + 54, + 2, + 1, + 1 + ], + [ + 853, + 57, + 2, + 1, + 0 + ], + [ + 857, + 20, + 2, + 1, + 1 + ], + [ + 860, + 36, + 2, + 1, + 1 + ], + [ + 860, + 46, + 2, + 1, + 0 + ], + [ + 860, + 48, + 2, + 1, + 1 + ], + [ + 860, + 61, + 2, + 1, + 0 + ], + [ + 862, + 25, + 0, + 1, + 1 + ], + [ + 864, + 18, + 2, + 1, + 1 + ], + [ + 867, + 14, + 2, + 1, + 0 + ], + [ + 868, + 10, + 1, + 1, + 0 + ], + [ + 868, + 12, + 2, + 1, + 1 + ], + [ + 869, + 72, + 2, + 1, + 1 + ], + [ + 870, + 32, + 2, + 1, + 1 + ], + [ + 870, + 52, + 2, + 1, + 0 + ], + [ + 870, + 54, + 2, + 1, + 1 + ], + [ + 870, + 63, + 2, + 1, + 0 + ], + [ + 874, + 10, + 1, + 1, + 0 + ], + [ + 880, + 47, + 2, + 1, + 1 + ], + [ + 881, + 67, + 2, + 1, + 1 + ], + [ + 882, + 32, + 2, + 1, + 1 + ], + [ + 882, + 52, + 2, + 1, + 0 + ], + [ + 882, + 54, + 2, + 1, + 1 + ], + [ + 882, + 57, + 2, + 1, + 0 + ], + [ + 884, + 20, + 2, + 1, + 1 + ], + [ + 886, + 36, + 2, + 1, + 1 + ], + [ + 886, + 40, + 2, + 1, + 0 + ], + [ + 886, + 42, + 2, + 1, + 1 + ], + [ + 886, + 52, + 2, + 1, + 0 + ], + [ + 887, + 25, + 0, + 1, + 1 + ], + [ + 889, + 18, + 2, + 1, + 1 + ], + [ + 892, + 14, + 2, + 1, + 0 + ], + [ + 893, + 10, + 1, + 1, + 0 + ], + [ + 893, + 12, + 2, + 1, + 1 + ], + [ + 894, + 78, + 2, + 1, + 1 + ], + [ + 895, + 32, + 2, + 1, + 1 + ], + [ + 895, + 52, + 2, + 1, + 0 + ], + [ + 895, + 54, + 2, + 1, + 1 + ], + [ + 895, + 57, + 2, + 1, + 0 + ], + [ + 899, + 20, + 2, + 1, + 1 + ], + [ + 902, + 36, + 2, + 1, + 1 + ], + [ + 902, + 46, + 2, + 1, + 0 + ], + [ + 902, + 48, + 2, + 1, + 1 + ], + [ + 902, + 50, + 2, + 1, + 0 + ], + [ + 904, + 25, + 0, + 1, + 1 + ], + [ + 906, + 18, + 2, + 1, + 1 + ], + [ + 909, + 14, + 2, + 1, + 0 + ], + [ + 910, + 10, + 1, + 1, + 0 + ], + [ + 910, + 12, + 2, + 1, + 1 + ], + [ + 911, + 84, + 2, + 1, + 1 + ], + [ + 912, + 32, + 2, + 1, + 1 + ], + [ + 912, + 52, + 2, + 1, + 0 + ], + [ + 912, + 54, + 2, + 1, + 1 + ], + [ + 912, + 57, + 2, + 1, + 0 + ], + [ + 916, + 20, + 2, + 1, + 1 + ], + [ + 919, + 36, + 2, + 1, + 1 + ], + [ + 919, + 46, + 2, + 1, + 0 + ], + [ + 919, + 48, + 2, + 1, + 1 + ], + [ + 919, + 61, + 2, + 1, + 0 + ], + [ + 921, + 25, + 0, + 1, + 1 + ], + [ + 923, + 18, + 2, + 1, + 1 + ], + [ + 926, + 14, + 2, + 1, + 0 + ], + [ + 927, + 10, + 1, + 1, + 0 + ], + [ + 927, + 12, + 2, + 1, + 1 + ], + [ + 928, + 84, + 2, + 1, + 1 + ], + [ + 929, + 32, + 2, + 1, + 1 + ], + [ + 929, + 52, + 2, + 1, + 0 + ], + [ + 929, + 54, + 2, + 1, + 1 + ], + [ + 929, + 63, + 2, + 1, + 0 + ], + [ + 933, + 10, + 1, + 1, + 0 + ], + [ + 939, + 47, + 2, + 1, + 1 + ], + [ + 940, + 60, + 2, + 1, + 1 + ], + [ + 946, + 14, + 2, + 1, + 0 + ], + [ + 947, + 10, + 1, + 1, + 0 + ], + [ + 947, + 12, + 2, + 1, + 1 + ], + [ + 948, + 66, + 2, + 1, + 1 + ], + [ + 949, + 32, + 2, + 1, + 1 + ], + [ + 949, + 52, + 2, + 1, + 0 + ], + [ + 949, + 54, + 2, + 1, + 1 + ], + [ + 949, + 57, + 2, + 1, + 0 + ], + [ + 953, + 20, + 2, + 1, + 1 + ], + [ + 956, + 36, + 2, + 1, + 1 + ], + [ + 956, + 46, + 2, + 1, + 0 + ], + [ + 956, + 48, + 2, + 1, + 1 + ], + [ + 956, + 50, + 2, + 1, + 0 + ], + [ + 958, + 25, + 0, + 1, + 1 + ], + [ + 960, + 18, + 2, + 1, + 1 + ], + [ + 963, + 14, + 2, + 1, + 0 + ], + [ + 964, + 10, + 1, + 1, + 0 + ], + [ + 964, + 12, + 2, + 1, + 1 + ], + [ + 965, + 72, + 2, + 1, + 1 + ], + [ + 966, + 32, + 2, + 1, + 1 + ], + [ + 966, + 52, + 2, + 1, + 0 + ], + [ + 966, + 54, + 2, + 1, + 1 + ], + [ + 966, + 57, + 2, + 1, + 0 + ], + [ + 970, + 20, + 2, + 1, + 1 + ], + [ + 973, + 36, + 2, + 1, + 1 + ], + [ + 973, + 46, + 2, + 1, + 0 + ], + [ + 973, + 48, + 2, + 1, + 1 + ], + [ + 973, + 61, + 2, + 1, + 0 + ], + [ + 975, + 25, + 0, + 1, + 1 + ], + [ + 977, + 18, + 2, + 1, + 1 + ], + [ + 980, + 14, + 2, + 1, + 0 + ], + [ + 981, + 10, + 1, + 1, + 0 + ], + [ + 981, + 12, + 2, + 1, + 1 + ], + [ + 982, + 72, + 2, + 1, + 1 + ], + [ + 983, + 32, + 2, + 1, + 1 + ], + [ + 983, + 52, + 2, + 1, + 0 + ], + [ + 983, + 54, + 2, + 1, + 1 + ], + [ + 983, + 63, + 2, + 1, + 0 + ], + [ + 987, + 10, + 1, + 1, + 0 + ], + [ + 993, + 47, + 2, + 1, + 1 + ], + [ + 994, + 67, + 2, + 1, + 1 + ], + [ + 995, + 33, + 2, + 1, + 1 + ], + [ + 995, + 53, + 2, + 1, + 0 + ], + [ + 995, + 55, + 2, + 1, + 1 + ], + [ + 995, + 64, + 2, + 1, + 0 + ], + [ + 999, + 10, + 1, + 1, + 0 + ], + [ + 999, + 12, + 2, + 1, + 1 + ], + [ + 1000, + 78, + 2, + 1, + 1 + ], + [ + 1001, + 32, + 2, + 1, + 1 + ], + [ + 1001, + 52, + 2, + 1, + 0 + ], + [ + 1001, + 54, + 2, + 1, + 1 + ], + [ + 1001, + 57, + 2, + 1, + 0 + ], + [ + 1005, + 20, + 2, + 1, + 1 + ], + [ + 1008, + 36, + 2, + 1, + 1 + ], + [ + 1008, + 46, + 2, + 1, + 0 + ], + [ + 1008, + 48, + 2, + 1, + 1 + ], + [ + 1008, + 50, + 2, + 1, + 0 + ], + [ + 1010, + 25, + 0, + 1, + 1 + ], + [ + 1012, + 18, + 2, + 1, + 1 + ], + [ + 1015, + 14, + 2, + 1, + 0 + ], + [ + 1016, + 10, + 1, + 1, + 0 + ], + [ + 1016, + 12, + 2, + 1, + 1 + ], + [ + 1017, + 84, + 2, + 1, + 1 + ], + [ + 1018, + 32, + 2, + 1, + 1 + ], + [ + 1018, + 52, + 2, + 1, + 0 + ], + [ + 1018, + 54, + 2, + 1, + 1 + ], + [ + 1018, + 57, + 2, + 1, + 0 + ], + [ + 1022, + 20, + 2, + 1, + 1 + ], + [ + 1025, + 36, + 2, + 1, + 1 + ], + [ + 1025, + 46, + 2, + 1, + 0 + ], + [ + 1025, + 48, + 2, + 1, + 1 + ], + [ + 1025, + 61, + 2, + 1, + 0 + ], + [ + 1027, + 25, + 0, + 1, + 1 + ], + [ + 1029, + 18, + 2, + 1, + 1 + ], + [ + 1032, + 14, + 2, + 1, + 0 + ], + [ + 1033, + 10, + 1, + 1, + 0 + ], + [ + 1033, + 12, + 2, + 1, + 1 + ], + [ + 1034, + 84, + 2, + 1, + 1 + ], + [ + 1035, + 32, + 2, + 1, + 1 + ], + [ + 1035, + 52, + 2, + 1, + 0 + ], + [ + 1035, + 54, + 2, + 1, + 1 + ], + [ + 1035, + 63, + 2, + 1, + 0 + ], + [ + 1039, + 10, + 1, + 1, + 0 + ], + [ + 1040, + 6, + 0, + 0, + 0 + ], + [ + 1042, + 41, + 1, + 1, + 1 + ], + [ + 1048, + 47, + 2, + 1, + 1 + ], + [ + 1049, + 72, + 2, + 1, + 1 + ], + [ + 1050, + 52, + 0, + 1, + 1 + ], + [ + 1054, + 18, + 2, + 1, + 1 + ], + [ + 1056, + 32, + 2, + 1, + 1 + ], + [ + 1056, + 51, + 2, + 1, + 0 + ], + [ + 1056, + 53, + 2, + 1, + 1 + ], + [ + 1056, + 56, + 2, + 1, + 0 + ], + [ + 1058, + 20, + 2, + 1, + 1 + ], + [ + 1060, + 36, + 2, + 1, + 1 + ], + [ + 1060, + 40, + 2, + 1, + 0 + ], + [ + 1060, + 42, + 2, + 1, + 1 + ], + [ + 1060, + 66, + 2, + 1, + 0 + ], + [ + 1061, + 25, + 0, + 1, + 1 + ], + [ + 1063, + 18, + 2, + 1, + 1 + ], + [ + 1066, + 14, + 2, + 1, + 0 + ], + [ + 1067, + 10, + 1, + 1, + 0 + ], + [ + 1068, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 2734, + "covered": 2679, + "percent": 97 + }, + "functions": { + "count": 369, + "covered": 368, + "percent": 99 + }, + "instantiations": { + "count": 369, + "covered": 368, + "percent": 99 + }, + "regions": { + "count": 498, + "covered": 455, + "notcovered": 43, + "percent": 91 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift", + "segments": [ + [ + 31, + 90, + 0, + 1, + 1 + ], + [ + 38, + 6, + 0, + 0, + 0 + ], + [ + 40, + 42, + 0, + 1, + 1 + ], + [ + 41, + 51, + 0, + 1, + 1 + ], + [ + 44, + 10, + 0, + 1, + 1 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 49, + 36, + 1, + 1, + 1 + ], + [ + 109, + 45, + 0, + 1, + 1 + ], + [ + 112, + 14, + 1, + 1, + 1 + ], + [ + 114, + 49, + 27, + 1, + 1 + ], + [ + 115, + 84, + 0, + 1, + 1 + ], + [ + 118, + 18, + 27, + 1, + 1 + ], + [ + 119, + 14, + 1, + 1, + 1 + ], + [ + 120, + 6, + 0, + 0, + 0 + ], + [ + 122, + 37, + 1, + 1, + 1 + ], + [ + 182, + 45, + 0, + 1, + 1 + ], + [ + 185, + 14, + 1, + 1, + 1 + ], + [ + 187, + 49, + 27, + 1, + 1 + ], + [ + 188, + 84, + 0, + 1, + 1 + ], + [ + 191, + 18, + 27, + 1, + 1 + ], + [ + 192, + 14, + 1, + 1, + 1 + ], + [ + 193, + 6, + 0, + 0, + 0 + ], + [ + 195, + 36, + 1, + 1, + 1 + ], + [ + 256, + 45, + 0, + 1, + 1 + ], + [ + 259, + 14, + 1, + 1, + 1 + ], + [ + 261, + 49, + 27, + 1, + 1 + ], + [ + 262, + 84, + 0, + 1, + 1 + ], + [ + 265, + 18, + 27, + 1, + 1 + ], + [ + 266, + 14, + 1, + 1, + 1 + ], + [ + 267, + 6, + 0, + 0, + 0 + ], + [ + 269, + 37, + 1, + 1, + 1 + ], + [ + 330, + 45, + 0, + 1, + 1 + ], + [ + 333, + 14, + 1, + 1, + 1 + ], + [ + 335, + 49, + 27, + 1, + 1 + ], + [ + 336, + 84, + 0, + 1, + 1 + ], + [ + 339, + 18, + 27, + 1, + 1 + ], + [ + 340, + 14, + 1, + 1, + 1 + ], + [ + 341, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 305, + "covered": 274, + "percent": 89 + }, + "functions": { + "count": 6, + "covered": 4, + "percent": 66 + }, + "instantiations": { + "count": 6, + "covered": 4, + "percent": 66 + }, + "regions": { + "count": 32, + "covered": 20, + "notcovered": 12, + "percent": 62 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift", + "segments": [ + [ + 25, + 72, + 0, + 1, + 1 + ], + [ + 32, + 6, + 0, + 0, + 0 + ], + [ + 38, + 27, + 4, + 1, + 1 + ], + [ + 41, + 6, + 0, + 0, + 0 + ], + [ + 43, + 143, + 3, + 1, + 1 + ], + [ + 45, + 67, + 2, + 1, + 1 + ], + [ + 45, + 68, + 3, + 1, + 0 + ], + [ + 46, + 38, + 0, + 1, + 1 + ], + [ + 46, + 53, + 3, + 1, + 0 + ], + [ + 46, + 56, + 3, + 1, + 1 + ], + [ + 46, + 103, + 2, + 1, + 1 + ], + [ + 46, + 119, + 3, + 1, + 0 + ], + [ + 48, + 24, + 2, + 1, + 1 + ], + [ + 52, + 32, + 2, + 1, + 1 + ], + [ + 54, + 14, + 2, + 1, + 0 + ], + [ + 56, + 23, + 0, + 1, + 1 + ], + [ + 58, + 14, + 2, + 1, + 1 + ], + [ + 58, + 20, + 2, + 1, + 1 + ], + [ + 59, + 39, + 0, + 1, + 1 + ], + [ + 61, + 18, + 2, + 1, + 0 + ], + [ + 62, + 14, + 2, + 1, + 1 + ], + [ + 64, + 10, + 3, + 1, + 1 + ], + [ + 64, + 16, + 1, + 1, + 1 + ], + [ + 65, + 32, + 0, + 1, + 1 + ], + [ + 67, + 14, + 1, + 1, + 0 + ], + [ + 69, + 24, + 1, + 1, + 1 + ], + [ + 70, + 39, + 0, + 1, + 1 + ], + [ + 72, + 18, + 1, + 1, + 0 + ], + [ + 73, + 14, + 1, + 1, + 1 + ], + [ + 74, + 10, + 3, + 1, + 1 + ], + [ + 76, + 23, + 1, + 1, + 1 + ], + [ + 80, + 32, + 1, + 1, + 1 + ], + [ + 82, + 14, + 1, + 1, + 0 + ], + [ + 84, + 23, + 0, + 1, + 1 + ], + [ + 86, + 14, + 1, + 1, + 1 + ], + [ + 86, + 20, + 1, + 1, + 1 + ], + [ + 87, + 39, + 0, + 1, + 1 + ], + [ + 89, + 18, + 1, + 1, + 0 + ], + [ + 90, + 14, + 1, + 1, + 1 + ], + [ + 91, + 10, + 3, + 1, + 1 + ], + [ + 93, + 23, + 1, + 1, + 1 + ], + [ + 97, + 31, + 1, + 1, + 1 + ], + [ + 99, + 14, + 1, + 1, + 0 + ], + [ + 101, + 23, + 0, + 1, + 1 + ], + [ + 103, + 14, + 1, + 1, + 1 + ], + [ + 103, + 20, + 1, + 1, + 1 + ], + [ + 104, + 38, + 1, + 1, + 1 + ], + [ + 106, + 18, + 1, + 1, + 0 + ], + [ + 107, + 14, + 1, + 1, + 1 + ], + [ + 109, + 10, + 3, + 1, + 1 + ], + [ + 109, + 16, + 2, + 1, + 1 + ], + [ + 110, + 31, + 0, + 1, + 1 + ], + [ + 112, + 14, + 2, + 1, + 0 + ], + [ + 114, + 24, + 2, + 1, + 1 + ], + [ + 115, + 38, + 2, + 1, + 1 + ], + [ + 117, + 18, + 2, + 1, + 0 + ], + [ + 118, + 14, + 2, + 1, + 1 + ], + [ + 119, + 10, + 3, + 1, + 1 + ], + [ + 120, + 6, + 0, + 0, + 0 + ], + [ + 122, + 32, + 1, + 1, + 1 + ], + [ + 126, + 30, + 1, + 1, + 1 + ], + [ + 129, + 10, + 1, + 1, + 0 + ], + [ + 131, + 42, + 1, + 1, + 1 + ], + [ + 132, + 26, + 1, + 1, + 1 + ], + [ + 132, + 31, + 1, + 1, + 0 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 136, + 26, + 1, + 1, + 1 + ], + [ + 140, + 30, + 1, + 1, + 1 + ], + [ + 142, + 10, + 1, + 1, + 0 + ], + [ + 144, + 42, + 1, + 1, + 1 + ], + [ + 146, + 26, + 1, + 1, + 1 + ], + [ + 146, + 31, + 1, + 1, + 0 + ], + [ + 148, + 6, + 0, + 0, + 0 + ], + [ + 150, + 27, + 1, + 1, + 1 + ], + [ + 156, + 30, + 1, + 1, + 1 + ], + [ + 158, + 10, + 1, + 1, + 0 + ], + [ + 160, + 42, + 1, + 1, + 1 + ], + [ + 162, + 26, + 1, + 1, + 1 + ], + [ + 162, + 31, + 1, + 1, + 0 + ], + [ + 164, + 6, + 0, + 0, + 0 + ], + [ + 166, + 30, + 1, + 1, + 1 + ], + [ + 172, + 26, + 2, + 1, + 1 + ], + [ + 175, + 10, + 1, + 1, + 0 + ], + [ + 191, + 24, + 1, + 1, + 1 + ], + [ + 191, + 56, + 1, + 1, + 0 + ], + [ + 191, + 58, + 1, + 1, + 1 + ], + [ + 191, + 59, + 1, + 1, + 0 + ], + [ + 191, + 61, + 0, + 1, + 1 + ], + [ + 191, + 147, + 1, + 1, + 0 + ], + [ + 199, + 24, + 1, + 1, + 1 + ], + [ + 199, + 56, + 1, + 1, + 0 + ], + [ + 199, + 58, + 1, + 1, + 1 + ], + [ + 199, + 59, + 1, + 1, + 0 + ], + [ + 199, + 61, + 0, + 1, + 1 + ], + [ + 199, + 147, + 1, + 1, + 0 + ], + [ + 200, + 6, + 0, + 0, + 0 + ], + [ + 202, + 156, + 3, + 1, + 1 + ], + [ + 204, + 80, + 3, + 1, + 1 + ], + [ + 206, + 28, + 3, + 1, + 1 + ], + [ + 206, + 34, + 3, + 1, + 0 + ], + [ + 206, + 36, + 3, + 1, + 1 + ], + [ + 206, + 50, + 3, + 1, + 0 + ], + [ + 206, + 52, + 0, + 1, + 1 + ], + [ + 206, + 142, + 3, + 1, + 0 + ], + [ + 207, + 16, + 3, + 1, + 1 + ], + [ + 209, + 32, + 3, + 1, + 1 + ], + [ + 209, + 36, + 3, + 1, + 0 + ], + [ + 209, + 38, + 3, + 1, + 1 + ], + [ + 209, + 50, + 3, + 1, + 0 + ], + [ + 209, + 52, + 0, + 1, + 1 + ], + [ + 209, + 140, + 3, + 1, + 0 + ], + [ + 210, + 21, + 0, + 1, + 1 + ], + [ + 212, + 14, + 3, + 1, + 1 + ], + [ + 213, + 10, + 3, + 1, + 0 + ], + [ + 214, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 261, + "covered": 230, + "percent": 88 + }, + "functions": { + "count": 43, + "covered": 33, + "percent": 76 + }, + "instantiations": { + "count": 43, + "covered": 33, + "percent": 76 + }, + "regions": { + "count": 74, + "covered": 59, + "notcovered": 15, + "percent": 79 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift", + "segments": [ + [ + 23, + 71, + 0, + 1, + 1 + ], + [ + 28, + 6, + 0, + 0, + 0 + ], + [ + 30, + 22, + 1, + 1, + 1 + ], + [ + 32, + 22, + 1, + 1, + 1 + ], + [ + 32, + 35, + 1, + 1, + 0 + ], + [ + 33, + 6, + 0, + 0, + 0 + ], + [ + 35, + 92, + 7, + 1, + 1 + ], + [ + 36, + 48, + 0, + 1, + 1 + ], + [ + 39, + 10, + 7, + 1, + 1 + ], + [ + 40, + 24, + 7, + 1, + 1 + ], + [ + 40, + 28, + 7, + 1, + 0 + ], + [ + 40, + 30, + 7, + 1, + 1 + ], + [ + 40, + 37, + 7, + 1, + 0 + ], + [ + 40, + 39, + 0, + 1, + 1 + ], + [ + 40, + 78, + 7, + 1, + 0 + ], + [ + 41, + 6, + 0, + 0, + 0 + ], + [ + 43, + 97, + 4, + 1, + 1 + ], + [ + 45, + 24, + 4, + 1, + 1 + ], + [ + 45, + 28, + 4, + 1, + 0 + ], + [ + 45, + 30, + 4, + 1, + 1 + ], + [ + 45, + 36, + 4, + 1, + 0 + ], + [ + 45, + 38, + 0, + 1, + 1 + ], + [ + 45, + 76, + 4, + 1, + 0 + ], + [ + 46, + 6, + 0, + 0, + 0 + ], + [ + 48, + 24, + 1, + 1, + 1 + ], + [ + 73, + 22, + 1, + 1, + 1 + ], + [ + 73, + 35, + 1, + 1, + 0 + ], + [ + 74, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 56, + "covered": 46, + "percent": 82 + }, + "functions": { + "count": 13, + "covered": 10, + "percent": 76 + }, + "instantiations": { + "count": 13, + "covered": 10, + "percent": 76 + }, + "regions": { + "count": 15, + "covered": 11, + "notcovered": 4, + "percent": 73 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift", + "segments": [ + [ + 31, + 82, + 0, + 1, + 1 + ], + [ + 64, + 6, + 0, + 0, + 0 + ], + [ + 69, + 27, + 1, + 1, + 1 + ], + [ + 70, + 47, + 2, + 1, + 1 + ], + [ + 71, + 64, + 2, + 1, + 1 + ], + [ + 72, + 33, + 2, + 1, + 1 + ], + [ + 72, + 41, + 2, + 1, + 0 + ], + [ + 72, + 43, + 0, + 1, + 1 + ], + [ + 72, + 91, + 2, + 1, + 0 + ], + [ + 73, + 32, + 2, + 1, + 1 + ], + [ + 73, + 52, + 2, + 1, + 0 + ], + [ + 73, + 54, + 2, + 1, + 1 + ], + [ + 73, + 71, + 2, + 1, + 0 + ], + [ + 73, + 73, + 0, + 1, + 1 + ], + [ + 73, + 139, + 2, + 1, + 0 + ], + [ + 74, + 20, + 2, + 1, + 1 + ], + [ + 76, + 36, + 2, + 1, + 1 + ], + [ + 76, + 40, + 2, + 1, + 0 + ], + [ + 76, + 42, + 2, + 1, + 1 + ], + [ + 76, + 99, + 2, + 1, + 0 + ], + [ + 77, + 25, + 0, + 1, + 1 + ], + [ + 79, + 18, + 2, + 1, + 1 + ], + [ + 81, + 32, + 2, + 1, + 1 + ], + [ + 81, + 75, + 2, + 1, + 0 + ], + [ + 81, + 77, + 2, + 1, + 1 + ], + [ + 81, + 85, + 2, + 1, + 0 + ], + [ + 82, + 33, + 2, + 1, + 1 + ], + [ + 82, + 67, + 2, + 1, + 0 + ], + [ + 83, + 33, + 2, + 1, + 1 + ], + [ + 83, + 58, + 2, + 1, + 0 + ], + [ + 84, + 32, + 2, + 1, + 1 + ], + [ + 84, + 73, + 2, + 1, + 0 + ], + [ + 84, + 75, + 2, + 1, + 1 + ], + [ + 84, + 86, + 2, + 1, + 0 + ], + [ + 87, + 10, + 1, + 1, + 0 + ], + [ + 87, + 12, + 2, + 1, + 1 + ], + [ + 88, + 75, + 2, + 1, + 1 + ], + [ + 89, + 33, + 2, + 1, + 1 + ], + [ + 89, + 41, + 2, + 1, + 0 + ], + [ + 89, + 43, + 0, + 1, + 1 + ], + [ + 89, + 91, + 2, + 1, + 0 + ], + [ + 90, + 32, + 2, + 1, + 1 + ], + [ + 90, + 52, + 2, + 1, + 0 + ], + [ + 90, + 54, + 2, + 1, + 1 + ], + [ + 90, + 71, + 2, + 1, + 0 + ], + [ + 90, + 73, + 0, + 1, + 1 + ], + [ + 90, + 139, + 2, + 1, + 0 + ], + [ + 91, + 20, + 2, + 1, + 1 + ], + [ + 93, + 36, + 2, + 1, + 1 + ], + [ + 93, + 40, + 2, + 1, + 0 + ], + [ + 93, + 42, + 2, + 1, + 1 + ], + [ + 93, + 99, + 2, + 1, + 0 + ], + [ + 94, + 25, + 0, + 1, + 1 + ], + [ + 96, + 18, + 2, + 1, + 1 + ], + [ + 98, + 14, + 2, + 1, + 0 + ], + [ + 99, + 10, + 1, + 1, + 0 + ], + [ + 99, + 12, + 2, + 1, + 1 + ], + [ + 100, + 70, + 2, + 1, + 1 + ], + [ + 101, + 33, + 2, + 1, + 1 + ], + [ + 101, + 41, + 2, + 1, + 0 + ], + [ + 101, + 43, + 0, + 1, + 1 + ], + [ + 101, + 91, + 2, + 1, + 0 + ], + [ + 102, + 32, + 2, + 1, + 1 + ], + [ + 102, + 52, + 2, + 1, + 0 + ], + [ + 102, + 54, + 2, + 1, + 1 + ], + [ + 102, + 71, + 2, + 1, + 0 + ], + [ + 102, + 73, + 0, + 1, + 1 + ], + [ + 102, + 139, + 2, + 1, + 0 + ], + [ + 103, + 20, + 2, + 1, + 1 + ], + [ + 105, + 36, + 2, + 1, + 1 + ], + [ + 105, + 40, + 2, + 1, + 0 + ], + [ + 105, + 42, + 2, + 1, + 1 + ], + [ + 105, + 99, + 2, + 1, + 0 + ], + [ + 106, + 25, + 0, + 1, + 1 + ], + [ + 108, + 18, + 2, + 1, + 1 + ], + [ + 110, + 14, + 2, + 1, + 0 + ], + [ + 111, + 14, + 1, + 1, + 0 + ], + [ + 111, + 16, + 2, + 1, + 1 + ], + [ + 112, + 79, + 2, + 1, + 1 + ], + [ + 113, + 37, + 2, + 1, + 1 + ], + [ + 113, + 45, + 2, + 1, + 0 + ], + [ + 113, + 47, + 0, + 1, + 1 + ], + [ + 113, + 95, + 2, + 1, + 0 + ], + [ + 114, + 36, + 2, + 1, + 1 + ], + [ + 114, + 56, + 2, + 1, + 0 + ], + [ + 114, + 58, + 2, + 1, + 1 + ], + [ + 114, + 75, + 2, + 1, + 0 + ], + [ + 114, + 77, + 0, + 1, + 1 + ], + [ + 114, + 143, + 2, + 1, + 0 + ], + [ + 115, + 24, + 2, + 1, + 1 + ], + [ + 117, + 40, + 2, + 1, + 1 + ], + [ + 117, + 44, + 2, + 1, + 0 + ], + [ + 117, + 46, + 2, + 1, + 1 + ], + [ + 117, + 103, + 2, + 1, + 0 + ], + [ + 118, + 29, + 0, + 1, + 1 + ], + [ + 120, + 22, + 2, + 1, + 1 + ], + [ + 121, + 34, + 2, + 1, + 1 + ], + [ + 121, + 70, + 2, + 1, + 0 + ], + [ + 122, + 34, + 2, + 1, + 1 + ], + [ + 122, + 68, + 2, + 1, + 0 + ], + [ + 123, + 34, + 2, + 1, + 1 + ], + [ + 123, + 59, + 2, + 1, + 0 + ], + [ + 124, + 36, + 2, + 1, + 1 + ], + [ + 124, + 77, + 2, + 1, + 0 + ], + [ + 124, + 79, + 2, + 1, + 1 + ], + [ + 124, + 90, + 2, + 1, + 0 + ], + [ + 127, + 14, + 1, + 1, + 0 + ], + [ + 127, + 16, + 2, + 1, + 1 + ], + [ + 128, + 68, + 2, + 1, + 1 + ], + [ + 129, + 37, + 2, + 1, + 1 + ], + [ + 129, + 45, + 2, + 1, + 0 + ], + [ + 129, + 47, + 0, + 1, + 1 + ], + [ + 129, + 95, + 2, + 1, + 0 + ], + [ + 130, + 36, + 2, + 1, + 1 + ], + [ + 130, + 56, + 2, + 1, + 0 + ], + [ + 130, + 58, + 2, + 1, + 1 + ], + [ + 130, + 81, + 2, + 1, + 0 + ], + [ + 130, + 83, + 0, + 1, + 1 + ], + [ + 130, + 149, + 2, + 1, + 0 + ], + [ + 133, + 14, + 1, + 1, + 0 + ], + [ + 133, + 16, + 2, + 1, + 1 + ], + [ + 134, + 74, + 2, + 1, + 1 + ], + [ + 135, + 37, + 2, + 1, + 1 + ], + [ + 135, + 45, + 2, + 1, + 0 + ], + [ + 135, + 47, + 0, + 1, + 1 + ], + [ + 135, + 95, + 2, + 1, + 0 + ], + [ + 136, + 36, + 2, + 1, + 1 + ], + [ + 136, + 56, + 2, + 1, + 0 + ], + [ + 136, + 58, + 2, + 1, + 1 + ], + [ + 136, + 81, + 2, + 1, + 0 + ], + [ + 136, + 83, + 0, + 1, + 1 + ], + [ + 136, + 149, + 2, + 1, + 0 + ], + [ + 139, + 14, + 1, + 1, + 0 + ], + [ + 139, + 16, + 2, + 1, + 1 + ], + [ + 140, + 68, + 2, + 1, + 1 + ], + [ + 141, + 37, + 2, + 1, + 1 + ], + [ + 141, + 45, + 2, + 1, + 0 + ], + [ + 141, + 47, + 0, + 1, + 1 + ], + [ + 141, + 95, + 2, + 1, + 0 + ], + [ + 142, + 36, + 2, + 1, + 1 + ], + [ + 142, + 56, + 2, + 1, + 0 + ], + [ + 142, + 58, + 2, + 1, + 1 + ], + [ + 142, + 81, + 2, + 1, + 0 + ], + [ + 142, + 83, + 0, + 1, + 1 + ], + [ + 142, + 149, + 2, + 1, + 0 + ], + [ + 145, + 14, + 1, + 1, + 0 + ], + [ + 145, + 16, + 2, + 1, + 1 + ], + [ + 146, + 68, + 2, + 1, + 1 + ], + [ + 147, + 37, + 2, + 1, + 1 + ], + [ + 147, + 45, + 2, + 1, + 0 + ], + [ + 147, + 47, + 0, + 1, + 1 + ], + [ + 147, + 95, + 2, + 1, + 0 + ], + [ + 148, + 36, + 2, + 1, + 1 + ], + [ + 148, + 56, + 2, + 1, + 0 + ], + [ + 148, + 58, + 2, + 1, + 1 + ], + [ + 148, + 81, + 2, + 1, + 0 + ], + [ + 148, + 83, + 0, + 1, + 1 + ], + [ + 148, + 148, + 2, + 1, + 0 + ], + [ + 151, + 14, + 1, + 1, + 0 + ], + [ + 151, + 16, + 2, + 1, + 1 + ], + [ + 152, + 69, + 2, + 1, + 1 + ], + [ + 153, + 37, + 2, + 1, + 1 + ], + [ + 153, + 45, + 2, + 1, + 0 + ], + [ + 153, + 47, + 0, + 1, + 1 + ], + [ + 153, + 95, + 2, + 1, + 0 + ], + [ + 154, + 36, + 2, + 1, + 1 + ], + [ + 154, + 56, + 2, + 1, + 0 + ], + [ + 154, + 58, + 2, + 1, + 1 + ], + [ + 154, + 75, + 2, + 1, + 0 + ], + [ + 154, + 77, + 0, + 1, + 1 + ], + [ + 154, + 143, + 2, + 1, + 0 + ], + [ + 155, + 24, + 2, + 1, + 1 + ], + [ + 157, + 40, + 2, + 1, + 1 + ], + [ + 157, + 44, + 2, + 1, + 0 + ], + [ + 157, + 46, + 2, + 1, + 1 + ], + [ + 157, + 103, + 2, + 1, + 0 + ], + [ + 158, + 29, + 0, + 1, + 1 + ], + [ + 160, + 22, + 2, + 1, + 1 + ], + [ + 161, + 34, + 2, + 1, + 1 + ], + [ + 161, + 70, + 2, + 1, + 0 + ], + [ + 162, + 37, + 2, + 1, + 1 + ], + [ + 162, + 71, + 2, + 1, + 0 + ], + [ + 163, + 37, + 2, + 1, + 1 + ], + [ + 163, + 62, + 2, + 1, + 0 + ], + [ + 164, + 36, + 2, + 1, + 1 + ], + [ + 164, + 77, + 2, + 1, + 0 + ], + [ + 164, + 79, + 2, + 1, + 1 + ], + [ + 164, + 90, + 2, + 1, + 0 + ], + [ + 167, + 10, + 1, + 1, + 0 + ], + [ + 168, + 6, + 0, + 0, + 0 + ], + [ + 201, + 125, + 44, + 1, + 1 + ], + [ + 203, + 10, + 0, + 0, + 0 + ], + [ + 210, + 64, + 15, + 1, + 1 + ], + [ + 211, + 41, + 14, + 1, + 1 + ], + [ + 211, + 47, + 15, + 1, + 0 + ], + [ + 211, + 49, + 30, + 1, + 1 + ], + [ + 212, + 62, + 30, + 1, + 1 + ], + [ + 213, + 52, + 0, + 1, + 1 + ], + [ + 217, + 18, + 30, + 1, + 1 + ], + [ + 218, + 32, + 30, + 1, + 1 + ], + [ + 218, + 51, + 30, + 1, + 0 + ], + [ + 218, + 53, + 30, + 1, + 1 + ], + [ + 218, + 71, + 30, + 1, + 0 + ], + [ + 219, + 32, + 0, + 1, + 1 + ], + [ + 219, + 65, + 30, + 1, + 0 + ], + [ + 220, + 91, + 30, + 1, + 1 + ], + [ + 221, + 72, + 18, + 1, + 1 + ], + [ + 222, + 40, + 18, + 1, + 1 + ], + [ + 222, + 44, + 18, + 1, + 0 + ], + [ + 222, + 46, + 18, + 1, + 1 + ], + [ + 222, + 66, + 18, + 1, + 0 + ], + [ + 222, + 68, + 0, + 1, + 1 + ], + [ + 222, + 86, + 18, + 1, + 0 + ], + [ + 223, + 22, + 30, + 1, + 1 + ], + [ + 225, + 18, + 30, + 1, + 1 + ], + [ + 225, + 24, + 0, + 1, + 1 + ], + [ + 227, + 18, + 30, + 1, + 1 + ], + [ + 229, + 14, + 30, + 1, + 0 + ], + [ + 230, + 10, + 15, + 1, + 0 + ], + [ + 231, + 6, + 0, + 0, + 0 + ], + [ + 233, + 35, + 1, + 1, + 1 + ], + [ + 235, + 6, + 0, + 0, + 0 + ], + [ + 237, + 41, + 1, + 1, + 1 + ], + [ + 239, + 6, + 0, + 0, + 0 + ], + [ + 241, + 48, + 1, + 1, + 1 + ], + [ + 243, + 6, + 0, + 0, + 0 + ], + [ + 245, + 41, + 1, + 1, + 1 + ], + [ + 247, + 6, + 0, + 0, + 0 + ], + [ + 249, + 34, + 1, + 1, + 1 + ], + [ + 251, + 6, + 0, + 0, + 0 + ], + [ + 253, + 35, + 1, + 1, + 1 + ], + [ + 255, + 6, + 0, + 0, + 0 + ], + [ + 257, + 41, + 1, + 1, + 1 + ], + [ + 259, + 6, + 0, + 0, + 0 + ], + [ + 261, + 47, + 1, + 1, + 1 + ], + [ + 263, + 6, + 0, + 0, + 0 + ], + [ + 265, + 33, + 1, + 1, + 1 + ], + [ + 267, + 6, + 0, + 0, + 0 + ], + [ + 269, + 37, + 1, + 1, + 1 + ], + [ + 270, + 24, + 1, + 1, + 1 + ], + [ + 270, + 86, + 1, + 1, + 0 + ], + [ + 270, + 88, + 1, + 1, + 1 + ], + [ + 270, + 91, + 1, + 1, + 0 + ], + [ + 270, + 93, + 0, + 1, + 1 + ], + [ + 270, + 139, + 1, + 1, + 0 + ], + [ + 271, + 6, + 0, + 0, + 0 + ], + [ + 273, + 33, + 1, + 1, + 1 + ], + [ + 274, + 24, + 1, + 1, + 1 + ], + [ + 274, + 68, + 1, + 1, + 0 + ], + [ + 274, + 70, + 1, + 1, + 1 + ], + [ + 274, + 73, + 1, + 1, + 0 + ], + [ + 274, + 75, + 0, + 1, + 1 + ], + [ + 274, + 126, + 1, + 1, + 0 + ], + [ + 275, + 6, + 0, + 0, + 0 + ], + [ + 281, + 42, + 1, + 1, + 1 + ], + [ + 283, + 6, + 0, + 0, + 0 + ], + [ + 285, + 51, + 1, + 1, + 1 + ], + [ + 287, + 6, + 0, + 0, + 0 + ], + [ + 289, + 50, + 1, + 1, + 1 + ], + [ + 291, + 6, + 0, + 0, + 0 + ], + [ + 293, + 59, + 1, + 1, + 1 + ], + [ + 295, + 6, + 0, + 0, + 0 + ], + [ + 297, + 64, + 1, + 1, + 1 + ], + [ + 299, + 6, + 0, + 0, + 0 + ], + [ + 301, + 72, + 1, + 1, + 1 + ], + [ + 303, + 6, + 0, + 0, + 0 + ], + [ + 305, + 30, + 1, + 1, + 1 + ], + [ + 307, + 35, + 2, + 1, + 1 + ], + [ + 308, + 76, + 2, + 1, + 1 + ], + [ + 309, + 33, + 2, + 1, + 1 + ], + [ + 309, + 41, + 2, + 1, + 0 + ], + [ + 310, + 32, + 2, + 1, + 1 + ], + [ + 310, + 52, + 2, + 1, + 0 + ], + [ + 310, + 54, + 2, + 1, + 1 + ], + [ + 310, + 83, + 2, + 1, + 0 + ], + [ + 311, + 32, + 2, + 1, + 1 + ], + [ + 311, + 73, + 2, + 1, + 0 + ], + [ + 311, + 75, + 2, + 1, + 1 + ], + [ + 311, + 126, + 2, + 1, + 0 + ], + [ + 312, + 32, + 2, + 1, + 1 + ], + [ + 312, + 73, + 2, + 1, + 0 + ], + [ + 312, + 75, + 2, + 1, + 1 + ], + [ + 312, + 82, + 2, + 1, + 0 + ], + [ + 313, + 32, + 2, + 1, + 1 + ], + [ + 313, + 74, + 2, + 1, + 0 + ], + [ + 313, + 76, + 2, + 1, + 1 + ], + [ + 313, + 80, + 2, + 1, + 0 + ], + [ + 316, + 32, + 2, + 1, + 1 + ], + [ + 316, + 46, + 2, + 1, + 0 + ], + [ + 316, + 48, + 2, + 1, + 1 + ], + [ + 316, + 67, + 2, + 1, + 0 + ], + [ + 319, + 10, + 1, + 1, + 0 + ], + [ + 320, + 6, + 0, + 0, + 0 + ], + [ + 322, + 50, + 1, + 1, + 1 + ], + [ + 323, + 35, + 2, + 1, + 1 + ], + [ + 324, + 76, + 2, + 1, + 1 + ], + [ + 325, + 33, + 2, + 1, + 1 + ], + [ + 325, + 41, + 2, + 1, + 0 + ], + [ + 326, + 32, + 2, + 1, + 1 + ], + [ + 326, + 52, + 2, + 1, + 0 + ], + [ + 326, + 54, + 2, + 1, + 1 + ], + [ + 326, + 83, + 2, + 1, + 0 + ], + [ + 327, + 32, + 2, + 1, + 1 + ], + [ + 327, + 73, + 2, + 1, + 0 + ], + [ + 327, + 75, + 2, + 1, + 1 + ], + [ + 327, + 90, + 2, + 1, + 0 + ], + [ + 328, + 32, + 2, + 1, + 1 + ], + [ + 328, + 73, + 2, + 1, + 0 + ], + [ + 328, + 75, + 2, + 1, + 1 + ], + [ + 328, + 82, + 2, + 1, + 0 + ], + [ + 329, + 32, + 2, + 1, + 1 + ], + [ + 329, + 74, + 2, + 1, + 0 + ], + [ + 329, + 76, + 2, + 1, + 1 + ], + [ + 329, + 80, + 2, + 1, + 0 + ], + [ + 332, + 32, + 2, + 1, + 1 + ], + [ + 332, + 46, + 2, + 1, + 0 + ], + [ + 332, + 48, + 2, + 1, + 1 + ], + [ + 332, + 50, + 2, + 1, + 0 + ], + [ + 335, + 10, + 1, + 1, + 0 + ], + [ + 336, + 6, + 0, + 0, + 0 + ], + [ + 338, + 49, + 1, + 1, + 1 + ], + [ + 339, + 35, + 2, + 1, + 1 + ], + [ + 341, + 76, + 2, + 1, + 1 + ], + [ + 342, + 33, + 2, + 1, + 1 + ], + [ + 342, + 41, + 2, + 1, + 0 + ], + [ + 343, + 32, + 2, + 1, + 1 + ], + [ + 343, + 52, + 2, + 1, + 0 + ], + [ + 343, + 54, + 2, + 1, + 1 + ], + [ + 343, + 71, + 2, + 1, + 0 + ], + [ + 346, + 32, + 2, + 1, + 1 + ], + [ + 346, + 46, + 2, + 1, + 0 + ], + [ + 346, + 48, + 2, + 1, + 1 + ], + [ + 346, + 67, + 2, + 1, + 0 + ], + [ + 347, + 32, + 2, + 1, + 1 + ], + [ + 347, + 73, + 2, + 1, + 0 + ], + [ + 347, + 75, + 2, + 1, + 1 + ], + [ + 347, + 81, + 2, + 1, + 0 + ], + [ + 350, + 10, + 1, + 1, + 0 + ], + [ + 351, + 6, + 0, + 0, + 0 + ], + [ + 353, + 52, + 1, + 1, + 1 + ], + [ + 354, + 35, + 2, + 1, + 1 + ], + [ + 355, + 77, + 2, + 1, + 1 + ], + [ + 356, + 33, + 2, + 1, + 1 + ], + [ + 356, + 41, + 2, + 1, + 0 + ], + [ + 357, + 32, + 2, + 1, + 1 + ], + [ + 357, + 73, + 2, + 1, + 0 + ], + [ + 357, + 75, + 2, + 1, + 1 + ], + [ + 357, + 82, + 2, + 1, + 0 + ], + [ + 360, + 32, + 2, + 1, + 1 + ], + [ + 360, + 52, + 2, + 1, + 0 + ], + [ + 360, + 54, + 2, + 1, + 1 + ], + [ + 360, + 71, + 2, + 1, + 0 + ], + [ + 361, + 30, + 2, + 1, + 1 + ], + [ + 361, + 64, + 2, + 1, + 0 + ], + [ + 363, + 30, + 2, + 1, + 1 + ], + [ + 363, + 40, + 2, + 1, + 0 + ], + [ + 366, + 10, + 1, + 1, + 0 + ], + [ + 367, + 6, + 0, + 0, + 0 + ], + [ + 369, + 35, + 1, + 1, + 1 + ], + [ + 372, + 35, + 2, + 1, + 1 + ], + [ + 373, + 76, + 2, + 1, + 1 + ], + [ + 374, + 33, + 2, + 1, + 1 + ], + [ + 374, + 41, + 2, + 1, + 0 + ], + [ + 375, + 32, + 2, + 1, + 1 + ], + [ + 375, + 52, + 2, + 1, + 0 + ], + [ + 375, + 54, + 2, + 1, + 1 + ], + [ + 375, + 71, + 2, + 1, + 0 + ], + [ + 376, + 30, + 2, + 1, + 1 + ], + [ + 376, + 71, + 2, + 1, + 0 + ], + [ + 381, + 80, + 2, + 1, + 1 + ], + [ + 382, + 37, + 2, + 1, + 1 + ], + [ + 382, + 45, + 2, + 1, + 0 + ], + [ + 383, + 36, + 2, + 1, + 1 + ], + [ + 383, + 56, + 2, + 1, + 0 + ], + [ + 383, + 58, + 2, + 1, + 1 + ], + [ + 383, + 87, + 2, + 1, + 0 + ], + [ + 384, + 36, + 2, + 1, + 1 + ], + [ + 384, + 77, + 2, + 1, + 0 + ], + [ + 384, + 79, + 2, + 1, + 1 + ], + [ + 384, + 114, + 2, + 1, + 0 + ], + [ + 389, + 84, + 2, + 1, + 1 + ], + [ + 390, + 41, + 2, + 1, + 1 + ], + [ + 390, + 49, + 2, + 1, + 0 + ], + [ + 391, + 40, + 2, + 1, + 1 + ], + [ + 391, + 60, + 2, + 1, + 0 + ], + [ + 391, + 62, + 2, + 1, + 1 + ], + [ + 391, + 91, + 2, + 1, + 0 + ], + [ + 392, + 40, + 2, + 1, + 1 + ], + [ + 392, + 81, + 2, + 1, + 0 + ], + [ + 392, + 83, + 2, + 1, + 1 + ], + [ + 392, + 141, + 2, + 1, + 0 + ], + [ + 401, + 40, + 2, + 1, + 1 + ], + [ + 401, + 59, + 2, + 1, + 0 + ], + [ + 401, + 61, + 2, + 1, + 1 + ], + [ + 401, + 75, + 2, + 1, + 0 + ], + [ + 402, + 66, + 2, + 1, + 1 + ], + [ + 403, + 57, + 108, + 1, + 1 + ], + [ + 404, + 48, + 108, + 1, + 1 + ], + [ + 404, + 64, + 108, + 1, + 0 + ], + [ + 404, + 66, + 108, + 1, + 1 + ], + [ + 404, + 77, + 108, + 1, + 0 + ], + [ + 405, + 30, + 2, + 1, + 1 + ], + [ + 406, + 26, + 2, + 1, + 1 + ], + [ + 407, + 22, + 2, + 1, + 0 + ], + [ + 411, + 10, + 1, + 1, + 0 + ], + [ + 412, + 6, + 0, + 0, + 0 + ], + [ + 419, + 139, + 2, + 1, + 1 + ], + [ + 420, + 87, + 0, + 1, + 1 + ], + [ + 422, + 10, + 2, + 1, + 1 + ], + [ + 423, + 40, + 0, + 1, + 1 + ], + [ + 425, + 10, + 2, + 1, + 1 + ], + [ + 427, + 28, + 0, + 1, + 1 + ], + [ + 429, + 10, + 2, + 1, + 1 + ], + [ + 429, + 16, + 2, + 1, + 1 + ], + [ + 432, + 51, + 4, + 1, + 1 + ], + [ + 438, + 55, + 4, + 1, + 1 + ], + [ + 438, + 75, + 4, + 1, + 0 + ], + [ + 438, + 76, + 4, + 1, + 1 + ], + [ + 440, + 18, + 4, + 1, + 1 + ], + [ + 441, + 14, + 2, + 1, + 1 + ], + [ + 442, + 10, + 2, + 1, + 1 + ], + [ + 443, + 6, + 0, + 0, + 0 + ], + [ + 445, + 48, + 1, + 1, + 1 + ], + [ + 446, + 35, + 2, + 1, + 1 + ], + [ + 447, + 76, + 2, + 1, + 1 + ], + [ + 451, + 32, + 2, + 1, + 1 + ], + [ + 451, + 52, + 2, + 1, + 0 + ], + [ + 451, + 54, + 2, + 1, + 1 + ], + [ + 451, + 83, + 2, + 1, + 0 + ], + [ + 455, + 32, + 2, + 1, + 1 + ], + [ + 455, + 73, + 2, + 1, + 0 + ], + [ + 455, + 75, + 2, + 1, + 1 + ], + [ + 455, + 82, + 2, + 1, + 0 + ], + [ + 457, + 32, + 2, + 1, + 1 + ], + [ + 457, + 54, + 2, + 1, + 0 + ], + [ + 457, + 56, + 0, + 1, + 1 + ], + [ + 457, + 111, + 2, + 1, + 0 + ], + [ + 458, + 53, + 0, + 1, + 1 + ], + [ + 461, + 18, + 2, + 1, + 1 + ], + [ + 464, + 30, + 2, + 1, + 1 + ], + [ + 464, + 71, + 2, + 1, + 0 + ], + [ + 469, + 31, + 2, + 1, + 1 + ], + [ + 469, + 49, + 2, + 1, + 0 + ], + [ + 473, + 72, + 0, + 1, + 1 + ], + [ + 476, + 18, + 2, + 1, + 1 + ], + [ + 478, + 17, + 2, + 1, + 1 + ], + [ + 480, + 36, + 2, + 1, + 1 + ], + [ + 480, + 47, + 2, + 1, + 0 + ], + [ + 480, + 49, + 2, + 1, + 1 + ], + [ + 480, + 50, + 2, + 1, + 0 + ], + [ + 481, + 36, + 2, + 1, + 1 + ], + [ + 481, + 67, + 2, + 1, + 0 + ], + [ + 481, + 69, + 2, + 1, + 1 + ], + [ + 481, + 119, + 2, + 1, + 0 + ], + [ + 482, + 36, + 2, + 1, + 1 + ], + [ + 482, + 59, + 2, + 1, + 0 + ], + [ + 482, + 61, + 2, + 1, + 1 + ], + [ + 482, + 86, + 2, + 1, + 0 + ], + [ + 484, + 36, + 2, + 1, + 1 + ], + [ + 484, + 48, + 2, + 1, + 0 + ], + [ + 484, + 50, + 2, + 1, + 1 + ], + [ + 484, + 52, + 2, + 1, + 0 + ], + [ + 485, + 36, + 2, + 1, + 1 + ], + [ + 485, + 67, + 2, + 1, + 0 + ], + [ + 485, + 69, + 2, + 1, + 1 + ], + [ + 485, + 120, + 2, + 1, + 0 + ], + [ + 486, + 36, + 2, + 1, + 1 + ], + [ + 486, + 59, + 2, + 1, + 0 + ], + [ + 486, + 61, + 2, + 1, + 1 + ], + [ + 486, + 86, + 2, + 1, + 0 + ], + [ + 488, + 36, + 2, + 1, + 1 + ], + [ + 488, + 48, + 2, + 1, + 0 + ], + [ + 488, + 50, + 2, + 1, + 1 + ], + [ + 488, + 52, + 2, + 1, + 0 + ], + [ + 489, + 17, + 0, + 1, + 1 + ], + [ + 490, + 73, + 2, + 1, + 0 + ], + [ + 491, + 18, + 2, + 1, + 1 + ], + [ + 492, + 14, + 2, + 1, + 0 + ], + [ + 493, + 10, + 1, + 1, + 0 + ], + [ + 494, + 6, + 0, + 0, + 0 + ], + [ + 496, + 52, + 1, + 1, + 1 + ], + [ + 498, + 35, + 2, + 1, + 1 + ], + [ + 499, + 76, + 2, + 1, + 1 + ], + [ + 500, + 33, + 2, + 1, + 1 + ], + [ + 500, + 41, + 2, + 1, + 0 + ], + [ + 501, + 32, + 2, + 1, + 1 + ], + [ + 501, + 73, + 2, + 1, + 0 + ], + [ + 501, + 75, + 2, + 1, + 1 + ], + [ + 501, + 82, + 2, + 1, + 0 + ], + [ + 502, + 32, + 2, + 1, + 1 + ], + [ + 502, + 52, + 2, + 1, + 0 + ], + [ + 502, + 54, + 2, + 1, + 1 + ], + [ + 502, + 97, + 2, + 1, + 0 + ], + [ + 503, + 32, + 2, + 1, + 1 + ], + [ + 503, + 73, + 2, + 1, + 0 + ], + [ + 503, + 75, + 2, + 1, + 1 + ], + [ + 503, + 87, + 2, + 1, + 0 + ], + [ + 506, + 10, + 1, + 1, + 0 + ], + [ + 507, + 6, + 0, + 0, + 0 + ], + [ + 509, + 58, + 1, + 1, + 1 + ], + [ + 510, + 35, + 2, + 1, + 1 + ], + [ + 511, + 76, + 2, + 1, + 1 + ], + [ + 512, + 33, + 2, + 1, + 1 + ], + [ + 512, + 41, + 2, + 1, + 0 + ], + [ + 513, + 32, + 2, + 1, + 1 + ], + [ + 513, + 73, + 2, + 1, + 0 + ], + [ + 513, + 75, + 2, + 1, + 1 + ], + [ + 513, + 82, + 2, + 1, + 0 + ], + [ + 514, + 32, + 2, + 1, + 1 + ], + [ + 514, + 52, + 2, + 1, + 0 + ], + [ + 514, + 54, + 2, + 1, + 1 + ], + [ + 514, + 71, + 2, + 1, + 0 + ], + [ + 515, + 30, + 2, + 1, + 1 + ], + [ + 515, + 71, + 2, + 1, + 0 + ], + [ + 518, + 10, + 1, + 1, + 0 + ], + [ + 519, + 6, + 0, + 0, + 0 + ], + [ + 521, + 54, + 1, + 1, + 1 + ], + [ + 522, + 35, + 2, + 1, + 1 + ], + [ + 523, + 76, + 2, + 1, + 1 + ], + [ + 524, + 33, + 2, + 1, + 1 + ], + [ + 524, + 41, + 2, + 1, + 0 + ], + [ + 525, + 32, + 2, + 1, + 1 + ], + [ + 525, + 52, + 2, + 1, + 0 + ], + [ + 525, + 54, + 2, + 1, + 1 + ], + [ + 525, + 71, + 2, + 1, + 0 + ], + [ + 526, + 33, + 2, + 1, + 1 + ], + [ + 526, + 74, + 2, + 1, + 0 + ], + [ + 527, + 33, + 2, + 1, + 1 + ], + [ + 527, + 65, + 2, + 1, + 0 + ], + [ + 531, + 80, + 2, + 1, + 1 + ], + [ + 532, + 37, + 2, + 1, + 1 + ], + [ + 532, + 45, + 2, + 1, + 0 + ], + [ + 533, + 36, + 2, + 1, + 1 + ], + [ + 533, + 56, + 2, + 1, + 0 + ], + [ + 533, + 58, + 2, + 1, + 1 + ], + [ + 533, + 87, + 2, + 1, + 0 + ], + [ + 534, + 36, + 2, + 1, + 1 + ], + [ + 534, + 77, + 2, + 1, + 0 + ], + [ + 534, + 79, + 2, + 1, + 1 + ], + [ + 534, + 114, + 2, + 1, + 0 + ], + [ + 537, + 36, + 2, + 1, + 1 + ], + [ + 537, + 46, + 2, + 1, + 0 + ], + [ + 537, + 48, + 2, + 1, + 1 + ], + [ + 537, + 50, + 2, + 1, + 0 + ], + [ + 541, + 10, + 1, + 1, + 0 + ], + [ + 542, + 6, + 0, + 0, + 0 + ], + [ + 544, + 57, + 1, + 1, + 1 + ], + [ + 545, + 35, + 2, + 1, + 1 + ], + [ + 547, + 76, + 2, + 1, + 1 + ], + [ + 548, + 33, + 2, + 1, + 1 + ], + [ + 548, + 41, + 2, + 1, + 0 + ], + [ + 549, + 32, + 2, + 1, + 1 + ], + [ + 549, + 52, + 2, + 1, + 0 + ], + [ + 549, + 54, + 2, + 1, + 1 + ], + [ + 549, + 71, + 2, + 1, + 0 + ], + [ + 550, + 30, + 2, + 1, + 1 + ], + [ + 550, + 71, + 2, + 1, + 0 + ], + [ + 554, + 10, + 1, + 1, + 0 + ], + [ + 555, + 6, + 0, + 0, + 0 + ], + [ + 557, + 60, + 1, + 1, + 1 + ], + [ + 558, + 35, + 2, + 1, + 1 + ], + [ + 559, + 76, + 2, + 1, + 1 + ], + [ + 560, + 33, + 2, + 1, + 1 + ], + [ + 560, + 41, + 2, + 1, + 0 + ], + [ + 561, + 32, + 2, + 1, + 1 + ], + [ + 561, + 52, + 2, + 1, + 0 + ], + [ + 561, + 54, + 2, + 1, + 1 + ], + [ + 561, + 71, + 2, + 1, + 0 + ], + [ + 562, + 33, + 2, + 1, + 1 + ], + [ + 562, + 74, + 2, + 1, + 0 + ], + [ + 563, + 33, + 2, + 1, + 1 + ], + [ + 563, + 65, + 2, + 1, + 0 + ], + [ + 567, + 80, + 2, + 1, + 1 + ], + [ + 568, + 37, + 2, + 1, + 1 + ], + [ + 568, + 45, + 2, + 1, + 0 + ], + [ + 569, + 36, + 2, + 1, + 1 + ], + [ + 569, + 56, + 2, + 1, + 0 + ], + [ + 569, + 58, + 2, + 1, + 1 + ], + [ + 569, + 87, + 2, + 1, + 0 + ], + [ + 570, + 36, + 2, + 1, + 1 + ], + [ + 570, + 77, + 2, + 1, + 0 + ], + [ + 570, + 79, + 2, + 1, + 1 + ], + [ + 570, + 114, + 2, + 1, + 0 + ], + [ + 573, + 36, + 2, + 1, + 1 + ], + [ + 573, + 46, + 2, + 1, + 0 + ], + [ + 573, + 48, + 2, + 1, + 1 + ], + [ + 573, + 50, + 2, + 1, + 0 + ], + [ + 577, + 10, + 1, + 1, + 0 + ], + [ + 578, + 6, + 0, + 0, + 0 + ], + [ + 580, + 63, + 1, + 1, + 1 + ], + [ + 582, + 35, + 2, + 1, + 1 + ], + [ + 584, + 76, + 2, + 1, + 1 + ], + [ + 585, + 33, + 2, + 1, + 1 + ], + [ + 585, + 41, + 2, + 1, + 0 + ], + [ + 586, + 32, + 2, + 1, + 1 + ], + [ + 586, + 52, + 2, + 1, + 0 + ], + [ + 586, + 54, + 2, + 1, + 1 + ], + [ + 586, + 71, + 2, + 1, + 0 + ], + [ + 587, + 30, + 2, + 1, + 1 + ], + [ + 587, + 71, + 2, + 1, + 0 + ], + [ + 590, + 10, + 1, + 1, + 0 + ], + [ + 591, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 1384, + "covered": 1310, + "percent": 94 + }, + "functions": { + "count": 288, + "covered": 264, + "percent": 91 + }, + "instantiations": { + "count": 288, + "covered": 264, + "percent": 91 + }, + "regions": { + "count": 334, + "covered": 297, + "notcovered": 37, + "percent": 88 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift", + "segments": [ + [ + 32, + 75, + 0, + 1, + 1 + ], + [ + 40, + 6, + 0, + 0, + 0 + ], + [ + 47, + 26, + 1, + 1, + 1 + ], + [ + 48, + 47, + 2, + 1, + 1 + ], + [ + 49, + 63, + 2, + 1, + 1 + ], + [ + 50, + 33, + 2, + 1, + 1 + ], + [ + 50, + 41, + 2, + 1, + 0 + ], + [ + 50, + 43, + 0, + 1, + 1 + ], + [ + 50, + 91, + 2, + 1, + 0 + ], + [ + 51, + 32, + 2, + 1, + 1 + ], + [ + 51, + 52, + 2, + 1, + 0 + ], + [ + 51, + 54, + 2, + 1, + 1 + ], + [ + 51, + 71, + 2, + 1, + 0 + ], + [ + 51, + 73, + 0, + 1, + 1 + ], + [ + 51, + 139, + 2, + 1, + 0 + ], + [ + 52, + 33, + 2, + 1, + 1 + ], + [ + 52, + 58, + 2, + 1, + 0 + ], + [ + 52, + 60, + 0, + 1, + 1 + ], + [ + 52, + 102, + 2, + 1, + 0 + ], + [ + 54, + 20, + 2, + 1, + 1 + ], + [ + 56, + 36, + 2, + 1, + 1 + ], + [ + 56, + 40, + 2, + 1, + 0 + ], + [ + 56, + 42, + 2, + 1, + 1 + ], + [ + 56, + 62, + 2, + 1, + 0 + ], + [ + 57, + 25, + 0, + 1, + 1 + ], + [ + 59, + 18, + 2, + 1, + 1 + ], + [ + 61, + 14, + 2, + 1, + 0 + ], + [ + 62, + 10, + 1, + 1, + 0 + ], + [ + 62, + 12, + 2, + 1, + 1 + ], + [ + 63, + 65, + 2, + 1, + 1 + ], + [ + 64, + 33, + 2, + 1, + 1 + ], + [ + 64, + 41, + 2, + 1, + 0 + ], + [ + 64, + 43, + 0, + 1, + 1 + ], + [ + 64, + 91, + 2, + 1, + 0 + ], + [ + 65, + 20, + 2, + 1, + 1 + ], + [ + 67, + 36, + 2, + 1, + 1 + ], + [ + 67, + 40, + 2, + 1, + 0 + ], + [ + 67, + 42, + 2, + 1, + 1 + ], + [ + 67, + 48, + 2, + 1, + 0 + ], + [ + 68, + 25, + 0, + 1, + 1 + ], + [ + 70, + 18, + 2, + 1, + 1 + ], + [ + 72, + 14, + 2, + 1, + 0 + ], + [ + 73, + 10, + 1, + 1, + 0 + ], + [ + 74, + 6, + 0, + 0, + 0 + ], + [ + 76, + 26, + 1, + 1, + 1 + ], + [ + 79, + 47, + 2, + 1, + 1 + ], + [ + 80, + 66, + 2, + 1, + 1 + ], + [ + 81, + 33, + 2, + 1, + 1 + ], + [ + 81, + 41, + 2, + 1, + 0 + ], + [ + 81, + 43, + 0, + 1, + 1 + ], + [ + 81, + 91, + 2, + 1, + 0 + ], + [ + 82, + 32, + 2, + 1, + 1 + ], + [ + 82, + 52, + 2, + 1, + 0 + ], + [ + 82, + 54, + 2, + 1, + 1 + ], + [ + 82, + 71, + 2, + 1, + 0 + ], + [ + 82, + 73, + 0, + 1, + 1 + ], + [ + 82, + 139, + 2, + 1, + 0 + ], + [ + 83, + 33, + 2, + 1, + 1 + ], + [ + 83, + 58, + 2, + 1, + 0 + ], + [ + 83, + 60, + 0, + 1, + 1 + ], + [ + 83, + 102, + 2, + 1, + 0 + ], + [ + 85, + 20, + 2, + 1, + 1 + ], + [ + 87, + 36, + 2, + 1, + 1 + ], + [ + 87, + 40, + 2, + 1, + 0 + ], + [ + 87, + 42, + 2, + 1, + 1 + ], + [ + 87, + 62, + 2, + 1, + 0 + ], + [ + 88, + 25, + 0, + 1, + 1 + ], + [ + 90, + 18, + 2, + 1, + 1 + ], + [ + 92, + 14, + 2, + 1, + 0 + ], + [ + 93, + 10, + 1, + 1, + 0 + ], + [ + 93, + 12, + 2, + 1, + 1 + ], + [ + 94, + 71, + 2, + 1, + 1 + ], + [ + 95, + 33, + 2, + 1, + 1 + ], + [ + 95, + 41, + 2, + 1, + 0 + ], + [ + 95, + 43, + 0, + 1, + 1 + ], + [ + 95, + 91, + 2, + 1, + 0 + ], + [ + 96, + 20, + 2, + 1, + 1 + ], + [ + 98, + 36, + 2, + 1, + 1 + ], + [ + 98, + 40, + 2, + 1, + 0 + ], + [ + 98, + 42, + 2, + 1, + 1 + ], + [ + 98, + 48, + 2, + 1, + 0 + ], + [ + 99, + 25, + 0, + 1, + 1 + ], + [ + 101, + 18, + 2, + 1, + 1 + ], + [ + 103, + 14, + 2, + 1, + 0 + ], + [ + 104, + 10, + 1, + 1, + 0 + ], + [ + 105, + 6, + 0, + 0, + 0 + ], + [ + 107, + 24, + 1, + 1, + 1 + ], + [ + 108, + 47, + 2, + 1, + 1 + ], + [ + 109, + 68, + 2, + 1, + 1 + ], + [ + 110, + 33, + 2, + 1, + 1 + ], + [ + 110, + 41, + 2, + 1, + 0 + ], + [ + 110, + 43, + 0, + 1, + 1 + ], + [ + 110, + 91, + 2, + 1, + 0 + ], + [ + 111, + 32, + 2, + 1, + 1 + ], + [ + 111, + 52, + 2, + 1, + 0 + ], + [ + 111, + 54, + 2, + 1, + 1 + ], + [ + 111, + 71, + 2, + 1, + 0 + ], + [ + 111, + 73, + 0, + 1, + 1 + ], + [ + 111, + 139, + 2, + 1, + 0 + ], + [ + 112, + 33, + 2, + 1, + 1 + ], + [ + 112, + 58, + 2, + 1, + 0 + ], + [ + 112, + 60, + 0, + 1, + 1 + ], + [ + 112, + 102, + 2, + 1, + 0 + ], + [ + 114, + 20, + 2, + 1, + 1 + ], + [ + 116, + 36, + 2, + 1, + 1 + ], + [ + 116, + 40, + 2, + 1, + 0 + ], + [ + 116, + 42, + 2, + 1, + 1 + ], + [ + 116, + 66, + 2, + 1, + 0 + ], + [ + 117, + 25, + 0, + 1, + 1 + ], + [ + 119, + 18, + 2, + 1, + 1 + ], + [ + 121, + 14, + 2, + 1, + 0 + ], + [ + 122, + 10, + 1, + 1, + 0 + ], + [ + 122, + 12, + 2, + 1, + 1 + ], + [ + 123, + 73, + 2, + 1, + 1 + ], + [ + 124, + 33, + 2, + 1, + 1 + ], + [ + 124, + 41, + 2, + 1, + 0 + ], + [ + 124, + 43, + 0, + 1, + 1 + ], + [ + 124, + 91, + 2, + 1, + 0 + ], + [ + 125, + 20, + 2, + 1, + 1 + ], + [ + 127, + 36, + 2, + 1, + 1 + ], + [ + 127, + 40, + 2, + 1, + 0 + ], + [ + 127, + 42, + 2, + 1, + 1 + ], + [ + 127, + 51, + 2, + 1, + 0 + ], + [ + 128, + 25, + 0, + 1, + 1 + ], + [ + 130, + 18, + 2, + 1, + 1 + ], + [ + 132, + 14, + 2, + 1, + 0 + ], + [ + 133, + 10, + 1, + 1, + 0 + ], + [ + 134, + 6, + 0, + 0, + 0 + ], + [ + 136, + 35, + 1, + 1, + 1 + ], + [ + 137, + 35, + 2, + 1, + 1 + ], + [ + 138, + 71, + 2, + 1, + 1 + ], + [ + 139, + 33, + 2, + 1, + 1 + ], + [ + 139, + 41, + 2, + 1, + 0 + ], + [ + 139, + 43, + 0, + 1, + 1 + ], + [ + 139, + 91, + 2, + 1, + 0 + ], + [ + 140, + 32, + 2, + 1, + 1 + ], + [ + 140, + 52, + 2, + 1, + 0 + ], + [ + 140, + 54, + 2, + 1, + 1 + ], + [ + 140, + 71, + 2, + 1, + 0 + ], + [ + 140, + 73, + 0, + 1, + 1 + ], + [ + 140, + 139, + 2, + 1, + 0 + ], + [ + 141, + 33, + 2, + 1, + 1 + ], + [ + 141, + 58, + 2, + 1, + 0 + ], + [ + 141, + 60, + 0, + 1, + 1 + ], + [ + 141, + 102, + 2, + 1, + 0 + ], + [ + 143, + 20, + 2, + 1, + 1 + ], + [ + 145, + 36, + 2, + 1, + 1 + ], + [ + 145, + 40, + 2, + 1, + 0 + ], + [ + 145, + 42, + 2, + 1, + 1 + ], + [ + 145, + 75, + 2, + 1, + 0 + ], + [ + 146, + 25, + 0, + 1, + 1 + ], + [ + 148, + 18, + 2, + 1, + 1 + ], + [ + 150, + 14, + 2, + 1, + 0 + ], + [ + 151, + 10, + 1, + 1, + 0 + ], + [ + 152, + 6, + 0, + 0, + 0 + ], + [ + 154, + 28, + 1, + 1, + 1 + ], + [ + 155, + 29, + 2, + 1, + 1 + ], + [ + 157, + 10, + 1, + 1, + 0 + ], + [ + 174, + 47, + 2, + 1, + 1 + ], + [ + 175, + 91, + 2, + 1, + 1 + ], + [ + 176, + 32, + 2, + 1, + 1 + ], + [ + 176, + 52, + 2, + 1, + 0 + ], + [ + 176, + 54, + 2, + 1, + 1 + ], + [ + 176, + 57, + 2, + 1, + 0 + ], + [ + 180, + 20, + 2, + 1, + 1 + ], + [ + 183, + 36, + 2, + 1, + 1 + ], + [ + 183, + 49, + 2, + 1, + 0 + ], + [ + 183, + 51, + 2, + 1, + 1 + ], + [ + 183, + 54, + 2, + 1, + 0 + ], + [ + 184, + 36, + 2, + 1, + 1 + ], + [ + 184, + 48, + 2, + 1, + 0 + ], + [ + 184, + 50, + 2, + 1, + 1 + ], + [ + 184, + 55, + 2, + 1, + 0 + ], + [ + 185, + 36, + 2, + 1, + 1 + ], + [ + 185, + 51, + 2, + 1, + 0 + ], + [ + 185, + 53, + 2, + 1, + 1 + ], + [ + 185, + 58, + 2, + 1, + 0 + ], + [ + 187, + 25, + 0, + 1, + 1 + ], + [ + 189, + 18, + 2, + 1, + 1 + ], + [ + 192, + 14, + 2, + 1, + 0 + ], + [ + 193, + 10, + 1, + 1, + 0 + ], + [ + 193, + 12, + 2, + 1, + 1 + ], + [ + 194, + 99, + 2, + 1, + 1 + ], + [ + 195, + 32, + 2, + 1, + 1 + ], + [ + 195, + 52, + 2, + 1, + 0 + ], + [ + 195, + 54, + 2, + 1, + 1 + ], + [ + 195, + 57, + 2, + 1, + 0 + ], + [ + 199, + 20, + 2, + 1, + 1 + ], + [ + 202, + 36, + 2, + 1, + 1 + ], + [ + 202, + 49, + 2, + 1, + 0 + ], + [ + 202, + 51, + 2, + 1, + 1 + ], + [ + 202, + 54, + 2, + 1, + 0 + ], + [ + 203, + 36, + 2, + 1, + 1 + ], + [ + 203, + 48, + 2, + 1, + 0 + ], + [ + 203, + 50, + 2, + 1, + 1 + ], + [ + 203, + 55, + 2, + 1, + 0 + ], + [ + 204, + 36, + 2, + 1, + 1 + ], + [ + 204, + 51, + 2, + 1, + 0 + ], + [ + 204, + 53, + 2, + 1, + 1 + ], + [ + 204, + 56, + 2, + 1, + 0 + ], + [ + 206, + 25, + 0, + 1, + 1 + ], + [ + 208, + 18, + 2, + 1, + 1 + ], + [ + 211, + 14, + 2, + 1, + 0 + ], + [ + 212, + 10, + 1, + 1, + 0 + ], + [ + 212, + 12, + 2, + 1, + 1 + ], + [ + 213, + 70, + 2, + 1, + 1 + ], + [ + 214, + 32, + 2, + 1, + 1 + ], + [ + 214, + 52, + 2, + 1, + 0 + ], + [ + 214, + 54, + 2, + 1, + 1 + ], + [ + 214, + 57, + 2, + 1, + 0 + ], + [ + 218, + 20, + 2, + 1, + 1 + ], + [ + 221, + 36, + 2, + 1, + 1 + ], + [ + 221, + 49, + 2, + 1, + 0 + ], + [ + 221, + 51, + 2, + 1, + 1 + ], + [ + 221, + 56, + 2, + 1, + 0 + ], + [ + 223, + 25, + 0, + 1, + 1 + ], + [ + 225, + 18, + 2, + 1, + 1 + ], + [ + 228, + 14, + 2, + 1, + 0 + ], + [ + 229, + 10, + 1, + 1, + 0 + ], + [ + 230, + 6, + 0, + 0, + 0 + ], + [ + 234, + 31, + 2, + 1, + 1 + ], + [ + 237, + 10, + 0, + 0, + 0 + ], + [ + 238, + 35, + 2, + 1, + 1 + ], + [ + 241, + 10, + 0, + 0, + 0 + ], + [ + 244, + 28, + 2, + 1, + 1 + ], + [ + 247, + 10, + 0, + 0, + 0 + ], + [ + 248, + 32, + 4, + 1, + 1 + ], + [ + 251, + 10, + 0, + 0, + 0 + ], + [ + 256, + 52, + 2, + 1, + 1 + ], + [ + 259, + 10, + 0, + 0, + 0 + ], + [ + 260, + 53, + 2, + 1, + 1 + ], + [ + 263, + 10, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 572, + "covered": 538, + "percent": 94 + }, + "functions": { + "count": 101, + "covered": 85, + "percent": 84 + }, + "instantiations": { + "count": 101, + "covered": 85, + "percent": 84 + }, + "regions": { + "count": 131, + "covered": 105, + "notcovered": 26, + "percent": 80 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift", + "segments": [ + [ + 25, + 41, + 0, + 1, + 1 + ], + [ + 27, + 6, + 0, + 0, + 0 + ], + [ + 53, + 115, + 0, + 1, + 1 + ], + [ + 56, + 2, + 0, + 0, + 0 + ], + [ + 58, + 117, + 0, + 1, + 1 + ], + [ + 61, + 2, + 0, + 0, + 0 + ], + [ + 63, + 125, + 0, + 1, + 1 + ], + [ + 66, + 2, + 0, + 0, + 0 + ], + [ + 68, + 122, + 0, + 1, + 1 + ], + [ + 71, + 2, + 0, + 0, + 0 + ], + [ + 73, + 115, + 0, + 1, + 1 + ], + [ + 76, + 2, + 0, + 0, + 0 + ], + [ + 78, + 116, + 0, + 1, + 1 + ], + [ + 81, + 2, + 0, + 0, + 0 + ], + [ + 83, + 99, + 0, + 1, + 1 + ], + [ + 85, + 2, + 0, + 0, + 0 + ], + [ + 87, + 100, + 0, + 1, + 1 + ], + [ + 89, + 2, + 0, + 0, + 0 + ], + [ + 91, + 98, + 0, + 1, + 1 + ], + [ + 93, + 2, + 0, + 0, + 0 + ], + [ + 95, + 66, + 0, + 1, + 1 + ], + [ + 97, + 2, + 0, + 0, + 0 + ], + [ + 99, + 74, + 0, + 1, + 1 + ], + [ + 101, + 2, + 0, + 0, + 0 + ], + [ + 103, + 76, + 0, + 1, + 1 + ], + [ + 105, + 2, + 0, + 0, + 0 + ], + [ + 107, + 83, + 0, + 1, + 1 + ], + [ + 109, + 2, + 0, + 0, + 0 + ], + [ + 111, + 90, + 0, + 1, + 1 + ], + [ + 113, + 2, + 0, + 0, + 0 + ], + [ + 115, + 94, + 0, + 1, + 1 + ], + [ + 117, + 2, + 0, + 0, + 0 + ], + [ + 119, + 92, + 0, + 1, + 1 + ], + [ + 121, + 2, + 0, + 0, + 0 + ], + [ + 123, + 104, + 0, + 1, + 1 + ], + [ + 125, + 2, + 0, + 0, + 0 + ], + [ + 127, + 117, + 0, + 1, + 1 + ], + [ + 129, + 2, + 0, + 0, + 0 + ], + [ + 131, + 111, + 0, + 1, + 1 + ], + [ + 133, + 2, + 0, + 0, + 0 + ], + [ + 135, + 108, + 0, + 1, + 1 + ], + [ + 137, + 2, + 0, + 0, + 0 + ], + [ + 140, + 93, + 0, + 1, + 1 + ], + [ + 142, + 2, + 0, + 0, + 0 + ], + [ + 146, + 83, + 0, + 1, + 1 + ], + [ + 161, + 6, + 0, + 0, + 0 + ], + [ + 165, + 27, + 9, + 1, + 1 + ], + [ + 192, + 6, + 0, + 0, + 0 + ], + [ + 194, + 47, + 1, + 1, + 1 + ], + [ + 196, + 23, + 1, + 1, + 1 + ], + [ + 196, + 47, + 1, + 1, + 0 + ], + [ + 196, + 49, + 0, + 1, + 1 + ], + [ + 196, + 75, + 1, + 1, + 0 + ], + [ + 200, + 23, + 1, + 1, + 1 + ], + [ + 200, + 51, + 1, + 1, + 0 + ], + [ + 200, + 53, + 0, + 1, + 1 + ], + [ + 200, + 83, + 1, + 1, + 0 + ], + [ + 201, + 23, + 1, + 1, + 1 + ], + [ + 201, + 48, + 1, + 1, + 0 + ], + [ + 201, + 50, + 0, + 1, + 1 + ], + [ + 201, + 77, + 1, + 1, + 0 + ], + [ + 202, + 23, + 1, + 1, + 1 + ], + [ + 202, + 53, + 1, + 1, + 0 + ], + [ + 202, + 55, + 0, + 1, + 1 + ], + [ + 202, + 87, + 1, + 1, + 0 + ], + [ + 203, + 23, + 1, + 1, + 1 + ], + [ + 203, + 53, + 1, + 1, + 0 + ], + [ + 203, + 55, + 0, + 1, + 1 + ], + [ + 203, + 87, + 1, + 1, + 0 + ], + [ + 204, + 23, + 1, + 1, + 1 + ], + [ + 204, + 47, + 1, + 1, + 0 + ], + [ + 204, + 49, + 0, + 1, + 1 + ], + [ + 204, + 75, + 1, + 1, + 0 + ], + [ + 205, + 23, + 1, + 1, + 1 + ], + [ + 205, + 52, + 1, + 1, + 0 + ], + [ + 205, + 54, + 0, + 1, + 1 + ], + [ + 205, + 85, + 1, + 1, + 0 + ], + [ + 206, + 23, + 1, + 1, + 1 + ], + [ + 206, + 52, + 1, + 1, + 0 + ], + [ + 206, + 54, + 0, + 1, + 1 + ], + [ + 206, + 85, + 1, + 1, + 0 + ], + [ + 207, + 6, + 0, + 0, + 0 + ], + [ + 209, + 64, + 1, + 1, + 1 + ], + [ + 210, + 62, + 1, + 1, + 1 + ], + [ + 211, + 52, + 1, + 1, + 1 + ], + [ + 212, + 31, + 1, + 1, + 1 + ], + [ + 212, + 47, + 1, + 1, + 0 + ], + [ + 212, + 49, + 0, + 1, + 1 + ], + [ + 212, + 80, + 1, + 1, + 0 + ], + [ + 213, + 14, + 1, + 1, + 1 + ], + [ + 213, + 20, + 0, + 1, + 1 + ], + [ + 215, + 14, + 1, + 1, + 1 + ], + [ + 217, + 62, + 1, + 1, + 1 + ], + [ + 218, + 31, + 1, + 1, + 1 + ], + [ + 218, + 54, + 1, + 1, + 0 + ], + [ + 218, + 56, + 0, + 1, + 1 + ], + [ + 218, + 95, + 1, + 1, + 0 + ], + [ + 219, + 31, + 1, + 1, + 1 + ], + [ + 219, + 60, + 1, + 1, + 0 + ], + [ + 219, + 62, + 0, + 1, + 1 + ], + [ + 219, + 107, + 1, + 1, + 0 + ], + [ + 220, + 31, + 1, + 1, + 1 + ], + [ + 220, + 56, + 1, + 1, + 0 + ], + [ + 220, + 58, + 0, + 1, + 1 + ], + [ + 220, + 99, + 1, + 1, + 0 + ], + [ + 221, + 31, + 1, + 1, + 1 + ], + [ + 221, + 65, + 1, + 1, + 0 + ], + [ + 221, + 67, + 0, + 1, + 1 + ], + [ + 221, + 117, + 1, + 1, + 0 + ], + [ + 222, + 31, + 1, + 1, + 1 + ], + [ + 222, + 50, + 1, + 1, + 0 + ], + [ + 222, + 52, + 0, + 1, + 1 + ], + [ + 222, + 93, + 1, + 1, + 0 + ], + [ + 223, + 14, + 1, + 1, + 1 + ], + [ + 223, + 20, + 0, + 1, + 1 + ], + [ + 225, + 14, + 1, + 1, + 1 + ], + [ + 227, + 71, + 1, + 1, + 1 + ], + [ + 228, + 64, + 1, + 1, + 1 + ], + [ + 229, + 57, + 1, + 1, + 1 + ], + [ + 230, + 39, + 1, + 1, + 1 + ], + [ + 230, + 55, + 1, + 1, + 0 + ], + [ + 230, + 57, + 0, + 1, + 1 + ], + [ + 230, + 101, + 1, + 1, + 0 + ], + [ + 231, + 22, + 1, + 1, + 1 + ], + [ + 231, + 28, + 0, + 1, + 1 + ], + [ + 233, + 22, + 1, + 1, + 1 + ], + [ + 234, + 18, + 1, + 1, + 1 + ], + [ + 234, + 24, + 0, + 1, + 1 + ], + [ + 236, + 18, + 1, + 1, + 1 + ], + [ + 238, + 78, + 1, + 1, + 1 + ], + [ + 239, + 64, + 1, + 1, + 1 + ], + [ + 240, + 39, + 1, + 1, + 1 + ], + [ + 240, + 55, + 1, + 1, + 0 + ], + [ + 240, + 57, + 0, + 1, + 1 + ], + [ + 240, + 108, + 1, + 1, + 0 + ], + [ + 241, + 22, + 1, + 1, + 1 + ], + [ + 241, + 28, + 0, + 1, + 1 + ], + [ + 243, + 22, + 1, + 1, + 1 + ], + [ + 244, + 93, + 1, + 1, + 1 + ], + [ + 245, + 69, + 1, + 1, + 1 + ], + [ + 246, + 43, + 1, + 1, + 1 + ], + [ + 246, + 59, + 1, + 1, + 0 + ], + [ + 246, + 61, + 0, + 1, + 1 + ], + [ + 246, + 123, + 1, + 1, + 0 + ], + [ + 247, + 26, + 1, + 1, + 1 + ], + [ + 247, + 32, + 0, + 1, + 1 + ], + [ + 249, + 26, + 1, + 1, + 1 + ], + [ + 250, + 22, + 1, + 1, + 1 + ], + [ + 250, + 28, + 0, + 1, + 1 + ], + [ + 252, + 22, + 1, + 1, + 1 + ], + [ + 253, + 18, + 1, + 1, + 1 + ], + [ + 253, + 24, + 0, + 1, + 1 + ], + [ + 255, + 18, + 1, + 1, + 1 + ], + [ + 256, + 14, + 1, + 1, + 1 + ], + [ + 256, + 20, + 0, + 1, + 1 + ], + [ + 258, + 14, + 1, + 1, + 1 + ], + [ + 259, + 10, + 1, + 1, + 1 + ], + [ + 260, + 6, + 0, + 0, + 0 + ], + [ + 262, + 65, + 1, + 1, + 1 + ], + [ + 263, + 63, + 1, + 1, + 1 + ], + [ + 264, + 52, + 1, + 1, + 1 + ], + [ + 265, + 31, + 1, + 1, + 1 + ], + [ + 265, + 47, + 1, + 1, + 0 + ], + [ + 265, + 49, + 0, + 1, + 1 + ], + [ + 265, + 81, + 1, + 1, + 0 + ], + [ + 266, + 14, + 1, + 1, + 1 + ], + [ + 266, + 20, + 0, + 1, + 1 + ], + [ + 268, + 14, + 1, + 1, + 1 + ], + [ + 270, + 62, + 1, + 1, + 1 + ], + [ + 271, + 31, + 1, + 1, + 1 + ], + [ + 271, + 58, + 1, + 1, + 0 + ], + [ + 271, + 60, + 0, + 1, + 1 + ], + [ + 271, + 96, + 1, + 1, + 0 + ], + [ + 272, + 31, + 1, + 1, + 1 + ], + [ + 272, + 50, + 1, + 1, + 0 + ], + [ + 272, + 52, + 0, + 1, + 1 + ], + [ + 272, + 94, + 1, + 1, + 0 + ], + [ + 273, + 14, + 1, + 1, + 1 + ], + [ + 273, + 20, + 0, + 1, + 1 + ], + [ + 275, + 14, + 1, + 1, + 1 + ], + [ + 277, + 71, + 1, + 1, + 1 + ], + [ + 278, + 64, + 1, + 1, + 1 + ], + [ + 279, + 57, + 1, + 1, + 1 + ], + [ + 280, + 39, + 1, + 1, + 1 + ], + [ + 280, + 55, + 1, + 1, + 0 + ], + [ + 280, + 57, + 0, + 1, + 1 + ], + [ + 280, + 102, + 1, + 1, + 0 + ], + [ + 281, + 22, + 1, + 1, + 1 + ], + [ + 281, + 28, + 0, + 1, + 1 + ], + [ + 283, + 22, + 1, + 1, + 1 + ], + [ + 284, + 18, + 1, + 1, + 1 + ], + [ + 284, + 24, + 0, + 1, + 1 + ], + [ + 286, + 18, + 1, + 1, + 1 + ], + [ + 288, + 70, + 1, + 1, + 1 + ], + [ + 289, + 60, + 1, + 1, + 1 + ], + [ + 290, + 39, + 1, + 1, + 1 + ], + [ + 290, + 56, + 1, + 1, + 0 + ], + [ + 290, + 58, + 0, + 1, + 1 + ], + [ + 290, + 106, + 1, + 1, + 0 + ], + [ + 291, + 22, + 1, + 1, + 1 + ], + [ + 291, + 28, + 0, + 1, + 1 + ], + [ + 293, + 22, + 1, + 1, + 1 + ], + [ + 294, + 64, + 1, + 1, + 1 + ], + [ + 295, + 39, + 1, + 1, + 1 + ], + [ + 295, + 57, + 1, + 1, + 0 + ], + [ + 295, + 59, + 0, + 1, + 1 + ], + [ + 295, + 109, + 1, + 1, + 0 + ], + [ + 296, + 22, + 1, + 1, + 1 + ], + [ + 296, + 28, + 0, + 1, + 1 + ], + [ + 298, + 22, + 1, + 1, + 1 + ], + [ + 299, + 18, + 1, + 1, + 1 + ], + [ + 299, + 24, + 0, + 1, + 1 + ], + [ + 301, + 18, + 1, + 1, + 1 + ], + [ + 303, + 68, + 1, + 1, + 1 + ], + [ + 304, + 58, + 1, + 1, + 1 + ], + [ + 305, + 39, + 1, + 1, + 1 + ], + [ + 305, + 71, + 1, + 1, + 0 + ], + [ + 305, + 73, + 0, + 1, + 1 + ], + [ + 305, + 120, + 1, + 1, + 0 + ], + [ + 306, + 22, + 1, + 1, + 1 + ], + [ + 306, + 28, + 0, + 1, + 1 + ], + [ + 308, + 22, + 1, + 1, + 1 + ], + [ + 309, + 18, + 1, + 1, + 1 + ], + [ + 309, + 24, + 0, + 1, + 1 + ], + [ + 311, + 18, + 1, + 1, + 1 + ], + [ + 312, + 14, + 1, + 1, + 1 + ], + [ + 312, + 20, + 0, + 1, + 1 + ], + [ + 314, + 14, + 1, + 1, + 1 + ], + [ + 315, + 10, + 1, + 1, + 1 + ], + [ + 316, + 6, + 0, + 0, + 0 + ], + [ + 319, + 66, + 1, + 1, + 1 + ], + [ + 320, + 72, + 0, + 1, + 1 + ], + [ + 322, + 10, + 1, + 1, + 1 + ], + [ + 323, + 48, + 1, + 1, + 1 + ], + [ + 324, + 27, + 1, + 1, + 1 + ], + [ + 324, + 43, + 1, + 1, + 0 + ], + [ + 324, + 45, + 0, + 1, + 1 + ], + [ + 324, + 78, + 1, + 1, + 0 + ], + [ + 325, + 10, + 1, + 1, + 1 + ], + [ + 325, + 16, + 0, + 1, + 1 + ], + [ + 327, + 10, + 1, + 1, + 1 + ], + [ + 329, + 58, + 1, + 1, + 1 + ], + [ + 330, + 27, + 1, + 1, + 1 + ], + [ + 330, + 52, + 1, + 1, + 0 + ], + [ + 330, + 54, + 0, + 1, + 1 + ], + [ + 330, + 102, + 1, + 1, + 0 + ], + [ + 331, + 27, + 1, + 1, + 1 + ], + [ + 331, + 54, + 1, + 1, + 0 + ], + [ + 331, + 56, + 0, + 1, + 1 + ], + [ + 331, + 106, + 1, + 1, + 0 + ], + [ + 332, + 28, + 1, + 1, + 1 + ], + [ + 332, + 42, + 1, + 1, + 0 + ], + [ + 332, + 44, + 1, + 1, + 1 + ], + [ + 332, + 45, + 1, + 1, + 0 + ], + [ + 332, + 47, + 0, + 1, + 1 + ], + [ + 332, + 89, + 1, + 1, + 0 + ], + [ + 333, + 10, + 1, + 1, + 1 + ], + [ + 333, + 16, + 0, + 1, + 1 + ], + [ + 335, + 10, + 1, + 1, + 1 + ], + [ + 336, + 6, + 0, + 0, + 0 + ], + [ + 339, + 71, + 1, + 1, + 1 + ], + [ + 340, + 73, + 0, + 1, + 1 + ], + [ + 342, + 10, + 1, + 1, + 1 + ], + [ + 343, + 68, + 1, + 1, + 1 + ], + [ + 344, + 68, + 1, + 1, + 1 + ], + [ + 345, + 60, + 1, + 1, + 1 + ], + [ + 346, + 35, + 1, + 1, + 1 + ], + [ + 346, + 73, + 1, + 1, + 0 + ], + [ + 346, + 75, + 0, + 1, + 1 + ], + [ + 346, + 137, + 1, + 1, + 0 + ], + [ + 347, + 18, + 1, + 1, + 1 + ], + [ + 347, + 24, + 0, + 1, + 1 + ], + [ + 349, + 18, + 1, + 1, + 1 + ], + [ + 350, + 14, + 1, + 1, + 1 + ], + [ + 350, + 20, + 0, + 1, + 1 + ], + [ + 352, + 14, + 1, + 1, + 1 + ], + [ + 353, + 10, + 1, + 1, + 1 + ], + [ + 354, + 83, + 0, + 1, + 1 + ], + [ + 356, + 10, + 1, + 1, + 1 + ], + [ + 357, + 64, + 1, + 1, + 1 + ], + [ + 358, + 27, + 1, + 1, + 1 + ], + [ + 358, + 54, + 1, + 1, + 0 + ], + [ + 358, + 56, + 0, + 1, + 1 + ], + [ + 358, + 111, + 1, + 1, + 0 + ], + [ + 359, + 28, + 1, + 1, + 1 + ], + [ + 359, + 42, + 1, + 1, + 0 + ], + [ + 359, + 44, + 1, + 1, + 1 + ], + [ + 359, + 45, + 1, + 1, + 0 + ], + [ + 359, + 47, + 0, + 1, + 1 + ], + [ + 359, + 95, + 1, + 1, + 0 + ], + [ + 360, + 10, + 1, + 1, + 1 + ], + [ + 360, + 16, + 0, + 1, + 1 + ], + [ + 362, + 10, + 1, + 1, + 1 + ], + [ + 363, + 6, + 0, + 0, + 0 + ], + [ + 365, + 69, + 1, + 1, + 1 + ], + [ + 366, + 67, + 1, + 1, + 1 + ], + [ + 367, + 52, + 1, + 1, + 1 + ], + [ + 368, + 31, + 1, + 1, + 1 + ], + [ + 368, + 47, + 1, + 1, + 0 + ], + [ + 368, + 49, + 0, + 1, + 1 + ], + [ + 368, + 85, + 1, + 1, + 0 + ], + [ + 369, + 14, + 1, + 1, + 1 + ], + [ + 369, + 20, + 0, + 1, + 1 + ], + [ + 371, + 14, + 1, + 1, + 1 + ], + [ + 373, + 27, + 1, + 1, + 1 + ], + [ + 373, + 51, + 1, + 1, + 0 + ], + [ + 373, + 53, + 0, + 1, + 1 + ], + [ + 373, + 99, + 1, + 1, + 0 + ], + [ + 374, + 10, + 1, + 1, + 1 + ], + [ + 375, + 6, + 0, + 0, + 0 + ], + [ + 377, + 55, + 1, + 1, + 1 + ], + [ + 379, + 64, + 1, + 1, + 1 + ], + [ + 381, + 56, + 1, + 1, + 1 + ], + [ + 383, + 75, + 1, + 1, + 1 + ], + [ + 384, + 35, + 1, + 1, + 1 + ], + [ + 384, + 56, + 1, + 1, + 0 + ], + [ + 384, + 58, + 0, + 1, + 1 + ], + [ + 384, + 112, + 1, + 1, + 0 + ], + [ + 387, + 60, + 1, + 1, + 1 + ], + [ + 388, + 39, + 1, + 1, + 1 + ], + [ + 388, + 54, + 1, + 1, + 0 + ], + [ + 388, + 56, + 0, + 1, + 1 + ], + [ + 388, + 114, + 1, + 1, + 0 + ], + [ + 389, + 22, + 1, + 1, + 1 + ], + [ + 389, + 28, + 0, + 1, + 1 + ], + [ + 391, + 22, + 1, + 1, + 1 + ], + [ + 392, + 61, + 1, + 1, + 1 + ], + [ + 393, + 39, + 1, + 1, + 1 + ], + [ + 393, + 51, + 1, + 1, + 0 + ], + [ + 393, + 53, + 0, + 1, + 1 + ], + [ + 393, + 113, + 1, + 1, + 0 + ], + [ + 394, + 22, + 1, + 1, + 1 + ], + [ + 394, + 28, + 0, + 1, + 1 + ], + [ + 396, + 22, + 1, + 1, + 1 + ], + [ + 397, + 67, + 1, + 1, + 1 + ], + [ + 398, + 39, + 1, + 1, + 1 + ], + [ + 398, + 55, + 1, + 1, + 0 + ], + [ + 398, + 57, + 0, + 1, + 1 + ], + [ + 398, + 121, + 1, + 1, + 0 + ], + [ + 399, + 22, + 1, + 1, + 1 + ], + [ + 399, + 28, + 0, + 1, + 1 + ], + [ + 401, + 22, + 1, + 1, + 1 + ], + [ + 402, + 61, + 1, + 1, + 1 + ], + [ + 403, + 39, + 1, + 1, + 1 + ], + [ + 403, + 55, + 1, + 1, + 0 + ], + [ + 403, + 57, + 0, + 1, + 1 + ], + [ + 403, + 117, + 1, + 1, + 0 + ], + [ + 404, + 22, + 1, + 1, + 1 + ], + [ + 404, + 28, + 0, + 1, + 1 + ], + [ + 406, + 22, + 1, + 1, + 1 + ], + [ + 410, + 60, + 1, + 1, + 1 + ], + [ + 411, + 39, + 1, + 1, + 1 + ], + [ + 411, + 54, + 1, + 1, + 0 + ], + [ + 411, + 56, + 0, + 1, + 1 + ], + [ + 411, + 114, + 1, + 1, + 0 + ], + [ + 412, + 22, + 1, + 1, + 1 + ], + [ + 412, + 28, + 0, + 1, + 1 + ], + [ + 414, + 22, + 1, + 1, + 1 + ], + [ + 415, + 61, + 1, + 1, + 1 + ], + [ + 416, + 39, + 1, + 1, + 1 + ], + [ + 416, + 54, + 1, + 1, + 0 + ], + [ + 416, + 56, + 0, + 1, + 1 + ], + [ + 416, + 116, + 1, + 1, + 0 + ], + [ + 417, + 22, + 1, + 1, + 1 + ], + [ + 417, + 28, + 0, + 1, + 1 + ], + [ + 419, + 22, + 1, + 1, + 1 + ], + [ + 420, + 67, + 1, + 1, + 1 + ], + [ + 421, + 39, + 1, + 1, + 1 + ], + [ + 421, + 55, + 1, + 1, + 0 + ], + [ + 421, + 57, + 0, + 1, + 1 + ], + [ + 421, + 121, + 1, + 1, + 0 + ], + [ + 422, + 22, + 1, + 1, + 1 + ], + [ + 422, + 28, + 0, + 1, + 1 + ], + [ + 424, + 22, + 1, + 1, + 1 + ], + [ + 425, + 75, + 1, + 1, + 1 + ], + [ + 426, + 53, + 1, + 1, + 1 + ], + [ + 427, + 43, + 1, + 1, + 1 + ], + [ + 427, + 71, + 1, + 1, + 0 + ], + [ + 427, + 73, + 0, + 1, + 1 + ], + [ + 427, + 133, + 1, + 1, + 0 + ], + [ + 428, + 26, + 1, + 1, + 1 + ], + [ + 428, + 32, + 0, + 1, + 1 + ], + [ + 430, + 26, + 1, + 1, + 1 + ], + [ + 431, + 22, + 1, + 1, + 1 + ], + [ + 431, + 28, + 0, + 1, + 1 + ], + [ + 433, + 22, + 1, + 1, + 1 + ], + [ + 434, + 18, + 1, + 1, + 1 + ], + [ + 434, + 24, + 0, + 1, + 1 + ], + [ + 436, + 18, + 1, + 1, + 1 + ], + [ + 437, + 14, + 1, + 1, + 1 + ], + [ + 437, + 20, + 0, + 1, + 1 + ], + [ + 439, + 14, + 1, + 1, + 1 + ], + [ + 440, + 10, + 1, + 1, + 1 + ], + [ + 440, + 16, + 0, + 1, + 1 + ], + [ + 442, + 10, + 1, + 1, + 1 + ], + [ + 443, + 6, + 0, + 0, + 0 + ], + [ + 445, + 55, + 1, + 1, + 1 + ], + [ + 447, + 64, + 1, + 1, + 1 + ], + [ + 449, + 56, + 1, + 1, + 1 + ], + [ + 451, + 64, + 1, + 1, + 1 + ], + [ + 452, + 35, + 1, + 1, + 1 + ], + [ + 452, + 72, + 1, + 1, + 0 + ], + [ + 452, + 74, + 0, + 1, + 1 + ], + [ + 452, + 142, + 1, + 1, + 0 + ], + [ + 453, + 35, + 1, + 1, + 1 + ], + [ + 453, + 54, + 1, + 1, + 0 + ], + [ + 453, + 56, + 0, + 1, + 1 + ], + [ + 453, + 109, + 1, + 1, + 0 + ], + [ + 454, + 18, + 1, + 1, + 1 + ], + [ + 454, + 24, + 0, + 1, + 1 + ], + [ + 456, + 18, + 1, + 1, + 1 + ], + [ + 458, + 64, + 1, + 1, + 1 + ], + [ + 459, + 35, + 1, + 1, + 1 + ], + [ + 459, + 72, + 1, + 1, + 0 + ], + [ + 459, + 74, + 0, + 1, + 1 + ], + [ + 459, + 142, + 1, + 1, + 0 + ], + [ + 460, + 35, + 1, + 1, + 1 + ], + [ + 460, + 54, + 1, + 1, + 0 + ], + [ + 460, + 56, + 0, + 1, + 1 + ], + [ + 460, + 109, + 1, + 1, + 0 + ], + [ + 461, + 18, + 1, + 1, + 1 + ], + [ + 461, + 24, + 0, + 1, + 1 + ], + [ + 463, + 18, + 1, + 1, + 1 + ], + [ + 465, + 71, + 1, + 1, + 1 + ], + [ + 466, + 76, + 1, + 1, + 1 + ], + [ + 467, + 83, + 1, + 1, + 1 + ], + [ + 468, + 43, + 1, + 1, + 1 + ], + [ + 468, + 79, + 1, + 1, + 0 + ], + [ + 468, + 81, + 0, + 1, + 1 + ], + [ + 468, + 145, + 1, + 1, + 0 + ], + [ + 469, + 26, + 1, + 1, + 1 + ], + [ + 469, + 32, + 0, + 1, + 1 + ], + [ + 471, + 26, + 1, + 1, + 1 + ], + [ + 472, + 80, + 1, + 1, + 1 + ], + [ + 473, + 68, + 1, + 1, + 1 + ], + [ + 474, + 47, + 1, + 1, + 1 + ], + [ + 474, + 75, + 1, + 1, + 0 + ], + [ + 474, + 77, + 0, + 1, + 1 + ], + [ + 474, + 136, + 1, + 1, + 0 + ], + [ + 475, + 30, + 1, + 1, + 1 + ], + [ + 475, + 36, + 0, + 1, + 1 + ], + [ + 477, + 30, + 1, + 1, + 1 + ], + [ + 478, + 26, + 1, + 1, + 1 + ], + [ + 478, + 32, + 0, + 1, + 1 + ], + [ + 480, + 26, + 1, + 1, + 1 + ], + [ + 481, + 22, + 1, + 1, + 1 + ], + [ + 481, + 28, + 0, + 1, + 1 + ], + [ + 483, + 22, + 1, + 1, + 1 + ], + [ + 484, + 35, + 1, + 1, + 1 + ], + [ + 484, + 55, + 1, + 1, + 0 + ], + [ + 484, + 57, + 0, + 1, + 1 + ], + [ + 484, + 111, + 1, + 1, + 0 + ], + [ + 485, + 18, + 1, + 1, + 1 + ], + [ + 485, + 24, + 0, + 1, + 1 + ], + [ + 487, + 18, + 1, + 1, + 1 + ], + [ + 488, + 14, + 1, + 1, + 1 + ], + [ + 488, + 20, + 0, + 1, + 1 + ], + [ + 490, + 14, + 1, + 1, + 1 + ], + [ + 491, + 10, + 1, + 1, + 1 + ], + [ + 491, + 16, + 0, + 1, + 1 + ], + [ + 493, + 10, + 1, + 1, + 1 + ], + [ + 494, + 6, + 0, + 0, + 0 + ], + [ + 496, + 55, + 1, + 1, + 1 + ], + [ + 497, + 59, + 1, + 1, + 1 + ], + [ + 498, + 58, + 1, + 1, + 1 + ], + [ + 499, + 76, + 1, + 1, + 1 + ], + [ + 500, + 35, + 1, + 1, + 1 + ], + [ + 500, + 56, + 1, + 1, + 0 + ], + [ + 500, + 58, + 0, + 1, + 1 + ], + [ + 500, + 109, + 1, + 1, + 0 + ], + [ + 501, + 18, + 1, + 1, + 1 + ], + [ + 501, + 24, + 0, + 1, + 1 + ], + [ + 503, + 18, + 1, + 1, + 1 + ], + [ + 504, + 14, + 1, + 1, + 1 + ], + [ + 504, + 20, + 0, + 1, + 1 + ], + [ + 506, + 14, + 1, + 1, + 1 + ], + [ + 507, + 10, + 1, + 1, + 1 + ], + [ + 507, + 16, + 0, + 1, + 1 + ], + [ + 509, + 10, + 1, + 1, + 1 + ], + [ + 512, + 59, + 1, + 1, + 1 + ], + [ + 514, + 62, + 1, + 1, + 1 + ], + [ + 515, + 31, + 1, + 1, + 1 + ], + [ + 515, + 58, + 1, + 1, + 0 + ], + [ + 515, + 60, + 0, + 1, + 1 + ], + [ + 515, + 127, + 1, + 1, + 0 + ], + [ + 516, + 14, + 1, + 1, + 1 + ], + [ + 516, + 20, + 0, + 1, + 1 + ], + [ + 518, + 14, + 1, + 1, + 1 + ], + [ + 520, + 56, + 1, + 1, + 1 + ], + [ + 521, + 31, + 1, + 1, + 1 + ], + [ + 521, + 55, + 1, + 1, + 0 + ], + [ + 521, + 57, + 0, + 1, + 1 + ], + [ + 521, + 121, + 1, + 1, + 0 + ], + [ + 522, + 14, + 1, + 1, + 1 + ], + [ + 522, + 20, + 0, + 1, + 1 + ], + [ + 524, + 14, + 1, + 1, + 1 + ], + [ + 525, + 10, + 1, + 1, + 1 + ], + [ + 525, + 16, + 0, + 1, + 1 + ], + [ + 527, + 10, + 1, + 1, + 1 + ], + [ + 528, + 6, + 0, + 0, + 0 + ], + [ + 530, + 55, + 1, + 1, + 1 + ], + [ + 532, + 64, + 1, + 1, + 1 + ], + [ + 534, + 56, + 1, + 1, + 1 + ], + [ + 536, + 75, + 1, + 1, + 1 + ], + [ + 537, + 35, + 1, + 1, + 1 + ], + [ + 537, + 56, + 1, + 1, + 0 + ], + [ + 537, + 58, + 0, + 1, + 1 + ], + [ + 537, + 112, + 1, + 1, + 0 + ], + [ + 540, + 59, + 1, + 1, + 1 + ], + [ + 541, + 39, + 1, + 1, + 1 + ], + [ + 541, + 54, + 1, + 1, + 0 + ], + [ + 541, + 56, + 0, + 1, + 1 + ], + [ + 541, + 114, + 1, + 1, + 0 + ], + [ + 542, + 22, + 1, + 1, + 1 + ], + [ + 542, + 28, + 0, + 1, + 1 + ], + [ + 544, + 22, + 1, + 1, + 1 + ], + [ + 545, + 60, + 1, + 1, + 1 + ], + [ + 546, + 39, + 1, + 1, + 1 + ], + [ + 546, + 51, + 1, + 1, + 0 + ], + [ + 546, + 53, + 0, + 1, + 1 + ], + [ + 546, + 113, + 1, + 1, + 0 + ], + [ + 547, + 22, + 1, + 1, + 1 + ], + [ + 547, + 28, + 0, + 1, + 1 + ], + [ + 549, + 22, + 1, + 1, + 1 + ], + [ + 550, + 66, + 1, + 1, + 1 + ], + [ + 551, + 39, + 1, + 1, + 1 + ], + [ + 551, + 55, + 1, + 1, + 0 + ], + [ + 551, + 57, + 0, + 1, + 1 + ], + [ + 551, + 121, + 1, + 1, + 0 + ], + [ + 552, + 22, + 1, + 1, + 1 + ], + [ + 552, + 28, + 0, + 1, + 1 + ], + [ + 554, + 22, + 1, + 1, + 1 + ], + [ + 555, + 60, + 1, + 1, + 1 + ], + [ + 556, + 39, + 1, + 1, + 1 + ], + [ + 556, + 56, + 1, + 1, + 0 + ], + [ + 556, + 58, + 0, + 1, + 1 + ], + [ + 556, + 118, + 1, + 1, + 0 + ], + [ + 557, + 22, + 1, + 1, + 1 + ], + [ + 557, + 28, + 0, + 1, + 1 + ], + [ + 559, + 22, + 1, + 1, + 1 + ], + [ + 560, + 18, + 1, + 1, + 1 + ], + [ + 560, + 24, + 0, + 1, + 1 + ], + [ + 562, + 18, + 1, + 1, + 1 + ], + [ + 563, + 14, + 1, + 1, + 1 + ], + [ + 563, + 20, + 0, + 1, + 1 + ], + [ + 565, + 14, + 1, + 1, + 1 + ], + [ + 566, + 10, + 1, + 1, + 1 + ], + [ + 566, + 16, + 0, + 1, + 1 + ], + [ + 568, + 10, + 1, + 1, + 1 + ], + [ + 569, + 6, + 0, + 0, + 0 + ], + [ + 571, + 52, + 1, + 1, + 1 + ], + [ + 573, + 63, + 1, + 1, + 1 + ], + [ + 575, + 56, + 1, + 1, + 1 + ], + [ + 577, + 75, + 1, + 1, + 1 + ], + [ + 578, + 35, + 1, + 1, + 1 + ], + [ + 578, + 56, + 1, + 1, + 0 + ], + [ + 578, + 58, + 0, + 1, + 1 + ], + [ + 578, + 114, + 1, + 1, + 0 + ], + [ + 581, + 59, + 1, + 1, + 1 + ], + [ + 582, + 39, + 1, + 1, + 1 + ], + [ + 582, + 55, + 1, + 1, + 0 + ], + [ + 582, + 57, + 0, + 1, + 1 + ], + [ + 582, + 113, + 1, + 1, + 0 + ], + [ + 583, + 22, + 1, + 1, + 1 + ], + [ + 583, + 28, + 0, + 1, + 1 + ], + [ + 585, + 22, + 1, + 1, + 1 + ], + [ + 586, + 60, + 1, + 1, + 1 + ], + [ + 587, + 39, + 1, + 1, + 1 + ], + [ + 587, + 60, + 1, + 1, + 0 + ], + [ + 587, + 62, + 0, + 1, + 1 + ], + [ + 587, + 120, + 1, + 1, + 0 + ], + [ + 588, + 22, + 1, + 1, + 1 + ], + [ + 588, + 28, + 0, + 1, + 1 + ], + [ + 590, + 22, + 1, + 1, + 1 + ], + [ + 591, + 66, + 1, + 1, + 1 + ], + [ + 592, + 39, + 1, + 1, + 1 + ], + [ + 592, + 47, + 1, + 1, + 0 + ], + [ + 592, + 49, + 0, + 1, + 1 + ], + [ + 592, + 111, + 1, + 1, + 0 + ], + [ + 593, + 22, + 1, + 1, + 1 + ], + [ + 593, + 28, + 0, + 1, + 1 + ], + [ + 595, + 22, + 1, + 1, + 1 + ], + [ + 596, + 60, + 1, + 1, + 1 + ], + [ + 597, + 39, + 1, + 1, + 1 + ], + [ + 597, + 55, + 1, + 1, + 0 + ], + [ + 597, + 57, + 0, + 1, + 1 + ], + [ + 597, + 115, + 1, + 1, + 0 + ], + [ + 598, + 22, + 1, + 1, + 1 + ], + [ + 598, + 28, + 0, + 1, + 1 + ], + [ + 600, + 22, + 1, + 1, + 1 + ], + [ + 601, + 18, + 1, + 1, + 1 + ], + [ + 601, + 24, + 0, + 1, + 1 + ], + [ + 603, + 18, + 1, + 1, + 1 + ], + [ + 604, + 14, + 1, + 1, + 1 + ], + [ + 604, + 20, + 0, + 1, + 1 + ], + [ + 606, + 14, + 1, + 1, + 1 + ], + [ + 607, + 10, + 1, + 1, + 1 + ], + [ + 607, + 16, + 0, + 1, + 1 + ], + [ + 609, + 10, + 1, + 1, + 1 + ], + [ + 610, + 6, + 0, + 0, + 0 + ], + [ + 612, + 52, + 1, + 1, + 1 + ], + [ + 614, + 63, + 1, + 1, + 1 + ], + [ + 616, + 56, + 1, + 1, + 1 + ], + [ + 618, + 75, + 1, + 1, + 1 + ], + [ + 619, + 35, + 1, + 1, + 1 + ], + [ + 619, + 56, + 1, + 1, + 0 + ], + [ + 619, + 58, + 0, + 1, + 1 + ], + [ + 619, + 114, + 1, + 1, + 0 + ], + [ + 622, + 59, + 1, + 1, + 1 + ], + [ + 623, + 39, + 1, + 1, + 1 + ], + [ + 623, + 55, + 1, + 1, + 0 + ], + [ + 623, + 57, + 0, + 1, + 1 + ], + [ + 623, + 113, + 1, + 1, + 0 + ], + [ + 624, + 22, + 1, + 1, + 1 + ], + [ + 624, + 28, + 0, + 1, + 1 + ], + [ + 626, + 22, + 1, + 1, + 1 + ], + [ + 627, + 60, + 1, + 1, + 1 + ], + [ + 628, + 39, + 1, + 1, + 1 + ], + [ + 628, + 57, + 1, + 1, + 0 + ], + [ + 628, + 59, + 0, + 1, + 1 + ], + [ + 628, + 117, + 1, + 1, + 0 + ], + [ + 629, + 22, + 1, + 1, + 1 + ], + [ + 629, + 28, + 0, + 1, + 1 + ], + [ + 631, + 22, + 1, + 1, + 1 + ], + [ + 632, + 64, + 1, + 1, + 1 + ], + [ + 633, + 39, + 1, + 1, + 1 + ], + [ + 633, + 56, + 1, + 1, + 0 + ], + [ + 633, + 58, + 0, + 1, + 1 + ], + [ + 633, + 118, + 1, + 1, + 0 + ], + [ + 634, + 22, + 1, + 1, + 1 + ], + [ + 634, + 28, + 0, + 1, + 1 + ], + [ + 636, + 22, + 1, + 1, + 1 + ], + [ + 637, + 66, + 1, + 1, + 1 + ], + [ + 638, + 39, + 1, + 1, + 1 + ], + [ + 638, + 47, + 1, + 1, + 0 + ], + [ + 638, + 49, + 0, + 1, + 1 + ], + [ + 638, + 111, + 1, + 1, + 0 + ], + [ + 639, + 22, + 1, + 1, + 1 + ], + [ + 639, + 28, + 0, + 1, + 1 + ], + [ + 641, + 22, + 1, + 1, + 1 + ], + [ + 642, + 60, + 1, + 1, + 1 + ], + [ + 643, + 39, + 1, + 1, + 1 + ], + [ + 643, + 56, + 1, + 1, + 0 + ], + [ + 643, + 58, + 0, + 1, + 1 + ], + [ + 643, + 116, + 1, + 1, + 0 + ], + [ + 644, + 22, + 1, + 1, + 1 + ], + [ + 644, + 28, + 0, + 1, + 1 + ], + [ + 646, + 22, + 1, + 1, + 1 + ], + [ + 647, + 18, + 1, + 1, + 1 + ], + [ + 647, + 24, + 0, + 1, + 1 + ], + [ + 649, + 18, + 1, + 1, + 1 + ], + [ + 650, + 14, + 1, + 1, + 1 + ], + [ + 650, + 20, + 0, + 1, + 1 + ], + [ + 652, + 14, + 1, + 1, + 1 + ], + [ + 653, + 10, + 1, + 1, + 1 + ], + [ + 653, + 16, + 0, + 1, + 1 + ], + [ + 655, + 10, + 1, + 1, + 1 + ], + [ + 656, + 6, + 0, + 0, + 0 + ], + [ + 658, + 52, + 1, + 1, + 1 + ], + [ + 660, + 63, + 1, + 1, + 1 + ], + [ + 662, + 56, + 1, + 1, + 1 + ], + [ + 664, + 75, + 1, + 1, + 1 + ], + [ + 665, + 35, + 1, + 1, + 1 + ], + [ + 665, + 56, + 1, + 1, + 0 + ], + [ + 665, + 58, + 0, + 1, + 1 + ], + [ + 665, + 114, + 1, + 1, + 0 + ], + [ + 668, + 59, + 1, + 1, + 1 + ], + [ + 669, + 39, + 1, + 1, + 1 + ], + [ + 669, + 55, + 1, + 1, + 0 + ], + [ + 669, + 57, + 0, + 1, + 1 + ], + [ + 669, + 113, + 1, + 1, + 0 + ], + [ + 670, + 22, + 1, + 1, + 1 + ], + [ + 670, + 28, + 0, + 1, + 1 + ], + [ + 672, + 22, + 1, + 1, + 1 + ], + [ + 673, + 60, + 1, + 1, + 1 + ], + [ + 674, + 39, + 1, + 1, + 1 + ], + [ + 674, + 57, + 1, + 1, + 0 + ], + [ + 674, + 59, + 0, + 1, + 1 + ], + [ + 674, + 117, + 1, + 1, + 0 + ], + [ + 675, + 22, + 1, + 1, + 1 + ], + [ + 675, + 28, + 0, + 1, + 1 + ], + [ + 677, + 22, + 1, + 1, + 1 + ], + [ + 678, + 66, + 1, + 1, + 1 + ], + [ + 679, + 40, + 1, + 1, + 1 + ], + [ + 679, + 48, + 1, + 1, + 0 + ], + [ + 679, + 50, + 0, + 1, + 1 + ], + [ + 679, + 112, + 1, + 1, + 0 + ], + [ + 680, + 22, + 1, + 1, + 1 + ], + [ + 680, + 28, + 0, + 1, + 1 + ], + [ + 682, + 22, + 1, + 1, + 1 + ], + [ + 683, + 60, + 1, + 1, + 1 + ], + [ + 684, + 39, + 1, + 1, + 1 + ], + [ + 684, + 56, + 1, + 1, + 0 + ], + [ + 684, + 58, + 0, + 1, + 1 + ], + [ + 684, + 116, + 1, + 1, + 0 + ], + [ + 685, + 22, + 1, + 1, + 1 + ], + [ + 685, + 28, + 0, + 1, + 1 + ], + [ + 687, + 22, + 1, + 1, + 1 + ], + [ + 688, + 35, + 1, + 1, + 1 + ], + [ + 688, + 57, + 1, + 1, + 0 + ], + [ + 688, + 59, + 0, + 1, + 1 + ], + [ + 688, + 145, + 1, + 1, + 0 + ], + [ + 689, + 18, + 1, + 1, + 1 + ], + [ + 689, + 24, + 0, + 1, + 1 + ], + [ + 691, + 18, + 1, + 1, + 1 + ], + [ + 692, + 14, + 1, + 1, + 1 + ], + [ + 692, + 20, + 0, + 1, + 1 + ], + [ + 694, + 14, + 1, + 1, + 1 + ], + [ + 695, + 10, + 1, + 1, + 1 + ], + [ + 695, + 16, + 0, + 1, + 1 + ], + [ + 697, + 10, + 1, + 1, + 1 + ], + [ + 698, + 6, + 0, + 0, + 0 + ], + [ + 700, + 52, + 1, + 1, + 1 + ], + [ + 702, + 63, + 1, + 1, + 1 + ], + [ + 704, + 56, + 1, + 1, + 1 + ], + [ + 706, + 75, + 1, + 1, + 1 + ], + [ + 707, + 35, + 1, + 1, + 1 + ], + [ + 707, + 56, + 1, + 1, + 0 + ], + [ + 707, + 58, + 0, + 1, + 1 + ], + [ + 707, + 114, + 1, + 1, + 0 + ], + [ + 710, + 59, + 1, + 1, + 1 + ], + [ + 711, + 39, + 1, + 1, + 1 + ], + [ + 711, + 55, + 1, + 1, + 0 + ], + [ + 711, + 57, + 0, + 1, + 1 + ], + [ + 711, + 113, + 1, + 1, + 0 + ], + [ + 712, + 22, + 1, + 1, + 1 + ], + [ + 712, + 28, + 0, + 1, + 1 + ], + [ + 714, + 22, + 1, + 1, + 1 + ], + [ + 715, + 60, + 1, + 1, + 1 + ], + [ + 716, + 39, + 1, + 1, + 1 + ], + [ + 716, + 57, + 1, + 1, + 0 + ], + [ + 716, + 59, + 0, + 1, + 1 + ], + [ + 716, + 117, + 1, + 1, + 0 + ], + [ + 717, + 22, + 1, + 1, + 1 + ], + [ + 717, + 28, + 0, + 1, + 1 + ], + [ + 719, + 22, + 1, + 1, + 1 + ], + [ + 720, + 69, + 1, + 1, + 1 + ], + [ + 721, + 64, + 1, + 1, + 1 + ], + [ + 722, + 43, + 1, + 1, + 1 + ], + [ + 722, + 60, + 1, + 1, + 0 + ], + [ + 722, + 62, + 0, + 1, + 1 + ], + [ + 722, + 127, + 1, + 1, + 0 + ], + [ + 723, + 26, + 1, + 1, + 1 + ], + [ + 723, + 32, + 0, + 1, + 1 + ], + [ + 725, + 26, + 1, + 1, + 1 + ], + [ + 726, + 68, + 1, + 1, + 1 + ], + [ + 727, + 43, + 1, + 1, + 1 + ], + [ + 727, + 60, + 1, + 1, + 0 + ], + [ + 727, + 62, + 0, + 1, + 1 + ], + [ + 727, + 129, + 1, + 1, + 0 + ], + [ + 728, + 26, + 1, + 1, + 1 + ], + [ + 728, + 32, + 0, + 1, + 1 + ], + [ + 730, + 26, + 1, + 1, + 1 + ], + [ + 731, + 22, + 1, + 1, + 1 + ], + [ + 731, + 28, + 0, + 1, + 1 + ], + [ + 733, + 22, + 1, + 1, + 1 + ], + [ + 734, + 84, + 1, + 1, + 1 + ], + [ + 735, + 39, + 1, + 1, + 1 + ], + [ + 735, + 64, + 1, + 1, + 0 + ], + [ + 735, + 66, + 0, + 1, + 1 + ], + [ + 735, + 136, + 1, + 1, + 0 + ], + [ + 736, + 22, + 1, + 1, + 1 + ], + [ + 736, + 28, + 0, + 1, + 1 + ], + [ + 738, + 22, + 1, + 1, + 1 + ], + [ + 739, + 66, + 1, + 1, + 1 + ], + [ + 740, + 39, + 1, + 1, + 1 + ], + [ + 740, + 47, + 1, + 1, + 0 + ], + [ + 740, + 49, + 0, + 1, + 1 + ], + [ + 740, + 111, + 1, + 1, + 0 + ], + [ + 741, + 22, + 1, + 1, + 1 + ], + [ + 741, + 28, + 0, + 1, + 1 + ], + [ + 743, + 22, + 1, + 1, + 1 + ], + [ + 744, + 60, + 1, + 1, + 1 + ], + [ + 745, + 39, + 1, + 1, + 1 + ], + [ + 745, + 54, + 1, + 1, + 0 + ], + [ + 745, + 56, + 0, + 1, + 1 + ], + [ + 745, + 114, + 1, + 1, + 0 + ], + [ + 746, + 22, + 1, + 1, + 1 + ], + [ + 746, + 28, + 0, + 1, + 1 + ], + [ + 748, + 22, + 1, + 1, + 1 + ], + [ + 749, + 18, + 1, + 1, + 1 + ], + [ + 749, + 24, + 0, + 1, + 1 + ], + [ + 751, + 18, + 1, + 1, + 1 + ], + [ + 752, + 14, + 1, + 1, + 1 + ], + [ + 752, + 20, + 0, + 1, + 1 + ], + [ + 754, + 14, + 1, + 1, + 1 + ], + [ + 755, + 10, + 1, + 1, + 1 + ], + [ + 755, + 16, + 0, + 1, + 1 + ], + [ + 757, + 10, + 1, + 1, + 1 + ], + [ + 758, + 6, + 0, + 0, + 0 + ], + [ + 760, + 52, + 1, + 1, + 1 + ], + [ + 761, + 63, + 1, + 1, + 1 + ], + [ + 763, + 56, + 1, + 1, + 1 + ], + [ + 765, + 75, + 1, + 1, + 1 + ], + [ + 766, + 35, + 1, + 1, + 1 + ], + [ + 766, + 56, + 1, + 1, + 0 + ], + [ + 766, + 58, + 0, + 1, + 1 + ], + [ + 766, + 112, + 1, + 1, + 0 + ], + [ + 769, + 59, + 1, + 1, + 1 + ], + [ + 770, + 39, + 1, + 1, + 1 + ], + [ + 770, + 55, + 1, + 1, + 0 + ], + [ + 770, + 57, + 0, + 1, + 1 + ], + [ + 770, + 116, + 1, + 1, + 0 + ], + [ + 771, + 22, + 1, + 1, + 1 + ], + [ + 771, + 28, + 0, + 1, + 1 + ], + [ + 773, + 22, + 1, + 1, + 1 + ], + [ + 774, + 18, + 1, + 1, + 1 + ], + [ + 774, + 24, + 0, + 1, + 1 + ], + [ + 776, + 18, + 1, + 1, + 1 + ], + [ + 777, + 14, + 1, + 1, + 1 + ], + [ + 777, + 20, + 0, + 1, + 1 + ], + [ + 779, + 14, + 1, + 1, + 1 + ], + [ + 780, + 10, + 1, + 1, + 1 + ], + [ + 780, + 16, + 0, + 1, + 1 + ], + [ + 782, + 10, + 1, + 1, + 1 + ], + [ + 783, + 6, + 0, + 0, + 0 + ], + [ + 785, + 54, + 1, + 1, + 1 + ], + [ + 787, + 63, + 1, + 1, + 1 + ], + [ + 789, + 62, + 1, + 1, + 1 + ], + [ + 791, + 78, + 1, + 1, + 1 + ], + [ + 792, + 35, + 1, + 1, + 1 + ], + [ + 792, + 56, + 1, + 1, + 0 + ], + [ + 792, + 58, + 0, + 1, + 1 + ], + [ + 792, + 112, + 1, + 1, + 0 + ], + [ + 795, + 59, + 1, + 1, + 1 + ], + [ + 796, + 39, + 1, + 1, + 1 + ], + [ + 796, + 55, + 1, + 1, + 0 + ], + [ + 796, + 57, + 0, + 1, + 1 + ], + [ + 796, + 119, + 1, + 1, + 0 + ], + [ + 797, + 22, + 1, + 1, + 1 + ], + [ + 797, + 28, + 0, + 1, + 1 + ], + [ + 799, + 22, + 1, + 1, + 1 + ], + [ + 800, + 18, + 1, + 1, + 1 + ], + [ + 800, + 24, + 0, + 1, + 1 + ], + [ + 802, + 18, + 1, + 1, + 1 + ], + [ + 803, + 14, + 1, + 1, + 1 + ], + [ + 803, + 20, + 0, + 1, + 1 + ], + [ + 805, + 14, + 1, + 1, + 1 + ], + [ + 806, + 10, + 1, + 1, + 1 + ], + [ + 806, + 16, + 0, + 1, + 1 + ], + [ + 808, + 10, + 1, + 1, + 1 + ], + [ + 810, + 63, + 1, + 1, + 1 + ], + [ + 812, + 62, + 1, + 1, + 1 + ], + [ + 814, + 78, + 1, + 1, + 1 + ], + [ + 815, + 35, + 1, + 1, + 1 + ], + [ + 815, + 56, + 1, + 1, + 0 + ], + [ + 815, + 58, + 0, + 1, + 1 + ], + [ + 815, + 112, + 1, + 1, + 0 + ], + [ + 818, + 59, + 1, + 1, + 1 + ], + [ + 819, + 39, + 1, + 1, + 1 + ], + [ + 819, + 55, + 1, + 1, + 0 + ], + [ + 819, + 57, + 0, + 1, + 1 + ], + [ + 819, + 119, + 1, + 1, + 0 + ], + [ + 820, + 22, + 1, + 1, + 1 + ], + [ + 820, + 28, + 0, + 1, + 1 + ], + [ + 822, + 22, + 1, + 1, + 1 + ], + [ + 823, + 18, + 1, + 1, + 1 + ], + [ + 823, + 24, + 0, + 1, + 1 + ], + [ + 825, + 18, + 1, + 1, + 1 + ], + [ + 826, + 14, + 1, + 1, + 1 + ], + [ + 826, + 20, + 0, + 1, + 1 + ], + [ + 828, + 14, + 1, + 1, + 1 + ], + [ + 829, + 10, + 1, + 1, + 1 + ], + [ + 829, + 16, + 0, + 1, + 1 + ], + [ + 831, + 10, + 1, + 1, + 1 + ], + [ + 832, + 6, + 0, + 0, + 0 + ], + [ + 834, + 56, + 1, + 1, + 1 + ], + [ + 837, + 63, + 1, + 1, + 1 + ], + [ + 839, + 56, + 1, + 1, + 1 + ], + [ + 841, + 75, + 1, + 1, + 1 + ], + [ + 842, + 35, + 1, + 1, + 1 + ], + [ + 842, + 56, + 1, + 1, + 0 + ], + [ + 842, + 58, + 0, + 1, + 1 + ], + [ + 842, + 112, + 1, + 1, + 0 + ], + [ + 844, + 38, + 3, + 1, + 1 + ], + [ + 846, + 70, + 3, + 1, + 1 + ], + [ + 847, + 43, + 3, + 1, + 1 + ], + [ + 847, + 60, + 3, + 1, + 0 + ], + [ + 847, + 62, + 0, + 1, + 1 + ], + [ + 847, + 131, + 3, + 1, + 0 + ], + [ + 848, + 26, + 3, + 1, + 1 + ], + [ + 848, + 32, + 0, + 1, + 1 + ], + [ + 850, + 26, + 3, + 1, + 1 + ], + [ + 851, + 22, + 1, + 1, + 1 + ], + [ + 852, + 18, + 1, + 1, + 1 + ], + [ + 852, + 24, + 0, + 1, + 1 + ], + [ + 854, + 18, + 1, + 1, + 1 + ], + [ + 855, + 14, + 1, + 1, + 1 + ], + [ + 855, + 20, + 0, + 1, + 1 + ], + [ + 857, + 14, + 1, + 1, + 1 + ], + [ + 858, + 10, + 1, + 1, + 1 + ], + [ + 858, + 16, + 0, + 1, + 1 + ], + [ + 860, + 10, + 1, + 1, + 1 + ], + [ + 862, + 63, + 1, + 1, + 1 + ], + [ + 864, + 59, + 1, + 1, + 1 + ], + [ + 866, + 75, + 1, + 1, + 1 + ], + [ + 867, + 35, + 1, + 1, + 1 + ], + [ + 867, + 56, + 1, + 1, + 0 + ], + [ + 867, + 58, + 0, + 1, + 1 + ], + [ + 867, + 115, + 1, + 1, + 0 + ], + [ + 869, + 38, + 3, + 1, + 1 + ], + [ + 871, + 70, + 3, + 1, + 1 + ], + [ + 872, + 43, + 3, + 1, + 1 + ], + [ + 872, + 60, + 3, + 1, + 0 + ], + [ + 872, + 62, + 0, + 1, + 1 + ], + [ + 872, + 134, + 3, + 1, + 0 + ], + [ + 873, + 26, + 3, + 1, + 1 + ], + [ + 873, + 32, + 0, + 1, + 1 + ], + [ + 875, + 26, + 3, + 1, + 1 + ], + [ + 876, + 22, + 1, + 1, + 1 + ], + [ + 877, + 18, + 1, + 1, + 1 + ], + [ + 877, + 24, + 0, + 1, + 1 + ], + [ + 879, + 18, + 1, + 1, + 1 + ], + [ + 880, + 14, + 1, + 1, + 1 + ], + [ + 880, + 20, + 0, + 1, + 1 + ], + [ + 882, + 14, + 1, + 1, + 1 + ], + [ + 883, + 10, + 1, + 1, + 1 + ], + [ + 883, + 16, + 0, + 1, + 1 + ], + [ + 885, + 10, + 1, + 1, + 1 + ], + [ + 886, + 6, + 0, + 0, + 0 + ], + [ + 891, + 59, + 9, + 1, + 1 + ], + [ + 892, + 56, + 0, + 1, + 1 + ], + [ + 895, + 10, + 9, + 1, + 1 + ], + [ + 896, + 105, + 0, + 1, + 1 + ], + [ + 899, + 10, + 9, + 1, + 1 + ], + [ + 900, + 90, + 0, + 1, + 1 + ], + [ + 903, + 10, + 9, + 1, + 1 + ], + [ + 904, + 54, + 0, + 1, + 1 + ], + [ + 907, + 10, + 9, + 1, + 1 + ], + [ + 908, + 20, + 9, + 1, + 0 + ], + [ + 909, + 6, + 0, + 0, + 0 + ], + [ + 914, + 31, + 1, + 1, + 1 + ], + [ + 915, + 54, + 0, + 1, + 1 + ], + [ + 917, + 10, + 1, + 1, + 1 + ], + [ + 918, + 53, + 1, + 1, + 1 + ], + [ + 919, + 27, + 1, + 1, + 1 + ], + [ + 919, + 43, + 1, + 1, + 0 + ], + [ + 919, + 45, + 0, + 1, + 1 + ], + [ + 919, + 75, + 1, + 1, + 0 + ], + [ + 920, + 10, + 1, + 1, + 1 + ], + [ + 920, + 16, + 0, + 1, + 1 + ], + [ + 922, + 10, + 1, + 1, + 1 + ], + [ + 923, + 6, + 0, + 0, + 0 + ], + [ + 928, + 25, + 1, + 1, + 1 + ], + [ + 929, + 54, + 0, + 1, + 1 + ], + [ + 931, + 10, + 1, + 1, + 1 + ], + [ + 932, + 55, + 1, + 1, + 1 + ], + [ + 933, + 27, + 1, + 1, + 1 + ], + [ + 933, + 42, + 1, + 1, + 0 + ], + [ + 933, + 44, + 0, + 1, + 1 + ], + [ + 933, + 67, + 1, + 1, + 0 + ], + [ + 934, + 10, + 1, + 1, + 1 + ], + [ + 934, + 16, + 0, + 1, + 1 + ], + [ + 936, + 10, + 1, + 1, + 1 + ], + [ + 937, + 6, + 0, + 0, + 0 + ], + [ + 942, + 21, + 1, + 1, + 1 + ], + [ + 943, + 54, + 0, + 1, + 1 + ], + [ + 945, + 10, + 1, + 1, + 1 + ], + [ + 946, + 57, + 1, + 1, + 1 + ], + [ + 947, + 42, + 1, + 1, + 1 + ], + [ + 948, + 31, + 1, + 1, + 1 + ], + [ + 948, + 56, + 1, + 1, + 0 + ], + [ + 948, + 58, + 0, + 1, + 1 + ], + [ + 948, + 78, + 1, + 1, + 0 + ], + [ + 949, + 14, + 1, + 1, + 1 + ], + [ + 949, + 20, + 0, + 1, + 1 + ], + [ + 951, + 14, + 1, + 1, + 1 + ], + [ + 953, + 47, + 1, + 1, + 1 + ], + [ + 954, + 31, + 1, + 1, + 1 + ], + [ + 954, + 60, + 1, + 1, + 0 + ], + [ + 954, + 62, + 0, + 1, + 1 + ], + [ + 954, + 88, + 1, + 1, + 0 + ], + [ + 955, + 14, + 1, + 1, + 1 + ], + [ + 955, + 20, + 0, + 1, + 1 + ], + [ + 957, + 14, + 1, + 1, + 1 + ], + [ + 959, + 46, + 1, + 1, + 1 + ], + [ + 960, + 31, + 1, + 1, + 1 + ], + [ + 960, + 47, + 1, + 1, + 0 + ], + [ + 960, + 49, + 0, + 1, + 1 + ], + [ + 960, + 71, + 1, + 1, + 0 + ], + [ + 961, + 14, + 1, + 1, + 1 + ], + [ + 961, + 20, + 0, + 1, + 1 + ], + [ + 963, + 14, + 1, + 1, + 1 + ], + [ + 964, + 10, + 1, + 1, + 1 + ], + [ + 965, + 6, + 0, + 0, + 0 + ], + [ + 971, + 31, + 1, + 1, + 1 + ], + [ + 972, + 54, + 0, + 1, + 1 + ], + [ + 974, + 10, + 1, + 1, + 1 + ], + [ + 975, + 56, + 1, + 1, + 1 + ], + [ + 981, + 10, + 1, + 1, + 1 + ], + [ + 981, + 16, + 0, + 1, + 1 + ], + [ + 983, + 10, + 1, + 1, + 1 + ], + [ + 984, + 6, + 0, + 0, + 0 + ], + [ + 989, + 35, + 1, + 1, + 1 + ], + [ + 990, + 54, + 0, + 1, + 1 + ], + [ + 992, + 10, + 1, + 1, + 1 + ], + [ + 993, + 56, + 1, + 1, + 1 + ], + [ + 1001, + 10, + 1, + 1, + 1 + ], + [ + 1001, + 16, + 0, + 1, + 1 + ], + [ + 1003, + 10, + 1, + 1, + 1 + ], + [ + 1004, + 6, + 0, + 0, + 0 + ], + [ + 1009, + 35, + 1, + 1, + 1 + ], + [ + 1010, + 54, + 0, + 1, + 1 + ], + [ + 1012, + 10, + 1, + 1, + 1 + ], + [ + 1013, + 68, + 1, + 1, + 1 + ], + [ + 1017, + 10, + 1, + 1, + 1 + ], + [ + 1017, + 16, + 0, + 1, + 1 + ], + [ + 1019, + 10, + 1, + 1, + 1 + ], + [ + 1020, + 6, + 0, + 0, + 0 + ], + [ + 1025, + 33, + 1, + 1, + 1 + ], + [ + 1026, + 54, + 0, + 1, + 1 + ], + [ + 1028, + 10, + 1, + 1, + 1 + ], + [ + 1029, + 64, + 0, + 1, + 1 + ], + [ + 1031, + 10, + 1, + 1, + 1 + ], + [ + 1033, + 66, + 0, + 1, + 1 + ], + [ + 1035, + 10, + 1, + 1, + 1 + ], + [ + 1036, + 60, + 0, + 1, + 1 + ], + [ + 1038, + 10, + 1, + 1, + 1 + ], + [ + 1039, + 71, + 0, + 1, + 1 + ], + [ + 1041, + 10, + 1, + 1, + 1 + ], + [ + 1042, + 72, + 0, + 1, + 1 + ], + [ + 1044, + 10, + 1, + 1, + 1 + ], + [ + 1045, + 74, + 0, + 1, + 1 + ], + [ + 1047, + 10, + 1, + 1, + 1 + ], + [ + 1048, + 67, + 0, + 1, + 1 + ], + [ + 1050, + 10, + 1, + 1, + 1 + ], + [ + 1051, + 24, + 1, + 1, + 1 + ], + [ + 1051, + 36, + 1, + 1, + 0 + ], + [ + 1051, + 38, + 1, + 1, + 1 + ], + [ + 1051, + 45, + 1, + 1, + 0 + ], + [ + 1051, + 47, + 0, + 1, + 1 + ], + [ + 1051, + 132, + 1, + 1, + 0 + ], + [ + 1052, + 74, + 0, + 1, + 1 + ], + [ + 1054, + 10, + 1, + 1, + 1 + ], + [ + 1055, + 61, + 0, + 1, + 1 + ], + [ + 1057, + 10, + 1, + 1, + 1 + ], + [ + 1058, + 24, + 1, + 1, + 1 + ], + [ + 1058, + 27, + 1, + 1, + 0 + ], + [ + 1058, + 29, + 1, + 1, + 1 + ], + [ + 1058, + 50, + 1, + 1, + 0 + ], + [ + 1059, + 6, + 0, + 0, + 0 + ], + [ + 1112, + 35, + 1, + 1, + 1 + ], + [ + 1113, + 54, + 0, + 1, + 1 + ], + [ + 1115, + 10, + 1, + 1, + 1 + ], + [ + 1116, + 76, + 0, + 1, + 1 + ], + [ + 1118, + 10, + 1, + 1, + 1 + ], + [ + 1120, + 6, + 0, + 0, + 0 + ], + [ + 1126, + 36, + 1, + 1, + 1 + ], + [ + 1127, + 54, + 0, + 1, + 1 + ], + [ + 1129, + 10, + 1, + 1, + 1 + ], + [ + 1130, + 76, + 0, + 1, + 1 + ], + [ + 1132, + 10, + 1, + 1, + 1 + ], + [ + 1134, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 1150, + "covered": 813, + "percent": 70 + }, + "functions": { + "count": 252, + "covered": 131, + "percent": 51 + }, + "instantiations": { + "count": 252, + "covered": 131, + "percent": 51 + }, + "regions": { + "count": 800, + "covered": 532, + "notcovered": 268, + "percent": 66 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift", + "segments": [ + [ + 33, + 80, + 0, + 1, + 1 + ], + [ + 50, + 6, + 0, + 0, + 0 + ], + [ + 61, + 34, + 1, + 1, + 1 + ], + [ + 65, + 12, + 1, + 1, + 1 + ], + [ + 67, + 10, + 1, + 1, + 0 + ], + [ + 67, + 62, + 1, + 1, + 1 + ], + [ + 69, + 10, + 1, + 1, + 0 + ], + [ + 69, + 17, + 0, + 1, + 1 + ], + [ + 71, + 10, + 1, + 1, + 1 + ], + [ + 72, + 6, + 0, + 0, + 0 + ], + [ + 74, + 33, + 1, + 1, + 1 + ], + [ + 78, + 12, + 1, + 1, + 1 + ], + [ + 80, + 10, + 1, + 1, + 0 + ], + [ + 80, + 62, + 1, + 1, + 1 + ], + [ + 82, + 10, + 1, + 1, + 0 + ], + [ + 82, + 17, + 0, + 1, + 1 + ], + [ + 84, + 10, + 1, + 1, + 1 + ], + [ + 85, + 6, + 0, + 0, + 0 + ], + [ + 87, + 32, + 1, + 1, + 1 + ], + [ + 90, + 12, + 1, + 1, + 1 + ], + [ + 92, + 10, + 1, + 1, + 0 + ], + [ + 92, + 80, + 1, + 1, + 1 + ], + [ + 94, + 10, + 1, + 1, + 0 + ], + [ + 94, + 17, + 0, + 1, + 1 + ], + [ + 96, + 10, + 1, + 1, + 1 + ], + [ + 97, + 6, + 0, + 0, + 0 + ], + [ + 99, + 23, + 1, + 1, + 1 + ], + [ + 103, + 12, + 1, + 1, + 1 + ], + [ + 105, + 28, + 1, + 1, + 1 + ], + [ + 105, + 35, + 1, + 1, + 0 + ], + [ + 105, + 37, + 1, + 1, + 1 + ], + [ + 105, + 51, + 1, + 1, + 0 + ], + [ + 106, + 17, + 0, + 1, + 1 + ], + [ + 108, + 10, + 1, + 1, + 1 + ], + [ + 109, + 6, + 0, + 0, + 0 + ], + [ + 111, + 33, + 1, + 1, + 1 + ], + [ + 115, + 6, + 0, + 0, + 0 + ], + [ + 117, + 44, + 1, + 1, + 1 + ], + [ + 121, + 6, + 0, + 0, + 0 + ], + [ + 123, + 45, + 1, + 1, + 1 + ], + [ + 130, + 6, + 0, + 0, + 0 + ], + [ + 132, + 94, + 3, + 1, + 1 + ], + [ + 135, + 31, + 6, + 1, + 1 + ], + [ + 136, + 16, + 6, + 1, + 1 + ], + [ + 137, + 41, + 2, + 1, + 1 + ], + [ + 139, + 17, + 6, + 1, + 1 + ], + [ + 139, + 23, + 4, + 1, + 1 + ], + [ + 141, + 17, + 6, + 1, + 1 + ], + [ + 143, + 14, + 6, + 1, + 0 + ], + [ + 143, + 21, + 0, + 1, + 1 + ], + [ + 146, + 14, + 6, + 1, + 1 + ], + [ + 147, + 10, + 3, + 1, + 0 + ], + [ + 148, + 6, + 0, + 0, + 0 + ], + [ + 150, + 101, + 4, + 1, + 1 + ], + [ + 153, + 31, + 6, + 1, + 1 + ], + [ + 154, + 16, + 6, + 1, + 1 + ], + [ + 155, + 42, + 2, + 1, + 1 + ], + [ + 157, + 18, + 6, + 1, + 1 + ], + [ + 157, + 24, + 4, + 1, + 1 + ], + [ + 159, + 18, + 6, + 1, + 1 + ], + [ + 161, + 14, + 6, + 1, + 0 + ], + [ + 161, + 21, + 0, + 1, + 1 + ], + [ + 164, + 14, + 6, + 1, + 1 + ], + [ + 165, + 10, + 4, + 1, + 0 + ], + [ + 167, + 37, + 2, + 1, + 1 + ], + [ + 168, + 16, + 2, + 1, + 1 + ], + [ + 169, + 42, + 2, + 1, + 1 + ], + [ + 171, + 18, + 2, + 1, + 1 + ], + [ + 171, + 24, + 0, + 1, + 1 + ], + [ + 173, + 18, + 2, + 1, + 1 + ], + [ + 175, + 14, + 2, + 1, + 0 + ], + [ + 175, + 21, + 0, + 1, + 1 + ], + [ + 178, + 14, + 2, + 1, + 1 + ], + [ + 180, + 10, + 4, + 1, + 0 + ], + [ + 181, + 6, + 0, + 0, + 0 + ], + [ + 183, + 90, + 7, + 1, + 1 + ], + [ + 184, + 35, + 14, + 1, + 1 + ], + [ + 185, + 62, + 14, + 1, + 1 + ], + [ + 186, + 52, + 0, + 1, + 1 + ], + [ + 190, + 18, + 14, + 1, + 1 + ], + [ + 191, + 32, + 14, + 1, + 1 + ], + [ + 191, + 51, + 14, + 1, + 0 + ], + [ + 191, + 53, + 14, + 1, + 1 + ], + [ + 191, + 70, + 14, + 1, + 0 + ], + [ + 191, + 72, + 0, + 1, + 1 + ], + [ + 191, + 117, + 14, + 1, + 0 + ], + [ + 193, + 20, + 14, + 1, + 1 + ], + [ + 195, + 36, + 14, + 1, + 1 + ], + [ + 195, + 40, + 14, + 1, + 0 + ], + [ + 195, + 42, + 14, + 1, + 1 + ], + [ + 195, + 56, + 14, + 1, + 0 + ], + [ + 196, + 25, + 0, + 1, + 1 + ], + [ + 198, + 18, + 14, + 1, + 1 + ], + [ + 200, + 14, + 14, + 1, + 0 + ], + [ + 201, + 10, + 7, + 1, + 0 + ], + [ + 202, + 6, + 0, + 0, + 0 + ], + [ + 204, + 67, + 1, + 1, + 1 + ], + [ + 208, + 12, + 1, + 1, + 1 + ], + [ + 210, + 28, + 1, + 1, + 1 + ], + [ + 210, + 35, + 1, + 1, + 0 + ], + [ + 210, + 37, + 1, + 1, + 1 + ], + [ + 210, + 51, + 1, + 1, + 0 + ], + [ + 211, + 17, + 0, + 1, + 1 + ], + [ + 213, + 10, + 1, + 1, + 1 + ], + [ + 214, + 6, + 0, + 0, + 0 + ], + [ + 216, + 88, + 1, + 1, + 1 + ], + [ + 221, + 12, + 1, + 1, + 1 + ], + [ + 223, + 28, + 1, + 1, + 1 + ], + [ + 223, + 35, + 1, + 1, + 0 + ], + [ + 223, + 37, + 1, + 1, + 1 + ], + [ + 223, + 51, + 1, + 1, + 0 + ], + [ + 224, + 17, + 0, + 1, + 1 + ], + [ + 226, + 10, + 1, + 1, + 1 + ], + [ + 227, + 6, + 0, + 0, + 0 + ], + [ + 229, + 38, + 1, + 1, + 1 + ], + [ + 233, + 12, + 1, + 1, + 1 + ], + [ + 235, + 28, + 1, + 1, + 1 + ], + [ + 235, + 35, + 1, + 1, + 0 + ], + [ + 235, + 37, + 1, + 1, + 1 + ], + [ + 235, + 51, + 1, + 1, + 0 + ], + [ + 236, + 17, + 0, + 1, + 1 + ], + [ + 238, + 10, + 1, + 1, + 1 + ], + [ + 240, + 12, + 1, + 1, + 1 + ], + [ + 242, + 28, + 1, + 1, + 1 + ], + [ + 242, + 35, + 1, + 1, + 0 + ], + [ + 242, + 37, + 1, + 1, + 1 + ], + [ + 242, + 51, + 1, + 1, + 0 + ], + [ + 243, + 17, + 0, + 1, + 1 + ], + [ + 245, + 10, + 1, + 1, + 1 + ], + [ + 247, + 12, + 1, + 1, + 1 + ], + [ + 249, + 28, + 1, + 1, + 1 + ], + [ + 249, + 35, + 1, + 1, + 0 + ], + [ + 249, + 37, + 1, + 1, + 1 + ], + [ + 249, + 51, + 1, + 1, + 0 + ], + [ + 250, + 17, + 0, + 1, + 1 + ], + [ + 252, + 10, + 1, + 1, + 1 + ], + [ + 253, + 6, + 0, + 0, + 0 + ], + [ + 255, + 58, + 1, + 1, + 1 + ], + [ + 260, + 12, + 1, + 1, + 1 + ], + [ + 262, + 10, + 1, + 1, + 0 + ], + [ + 262, + 62, + 1, + 1, + 1 + ], + [ + 264, + 10, + 1, + 1, + 0 + ], + [ + 264, + 17, + 0, + 1, + 1 + ], + [ + 266, + 10, + 1, + 1, + 1 + ], + [ + 268, + 12, + 1, + 1, + 1 + ], + [ + 270, + 28, + 1, + 1, + 1 + ], + [ + 270, + 35, + 1, + 1, + 0 + ], + [ + 270, + 37, + 1, + 1, + 1 + ], + [ + 270, + 51, + 1, + 1, + 0 + ], + [ + 271, + 17, + 0, + 1, + 1 + ], + [ + 273, + 10, + 1, + 1, + 1 + ], + [ + 275, + 12, + 1, + 1, + 1 + ], + [ + 277, + 28, + 1, + 1, + 1 + ], + [ + 277, + 35, + 1, + 1, + 0 + ], + [ + 277, + 37, + 1, + 1, + 1 + ], + [ + 277, + 51, + 1, + 1, + 0 + ], + [ + 278, + 17, + 0, + 1, + 1 + ], + [ + 280, + 10, + 1, + 1, + 1 + ], + [ + 281, + 6, + 0, + 0, + 0 + ], + [ + 284, + 41, + 1, + 1, + 1 + ], + [ + 288, + 12, + 1, + 1, + 1 + ], + [ + 290, + 10, + 1, + 1, + 0 + ], + [ + 290, + 62, + 1, + 1, + 1 + ], + [ + 292, + 10, + 1, + 1, + 0 + ], + [ + 292, + 17, + 0, + 1, + 1 + ], + [ + 294, + 10, + 1, + 1, + 1 + ], + [ + 295, + 6, + 0, + 0, + 0 + ], + [ + 297, + 40, + 1, + 1, + 1 + ], + [ + 301, + 12, + 1, + 1, + 1 + ], + [ + 303, + 10, + 1, + 1, + 0 + ], + [ + 303, + 62, + 1, + 1, + 1 + ], + [ + 305, + 10, + 1, + 1, + 0 + ], + [ + 305, + 17, + 0, + 1, + 1 + ], + [ + 307, + 10, + 1, + 1, + 1 + ], + [ + 308, + 6, + 0, + 0, + 0 + ], + [ + 310, + 39, + 1, + 1, + 1 + ], + [ + 313, + 12, + 1, + 1, + 1 + ], + [ + 315, + 10, + 1, + 1, + 0 + ], + [ + 315, + 80, + 1, + 1, + 1 + ], + [ + 317, + 10, + 1, + 1, + 0 + ], + [ + 317, + 17, + 0, + 1, + 1 + ], + [ + 319, + 10, + 1, + 1, + 1 + ], + [ + 320, + 6, + 0, + 0, + 0 + ], + [ + 322, + 30, + 1, + 1, + 1 + ], + [ + 326, + 12, + 1, + 1, + 1 + ], + [ + 328, + 28, + 1, + 1, + 1 + ], + [ + 328, + 35, + 1, + 1, + 0 + ], + [ + 328, + 37, + 1, + 1, + 1 + ], + [ + 328, + 51, + 1, + 1, + 0 + ], + [ + 329, + 17, + 0, + 1, + 1 + ], + [ + 331, + 10, + 1, + 1, + 1 + ], + [ + 332, + 6, + 0, + 0, + 0 + ], + [ + 334, + 40, + 1, + 1, + 1 + ], + [ + 338, + 6, + 0, + 0, + 0 + ], + [ + 340, + 51, + 1, + 1, + 1 + ], + [ + 344, + 6, + 0, + 0, + 0 + ], + [ + 346, + 52, + 1, + 1, + 1 + ], + [ + 353, + 6, + 0, + 0, + 0 + ], + [ + 355, + 74, + 1, + 1, + 1 + ], + [ + 359, + 12, + 1, + 1, + 1 + ], + [ + 361, + 28, + 1, + 1, + 1 + ], + [ + 361, + 35, + 1, + 1, + 0 + ], + [ + 361, + 37, + 1, + 1, + 1 + ], + [ + 361, + 51, + 1, + 1, + 0 + ], + [ + 362, + 17, + 0, + 1, + 1 + ], + [ + 364, + 10, + 1, + 1, + 1 + ], + [ + 365, + 6, + 0, + 0, + 0 + ], + [ + 367, + 95, + 1, + 1, + 1 + ], + [ + 372, + 12, + 1, + 1, + 1 + ], + [ + 374, + 28, + 1, + 1, + 1 + ], + [ + 374, + 35, + 1, + 1, + 0 + ], + [ + 374, + 37, + 1, + 1, + 1 + ], + [ + 374, + 51, + 1, + 1, + 0 + ], + [ + 375, + 17, + 0, + 1, + 1 + ], + [ + 377, + 10, + 1, + 1, + 1 + ], + [ + 378, + 6, + 0, + 0, + 0 + ], + [ + 380, + 45, + 1, + 1, + 1 + ], + [ + 384, + 12, + 1, + 1, + 1 + ], + [ + 386, + 28, + 1, + 1, + 1 + ], + [ + 386, + 35, + 1, + 1, + 0 + ], + [ + 386, + 37, + 1, + 1, + 1 + ], + [ + 386, + 51, + 1, + 1, + 0 + ], + [ + 387, + 17, + 0, + 1, + 1 + ], + [ + 389, + 10, + 1, + 1, + 1 + ], + [ + 391, + 12, + 1, + 1, + 1 + ], + [ + 393, + 28, + 1, + 1, + 1 + ], + [ + 393, + 35, + 1, + 1, + 0 + ], + [ + 393, + 37, + 1, + 1, + 1 + ], + [ + 393, + 51, + 1, + 1, + 0 + ], + [ + 394, + 17, + 0, + 1, + 1 + ], + [ + 396, + 10, + 1, + 1, + 1 + ], + [ + 398, + 12, + 1, + 1, + 1 + ], + [ + 400, + 28, + 1, + 1, + 1 + ], + [ + 400, + 35, + 1, + 1, + 0 + ], + [ + 400, + 37, + 1, + 1, + 1 + ], + [ + 400, + 51, + 1, + 1, + 0 + ], + [ + 401, + 17, + 0, + 1, + 1 + ], + [ + 403, + 10, + 1, + 1, + 1 + ], + [ + 404, + 6, + 0, + 0, + 0 + ], + [ + 406, + 65, + 1, + 1, + 1 + ], + [ + 411, + 12, + 1, + 1, + 1 + ], + [ + 413, + 10, + 1, + 1, + 0 + ], + [ + 413, + 62, + 1, + 1, + 1 + ], + [ + 415, + 10, + 1, + 1, + 0 + ], + [ + 415, + 17, + 0, + 1, + 1 + ], + [ + 417, + 10, + 1, + 1, + 1 + ], + [ + 419, + 12, + 1, + 1, + 1 + ], + [ + 421, + 28, + 1, + 1, + 1 + ], + [ + 421, + 35, + 1, + 1, + 0 + ], + [ + 421, + 37, + 1, + 1, + 1 + ], + [ + 421, + 51, + 1, + 1, + 0 + ], + [ + 422, + 17, + 0, + 1, + 1 + ], + [ + 424, + 10, + 1, + 1, + 1 + ], + [ + 426, + 12, + 1, + 1, + 1 + ], + [ + 428, + 28, + 1, + 1, + 1 + ], + [ + 428, + 35, + 1, + 1, + 0 + ], + [ + 428, + 37, + 1, + 1, + 1 + ], + [ + 428, + 51, + 1, + 1, + 0 + ], + [ + 429, + 17, + 0, + 1, + 1 + ], + [ + 431, + 10, + 1, + 1, + 1 + ], + [ + 432, + 6, + 0, + 0, + 0 + ], + [ + 434, + 39, + 1, + 1, + 1 + ], + [ + 438, + 6, + 0, + 0, + 0 + ], + [ + 443, + 38, + 31, + 1, + 1 + ], + [ + 443, + 55, + 0, + 0, + 0 + ], + [ + 445, + 141, + 16, + 1, + 1 + ], + [ + 447, + 6, + 0, + 0, + 0 + ], + [ + 448, + 83, + 14, + 1, + 1 + ], + [ + 450, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 488, + "covered": 434, + "percent": 88 + }, + "functions": { + "count": 72, + "covered": 70, + "percent": 97 + }, + "instantiations": { + "count": 72, + "covered": 70, + "percent": 97 + }, + "regions": { + "count": 178, + "covered": 146, + "notcovered": 32, + "percent": 82 + } + } + }, + { + "filename": "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift", + "segments": [ + [ + 24, + 84, + 0, + 1, + 1 + ], + [ + 60, + 6, + 0, + 0, + 0 + ], + [ + 67, + 27, + 66, + 1, + 1 + ], + [ + 70, + 6, + 0, + 0, + 0 + ], + [ + 76, + 37, + 246, + 1, + 1 + ], + [ + 79, + 10, + 0, + 0, + 0 + ], + [ + 81, + 55, + 72, + 1, + 1 + ], + [ + 82, + 40, + 72, + 1, + 1 + ], + [ + 82, + 60, + 72, + 1, + 0 + ], + [ + 83, + 10, + 0, + 0, + 0 + ], + [ + 89, + 26, + 2, + 1, + 1 + ], + [ + 91, + 10, + 0, + 0, + 0 + ], + [ + 92, + 69, + 26, + 1, + 1 + ], + [ + 94, + 10, + 0, + 0, + 0 + ], + [ + 100, + 23, + 0, + 1, + 1 + ], + [ + 102, + 10, + 0, + 0, + 0 + ], + [ + 104, + 61, + 0, + 1, + 1 + ], + [ + 106, + 10, + 0, + 0, + 0 + ], + [ + 124, + 45, + 1, + 1, + 1 + ], + [ + 127, + 39, + 2, + 1, + 1 + ], + [ + 130, + 10, + 1, + 1, + 0 + ], + [ + 143, + 6, + 0, + 0, + 0 + ], + [ + 145, + 47, + 1, + 1, + 1 + ], + [ + 148, + 44, + 2, + 1, + 1 + ], + [ + 151, + 10, + 1, + 1, + 0 + ], + [ + 175, + 6, + 0, + 0, + 0 + ], + [ + 177, + 41, + 1, + 1, + 1 + ], + [ + 180, + 39, + 2, + 1, + 1 + ], + [ + 183, + 10, + 1, + 1, + 0 + ], + [ + 196, + 6, + 0, + 0, + 0 + ], + [ + 198, + 43, + 1, + 1, + 1 + ], + [ + 201, + 44, + 2, + 1, + 1 + ], + [ + 204, + 10, + 1, + 1, + 0 + ], + [ + 228, + 6, + 0, + 0, + 0 + ], + [ + 230, + 46, + 1, + 1, + 1 + ], + [ + 232, + 44, + 0, + 1, + 1 + ], + [ + 235, + 10, + 1, + 1, + 1 + ], + [ + 237, + 39, + 2, + 1, + 1 + ], + [ + 241, + 10, + 1, + 1, + 0 + ], + [ + 254, + 6, + 0, + 0, + 0 + ], + [ + 256, + 48, + 1, + 1, + 1 + ], + [ + 258, + 44, + 0, + 1, + 1 + ], + [ + 261, + 10, + 1, + 1, + 1 + ], + [ + 263, + 44, + 2, + 1, + 1 + ], + [ + 266, + 10, + 1, + 1, + 0 + ], + [ + 290, + 6, + 0, + 0, + 0 + ], + [ + 292, + 58, + 1, + 1, + 1 + ], + [ + 295, + 62, + 3, + 1, + 1 + ], + [ + 295, + 80, + 1, + 1, + 0 + ], + [ + 297, + 39, + 2, + 1, + 1 + ], + [ + 300, + 10, + 1, + 1, + 0 + ], + [ + 313, + 6, + 0, + 0, + 0 + ], + [ + 315, + 60, + 1, + 1, + 1 + ], + [ + 318, + 62, + 3, + 1, + 1 + ], + [ + 318, + 80, + 1, + 1, + 0 + ], + [ + 320, + 44, + 2, + 1, + 1 + ], + [ + 323, + 10, + 1, + 1, + 0 + ], + [ + 347, + 6, + 0, + 0, + 0 + ], + [ + 349, + 55, + 1, + 1, + 1 + ], + [ + 351, + 44, + 0, + 1, + 1 + ], + [ + 354, + 10, + 1, + 1, + 1 + ], + [ + 356, + 39, + 2, + 1, + 1 + ], + [ + 360, + 10, + 1, + 1, + 0 + ], + [ + 373, + 6, + 0, + 0, + 0 + ], + [ + 375, + 57, + 1, + 1, + 1 + ], + [ + 377, + 44, + 0, + 1, + 1 + ], + [ + 380, + 10, + 1, + 1, + 1 + ], + [ + 382, + 44, + 2, + 1, + 1 + ], + [ + 385, + 10, + 1, + 1, + 0 + ], + [ + 409, + 6, + 0, + 0, + 0 + ], + [ + 411, + 51, + 1, + 1, + 1 + ], + [ + 415, + 39, + 2, + 1, + 1 + ], + [ + 417, + 49, + 6, + 1, + 1 + ], + [ + 417, + 71, + 2, + 1, + 0 + ], + [ + 419, + 10, + 1, + 1, + 0 + ], + [ + 432, + 6, + 0, + 0, + 0 + ], + [ + 434, + 59, + 1, + 1, + 1 + ], + [ + 438, + 39, + 4, + 1, + 1 + ], + [ + 440, + 34, + 2, + 1, + 1 + ], + [ + 441, + 53, + 6, + 1, + 1 + ], + [ + 441, + 74, + 2, + 1, + 0 + ], + [ + 443, + 14, + 4, + 1, + 1 + ], + [ + 443, + 20, + 2, + 1, + 1 + ], + [ + 445, + 14, + 4, + 1, + 1 + ], + [ + 446, + 10, + 1, + 1, + 0 + ], + [ + 464, + 6, + 0, + 0, + 0 + ], + [ + 466, + 53, + 1, + 1, + 1 + ], + [ + 470, + 44, + 2, + 1, + 1 + ], + [ + 472, + 49, + 6, + 1, + 1 + ], + [ + 472, + 71, + 2, + 1, + 0 + ], + [ + 474, + 10, + 1, + 1, + 0 + ], + [ + 498, + 6, + 0, + 0, + 0 + ], + [ + 500, + 61, + 1, + 1, + 1 + ], + [ + 504, + 44, + 4, + 1, + 1 + ], + [ + 506, + 34, + 2, + 1, + 1 + ], + [ + 507, + 53, + 6, + 1, + 1 + ], + [ + 507, + 74, + 2, + 1, + 0 + ], + [ + 509, + 14, + 4, + 1, + 1 + ], + [ + 509, + 20, + 2, + 1, + 1 + ], + [ + 511, + 14, + 4, + 1, + 1 + ], + [ + 512, + 10, + 1, + 1, + 0 + ], + [ + 532, + 6, + 0, + 0, + 0 + ], + [ + 534, + 39, + 1, + 1, + 1 + ], + [ + 536, + 42, + 2, + 1, + 1 + ], + [ + 540, + 10, + 1, + 1, + 0 + ], + [ + 546, + 18, + 2, + 1, + 1 + ], + [ + 546, + 40, + 2, + 1, + 1 + ], + [ + 546, + 60, + 2, + 1, + 0 + ], + [ + 546, + 62, + 2, + 1, + 1 + ], + [ + 546, + 63, + 2, + 1, + 0 + ], + [ + 546, + 66, + 1, + 1, + 0 + ], + [ + 553, + 6, + 0, + 0, + 0 + ], + [ + 555, + 41, + 1, + 1, + 1 + ], + [ + 557, + 47, + 2, + 1, + 1 + ], + [ + 561, + 10, + 1, + 1, + 0 + ], + [ + 572, + 18, + 2, + 1, + 1 + ], + [ + 572, + 40, + 2, + 1, + 1 + ], + [ + 572, + 60, + 2, + 1, + 0 + ], + [ + 572, + 62, + 2, + 1, + 1 + ], + [ + 572, + 63, + 2, + 1, + 0 + ], + [ + 572, + 66, + 1, + 1, + 0 + ], + [ + 585, + 6, + 0, + 0, + 0 + ], + [ + 587, + 49, + 1, + 1, + 1 + ], + [ + 589, + 42, + 2, + 1, + 1 + ], + [ + 591, + 70, + 0, + 1, + 1 + ], + [ + 594, + 14, + 2, + 1, + 1 + ], + [ + 596, + 10, + 1, + 1, + 0 + ], + [ + 602, + 18, + 2, + 1, + 1 + ], + [ + 602, + 38, + 2, + 1, + 1 + ], + [ + 602, + 55, + 2, + 1, + 0 + ], + [ + 602, + 58, + 1, + 1, + 0 + ], + [ + 609, + 6, + 0, + 0, + 0 + ], + [ + 611, + 51, + 1, + 1, + 1 + ], + [ + 613, + 47, + 2, + 1, + 1 + ], + [ + 615, + 70, + 0, + 1, + 1 + ], + [ + 618, + 14, + 2, + 1, + 1 + ], + [ + 620, + 10, + 1, + 1, + 0 + ], + [ + 631, + 18, + 2, + 1, + 1 + ], + [ + 631, + 38, + 2, + 1, + 1 + ], + [ + 631, + 55, + 2, + 1, + 0 + ], + [ + 631, + 58, + 1, + 1, + 0 + ], + [ + 644, + 6, + 0, + 0, + 0 + ], + [ + 646, + 49, + 1, + 1, + 1 + ], + [ + 648, + 42, + 2, + 1, + 1 + ], + [ + 650, + 76, + 0, + 1, + 1 + ], + [ + 653, + 14, + 2, + 1, + 1 + ], + [ + 655, + 10, + 1, + 1, + 0 + ], + [ + 661, + 18, + 2, + 1, + 1 + ], + [ + 661, + 38, + 2, + 1, + 1 + ], + [ + 661, + 55, + 2, + 1, + 0 + ], + [ + 661, + 58, + 1, + 1, + 0 + ], + [ + 668, + 6, + 0, + 0, + 0 + ], + [ + 670, + 57, + 1, + 1, + 1 + ], + [ + 674, + 42, + 4, + 1, + 1 + ], + [ + 676, + 34, + 2, + 1, + 1 + ], + [ + 677, + 48, + 5, + 1, + 1 + ], + [ + 677, + 69, + 2, + 1, + 0 + ], + [ + 679, + 14, + 4, + 1, + 1 + ], + [ + 679, + 20, + 2, + 1, + 1 + ], + [ + 682, + 14, + 4, + 1, + 1 + ], + [ + 683, + 10, + 1, + 1, + 0 + ], + [ + 689, + 18, + 2, + 1, + 1 + ], + [ + 689, + 40, + 2, + 1, + 1 + ], + [ + 689, + 41, + 2, + 1, + 0 + ], + [ + 689, + 43, + 2, + 1, + 1 + ], + [ + 689, + 61, + 4, + 1, + 1 + ], + [ + 689, + 75, + 2, + 1, + 0 + ], + [ + 689, + 84, + 1, + 1, + 0 + ], + [ + 690, + 18, + 2, + 1, + 1 + ], + [ + 690, + 40, + 2, + 1, + 1 + ], + [ + 690, + 41, + 2, + 1, + 0 + ], + [ + 690, + 43, + 2, + 1, + 1 + ], + [ + 690, + 61, + 4, + 1, + 1 + ], + [ + 690, + 75, + 2, + 1, + 0 + ], + [ + 690, + 84, + 1, + 1, + 0 + ], + [ + 691, + 18, + 2, + 1, + 1 + ], + [ + 691, + 40, + 2, + 1, + 1 + ], + [ + 691, + 41, + 2, + 1, + 0 + ], + [ + 691, + 43, + 2, + 1, + 1 + ], + [ + 691, + 61, + 4, + 1, + 1 + ], + [ + 691, + 75, + 2, + 1, + 0 + ], + [ + 691, + 84, + 1, + 1, + 0 + ], + [ + 696, + 18, + 2, + 1, + 1 + ], + [ + 696, + 40, + 2, + 1, + 1 + ], + [ + 696, + 41, + 2, + 1, + 0 + ], + [ + 696, + 43, + 2, + 1, + 1 + ], + [ + 696, + 61, + 0, + 1, + 1 + ], + [ + 696, + 75, + 2, + 1, + 0 + ], + [ + 696, + 84, + 1, + 1, + 0 + ], + [ + 697, + 18, + 2, + 1, + 1 + ], + [ + 697, + 40, + 2, + 1, + 1 + ], + [ + 697, + 41, + 2, + 1, + 0 + ], + [ + 697, + 43, + 2, + 1, + 1 + ], + [ + 697, + 61, + 0, + 1, + 1 + ], + [ + 697, + 75, + 2, + 1, + 0 + ], + [ + 697, + 84, + 1, + 1, + 0 + ], + [ + 700, + 6, + 0, + 0, + 0 + ], + [ + 702, + 51, + 1, + 1, + 1 + ], + [ + 704, + 47, + 2, + 1, + 1 + ], + [ + 706, + 76, + 0, + 1, + 1 + ], + [ + 709, + 14, + 2, + 1, + 1 + ], + [ + 711, + 10, + 1, + 1, + 0 + ], + [ + 722, + 18, + 2, + 1, + 1 + ], + [ + 722, + 38, + 2, + 1, + 1 + ], + [ + 722, + 55, + 2, + 1, + 0 + ], + [ + 722, + 58, + 1, + 1, + 0 + ], + [ + 735, + 6, + 0, + 0, + 0 + ], + [ + 737, + 59, + 1, + 1, + 1 + ], + [ + 741, + 47, + 4, + 1, + 1 + ], + [ + 743, + 34, + 2, + 1, + 1 + ], + [ + 744, + 48, + 5, + 1, + 1 + ], + [ + 744, + 69, + 2, + 1, + 0 + ], + [ + 746, + 14, + 4, + 1, + 1 + ], + [ + 746, + 20, + 2, + 1, + 1 + ], + [ + 749, + 14, + 4, + 1, + 1 + ], + [ + 750, + 10, + 1, + 1, + 0 + ], + [ + 759, + 18, + 2, + 1, + 1 + ], + [ + 759, + 40, + 2, + 1, + 1 + ], + [ + 759, + 41, + 2, + 1, + 0 + ], + [ + 759, + 43, + 2, + 1, + 1 + ], + [ + 759, + 61, + 4, + 1, + 1 + ], + [ + 759, + 75, + 2, + 1, + 0 + ], + [ + 759, + 84, + 1, + 1, + 0 + ], + [ + 760, + 18, + 2, + 1, + 1 + ], + [ + 760, + 40, + 2, + 1, + 1 + ], + [ + 760, + 41, + 2, + 1, + 0 + ], + [ + 760, + 43, + 2, + 1, + 1 + ], + [ + 760, + 61, + 4, + 1, + 1 + ], + [ + 760, + 75, + 2, + 1, + 0 + ], + [ + 760, + 84, + 1, + 1, + 0 + ], + [ + 761, + 18, + 2, + 1, + 1 + ], + [ + 761, + 40, + 2, + 1, + 1 + ], + [ + 761, + 41, + 2, + 1, + 0 + ], + [ + 761, + 43, + 2, + 1, + 1 + ], + [ + 761, + 61, + 4, + 1, + 1 + ], + [ + 761, + 75, + 2, + 1, + 0 + ], + [ + 761, + 84, + 1, + 1, + 0 + ], + [ + 766, + 18, + 2, + 1, + 1 + ], + [ + 766, + 40, + 2, + 1, + 1 + ], + [ + 766, + 41, + 2, + 1, + 0 + ], + [ + 766, + 43, + 2, + 1, + 1 + ], + [ + 766, + 61, + 0, + 1, + 1 + ], + [ + 766, + 75, + 2, + 1, + 0 + ], + [ + 766, + 84, + 1, + 1, + 0 + ], + [ + 767, + 18, + 2, + 1, + 1 + ], + [ + 767, + 40, + 2, + 1, + 1 + ], + [ + 767, + 41, + 2, + 1, + 0 + ], + [ + 767, + 43, + 2, + 1, + 1 + ], + [ + 767, + 61, + 0, + 1, + 1 + ], + [ + 767, + 75, + 2, + 1, + 0 + ], + [ + 767, + 84, + 1, + 1, + 0 + ], + [ + 770, + 6, + 0, + 0, + 0 + ], + [ + 772, + 37, + 1, + 1, + 1 + ], + [ + 773, + 40, + 2, + 1, + 1 + ], + [ + 777, + 10, + 1, + 1, + 0 + ], + [ + 792, + 6, + 0, + 0, + 0 + ], + [ + 794, + 39, + 1, + 1, + 1 + ], + [ + 795, + 45, + 2, + 1, + 1 + ], + [ + 799, + 10, + 1, + 1, + 0 + ], + [ + 824, + 6, + 0, + 0, + 0 + ], + [ + 826, + 47, + 1, + 1, + 1 + ], + [ + 828, + 44, + 0, + 1, + 1 + ], + [ + 831, + 10, + 1, + 1, + 1 + ], + [ + 833, + 40, + 2, + 1, + 1 + ], + [ + 838, + 10, + 1, + 1, + 0 + ], + [ + 851, + 6, + 0, + 0, + 0 + ], + [ + 853, + 49, + 1, + 1, + 1 + ], + [ + 855, + 44, + 0, + 1, + 1 + ], + [ + 858, + 10, + 1, + 1, + 1 + ], + [ + 860, + 45, + 2, + 1, + 1 + ], + [ + 865, + 10, + 1, + 1, + 0 + ], + [ + 889, + 6, + 0, + 0, + 0 + ], + [ + 891, + 36, + 1, + 1, + 1 + ], + [ + 894, + 39, + 2, + 1, + 1 + ], + [ + 898, + 10, + 1, + 1, + 0 + ], + [ + 911, + 6, + 0, + 0, + 0 + ], + [ + 913, + 38, + 1, + 1, + 1 + ], + [ + 916, + 44, + 2, + 1, + 1 + ], + [ + 920, + 10, + 1, + 1, + 0 + ], + [ + 944, + 6, + 0, + 0, + 0 + ], + [ + 946, + 38, + 1, + 1, + 1 + ], + [ + 949, + 41, + 2, + 1, + 1 + ], + [ + 953, + 10, + 1, + 1, + 0 + ], + [ + 966, + 6, + 0, + 0, + 0 + ], + [ + 968, + 40, + 1, + 1, + 1 + ], + [ + 971, + 46, + 2, + 1, + 1 + ], + [ + 975, + 10, + 1, + 1, + 0 + ], + [ + 999, + 6, + 0, + 0, + 0 + ], + [ + 1001, + 31, + 1, + 1, + 1 + ], + [ + 1005, + 46, + 10, + 1, + 1 + ], + [ + 1009, + 10, + 1, + 1, + 0 + ], + [ + 1010, + 46, + 10, + 1, + 1 + ], + [ + 1014, + 10, + 1, + 1, + 0 + ], + [ + 1022, + 43, + 2, + 1, + 1 + ], + [ + 1025, + 10, + 1, + 1, + 0 + ], + [ + 1026, + 48, + 2, + 1, + 1 + ], + [ + 1029, + 10, + 1, + 1, + 0 + ], + [ + 1030, + 48, + 2, + 1, + 1 + ], + [ + 1033, + 10, + 1, + 1, + 0 + ], + [ + 1034, + 48, + 2, + 1, + 1 + ], + [ + 1037, + 10, + 1, + 1, + 0 + ], + [ + 1038, + 53, + 2, + 1, + 1 + ], + [ + 1041, + 10, + 1, + 1, + 0 + ], + [ + 1072, + 6, + 0, + 0, + 0 + ], + [ + 1074, + 28, + 1, + 1, + 1 + ], + [ + 1078, + 46, + 16, + 1, + 1 + ], + [ + 1082, + 10, + 1, + 1, + 0 + ], + [ + 1083, + 46, + 16, + 1, + 1 + ], + [ + 1087, + 10, + 1, + 1, + 0 + ], + [ + 1095, + 44, + 2, + 1, + 1 + ], + [ + 1097, + 28, + 2, + 1, + 1 + ], + [ + 1097, + 34, + 2, + 1, + 0 + ], + [ + 1097, + 36, + 2, + 1, + 1 + ], + [ + 1097, + 47, + 2, + 1, + 0 + ], + [ + 1099, + 10, + 1, + 1, + 0 + ], + [ + 1100, + 46, + 2, + 1, + 1 + ], + [ + 1102, + 28, + 2, + 1, + 1 + ], + [ + 1102, + 34, + 2, + 1, + 0 + ], + [ + 1102, + 36, + 2, + 1, + 1 + ], + [ + 1102, + 47, + 2, + 1, + 0 + ], + [ + 1104, + 10, + 1, + 1, + 0 + ], + [ + 1105, + 43, + 2, + 1, + 1 + ], + [ + 1107, + 28, + 2, + 1, + 1 + ], + [ + 1107, + 34, + 2, + 1, + 0 + ], + [ + 1107, + 36, + 2, + 1, + 1 + ], + [ + 1107, + 47, + 2, + 1, + 0 + ], + [ + 1109, + 10, + 1, + 1, + 0 + ], + [ + 1110, + 45, + 2, + 1, + 1 + ], + [ + 1112, + 28, + 2, + 1, + 1 + ], + [ + 1112, + 34, + 2, + 1, + 0 + ], + [ + 1112, + 36, + 2, + 1, + 1 + ], + [ + 1112, + 47, + 2, + 1, + 0 + ], + [ + 1114, + 10, + 1, + 1, + 0 + ], + [ + 1139, + 6, + 0, + 0, + 0 + ], + [ + 1141, + 34, + 1, + 1, + 1 + ], + [ + 1142, + 32, + 0, + 1, + 1 + ], + [ + 1145, + 10, + 1, + 1, + 0 + ], + [ + 1153, + 6, + 0, + 0, + 0 + ], + [ + 1157, + 141, + 2, + 1, + 1 + ], + [ + 1162, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 1373, + "covered": 1302, + "percent": 94 + }, + "functions": { + "count": 157, + "covered": 149, + "percent": 94 + }, + "instantiations": { + "count": 157, + "covered": 149, + "percent": 94 + }, + "regions": { + "count": 193, + "covered": 175, + "notcovered": 18, + "percent": 90 + } + } + } + ], + "functions": [ + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lF", + "count": 1, + "regions": [ + [ + 55, + 7, + 66, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 57, + 20, + 65, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 58, + 25, + 58, + 72, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 59, + 81, + 64, + 14, + 4, + 0, + 0, + 0 + ], + [ + 60, + 72, + 62, + 18, + 2, + 0, + 0, + 0 + ], + [ + 62, + 18, + 64, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 90, + 7, + 101, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 92, + 20, + 100, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 93, + 25, + 93, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 94, + 91, + 99, + 14, + 2, + 0, + 0, + 0 + ], + [ + 95, + 121, + 97, + 18, + 0, + 0, + 0, + 0 + ], + [ + 97, + 18, + 99, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 125, + 7, + 136, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 127, + 20, + 135, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 128, + 25, + 128, + 72, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 129, + 100, + 134, + 14, + 6, + 0, + 0, + 0 + ], + [ + 130, + 168, + 132, + 18, + 4, + 0, + 0, + 0 + ], + [ + 132, + 18, + 134, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lF", + "count": 1, + "regions": [ + [ + 165, + 7, + 176, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 167, + 20, + 175, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 168, + 25, + 168, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 169, + 81, + 174, + 14, + 4, + 0, + 0, + 0 + ], + [ + 170, + 72, + 172, + 18, + 2, + 0, + 0, + 0 + ], + [ + 172, + 18, + 174, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 200, + 7, + 211, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 202, + 20, + 210, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 203, + 25, + 203, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 204, + 91, + 209, + 14, + 2, + 0, + 0, + 0 + ], + [ + 205, + 121, + 207, + 18, + 0, + 0, + 0, + 0 + ], + [ + 207, + 18, + 209, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 235, + 7, + 246, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 237, + 20, + 245, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 238, + 25, + 238, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 239, + 100, + 244, + 14, + 6, + 0, + 0, + 0 + ], + [ + 240, + 168, + 242, + 18, + 4, + 0, + 0, + 0 + ], + [ + 242, + 18, + 244, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 275, + 7, + 292, + 6, + 1, + 0, + 0, + 0 + ], + [ + 276, + 64, + 278, + 10, + 0, + 0, + 0, + 0 + ], + [ + 278, + 10, + 292, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 280, + 45, + 291, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 281, + 25, + 281, + 99, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 282, + 81, + 290, + 14, + 4, + 0, + 0, + 0 + ], + [ + 283, + 72, + 285, + 18, + 2, + 0, + 0, + 0 + ], + [ + 285, + 18, + 290, + 14, + 2, + 0, + 0, + 0 + ], + [ + 286, + 131, + 288, + 18, + 0, + 0, + 0, + 0 + ], + [ + 288, + 18, + 290, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_r2_lF", + "count": 0, + "regions": [ + [ + 316, + 7, + 333, + 6, + 0, + 0, + 0, + 0 + ], + [ + 317, + 64, + 319, + 10, + 0, + 0, + 0, + 0 + ], + [ + 319, + 10, + 333, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 321, + 45, + 332, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 322, + 25, + 322, + 99, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 0, + "regions": [ + [ + 323, + 91, + 331, + 14, + 0, + 0, + 0, + 0 + ], + [ + 324, + 121, + 326, + 18, + 0, + 0, + 0, + 0 + ], + [ + 326, + 18, + 331, + 14, + 0, + 0, + 0, + 0 + ], + [ + 327, + 131, + 329, + 18, + 0, + 0, + 0, + 0 + ], + [ + 329, + 18, + 331, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 357, + 7, + 374, + 6, + 1, + 0, + 0, + 0 + ], + [ + 358, + 64, + 360, + 10, + 0, + 0, + 0, + 0 + ], + [ + 360, + 10, + 374, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 362, + 45, + 373, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 363, + 25, + 363, + 99, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 364, + 100, + 372, + 14, + 6, + 0, + 0, + 0 + ], + [ + 365, + 168, + 367, + 18, + 4, + 0, + 0, + 0 + ], + [ + 367, + 18, + 372, + 14, + 2, + 0, + 0, + 0 + ], + [ + 368, + 131, + 370, + 18, + 0, + 0, + 0, + 0 + ], + [ + 370, + 18, + 372, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq__q0_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH10IdentifierR_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 403, + 7, + 416, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq__q0_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH10IdentifierR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 407, + 20, + 415, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq__q0_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH10IdentifierR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 408, + 25, + 408, + 87, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq__q0_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH10IdentifierR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 409, + 81, + 414, + 14, + 4, + 0, + 0, + 0 + ], + [ + 410, + 72, + 412, + 18, + 2, + 0, + 0, + 0 + ], + [ + 412, + 18, + 414, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0__q1_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH10IdentifierR0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 440, + 7, + 453, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0__q1_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 444, + 20, + 452, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0__q1_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 445, + 25, + 445, + 87, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0__q1_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 446, + 91, + 451, + 14, + 2, + 0, + 0, + 0 + ], + [ + 447, + 121, + 449, + 18, + 0, + 0, + 0, + 0 + ], + [ + 449, + 18, + 451, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1__q2_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH10IdentifierR1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 477, + 7, + 490, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1__q2_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 481, + 20, + 489, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1__q2_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 482, + 25, + 482, + 87, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1__q2_tGSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 483, + 100, + 488, + 14, + 6, + 0, + 0, + 0 + ], + [ + 484, + 168, + 486, + 18, + 4, + 0, + 0, + 0 + ], + [ + 486, + 18, + 488, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_SeR0_SER0_r1_lF", + "count": 2, + "regions": [ + [ + 522, + 7, + 543, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 524, + 20, + 542, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 525, + 25, + 525, + 105, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 526, + 25, + 526, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 6, + "regions": [ + [ + 528, + 81, + 540, + 14, + 6, + 0, + 0, + 0 + ], + [ + 529, + 72, + 531, + 18, + 2, + 0, + 0, + 0 + ], + [ + 531, + 18, + 540, + 14, + 4, + 0, + 0, + 0 + ], + [ + 532, + 20, + 535, + 18, + 4, + 0, + 0, + 0 + ], + [ + 535, + 25, + 539, + 18, + 2, + 0, + 0, + 0 + ], + [ + 539, + 18, + 540, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 570, + 7, + 591, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 572, + 20, + 590, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 573, + 25, + 573, + 105, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 2, + "regions": [ + [ + 574, + 25, + 574, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 576, + 91, + 588, + 14, + 2, + 0, + 0, + 0 + ], + [ + 577, + 121, + 579, + 18, + 0, + 0, + 0, + 0 + ], + [ + 579, + 18, + 588, + 14, + 2, + 0, + 0, + 0 + ], + [ + 580, + 20, + 583, + 18, + 2, + 0, + 0, + 0 + ], + [ + 583, + 25, + 587, + 18, + 0, + 0, + 0, + 0 + ], + [ + 587, + 18, + 588, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 618, + 7, + 638, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 620, + 20, + 637, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 621, + 25, + 621, + 105, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 622, + 25, + 622, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 624, + 100, + 636, + 14, + 6, + 0, + 0, + 0 + ], + [ + 625, + 168, + 627, + 18, + 4, + 0, + 0, + 0 + ], + [ + 627, + 18, + 636, + 14, + 2, + 0, + 0, + 0 + ], + [ + 628, + 20, + 631, + 18, + 2, + 0, + 0, + 0 + ], + [ + 631, + 25, + 635, + 18, + 0, + 0, + 0, + 0 + ], + [ + 635, + 18, + 636, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH11QueryParamsR_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 670, + 7, + 689, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 672, + 20, + 688, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 673, + 25, + 673, + 103, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 674, + 25, + 674, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_ySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAH11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 675, + 81, + 687, + 14, + 4, + 0, + 0, + 0 + ], + [ + 676, + 72, + 678, + 18, + 2, + 0, + 0, + 0 + ], + [ + 678, + 18, + 687, + 14, + 2, + 0, + 0, + 0 + ], + [ + 679, + 20, + 682, + 18, + 2, + 0, + 0, + 0 + ], + [ + 682, + 25, + 686, + 18, + 0, + 0, + 0, + 0 + ], + [ + 686, + 18, + 687, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_SgySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAI11QueryParamsR_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 723, + 11, + 746, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_SgySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAI11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 725, + 20, + 745, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_SgySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAI11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 726, + 25, + 726, + 103, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_SgySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAI11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 727, + 25, + 727, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_SgySayq0_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAI11QueryParamsR_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 6, + "regions": [ + [ + 728, + 81, + 744, + 14, + 6, + 0, + 0, + 0 + ], + [ + 729, + 72, + 731, + 18, + 2, + 0, + 0, + 0 + ], + [ + 731, + 18, + 744, + 14, + 4, + 0, + 0, + 0 + ], + [ + 732, + 20, + 739, + 18, + 4, + 0, + 0, + 0 + ], + [ + 735, + 50, + 737, + 22, + 2, + 0, + 0, + 0 + ], + [ + 737, + 22, + 739, + 18, + 4, + 0, + 0, + 0 + ], + [ + 739, + 25, + 743, + 18, + 0, + 0, + 0, + 0 + ], + [ + 743, + 18, + 744, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH11QueryParamsR0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 773, + 7, + 792, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 775, + 20, + 791, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 776, + 25, + 776, + 103, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 2, + "regions": [ + [ + 777, + 25, + 777, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_ySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AH11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 778, + 91, + 790, + 14, + 2, + 0, + 0, + 0 + ], + [ + 779, + 121, + 781, + 18, + 0, + 0, + 0, + 0 + ], + [ + 781, + 18, + 790, + 14, + 2, + 0, + 0, + 0 + ], + [ + 782, + 20, + 785, + 18, + 2, + 0, + 0, + 0 + ], + [ + 785, + 25, + 789, + 18, + 0, + 0, + 0, + 0 + ], + [ + 789, + 18, + 790, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_SgySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AI11QueryParamsR0_SeR1_SER1_r2_lF", + "count": 0, + "regions": [ + [ + 821, + 11, + 844, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_SgySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AI11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 823, + 20, + 843, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_SgySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AI11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 824, + 25, + 824, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_SgySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AI11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 825, + 25, + 825, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_SgySayq1_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AI11QueryParamsR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 0, + "regions": [ + [ + 826, + 91, + 842, + 14, + 0, + 0, + 0, + 0 + ], + [ + 827, + 121, + 829, + 18, + 0, + 0, + 0, + 0 + ], + [ + 829, + 18, + 842, + 14, + 0, + 0, + 0, + 0 + ], + [ + 830, + 20, + 837, + 18, + 0, + 0, + 0, + 0 + ], + [ + 833, + 50, + 835, + 22, + 0, + 0, + 0, + 0 + ], + [ + 835, + 22, + 837, + 18, + 0, + 0, + 0, + 0 + ], + [ + 837, + 25, + 841, + 18, + 0, + 0, + 0, + 0 + ], + [ + 841, + 18, + 842, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_ySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH11QueryParamsR1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 871, + 7, + 890, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_ySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 873, + 20, + 889, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_ySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 874, + 25, + 874, + 103, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_ySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 875, + 25, + 875, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_ySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_AH11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 876, + 100, + 888, + 14, + 6, + 0, + 0, + 0 + ], + [ + 877, + 168, + 879, + 18, + 4, + 0, + 0, + 0 + ], + [ + 879, + 18, + 888, + 14, + 2, + 0, + 0, + 0 + ], + [ + 880, + 20, + 883, + 18, + 2, + 0, + 0, + 0 + ], + [ + 883, + 25, + 887, + 18, + 0, + 0, + 0, + 0 + ], + [ + 887, + 18, + 888, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_SgySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AaMR0_AI11QueryParamsR1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 919, + 11, + 942, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_SgySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AaMR0_AI11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 921, + 20, + 941, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_SgySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AaMR0_AI11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 922, + 25, + 922, + 103, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_SgySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AaMR0_AI11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 923, + 25, + 923, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_q_q0_q1_SgySayq2_GSg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaMR_AaMR0_AI11QueryParamsR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 924, + 100, + 940, + 14, + 6, + 0, + 0, + 0 + ], + [ + 925, + 168, + 927, + 18, + 2, + 0, + 0, + 0 + ], + [ + 927, + 18, + 940, + 14, + 4, + 0, + 0, + 0 + ], + [ + 928, + 20, + 935, + 18, + 4, + 0, + 0, + 0 + ], + [ + 931, + 50, + 933, + 22, + 2, + 0, + 0, + 0 + ], + [ + 933, + 22, + 935, + 18, + 4, + 0, + 0, + 0 + ], + [ + 935, + 25, + 939, + 18, + 0, + 0, + 0, + 0 + ], + [ + 939, + 18, + 940, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzlF", + "count": 1, + "regions": [ + [ + 969, + 7, + 980, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzlFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 971, + 23, + 979, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzlFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 972, + 25, + 972, + 85, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzlFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 973, + 81, + 978, + 14, + 4, + 0, + 0, + 0 + ], + [ + 974, + 72, + 976, + 18, + 2, + 0, + 0, + 0 + ], + [ + 976, + 18, + 978, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_r0_lF", + "count": 0, + "regions": [ + [ + 1002, + 7, + 1013, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 1004, + 23, + 1012, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 1005, + 25, + 1005, + 85, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 0, + "regions": [ + [ + 1006, + 91, + 1011, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1007, + 121, + 1009, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1009, + 18, + 1011, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_r1_lF", + "count": 1, + "regions": [ + [ + 1035, + 7, + 1046, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1037, + 23, + 1045, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1038, + 25, + 1038, + 85, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1039, + 100, + 1044, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1040, + 168, + 1042, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1042, + 18, + 1044, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF10IdentifierR_r0_lF", + "count": 1, + "regions": [ + [ + 1073, + 7, + 1090, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1074, + 64, + 1076, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1076, + 10, + 1090, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF10IdentifierR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1078, + 48, + 1089, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF10IdentifierR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1079, + 25, + 1079, + 87, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF10IdentifierR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1080, + 81, + 1088, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1081, + 72, + 1083, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1083, + 18, + 1088, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1084, + 131, + 1086, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1086, + 18, + 1088, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF10IdentifierR0_r1_lF", + "count": 0, + "regions": [ + [ + 1112, + 7, + 1129, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1113, + 64, + 1115, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1115, + 10, + 1129, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF10IdentifierR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 1117, + 48, + 1128, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF10IdentifierR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 1118, + 25, + 1118, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF10IdentifierR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 0, + "regions": [ + [ + 1119, + 91, + 1127, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1120, + 121, + 1122, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1122, + 18, + 1127, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1123, + 131, + 1125, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1125, + 18, + 1127, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF10IdentifierR1_r2_lF", + "count": 1, + "regions": [ + [ + 1151, + 7, + 1168, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1152, + 64, + 1154, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1154, + 10, + 1168, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF10IdentifierR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1156, + 48, + 1167, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF10IdentifierR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1157, + 25, + 1157, + 87, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF10IdentifierR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1158, + 100, + 1166, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1159, + 168, + 1161, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1161, + 18, + 1166, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1162, + 131, + 1164, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1164, + 18, + 1166, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF11QueryParamsR_r0_lF", + "count": 1, + "regions": [ + [ + 1198, + 7, + 1217, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1200, + 23, + 1216, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1201, + 25, + 1201, + 97, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 1202, + 25, + 1202, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAF11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1203, + 81, + 1215, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1204, + 72, + 1206, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1206, + 18, + 1215, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1207, + 20, + 1210, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1210, + 25, + 1214, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1214, + 18, + 1215, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_r0_lF", + "count": 1, + "regions": [ + [ + 1252, + 11, + 1275, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1254, + 23, + 1274, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1255, + 25, + 1255, + 97, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 1256, + 25, + 1256, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAG11QueryParamsR_r0_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1257, + 81, + 1273, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1258, + 72, + 1260, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1260, + 18, + 1273, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1261, + 20, + 1268, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1264, + 50, + 1266, + 22, + 2, + 0, + 0, + 0 + ], + [ + 1266, + 22, + 1268, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1268, + 25, + 1272, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1272, + 18, + 1273, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF11QueryParamsR0_r1_lF", + "count": 0, + "regions": [ + [ + 1300, + 7, + 1319, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 1302, + 23, + 1318, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 1303, + 25, + 1303, + 97, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1304, + 25, + 1304, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AF11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 0, + "regions": [ + [ + 1305, + 91, + 1317, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1306, + 121, + 1308, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1308, + 18, + 1317, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1309, + 20, + 1312, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1312, + 25, + 1316, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1316, + 18, + 1317, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_r1_lF", + "count": 0, + "regions": [ + [ + 1349, + 11, + 1372, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 1351, + 23, + 1371, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 1352, + 25, + 1352, + 97, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1353, + 25, + 1353, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AG11QueryParamsR0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 0, + "regions": [ + [ + 1354, + 91, + 1370, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1355, + 121, + 1357, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1357, + 18, + 1370, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1358, + 20, + 1365, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1361, + 50, + 1363, + 22, + 0, + 0, + 0, + 0 + ], + [ + 1363, + 22, + 1365, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1365, + 25, + 1369, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1369, + 18, + 1370, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF11QueryParamsR1_r2_lF", + "count": 1, + "regions": [ + [ + 1397, + 7, + 1416, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1399, + 23, + 1415, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1400, + 25, + 1400, + 97, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 1401, + 25, + 1401, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_y0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaJR_AaJR0_AF11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1402, + 100, + 1414, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1403, + 168, + 1405, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1405, + 18, + 1414, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1406, + 20, + 1409, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1409, + 25, + 1413, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1413, + 18, + 1414, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_r2_lF", + "count": 1, + "regions": [ + [ + 1446, + 11, + 1469, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1448, + 23, + 1468, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1449, + 25, + 1449, + 97, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 1450, + 25, + 1450, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_q_q0_q1_Sgy0A9Contracts12RequestErrorVSgctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG11QueryParamsR1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 4, + "regions": [ + [ + 1451, + 100, + 1467, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1452, + 168, + 1454, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1454, + 18, + 1467, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1455, + 20, + 1462, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1458, + 50, + 1460, + 22, + 2, + 0, + 0, + 0 + ], + [ + 1460, + 22, + 1462, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1462, + 25, + 1466, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1466, + 18, + 1467, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_SeR0_SER0_r1_lF", + "count": 1, + "regions": [ + [ + 1500, + 7, + 1515, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1502, + 21, + 1514, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1503, + 25, + 1503, + 58, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_SeR0_SER0_r1_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1504, + 81, + 1513, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1505, + 72, + 1507, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1507, + 18, + 1513, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1508, + 136, + 1511, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1511, + 18, + 1513, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 1541, + 7, + 1556, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 1543, + 21, + 1555, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 1544, + 25, + 1544, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 1545, + 91, + 1554, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1546, + 121, + 1548, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1548, + 18, + 1554, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1549, + 136, + 1552, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1552, + 18, + 1554, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 1582, + 7, + 1597, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1584, + 21, + 1596, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1585, + 25, + 1585, + 58, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1586, + 100, + 1595, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1587, + 168, + 1589, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1589, + 18, + 1595, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1590, + 136, + 1593, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1593, + 18, + 1595, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_q1_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_AH10IdentifierR0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 1625, + 7, + 1641, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_q1_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_AH10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1629, + 21, + 1640, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_q1_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_AH10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1630, + 25, + 1630, + 58, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_yq0_Sg_q1_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzSeR_SER_AH10IdentifierR0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1631, + 81, + 1639, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1632, + 72, + 1634, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1634, + 18, + 1639, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1635, + 136, + 1637, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1637, + 18, + 1639, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_q2_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_AH10IdentifierR1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 1665, + 7, + 1681, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_q2_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_AH10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 1669, + 21, + 1680, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_q2_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_AH10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 1670, + 25, + 1670, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_yq1_Sg_q2_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_SeR0_SER0_AH10IdentifierR1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 1671, + 91, + 1679, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1672, + 121, + 1674, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1674, + 18, + 1679, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1675, + 136, + 1677, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1677, + 18, + 1679, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_q3_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_AH10IdentifierR2_SeR3_SER3_r4_lF", + "count": 1, + "regions": [ + [ + 1705, + 7, + 1721, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_q3_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_AH10IdentifierR2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1709, + 21, + 1720, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_q3_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_AH10IdentifierR2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1710, + 25, + 1710, + 58, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_q_q0_q1_yq2_Sg_q3_Sg0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaLR_AaLR0_SeR1_SER1_AH10IdentifierR2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1711, + 100, + 1719, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1712, + 168, + 1714, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1714, + 18, + 1719, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1715, + 136, + 1717, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1717, + 18, + 1719, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 1748, + 7, + 1767, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1749, + 64, + 1751, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1751, + 10, + 1767, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1753, + 45, + 1766, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1754, + 25, + 1754, + 57, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1755, + 81, + 1765, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1756, + 72, + 1758, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1758, + 18, + 1765, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1761, + 22, + 1763, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1763, + 18, + 1765, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 1789, + 7, + 1808, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1790, + 64, + 1792, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1792, + 10, + 1808, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 1794, + 45, + 1807, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 1795, + 25, + 1795, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 1796, + 91, + 1806, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1797, + 121, + 1799, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1799, + 18, + 1806, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1802, + 22, + 1804, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1804, + 18, + 1806, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lF", + "count": 1, + "regions": [ + [ + 1830, + 7, + 1850, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1831, + 64, + 1833, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1833, + 10, + 1850, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1835, + 45, + 1849, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1836, + 25, + 1836, + 57, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1837, + 100, + 1848, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1838, + 168, + 1840, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1840, + 18, + 1848, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1843, + 22, + 1846, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1846, + 18, + 1848, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lF", + "count": 1, + "regions": [ + [ + 1882, + 7, + 1902, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1883, + 64, + 1885, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1885, + 10, + 1902, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 1887, + 47, + 1901, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 1888, + 25, + 1888, + 59, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_yq1_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAG10IdentifierR_SeR0_SER0_SeR1_SER1_r2_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSgcfU_", + "count": 4, + "regions": [ + [ + 1889, + 81, + 1900, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1890, + 72, + 1892, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1892, + 18, + 1900, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1895, + 22, + 1897, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1897, + 18, + 1900, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lF", + "count": 1, + "regions": [ + [ + 1929, + 7, + 1948, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1930, + 64, + 1932, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1932, + 10, + 1948, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 1934, + 47, + 1947, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 2, + "regions": [ + [ + 1935, + 25, + 1935, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_yq2_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AG10IdentifierR0_SeR1_SER1_SeR2_SER2_r3_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_SgtcfU_", + "count": 2, + "regions": [ + [ + 1936, + 91, + 1946, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1937, + 121, + 1939, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1939, + 18, + 1946, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1942, + 22, + 1944, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1944, + 18, + 1946, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lF", + "count": 1, + "regions": [ + [ + 1975, + 7, + 1995, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1976, + 64, + 1978, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1978, + 10, + 1995, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 1980, + 47, + 1994, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 1981, + 25, + 1981, + 59, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_q0_q1_q2_yq3_Sg_0A9Contracts12RequestErrorVSgtctctAA18TypeSafeMiddlewareRzAaKR_AaKR0_AG10IdentifierR1_SeR2_SER2_SeR3_SER3_r4_lFyAA0bF0C_AA0B8ResponseCyyctcfU_yxSg_q_Sgq0_SgtcfU_", + "count": 6, + "regions": [ + [ + 1982, + 100, + 1993, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1983, + 168, + 1985, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1985, + 18, + 1993, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1988, + 22, + 1990, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1990, + 18, + 1993, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL_7request8response10completionyxm_AA0B7RequestCAA0B8ResponseCyxSgctAA08TypeSafeD0RzlFyAM_0A9Contracts0N5ErrorVSgtcfU_", + "count": 64, + "regions": [ + [ + 2005, + 56, + 2011, + 10, + 64, + 0, + 0, + 0 + ], + [ + 2006, + 68, + 2009, + 14, + 28, + 0, + 0, + 0 + ], + [ + 2009, + 14, + 2011, + 10, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL_7request8response10completionyxm_AA0B7RequestCAA0B8ResponseCyxSgctAA08TypeSafeD0RzlFyAM_0A9Contracts0N5ErrorVSgtcfU_AQyKXEfu_", + "count": 0, + "regions": [ + [ + 2007, + 78, + 2007, + 98, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL__7request8response10completionyxm_q_mAA0B7RequestCAA0B8ResponseCyxSg_q_SgtctAA08TypeSafeD0RzAaOR_r0_lFyAM_0A9Contracts0N5ErrorVSgtcfU_", + "count": 18, + "regions": [ + [ + 2023, + 57, + 2035, + 10, + 18, + 0, + 0, + 0 + ], + [ + 2024, + 70, + 2027, + 14, + 0, + 0, + 0, + 0 + ], + [ + 2027, + 14, + 2035, + 10, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL__7request8response10completionyxm_q_mAA0B7RequestCAA0B8ResponseCyxSg_q_SgtctAA08TypeSafeD0RzAaOR_r0_lFyAM_0A9Contracts0N5ErrorVSgtcfU_ARyKXEfu_", + "count": 0, + "regions": [ + [ + 2025, + 78, + 2025, + 98, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL__7request8response10completionyxm_q_mAA0B7RequestCAA0B8ResponseCyxSg_q_SgtctAA08TypeSafeD0RzAaOR_r0_lFyAM_0A9Contracts0N5ErrorVSgtcfU_yAN_AStcfU_", + "count": 18, + "regions": [ + [ + 2028, + 61, + 2034, + 14, + 18, + 0, + 0, + 0 + ], + [ + 2029, + 74, + 2032, + 18, + 0, + 0, + 0, + 0 + ], + [ + 2032, + 18, + 2034, + 14, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL__7request8response10completionyxm_q_mAA0B7RequestCAA0B8ResponseCyxSg_q_SgtctAA08TypeSafeD0RzAaOR_r0_lFyAM_0A9Contracts0N5ErrorVSgtcfU_yAN_AStcfU_ARyKXEfu_", + "count": 0, + "regions": [ + [ + 2030, + 82, + 2030, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL___7request8response10completionyxm_q_mq0_mAA0B7RequestCAA0B8ResponseCyxSg_q_Sgq0_SgtctAA08TypeSafeD0RzAaPR_AaPR0_r1_lFyAM_0A9Contracts0N5ErrorVSgtcfU_", + "count": 88, + "regions": [ + [ + 2048, + 57, + 2066, + 10, + 88, + 0, + 0, + 0 + ], + [ + 2049, + 70, + 2052, + 14, + 2, + 0, + 0, + 0 + ], + [ + 2052, + 14, + 2066, + 10, + 86, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL___7request8response10completionyxm_q_mq0_mAA0B7RequestCAA0B8ResponseCyxSg_q_Sgq0_SgtctAA08TypeSafeD0RzAaPR_AaPR0_r1_lFyAM_0A9Contracts0N5ErrorVSgtcfU_ASyKXEfu_", + "count": 0, + "regions": [ + [ + 2050, + 78, + 2050, + 98, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL___7request8response10completionyxm_q_mq0_mAA0B7RequestCAA0B8ResponseCyxSg_q_Sgq0_SgtctAA08TypeSafeD0RzAaPR_AaPR0_r1_lFyAM_0A9Contracts0N5ErrorVSgtcfU_yAN_ATtcfU_", + "count": 86, + "regions": [ + [ + 2053, + 61, + 2065, + 14, + 86, + 0, + 0, + 0 + ], + [ + 2054, + 74, + 2057, + 18, + 26, + 0, + 0, + 0 + ], + [ + 2057, + 18, + 2065, + 14, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL___7request8response10completionyxm_q_mq0_mAA0B7RequestCAA0B8ResponseCyxSg_q_Sgq0_SgtctAA08TypeSafeD0RzAaPR_AaPR0_r1_lFyAM_0A9Contracts0N5ErrorVSgtcfU_yAN_ATtcfU_ASyKXEfu_", + "count": 0, + "regions": [ + [ + 2055, + 82, + 2055, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL___7request8response10completionyxm_q_mq0_mAA0B7RequestCAA0B8ResponseCyxSg_q_Sgq0_SgtctAA08TypeSafeD0RzAaPR_AaPR0_r1_lFyAM_0A9Contracts0N5ErrorVSgtcfU_yAN_ATtcfU_yAO_ATtcfU_", + "count": 60, + "regions": [ + [ + 2058, + 65, + 2064, + 18, + 60, + 0, + 0, + 0 + ], + [ + 2059, + 78, + 2062, + 22, + 26, + 0, + 0, + 0 + ], + [ + 2062, + 22, + 2064, + 18, + 34, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16handleMiddleware33_C53F20471531886247E6B77FE8DBACD1LL___7request8response10completionyxm_q_mq0_mAA0B7RequestCAA0B8ResponseCyxSg_q_Sgq0_SgtctAA08TypeSafeD0RzAaPR_AaPR0_r1_lFyAM_0A9Contracts0N5ErrorVSgtcfU_yAN_ATtcfU_yAO_ATtcfU_ASyKXEfu_", + "count": 0, + "regions": [ + [ + 2060, + 86, + 2060, + 106, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter+TypeSafeMiddleware.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yySayxGSg_0A9Contracts12RequestErrorVSgtcctSeRzSERzlF", + "count": 13, + "regions": [ + [ + 49, + 93, + 51, + 6, + 13, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yyxSg_0A9Contracts12RequestErrorVSgtcctSeRzSERzlF", + "count": 22, + "regions": [ + [ + 69, + 94, + 71, + 6, + 22, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAG10IdentifierRzSeR_SER_r0_lF", + "count": 16, + "regions": [ + [ + 89, + 124, + 91, + 6, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yySayx_q_tGSg_0A9Contracts12RequestErrorVSgtcctAH10IdentifierRzSeR_SER_r0_lF", + "count": 13, + "regions": [ + [ + 108, + 123, + 110, + 6, + 13, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAH11QueryParamsRzSeR_SER_r0_lF", + "count": 1, + "regions": [ + [ + 129, + 138, + 131, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAG11QueryParamsRzSeR_SER_r0_lF", + "count": 46, + "regions": [ + [ + 150, + 133, + 152, + 6, + 46, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yxSg_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lF", + "count": 1, + "regions": [ + [ + 171, + 139, + 173, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerySS_yxSg_yq_Sg_0A9Contracts12RequestErrorVSgtctctAH11QueryParamsRzSeR_SER_r0_lF", + "count": 10, + "regions": [ + [ + 192, + 134, + 194, + 6, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yy0A9Contracts12RequestErrorVSgcctF", + "count": 13, + "regions": [ + [ + 211, + 79, + 213, + 6, + 13, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAF10IdentifierRzlF", + "count": 7, + "regions": [ + [ + 230, + 109, + 232, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAF11QueryParamsRzlF", + "count": 10, + "regions": [ + [ + 250, + 114, + 252, + 6, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerySS_yxSg_y0A9Contracts12RequestErrorVSgctctAG11QueryParamsRzlF", + "count": 19, + "regions": [ + [ + 270, + 115, + 272, + 6, + 19, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctSeRzSERzSeR_SER_r0_lF", + "count": 28, + "regions": [ + [ + 291, + 104, + 293, + 6, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerySS_yx_yq_Sg_q0_Sg0A9Contracts12RequestErrorVSgtctctSeRzSERzAH10IdentifierR_SeR0_SER0_r1_lF", + "count": 15, + "regions": [ + [ + 313, + 134, + 315, + 6, + 15, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAG10IdentifierRzSeR_SER_SeR0_SER0_r1_lF", + "count": 27, + "regions": [ + [ + 333, + 133, + 335, + 6, + 27, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAG10IdentifierRzSeR_SER_SeR0_SER0_r1_lF", + "count": 16, + "regions": [ + [ + 354, + 135, + 356, + 6, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10postSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctSeRzSERzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 26, + "regions": [ + [ + 361, + 21, + 368, + 10, + 26, + 0, + 0, + 0 + ], + [ + 363, + 132, + 366, + 14, + 6, + 0, + 0, + 0 + ], + [ + 366, + 14, + 368, + 10, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10postSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctSeRzSERzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 26, + "regions": [ + [ + 362, + 25, + 362, + 58, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16postSafelyWithId33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_q0_Sg0A9Contracts12RequestErrorVSgtctctSeRzSERzAI10IdentifierR_SeR0_SER0_r1_lFyAA0bQ0C_AA0B8ResponseCyyctcfU_", + "count": 12, + "regions": [ + [ + 376, + 21, + 383, + 10, + 12, + 0, + 0, + 0 + ], + [ + 378, + 132, + 381, + 14, + 0, + 0, + 0, + 0 + ], + [ + 381, + 14, + 383, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16postSafelyWithId33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_q0_Sg0A9Contracts12RequestErrorVSgtctctSeRzSERzAI10IdentifierR_SeR0_SER0_r1_lFyAA0bQ0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 12, + "regions": [ + [ + 377, + 25, + 377, + 58, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9putSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAH10IdentifierRzSeR_SER_SeR0_SER0_r1_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 18, + "regions": [ + [ + 392, + 45, + 401, + 10, + 18, + 0, + 0, + 0 + ], + [ + 396, + 18, + 399, + 14, + 2, + 0, + 0, + 0 + ], + [ + 399, + 14, + 401, + 10, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9putSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAH10IdentifierRzSeR_SER_SeR0_SER0_r1_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 18, + "regions": [ + [ + 393, + 25, + 393, + 57, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11patchSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAH10IdentifierRzSeR_SER_SeR0_SER0_r1_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 14, + "regions": [ + [ + 410, + 47, + 419, + 10, + 14, + 0, + 0, + 0 + ], + [ + 414, + 18, + 417, + 14, + 2, + 0, + 0, + 0 + ], + [ + 417, + 14, + 419, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11patchSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_q_yq0_Sg_0A9Contracts12RequestErrorVSgtctctAH10IdentifierRzSeR_SER_SeR0_SER0_r1_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 14, + "regions": [ + [ + 411, + 25, + 411, + 59, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yyxSg_0A9Contracts12RequestErrorVSgtcctSeRzSERzlFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 8, + "regions": [ + [ + 428, + 20, + 431, + 10, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yyxSg_0A9Contracts12RequestErrorVSgtcctSeRzSERzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 8, + "regions": [ + [ + 429, + 25, + 429, + 80, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yySayxGSg_0A9Contracts12RequestErrorVSgtcctSeRzSERzlFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 8, + "regions": [ + [ + 440, + 20, + 443, + 10, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yySayxGSg_0A9Contracts12RequestErrorVSgtcctSeRzSERzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 8, + "regions": [ + [ + 441, + 25, + 441, + 66, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yySayx_q_tGSg_0A9Contracts12RequestErrorVSgtcctAI10IdentifierRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 8, + "regions": [ + [ + 454, + 20, + 457, + 10, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yySayx_q_tGSg_0A9Contracts12RequestErrorVSgtcctAI10IdentifierRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 8, + "regions": [ + [ + 455, + 25, + 455, + 82, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 463, + 20, + 474, + 10, + 4, + 0, + 0, + 0 + ], + [ + 466, + 16, + 469, + 14, + 4, + 0, + 0, + 0 + ], + [ + 469, + 21, + 473, + 14, + 2, + 0, + 0, + 0 + ], + [ + 473, + 14, + 474, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 464, + 25, + 464, + 88, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 465, + 25, + 465, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAH11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 480, + 20, + 492, + 10, + 4, + 0, + 0, + 0 + ], + [ + 484, + 16, + 487, + 14, + 4, + 0, + 0, + 0 + ], + [ + 487, + 21, + 491, + 14, + 2, + 0, + 0, + 0 + ], + [ + 491, + 14, + 492, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAH11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 481, + 25, + 481, + 90, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAH11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 482, + 25, + 482, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAJ11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 498, + 20, + 513, + 10, + 6, + 0, + 0, + 0 + ], + [ + 501, + 16, + 508, + 14, + 6, + 0, + 0, + 0 + ], + [ + 504, + 46, + 506, + 18, + 4, + 0, + 0, + 0 + ], + [ + 506, + 18, + 508, + 14, + 6, + 0, + 0, + 0 + ], + [ + 508, + 21, + 512, + 14, + 2, + 0, + 0, + 0 + ], + [ + 512, + 14, + 513, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAJ11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 499, + 25, + 499, + 88, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_ySayq_GSg_0A9Contracts12RequestErrorVSgtctctAJ11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 500, + 25, + 500, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_yq_Sg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 519, + 20, + 535, + 10, + 6, + 0, + 0, + 0 + ], + [ + 523, + 16, + 530, + 14, + 6, + 0, + 0, + 0 + ], + [ + 526, + 46, + 528, + 18, + 4, + 0, + 0, + 0 + ], + [ + 528, + 18, + 530, + 14, + 6, + 0, + 0, + 0 + ], + [ + 530, + 21, + 534, + 14, + 2, + 0, + 0, + 0 + ], + [ + 534, + 14, + 535, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_yq_Sg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 520, + 25, + 520, + 90, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_yq_Sg_0A9Contracts12RequestErrorVSgtctctAI11QueryParamsRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 521, + 25, + 521, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAH10IdentifierRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 12, + "regions": [ + [ + 543, + 45, + 550, + 10, + 12, + 0, + 0, + 0 + ], + [ + 545, + 127, + 548, + 14, + 0, + 0, + 0, + 0 + ], + [ + 548, + 14, + 550, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9getSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_yq_Sg_0A9Contracts12RequestErrorVSgtctctAH10IdentifierRzSeR_SER_r0_lFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 12, + "regions": [ + [ + 544, + 25, + 544, + 84, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yy0A9Contracts12RequestErrorVSgcctFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 559, + 23, + 562, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yy0A9Contracts12RequestErrorVSgcctFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 560, + 25, + 560, + 69, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAG10IdentifierRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 10, + "regions": [ + [ + 571, + 48, + 578, + 10, + 10, + 0, + 0, + 0 + ], + [ + 573, + 127, + 576, + 14, + 0, + 0, + 0, + 0 + ], + [ + 576, + 14, + 578, + 10, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAG10IdentifierRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 10, + "regions": [ + [ + 572, + 25, + 572, + 71, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAG11QueryParamsRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 584, + 23, + 595, + 10, + 4, + 0, + 0, + 0 + ], + [ + 587, + 16, + 590, + 14, + 4, + 0, + 0, + 0 + ], + [ + 590, + 21, + 594, + 14, + 2, + 0, + 0, + 0 + ], + [ + 594, + 14, + 595, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAG11QueryParamsRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 4, + "regions": [ + [ + 585, + 25, + 585, + 82, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yx_y0A9Contracts12RequestErrorVSgctctAG11QueryParamsRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 586, + 25, + 586, + 71, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_y0A9Contracts12RequestErrorVSgctctAH11QueryParamsRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 601, + 23, + 616, + 10, + 6, + 0, + 0, + 0 + ], + [ + 604, + 16, + 611, + 14, + 6, + 0, + 0, + 0 + ], + [ + 607, + 46, + 609, + 18, + 4, + 0, + 0, + 0 + ], + [ + 609, + 18, + 611, + 14, + 6, + 0, + 0, + 0 + ], + [ + 611, + 21, + 615, + 14, + 2, + 0, + 0, + 0 + ], + [ + 615, + 14, + 616, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_y0A9Contracts12RequestErrorVSgctctAH11QueryParamsRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu_", + "count": 6, + "regions": [ + [ + 602, + 25, + 602, + 82, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12deleteSafely33_F3486BE4CD90384662F90AE40B1C87F0LL_7handlerySS_yxSg_y0A9Contracts12RequestErrorVSgctctAH11QueryParamsRzlFyAA0bO0C_AA0B8ResponseCyyctcfU_SSyXEfu0_", + "count": 6, + "regions": [ + [ + 603, + 25, + 603, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC28pathHasSingleParamIdAsSuffixySbSSF", + "count": 3, + "regions": [ + [ + 620, + 63, + 626, + 6, + 3, + 0, + 0, + 0 + ], + [ + 622, + 32, + 624, + 10, + 2, + 0, + 0, + 0 + ], + [ + 624, + 10, + 625, + 21, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC17pathSyntaxIsValid_18identifierExpectedSbSS_SbtFSSyXEfu_", + "count": 1, + "regions": [ + [ + 632, + 23, + 632, + 100, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC17pathSyntaxIsValid_18identifierExpectedSbSS_SbtFSSyXEfu0_", + "count": 73, + "regions": [ + [ + 635, + 22, + 635, + 106, + 73, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura6RouterC17pathSyntaxIsValid_18identifierExpectedSbSS_SbtFSSyXEfu1_", + "count": 2, + "regions": [ + [ + 639, + 27, + 639, + 122, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV17isContentTypeJSONySbAA13RouterRequestCFZ", + "count": 0, + "regions": [ + [ + 666, + 76, + 672, + 6, + 0, + 0, + 0, + 0 + ], + [ + 668, + 70, + 670, + 10, + 0, + 0, + 0, + 0 + ], + [ + 670, + 10, + 671, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV23isContentTypeURLEncodedySbAA13RouterRequestCFZ", + "count": 0, + "regions": [ + [ + 680, + 82, + 686, + 6, + 0, + 0, + 0, + 0 + ], + [ + 682, + 70, + 684, + 10, + 0, + 0, + 0, + 0 + ], + [ + 684, + 10, + 685, + 74, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV14httpStatusCode4from0A3Net010HTTPStatusF0O0A9Contracts12RequestErrorV_tFZ", + "count": 150, + "regions": [ + [ + 695, + 83, + 699, + 6, + 150, + 0, + 0, + 0 + ], + [ + 697, + 58, + 697, + 103, + 0, + 0, + 0, + 0 + ], + [ + 697, + 103, + 698, + 82, + 150, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV14httpStatusCode4from0A3Net010HTTPStatusF0O0A9Contracts12RequestErrorV_tFZSbyKXEfu_", + "count": 0, + "regions": [ + [ + 697, + 37, + 697, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV14httpStatusCode4from0A3Net010HTTPStatusF0O0A9Contracts12RequestErrorV_tFZAHyKXEfu0_", + "count": 0, + "regions": [ + [ + 698, + 60, + 698, + 82, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV22constructResultHandler8response10completiony0A9Contracts12RequestErrorVSgcAA14RouterResponseC_yyctFZyAJcfU_", + "count": 42, + "regions": [ + [ + 727, + 16, + 743, + 10, + 42, + 0, + 0, + 0 + ], + [ + 728, + 34, + 739, + 14, + 8, + 0, + 0, + 0 + ], + [ + 730, + 20, + 735, + 18, + 8, + 0, + 0, + 0 + ], + [ + 731, + 67, + 734, + 22, + 4, + 0, + 0, + 0 + ], + [ + 734, + 22, + 735, + 18, + 8, + 0, + 0, + 0 + ], + [ + 735, + 25, + 738, + 18, + 0, + 0, + 0, + 0 + ], + [ + 738, + 18, + 739, + 14, + 8, + 0, + 0, + 0 + ], + [ + 739, + 14, + 743, + 10, + 42, + 0, + 0, + 0 + ], + [ + 739, + 20, + 741, + 14, + 34, + 0, + 0, + 0 + ], + [ + 741, + 14, + 743, + 10, + 42, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV22constructResultHandler8response10completiony0A9Contracts12RequestErrorVSgcAA14RouterResponseC_yyctFZyAJcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 736, + 31, + 736, + 65, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV25constructOutResultHandler13successStatus8response10completionyxSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctSeRzSERzlFZyAH_ALtcfU_", + "count": 142, + "regions": [ + [ + 774, + 16, + 798, + 10, + 142, + 0, + 0, + 0 + ], + [ + 776, + 34, + 778, + 14, + 48, + 0, + 0, + 0 + ], + [ + 778, + 14, + 798, + 10, + 142, + 0, + 0, + 0 + ], + [ + 780, + 63, + 790, + 14, + 42, + 0, + 0, + 0 + ], + [ + 781, + 20, + 786, + 18, + 42, + 0, + 0, + 0 + ], + [ + 782, + 67, + 785, + 22, + 22, + 0, + 0, + 0 + ], + [ + 785, + 22, + 786, + 18, + 42, + 0, + 0, + 0 + ], + [ + 786, + 25, + 789, + 18, + 0, + 0, + 0, + 0 + ], + [ + 789, + 18, + 790, + 14, + 42, + 0, + 0, + 0 + ], + [ + 790, + 14, + 798, + 10, + 142, + 0, + 0, + 0 + ], + [ + 790, + 20, + 796, + 14, + 100, + 0, + 0, + 0 + ], + [ + 791, + 54, + 793, + 18, + 92, + 0, + 0, + 0 + ], + [ + 793, + 18, + 796, + 14, + 100, + 0, + 0, + 0 + ], + [ + 793, + 24, + 795, + 18, + 8, + 0, + 0, + 0 + ], + [ + 795, + 18, + 796, + 14, + 100, + 0, + 0, + 0 + ], + [ + 796, + 14, + 798, + 10, + 142, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV25constructOutResultHandler13successStatus8response10completionyxSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctSeRzSERzlFZyAH_ALtcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 787, + 31, + 787, + 65, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV25constructOutResultHandler13successStatus8response10completionyxSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctSeRzSERzlFZyAH_ALtcfU_SSyXEfu0_", + "count": 8, + "regions": [ + [ + 794, + 31, + 794, + 90, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV35constructTupleArrayOutResultHandler13successStatus8response10completionySayx_q_tGSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAI_AMtcfU_", + "count": 14, + "regions": [ + [ + 829, + 16, + 854, + 10, + 14, + 0, + 0, + 0 + ], + [ + 831, + 34, + 833, + 14, + 4, + 0, + 0, + 0 + ], + [ + 833, + 14, + 854, + 10, + 14, + 0, + 0, + 0 + ], + [ + 835, + 63, + 845, + 14, + 2, + 0, + 0, + 0 + ], + [ + 836, + 20, + 841, + 18, + 2, + 0, + 0, + 0 + ], + [ + 837, + 67, + 840, + 22, + 0, + 0, + 0, + 0 + ], + [ + 840, + 22, + 841, + 18, + 2, + 0, + 0, + 0 + ], + [ + 841, + 25, + 844, + 18, + 0, + 0, + 0, + 0 + ], + [ + 844, + 18, + 845, + 14, + 2, + 0, + 0, + 0 + ], + [ + 845, + 14, + 854, + 10, + 14, + 0, + 0, + 0 + ], + [ + 845, + 20, + 852, + 14, + 12, + 0, + 0, + 0 + ], + [ + 846, + 54, + 849, + 18, + 12, + 0, + 0, + 0 + ], + [ + 849, + 18, + 852, + 14, + 12, + 0, + 0, + 0 + ], + [ + 849, + 24, + 851, + 18, + 0, + 0, + 0, + 0 + ], + [ + 851, + 18, + 852, + 14, + 12, + 0, + 0, + 0 + ], + [ + 852, + 14, + 854, + 10, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV35constructTupleArrayOutResultHandler13successStatus8response10completionySayx_q_tGSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAI_AMtcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 842, + 31, + 842, + 65, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV35constructTupleArrayOutResultHandler13successStatus8response10completionySayx_q_tGSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAI_AMtcfU_SDySSq_Gx_q_tXEfU_", + "count": 32, + "regions": [ + [ + 847, + 53, + 847, + 71, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV35constructTupleArrayOutResultHandler13successStatus8response10completionySayx_q_tGSg_0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAI_AMtcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 850, + 31, + 850, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV30constructIdentOutResultHandler13successStatus8response10completionyxSg_q_Sg0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAH_AiMtcfU_", + "count": 18, + "regions": [ + [ + 887, + 16, + 915, + 10, + 18, + 0, + 0, + 0 + ], + [ + 889, + 34, + 891, + 14, + 8, + 0, + 0, + 0 + ], + [ + 891, + 14, + 915, + 10, + 18, + 0, + 0, + 0 + ], + [ + 893, + 63, + 903, + 14, + 4, + 0, + 0, + 0 + ], + [ + 894, + 20, + 899, + 18, + 4, + 0, + 0, + 0 + ], + [ + 895, + 67, + 898, + 22, + 2, + 0, + 0, + 0 + ], + [ + 898, + 22, + 899, + 18, + 4, + 0, + 0, + 0 + ], + [ + 899, + 25, + 902, + 18, + 0, + 0, + 0, + 0 + ], + [ + 902, + 18, + 903, + 14, + 4, + 0, + 0, + 0 + ], + [ + 903, + 14, + 915, + 10, + 18, + 0, + 0, + 0 + ], + [ + 903, + 35, + 910, + 14, + 14, + 0, + 0, + 0 + ], + [ + 905, + 54, + 907, + 18, + 10, + 0, + 0, + 0 + ], + [ + 907, + 18, + 910, + 14, + 14, + 0, + 0, + 0 + ], + [ + 907, + 24, + 909, + 18, + 4, + 0, + 0, + 0 + ], + [ + 909, + 18, + 910, + 14, + 14, + 0, + 0, + 0 + ], + [ + 910, + 14, + 915, + 10, + 18, + 0, + 0, + 0 + ], + [ + 910, + 20, + 913, + 14, + 4, + 0, + 0, + 0 + ], + [ + 913, + 14, + 915, + 10, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV30constructIdentOutResultHandler13successStatus8response10completionyxSg_q_Sg0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAH_AiMtcfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 900, + 31, + 900, + 65, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV30constructIdentOutResultHandler13successStatus8response10completionyxSg_q_Sg0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAH_AiMtcfU_SSyXEfu0_", + "count": 4, + "regions": [ + [ + 908, + 31, + 908, + 90, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV30constructIdentOutResultHandler13successStatus8response10completionyxSg_q_Sg0A9Contracts12RequestErrorVSgtc0A3Net14HTTPStatusCodeO_AA14RouterResponseCyyctAJ10IdentifierRzSeR_SER_r0_lFZyAH_AiMtcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 911, + 27, + 911, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV04readB19OrSetResponseStatus_4from8responsexSgxm_AA13RouterRequestCAA0kG0CtSeRzSERzlFZSSyXEfu_", + "count": 6, + "regions": [ + [ + 939, + 23, + 939, + 95, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$s6Kitura14CodableHelpersV04readB19OrSetResponseStatus_4from8responsexSgxm_AA13RouterRequestCAA0kG0CtSeRzSERzlFZSSyXEfu0_", + "count": 4, + "regions": [ + [ + 946, + 23, + 946, + 76, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/CodableRouter.swift" + ] + }, + { + "name": "$ss13DecodingErrorO6KituraE23codingKeyAsPrefixString4fromSSSays06CodingE0_pG_tFZ", + "count": 3, + "regions": [ + [ + 23, + 81, + 25, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/DecodingError+Extensions.swift" + ] + }, + { + "name": "$ss13DecodingErrorO6KituraE23codingKeyAsPrefixString4fromSSSays06CodingE0_pG_tFZSSsAF_pXEfU_", + "count": 3, + "regions": [ + [ + 24, + 31, + 24, + 49, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/DecodingError+Extensions.swift" + ] + }, + { + "name": "$ss13DecodingErrorO6KituraE24humanReadableDescriptionSSvg", + "count": 8, + "regions": [ + [ + 28, + 49, + 55, + 6, + 8, + 0, + 0, + 0 + ], + [ + 30, + 9, + 31, + 159, + 1, + 0, + 0, + 0 + ], + [ + 32, + 9, + 38, + 86, + 1, + 0, + 0, + 0 + ], + [ + 35, + 39, + 37, + 14, + 1, + 0, + 0, + 0 + ], + [ + 37, + 14, + 38, + 86, + 1, + 0, + 0, + 0 + ], + [ + 39, + 9, + 51, + 55, + 5, + 0, + 0, + 0 + ], + [ + 42, + 137, + 44, + 14, + 1, + 0, + 0, + 0 + ], + [ + 44, + 14, + 51, + 55, + 4, + 0, + 0, + 0 + ], + [ + 52, + 9, + 53, + 142, + 1, + 0, + 0, + 0 + ], + [ + 54, + 10, + 55, + 6, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/DecodingError+Extensions.swift" + ] + }, + { + "name": "$s6Kitura5ErrorO11descriptionSSvg", + "count": 0, + "regions": [ + [ + 27, + 29, + 35, + 6, + 0, + 0, + 0, + 0 + ], + [ + 29, + 9, + 30, + 59, + 0, + 0, + 0, + 0 + ], + [ + 31, + 9, + 33, + 55, + 0, + 0, + 0, + 0 + ], + [ + 34, + 10, + 35, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Error.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC11sendIfFound8resource13usingResponseySS_AA06RouterJ0CtF", + "count": 12, + "regions": [ + [ + 23, + 80, + 39, + 6, + 12, + 0, + 0, + 0 + ], + [ + 24, + 70, + 31, + 10, + 2, + 0, + 0, + 0 + ], + [ + 25, + 16, + 27, + 14, + 2, + 0, + 0, + 0 + ], + [ + 27, + 21, + 29, + 14, + 0, + 0, + 0, + 0 + ], + [ + 29, + 14, + 30, + 19, + 2, + 0, + 0, + 0 + ], + [ + 31, + 10, + 39, + 6, + 10, + 0, + 0, + 0 + ], + [ + 33, + 12, + 36, + 10, + 10, + 0, + 0, + 0 + ], + [ + 36, + 17, + 38, + 10, + 0, + 0, + 0, + 0 + ], + [ + 38, + 10, + 39, + 6, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC11sendIfFound8resource13usingResponseySS_AA06RouterJ0CtFSSyXEfu_", + "count": 0, + "regions": [ + [ + 28, + 27, + 28, + 88, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC11sendIfFound8resource13usingResponseySS_AA06RouterJ0CtFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 37, + 23, + 37, + 82, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC03getB4Path33_A12B664E1B52606FD879977453212165LL3forSSSgSS_tF", + "count": 12, + "regions": [ + [ + 41, + 63, + 64, + 6, + 12, + 0, + 0, + 0 + ], + [ + 47, + 45, + 49, + 10, + 2, + 0, + 0, + 0 + ], + [ + 49, + 10, + 64, + 6, + 12, + 0, + 0, + 0 + ], + [ + 52, + 23, + 55, + 10, + 10, + 0, + 0, + 0 + ], + [ + 55, + 10, + 64, + 6, + 12, + 0, + 0, + 0 + ], + [ + 55, + 16, + 58, + 10, + 2, + 0, + 0, + 0 + ], + [ + 58, + 10, + 64, + 6, + 12, + 0, + 0, + 0 + ], + [ + 60, + 81, + 62, + 10, + 2, + 0, + 0, + 0 + ], + [ + 62, + 10, + 63, + 29, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC11isValidPath08resourceG004baseG0SbSSSg_AGtF", + "count": 12, + "regions": [ + [ + 66, + 72, + 74, + 6, + 12, + 0, + 0, + 0 + ], + [ + 70, + 108, + 72, + 10, + 2, + 0, + 0, + 0 + ], + [ + 72, + 10, + 73, + 61, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC03getC25PathBasedOnSourceLocation33_A12B664E1B52606FD879977453212165LL3forS2S_tF", + "count": 22, + "regions": [ + [ + 76, + 87, + 86, + 6, + 22, + 0, + 0, + 0 + ], + [ + 80, + 46, + 82, + 10, + 22, + 0, + 0, + 0 + ], + [ + 82, + 10, + 86, + 6, + 22, + 0, + 0, + 0 + ], + [ + 82, + 16, + 84, + 10, + 0, + 0, + 0, + 0 + ], + [ + 84, + 10, + 85, + 91, + 22, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC03getC27PathBasedOnCurrentDirectory33_A12B664E1B52606FD879977453212165LL3for04withB7ManagerSSSgSS_So06NSFileR0CtF", + "count": 4, + "regions": [ + [ + 88, + 132, + 114, + 6, + 4, + 0, + 0, + 0 + ], + [ + 89, + 58, + 112, + 10, + 8, + 0, + 0, + 0 + ], + [ + 100, + 16, + 109, + 14, + 8, + 0, + 0, + 0 + ], + [ + 102, + 41, + 108, + 18, + 28, + 0, + 0, + 0 + ], + [ + 105, + 39, + 107, + 22, + 0, + 0, + 0, + 0 + ], + [ + 107, + 22, + 108, + 18, + 28, + 0, + 0, + 0 + ], + [ + 108, + 18, + 109, + 14, + 8, + 0, + 0, + 0 + ], + [ + 109, + 21, + 111, + 14, + 4, + 0, + 0, + 0 + ], + [ + 111, + 14, + 112, + 10, + 8, + 0, + 0, + 0 + ], + [ + 112, + 10, + 113, + 19, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "$s6Kitura18FileResourceServerC03getC27PathBasedOnCurrentDirectory33_A12B664E1B52606FD879977453212165LL3for04withB7ManagerSSSgSS_So06NSFileR0CtFSSyXEfu_", + "count": 4, + "regions": [ + [ + 110, + 25, + 110, + 62, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/FileResourceServer.swift" + ] + }, + { + "name": "__ntd_Headers_line:22:8", + "count": 1550, + "regions": [ + [ + 30, + 37, + 32, + 6, + 1550, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV6append_5valueySS_SStF", + "count": 22, + "regions": [ + [ + 38, + 63, + 40, + 6, + 22, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV10startIndexSD0D0VyS2S3key_SaySSG5valuet_Gvg", + "count": 2, + "regions": [ + [ + 47, + 41, + 49, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV8endIndexSD0D0VyS2S3key_SaySSG5valuet_Gvg", + "count": 1, + "regions": [ + [ + 52, + 39, + 54, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersVySSSgSScig", + "count": 1484, + "regions": [ + [ + 65, + 13, + 67, + 10, + 1484, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersVySSSgSScis", + "count": 1463, + "regions": [ + [ + 69, + 23, + 75, + 10, + 1463, + 0, + 0, + 0 + ], + [ + 70, + 40, + 72, + 14, + 1459, + 0, + 0, + 0 + ], + [ + 72, + 14, + 75, + 10, + 1463, + 0, + 0, + 0 + ], + [ + 72, + 20, + 74, + 14, + 4, + 0, + 0, + 0 + ], + [ + 74, + 14, + 75, + 10, + 1463, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersVySS_SSSgtSD5IndexVyS2S3key_SaySSG5valuet_Gcig", + "count": 2, + "regions": [ + [ + 85, + 13, + 88, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV5index5afterSD5IndexVyS2S3key_SaySSG5valuet_GAK_tF", + "count": 1, + "regions": [ + [ + 97, + 62, + 99, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV11setLocationyySSF", + "count": 18, + "regions": [ + [ + 109, + 54, + 119, + 6, + 18, + 0, + 0, + 0 + ], + [ + 111, + 25, + 117, + 10, + 2, + 0, + 0, + 0 + ], + [ + 112, + 48, + 114, + 14, + 1, + 0, + 0, + 0 + ], + [ + 114, + 14, + 117, + 10, + 2, + 0, + 0, + 0 + ], + [ + 114, + 20, + 116, + 14, + 1, + 0, + 0, + 0 + ], + [ + 116, + 14, + 117, + 10, + 2, + 0, + 0, + 0 + ], + [ + 117, + 10, + 119, + 6, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV7setType_7charsetySS_SSSgtF", + "count": 105, + "regions": [ + [ + 125, + 74, + 133, + 6, + 105, + 0, + 0, + 0 + ], + [ + 126, + 93, + 132, + 10, + 105, + 0, + 0, + 0 + ], + [ + 128, + 38, + 130, + 14, + 1, + 0, + 0, + 0 + ], + [ + 130, + 14, + 132, + 10, + 105, + 0, + 0, + 0 + ], + [ + 132, + 10, + 133, + 6, + 105, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV13addAttachment3forySSSg_tF", + "count": 4, + "regions": [ + [ + 140, + 69, + 156, + 6, + 4, + 0, + 0, + 0 + ], + [ + 141, + 44, + 144, + 10, + 1, + 0, + 0, + 0 + ], + [ + 144, + 10, + 156, + 6, + 3, + 0, + 0, + 0 + ], + [ + 147, + 50, + 149, + 10, + 1, + 0, + 0, + 0 + ], + [ + 149, + 10, + 156, + 6, + 2, + 0, + 0, + 0 + ], + [ + 153, + 43, + 155, + 10, + 2, + 0, + 0, + 0 + ], + [ + 155, + 10, + 156, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV13addAttachment3forySSSg_tFSbSJXEfU_", + "count": 102, + "regions": [ + [ + 146, + 40, + 146, + 51, + 102, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura7HeadersV7addLink_14linkParametersySS_SDyAA0D9ParameterOSSGtF", + "count": 6, + "regions": [ + [ + 162, + 91, + 170, + 6, + 6, + 0, + 0, + 0 + ], + [ + 165, + 52, + 167, + 10, + 6, + 0, + 0, + 0 + ], + [ + 167, + 10, + 170, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Headers.swift" + ] + }, + { + "name": "$s6Kitura13InternalErrorO11descriptionSSvg", + "count": 2, + "regions": [ + [ + 28, + 29, + 33, + 6, + 2, + 0, + 0, + 0 + ], + [ + 30, + 9, + 31, + 34, + 2, + 0, + 0, + 0 + ], + [ + 32, + 10, + 33, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/InternalError.swift" + ] + }, + { + "name": "$s6Kitura10JSONPErrorO11descriptionSSvg", + "count": 0, + "regions": [ + [ + 31, + 36, + 36, + 6, + 0, + 0, + 0, + 0 + ], + [ + 33, + 9, + 34, + 71, + 0, + 0, + 0, + 0 + ], + [ + 35, + 10, + 36, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/JSONPError.swift" + ] + }, + { + "name": "$s6KituraAAC13addHTTPServer6onPort4with0F3SSL9keepAlive05allowE5Reuse0A3Net0C0CSi_AI14ServerDelegate_pAA9SSLConfigVSgAI04KeepI5StateOSbtFZ", + "count": 4, + "regions": [ + [ + 66, + 81, + 76, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC16addFastCGIServer6onPort4with05allowF5Reuse0A3Net0cD0CSi_AG14ServerDelegate_pSbtFZ", + "count": 3, + "regions": [ + [ + 95, + 87, + 103, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC3runyyFZ", + "count": 1, + "regions": [ + [ + 117, + 29, + 121, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC3runyyFZSSyXEfu_", + "count": 1, + "regions": [ + [ + 118, + 21, + 118, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC5startyyFZ", + "count": 5, + "regions": [ + [ + 132, + 31, + 151, + 6, + 5, + 0, + 0, + 0 + ], + [ + 134, + 51, + 141, + 10, + 5, + 0, + 0, + 0 + ], + [ + 136, + 16, + 138, + 14, + 5, + 0, + 0, + 0 + ], + [ + 138, + 21, + 140, + 14, + 1, + 0, + 0, + 0 + ], + [ + 140, + 14, + 141, + 10, + 5, + 0, + 0, + 0 + ], + [ + 141, + 10, + 151, + 6, + 5, + 0, + 0, + 0 + ], + [ + 142, + 54, + 149, + 10, + 3, + 0, + 0, + 0 + ], + [ + 144, + 16, + 146, + 14, + 3, + 0, + 0, + 0 + ], + [ + 146, + 21, + 148, + 14, + 3, + 0, + 0, + 0 + ], + [ + 148, + 14, + 149, + 10, + 3, + 0, + 0, + 0 + ], + [ + 149, + 10, + 151, + 6, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC5startyyFZSSyXEfu_", + "count": 5, + "regions": [ + [ + 135, + 25, + 135, + 69, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC5startyyFZSSyXEfu0_", + "count": 1, + "regions": [ + [ + 139, + 27, + 139, + 110, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC5startyyFZSSyXEfu1_", + "count": 3, + "regions": [ + [ + 143, + 25, + 143, + 71, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC5startyyFZSSyXEfu2_", + "count": 3, + "regions": [ + [ + 147, + 27, + 147, + 110, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC4stop10unregisterySb_tFZ", + "count": 5, + "regions": [ + [ + 167, + 53, + 184, + 6, + 5, + 0, + 0, + 0 + ], + [ + 169, + 51, + 172, + 10, + 5, + 0, + 0, + 0 + ], + [ + 172, + 10, + 184, + 6, + 5, + 0, + 0, + 0 + ], + [ + 174, + 54, + 177, + 10, + 3, + 0, + 0, + 0 + ], + [ + 177, + 10, + 184, + 6, + 5, + 0, + 0, + 0 + ], + [ + 179, + 23, + 182, + 10, + 4, + 0, + 0, + 0 + ], + [ + 182, + 10, + 184, + 6, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC4stop10unregisterySb_tFZSSyXEfu_", + "count": 5, + "regions": [ + [ + 170, + 25, + 170, + 66, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6KituraAAC4stop10unregisterySb_tFZSSyXEfu0_", + "count": 3, + "regions": [ + [ + 175, + 25, + 175, + 69, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Kitura.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC16MimeTypeAcceptorC03getdE033_CF6D7D6CB5758685B2264DFB88DF0814LL12forExtensionS2S_tFZ", + "count": 256, + "regions": [ + [ + 27, + 77, + 32, + 10, + 256, + 0, + 0, + 0 + ], + [ + 28, + 92, + 30, + 14, + 124, + 0, + 0, + 0 + ], + [ + 30, + 14, + 31, + 23, + 132, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/MimeTypeAcceptor.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC16MimeTypeAcceptorC5parse33_CF6D7D6CB5758685B2264DFB88DF0814LL05mediaE0SS4type_Sd6qValueSS01qQ3RawtSS_tFZ", + "count": 266, + "regions": [ + [ + 40, + 81, + 59, + 10, + 266, + 0, + 0, + 0 + ], + [ + 45, + 49, + 47, + 14, + 266, + 0, + 0, + 0 + ], + [ + 47, + 14, + 59, + 10, + 266, + 0, + 0, + 0 + ], + [ + 49, + 50, + 56, + 14, + 266, + 0, + 0, + 0 + ], + [ + 52, + 51, + 55, + 18, + 176, + 0, + 0, + 0 + ], + [ + 55, + 18, + 56, + 14, + 266, + 0, + 0, + 0 + ], + [ + 56, + 14, + 58, + 32, + 266, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/MimeTypeAcceptor.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC16MimeTypeAcceptorC7accepts12headerValues5types15matchAllPatternSSSgSaySSG_AKSStFZ", + "count": 54, + "regions": [ + [ + 68, + 106, + 86, + 10, + 54, + 0, + 0, + 0 + ], + [ + 82, + 52, + 84, + 14, + 44, + 0, + 0, + 0 + ], + [ + 84, + 14, + 85, + 23, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/MimeTypeAcceptor.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC16MimeTypeAcceptorC7accepts12headerValues5types15matchAllPatternSSSgSaySSG_AKSStFZSbSS3key_Si8priority_Sd6qValueSS01qP3RawSi0H5Ordert5valuet_SSAL_SiAM_SdANSSAOSiAPtAQttXEfU_", + "count": 22, + "regions": [ + [ + 72, + 63, + 80, + 14, + 22, + 0, + 0, + 0 + ], + [ + 73, + 51, + 75, + 18, + 14, + 0, + 0, + 0 + ], + [ + 75, + 18, + 80, + 14, + 8, + 0, + 0, + 0 + ], + [ + 75, + 60, + 77, + 18, + 8, + 0, + 0, + 0 + ], + [ + 77, + 18, + 80, + 14, + 0, + 0, + 0, + 0 + ], + [ + 77, + 24, + 79, + 18, + 0, + 0, + 0, + 0 + ], + [ + 79, + 18, + 80, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/MimeTypeAcceptor.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC16MimeTypeAcceptorC11handleMatch33_CF6D7D6CB5758685B2264DFB88DF0814LL14rawHeaderValue4type15matchAllPattern15criteriaMatches11headerOrderySS_S2SSDySSSi8priority_Sd01qR0SS01qR3RawSiALtGzSitFZ03setH0L_12withPriorityAnO2inySi_SdSSAPztF", + "count": 76, + "regions": [ + [ + 113, + 133, + 115, + 14, + 76, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/MimeTypeAcceptor.swift" + ] + }, + { + "name": "__ntd_RouteRegex_line:26:8", + "count": 1, + "regions": [ + [ + 36, + 20, + 46, + 6, + 1, + 0, + 0, + 0 + ], + [ + 37, + 12, + 42, + 10, + 1, + 0, + 0, + 0 + ], + [ + 42, + 17, + 45, + 10, + 0, + 0, + 0, + 0 + ], + [ + 45, + 10, + 46, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexCACyc33_7E5DC2985B10CD845DDB5D446264D3B9LlfcSSyXEfu_", + "count": 0, + "regions": [ + [ + 43, + 23, + 43, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC05buildC011fromPattern17allowPartialMatchSo19NSRegularExpressionCSg_SbSaySSGSgtSSSg_SbtF", + "count": 2833, + "regions": [ + [ + 54, + 128, + 93, + 6, + 2833, + 0, + 0, + 0 + ], + [ + 55, + 46, + 57, + 10, + 369, + 0, + 0, + 0 + ], + [ + 57, + 10, + 93, + 6, + 2464, + 0, + 0, + 0 + ], + [ + 60, + 74, + 62, + 10, + 2193, + 0, + 0, + 0 + ], + [ + 62, + 10, + 93, + 6, + 271, + 0, + 0, + 0 + ], + [ + 70, + 27, + 73, + 10, + 851, + 0, + 0, + 0 + ], + [ + 73, + 10, + 93, + 6, + 271, + 0, + 0, + 0 + ], + [ + 75, + 30, + 79, + 10, + 70, + 0, + 0, + 0 + ], + [ + 79, + 10, + 93, + 6, + 271, + 0, + 0, + 0 + ], + [ + 79, + 16, + 83, + 10, + 201, + 0, + 0, + 0 + ], + [ + 83, + 10, + 93, + 6, + 271, + 0, + 0, + 0 + ], + [ + 86, + 12, + 88, + 10, + 271, + 0, + 0, + 0 + ], + [ + 88, + 17, + 90, + 10, + 0, + 0, + 0, + 0 + ], + [ + 90, + 10, + 92, + 36, + 271, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC05buildC011fromPattern17allowPartialMatchSo19NSRegularExpressionCSg_SbSaySSGSgtSSSg_SbtFSSyXEfu_", + "count": 0, + "regions": [ + [ + 89, + 23, + 89, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC10handlePath_8regexStr4keys11nonKeyIndexSSAE_SaySSGAFSiAGtSS_SSAHSitF", + "count": 851, + "regions": [ + [ + 96, + 62, + 119, + 6, + 851, + 0, + 0, + 0 + ], + [ + 102, + 30, + 104, + 14, + 268, + 0, + 0, + 0 + ], + [ + 104, + 14, + 119, + 6, + 583, + 0, + 0, + 0 + ], + [ + 110, + 25, + 113, + 14, + 282, + 0, + 0, + 0 + ], + [ + 113, + 14, + 119, + 6, + 583, + 0, + 0, + 0 + ], + [ + 113, + 20, + 115, + 14, + 301, + 0, + 0, + 0 + ], + [ + 115, + 14, + 118, + 49, + 583, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC17matchRangesInPath_11nonKeyIndex4keysSb0D0_SS6prefixSS0D3ExpSS13plusQuestStartSS_SizSaySSGztF", + "count": 583, + "regions": [ + [ + 122, + 80, + 157, + 6, + 583, + 0, + 0, + 0 + ], + [ + 128, + 29, + 131, + 14, + 2, + 0, + 0, + 0 + ], + [ + 131, + 14, + 157, + 6, + 581, + 0, + 0, + 0 + ], + [ + 136, + 88, + 145, + 14, + 255, + 0, + 0, + 0 + ], + [ + 145, + 14, + 157, + 6, + 581, + 0, + 0, + 0 + ], + [ + 145, + 101, + 154, + 14, + 25, + 0, + 0, + 0 + ], + [ + 154, + 14, + 156, + 62, + 581, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC7extract8fromPath4with2at2toySo8NSStringC_So20NSTextCheckingResultCSiSSztF", + "count": 840, + "regions": [ + [ + 160, + 43, + 166, + 6, + 840, + 0, + 0, + 0 + ], + [ + 163, + 68, + 165, + 10, + 353, + 0, + 0, + 0 + ], + [ + 165, + 10, + 166, + 6, + 840, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC7extract8fromPath4with2at2toySo8NSStringC_So20NSTextCheckingResultCSiSSztFSbyKXEfu_", + "count": 353, + "regions": [ + [ + 163, + 47, + 163, + 67, + 353, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "$s6Kitura10RouteRegexC017getStringToAppendfC013plusQuestStar6prefix8matchExpS2S_S2StF", + "count": 282, + "regions": [ + [ + 169, + 63, + 188, + 6, + 282, + 0, + 0, + 0 + ], + [ + 173, + 9, + 174, + 59, + 13, + 0, + 0, + 0 + ], + [ + 175, + 9, + 179, + 47, + 12, + 0, + 0, + 0 + ], + [ + 176, + 32, + 178, + 14, + 12, + 0, + 0, + 0 + ], + [ + 178, + 14, + 179, + 50, + 0, + 0, + 0, + 0 + ], + [ + 180, + 9, + 184, + 62, + 13, + 0, + 0, + 0 + ], + [ + 181, + 32, + 183, + 14, + 13, + 0, + 0, + 0 + ], + [ + 183, + 14, + 184, + 67, + 0, + 0, + 0, + 0 + ], + [ + 185, + 9, + 186, + 47, + 244, + 0, + 0, + 0 + ], + [ + 187, + 10, + 188, + 6, + 282, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouteRegex.swift" + ] + }, + { + "name": "__ntd_Router_line:35:8", + "count": 550, + "regions": [ + [ + 95, + 80, + 101, + 6, + 550, + 0, + 0, + 0 + ], + [ + 98, + 55, + 98, + 75, + 520, + 0, + 0, + 0 + ], + [ + 98, + 78, + 98, + 81, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC15mergeParameters17enableWelcomePageACSb_SbtcfcSSyXEfu_", + "count": 196, + "regions": [ + [ + 100, + 21, + 100, + 41, + 196, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13routingHelper_7pattern7handlerAcA0B6MethodO_SSSgSayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1905, + "regions": [ + [ + 103, + 102, + 109, + 6, + 1905, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13routingHelper_7pattern17allowPartialMatch10middlewareAcA0B6MethodO_SSSgSbSayAA0B10Middleware_pGtF", + "count": 920, + "regions": [ + [ + 111, + 140, + 118, + 6, + 920, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11swaggerJSONSSSgvg", + "count": 9, + "regions": [ + [ + 128, + 37, + 134, + 6, + 9, + 0, + 0, + 0 + ], + [ + 129, + 12, + 131, + 10, + 9, + 0, + 0, + 0 + ], + [ + 131, + 17, + 133, + 10, + 0, + 0, + 0, + 0 + ], + [ + 133, + 10, + 134, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8encodersSDyAA9MediaTypeV0A9Contracts11BodyEncoder_pycGvpfiAgH_pycfU_", + "count": 170, + "regions": [ + [ + 155, + 67, + 155, + 89, + 170, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8decodersSDyAA9MediaTypeV0A9Contracts11BodyDecoder_pycGvpfiAgH_pycfU_", + "count": 102, + "regions": [ + [ + 186, + 67, + 186, + 89, + 102, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8decodersSDyAA9MediaTypeV0A9Contracts11BodyDecoder_pycGvpfiAgH_pycfU0_", + "count": 14, + "regions": [ + [ + 186, + 104, + 186, + 127, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9viewsPathSSvW", + "count": 2, + "regions": [ + [ + 200, + 16, + 204, + 10, + 2, + 0, + 0, + 0 + ], + [ + 201, + 56, + 203, + 14, + 2, + 0, + 0, + 0 + ], + [ + 203, + 14, + 204, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3add14templateEngine17forFileExtensions010useDefaultG9Extensiony0a8TemplateE00lE0_p_SaySSGSbtF", + "count": 21, + "regions": [ + [ + 225, + 59, + 233, + 6, + 21, + 0, + 0, + 0 + ], + [ + 226, + 36, + 228, + 10, + 19, + 0, + 0, + 0 + ], + [ + 228, + 10, + 233, + 6, + 21, + 0, + 0, + 0 + ], + [ + 229, + 45, + 231, + 10, + 8, + 0, + 0, + 0 + ], + [ + 231, + 10, + 233, + 6, + 21, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10setDefault14templateEnginey0a8TemplateF00gF0_pSg_tF", + "count": 12, + "regions": [ + [ + 247, + 61, + 254, + 6, + 12, + 0, + 0, + 0 + ], + [ + 248, + 48, + 252, + 10, + 12, + 0, + 0, + 0 + ], + [ + 252, + 10, + 254, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC12setRootPaths33_48D2702B8CA080B647854755F03BA930LL17forTemplateEnginey0amN00mN0_p_tF", + "count": 23, + "regions": [ + [ + 256, + 81, + 259, + 6, + 23, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6render8template7context7optionsS2S_SDySSypG0A14TemplateEngine16RenderingOptions_ptKF", + "count": 18, + "regions": [ + [ + 271, + 95, + 279, + 6, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6render8template4with6forKey7optionsS2S_xSSSg0A14TemplateEngine16RenderingOptions_ptKSERzlF", + "count": 20, + "regions": [ + [ + 293, + 95, + 300, + 6, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC020getTemplateEngineForD033_48D2702B8CA080B647854755F03BA930LL8template17optionalExtension0adE00dE0_pSS_SSSgtKF", + "count": 38, + "regions": [ + [ + 302, + 118, + 316, + 6, + 38, + 0, + 0, + 0 + ], + [ + 304, + 58, + 306, + 10, + 2, + 0, + 0, + 0 + ], + [ + 306, + 10, + 316, + 6, + 36, + 0, + 0, + 0 + ], + [ + 308, + 79, + 314, + 10, + 6, + 0, + 0, + 0 + ], + [ + 309, + 38, + 311, + 14, + 2, + 0, + 0, + 0 + ], + [ + 311, + 14, + 313, + 89, + 4, + 0, + 0, + 0 + ], + [ + 314, + 10, + 315, + 30, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC21buildAbsoluteFilePath33_48D2702B8CA080B647854755F03BA930LL4withS2S_tF", + "count": 30, + "regions": [ + [ + 318, + 86, + 328, + 6, + 30, + 0, + 0, + 0 + ], + [ + 320, + 89, + 322, + 10, + 30, + 0, + 0, + 0 + ], + [ + 322, + 10, + 328, + 6, + 30, + 0, + 0, + 0 + ], + [ + 322, + 16, + 325, + 10, + 0, + 0, + 0, + 0 + ], + [ + 325, + 10, + 327, + 83, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC21buildAbsoluteFilePath33_48D2702B8CA080B647854755F03BA930LL4withS2S_tFSSyXEfu_", + "count": 0, + "regions": [ + [ + 323, + 25, + 323, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC17getTemplateEngine8template0adE00dE0_pSgSS_tF", + "count": 50, + "regions": [ + [ + 330, + 65, + 338, + 6, + 50, + 0, + 0, + 0 + ], + [ + 333, + 86, + 335, + 10, + 2, + 0, + 0, + 0 + ], + [ + 335, + 10, + 337, + 46, + 48, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC18calculateExtension33_48D2702B8CA080B647854755F03BA930LL8templateSSSg04fileD0_SS012resourceWithD0tSS_tF", + "count": 88, + "regions": [ + [ + 341, + 114, + 359, + 6, + 88, + 0, + 0, + 0 + ], + [ + 345, + 52, + 347, + 10, + 2, + 0, + 0, + 0 + ], + [ + 347, + 10, + 359, + 6, + 86, + 0, + 0, + 0 + ], + [ + 349, + 38, + 353, + 10, + 4, + 0, + 0, + 0 + ], + [ + 353, + 10, + 359, + 6, + 86, + 0, + 0, + 0 + ], + [ + 353, + 16, + 356, + 10, + 82, + 0, + 0, + 0 + ], + [ + 356, + 10, + 358, + 92, + 86, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC18calculateExtension33_48D2702B8CA080B647854755F03BA930LL8templateSSSg04fileD0_SS012resourceWithD0tSS_tFSSyKXEfu_", + "count": 4, + "regions": [ + [ + 350, + 59, + 350, + 61, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5route_15mergeParameters17allowPartialMatchACSS_S2btF", + "count": 159, + "regions": [ + [ + 379, + 113, + 384, + 6, + 159, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9parameter_7handlerACSS_yAA0B7RequestC_AA0B8ResponseCSSyyctKcdtF", + "count": 2, + "regions": [ + [ + 417, + 89, + 419, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9parameter_7handlerACSaySSG_yAA0B7RequestC_AA0B8ResponseCSSyyctKcdtF", + "count": 1, + "regions": [ + [ + 447, + 92, + 449, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9parameter_8handlersACSaySSG_SayyAA0B7RequestC_AA0B8ResponseCSSyyctKcGtF", + "count": 6, + "regions": [ + [ + 485, + 92, + 494, + 6, + 6, + 0, + 0, + 0 + ], + [ + 486, + 27, + 492, + 10, + 6, + 0, + 0, + 0 + ], + [ + 487, + 52, + 489, + 14, + 6, + 0, + 0, + 0 + ], + [ + 489, + 14, + 492, + 10, + 6, + 0, + 0, + 0 + ], + [ + 489, + 20, + 491, + 14, + 0, + 0, + 0, + 0 + ], + [ + 491, + 14, + 492, + 10, + 6, + 0, + 0, + 0 + ], + [ + 492, + 10, + 493, + 20, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctKF", + "count": 96, + "regions": [ + [ + 513, + 109, + 542, + 6, + 96, + 0, + 0, + 0 + ], + [ + 514, + 61, + 518, + 10, + 0, + 0, + 0, + 0 + ], + [ + 518, + 10, + 542, + 6, + 96, + 0, + 0, + 0 + ], + [ + 520, + 38, + 534, + 10, + 92, + 0, + 0, + 0 + ], + [ + 526, + 72, + 530, + 14, + 0, + 0, + 0, + 0 + ], + [ + 530, + 14, + 534, + 10, + 92, + 0, + 0, + 0 + ], + [ + 534, + 10, + 542, + 6, + 96, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctKFSSyXEfu_", + "count": 0, + "regions": [ + [ + 515, + 23, + 515, + 84, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctKFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 527, + 27, + 527, + 58, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctKFSbyKXEfu0_", + "count": 82, + "regions": [ + [ + 526, + 38, + 526, + 66, + 82, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctKFyycfU_", + "count": 60, + "regions": [ + [ + 537, + 55, + 541, + 10, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptF", + "count": 774, + "regions": [ + [ + 556, + 74, + 594, + 6, + 774, + 0, + 0, + 0 + ], + [ + 558, + 125, + 560, + 10, + 764, + 0, + 0, + 0 + ], + [ + 560, + 10, + 594, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptFyycfU_", + "count": 644, + "regions": [ + [ + 567, + 57, + 593, + 10, + 644, + 0, + 0, + 0 + ], + [ + 568, + 46, + 571, + 14, + 0, + 0, + 0, + 0 + ], + [ + 571, + 14, + 593, + 10, + 644, + 0, + 0, + 0 + ], + [ + 572, + 48, + 575, + 14, + 0, + 0, + 0, + 0 + ], + [ + 575, + 14, + 593, + 10, + 644, + 0, + 0, + 0 + ], + [ + 576, + 50, + 579, + 14, + 0, + 0, + 0, + 0 + ], + [ + 579, + 14, + 593, + 10, + 644, + 0, + 0, + 0 + ], + [ + 580, + 16, + 589, + 14, + 644, + 0, + 0, + 0 + ], + [ + 581, + 49, + 588, + 18, + 548, + 0, + 0, + 0 + ], + [ + 582, + 91, + 584, + 22, + 66, + 0, + 0, + 0 + ], + [ + 584, + 22, + 588, + 18, + 548, + 0, + 0, + 0 + ], + [ + 585, + 53, + 587, + 22, + 482, + 0, + 0, + 0 + ], + [ + 587, + 22, + 588, + 18, + 548, + 0, + 0, + 0 + ], + [ + 588, + 18, + 589, + 14, + 644, + 0, + 0, + 0 + ], + [ + 589, + 21, + 592, + 14, + 0, + 0, + 0, + 0 + ], + [ + 592, + 14, + 593, + 10, + 644, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptFyycfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 569, + 27, + 569, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptFyycfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 573, + 27, + 573, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptFyycfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 577, + 27, + 577, + 69, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptFyycfU_SbyKXEfu2_", + "count": 66, + "regions": [ + [ + 582, + 62, + 582, + 90, + 66, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6handle7request8responsey0A3Net13ServerRequest_p_AG0G8Response_ptFyycfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 591, + 27, + 591, + 66, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7process33_48D2702B8CA080B647854755F03BA930LL7request8response8callbackyAA0B7RequestC_AA0B8ResponseCyyctFSSyXEfu_", + "count": 0, + "regions": [ + [ + 606, + 23, + 606, + 85, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "$s6Kitura6RouterC19sendDefaultResponse33_48D2702B8CA080B647854755F03BA930LL7request8responseyAA0B7RequestC_AA0bE0CtFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 640, + 27, + 640, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Router.swift" + ] + }, + { + "name": "__ntd_RouterElement_line:23:1", + "count": 2825, + "regions": [ + [ + 62, + 73, + 72, + 6, + 2825, + 0, + 0, + 0 + ], + [ + 64, + 58, + 64, + 65, + 2749, + 0, + 0, + 0 + ], + [ + 64, + 68, + 64, + 89, + 76, + 0, + 0, + 0 + ], + [ + 76, + 53, + 80, + 6, + 1905, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC6method7pattern10middleware17allowPartialMatch15mergeParametersAcA0B6MethodO_SSSgSayAA0B10Middleware_pGS2btcfcSbyKXEfu_", + "count": 369, + "regions": [ + [ + 64, + 51, + 64, + 55, + 369, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC6method7pattern10middleware17allowPartialMatch15mergeParametersAcA0B6MethodO_SSSgSayAA0B10Middleware_pGS2btcfcSSyKXEfu0_", + "count": 0, + "regions": [ + [ + 64, + 86, + 64, + 88, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC6method7pattern7handler15mergeParametersAcA0B6MethodO_SSSgSayyAA0B7RequestC_AA0B8ResponseCyyctKcGSbtcfcAA0B10Middleware_pyAL_ANyyctKcXEfU_", + "count": 1967, + "regions": [ + [ + 78, + 43, + 78, + 83, + 1967, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctF", + "count": 6548, + "regions": [ + [ + 92, + 136, + 138, + 6, + 6548, + 0, + 0, + 0 + ], + [ + 93, + 58, + 97, + 10, + 0, + 0, + 0, + 0 + ], + [ + 97, + 10, + 138, + 6, + 6548, + 0, + 0, + 0 + ], + [ + 100, + 93, + 103, + 10, + 1920, + 0, + 0, + 0 + ], + [ + 103, + 10, + 138, + 6, + 4628, + 0, + 0, + 0 + ], + [ + 106, + 36, + 109, + 10, + 3886, + 0, + 0, + 0 + ], + [ + 109, + 10, + 138, + 6, + 742, + 0, + 0, + 0 + ], + [ + 112, + 38, + 119, + 10, + 50, + 0, + 0, + 0 + ], + [ + 115, + 52, + 115, + 70, + 2, + 0, + 0, + 0 + ], + [ + 115, + 73, + 115, + 76, + 48, + 0, + 0, + 0 + ], + [ + 119, + 10, + 138, + 6, + 692, + 0, + 0, + 0 + ], + [ + 124, + 121, + 127, + 10, + 424, + 0, + 0, + 0 + ], + [ + 127, + 10, + 138, + 6, + 268, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctFSSyXEfu_", + "count": 0, + "regions": [ + [ + 94, + 23, + 94, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctFSbyKXEfu0_", + "count": 66, + "regions": [ + [ + 99, + 41, + 99, + 57, + 66, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctFSbyKXEfu1_", + "count": 6540, + "regions": [ + [ + 100, + 16, + 100, + 87, + 6540, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctFSbyKXEfu1_SbyKXEfu2_", + "count": 6482, + "regions": [ + [ + 100, + 42, + 100, + 86, + 6482, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctFSbyKXEfu1_SbyKXEfu2_SbyKXEfu3_", + "count": 3516, + "regions": [ + [ + 100, + 71, + 100, + 85, + 3516, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC7process7request8response15parameterWalker4nextyAA0B7RequestC_AA0B8ResponseCAA0b9ParameterH0CyyctFyycfU_", + "count": 266, + "regions": [ + [ + 135, + 70, + 137, + 10, + 266, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC18performSimpleMatch33_87A850EB8112F17CB7B6B134A8F81A90LL4path7request8response4nextySS_AA0B7RequestCAA0B8ResponseCyyctF", + "count": 3886, + "regions": [ + [ + 149, + 129, + 184, + 6, + 3886, + 0, + 0, + 0 + ], + [ + 150, + 42, + 153, + 10, + 0, + 0, + 0, + 0 + ], + [ + 153, + 10, + 184, + 6, + 3886, + 0, + 0, + 0 + ], + [ + 155, + 42, + 155, + 45, + 16, + 0, + 0, + 0 + ], + [ + 155, + 48, + 155, + 52, + 3870, + 0, + 0, + 0 + ], + [ + 159, + 30, + 168, + 10, + 1040, + 0, + 0, + 0 + ], + [ + 161, + 42, + 166, + 14, + 118, + 0, + 0, + 0 + ], + [ + 163, + 53, + 165, + 18, + 86, + 0, + 0, + 0 + ], + [ + 165, + 18, + 166, + 14, + 118, + 0, + 0, + 0 + ], + [ + 166, + 14, + 168, + 10, + 1040, + 0, + 0, + 0 + ], + [ + 167, + 75, + 167, + 82, + 118, + 0, + 0, + 0 + ], + [ + 167, + 85, + 167, + 87, + 922, + 0, + 0, + 0 + ], + [ + 168, + 10, + 184, + 6, + 3886, + 0, + 0, + 0 + ], + [ + 169, + 14, + 172, + 10, + 2846, + 0, + 0, + 0 + ], + [ + 171, + 37, + 171, + 48, + 446, + 0, + 0, + 0 + ], + [ + 171, + 51, + 171, + 53, + 2400, + 0, + 0, + 0 + ], + [ + 172, + 10, + 184, + 6, + 3886, + 0, + 0, + 0 + ], + [ + 174, + 20, + 180, + 10, + 658, + 0, + 0, + 0 + ], + [ + 177, + 52, + 177, + 70, + 28, + 0, + 0, + 0 + ], + [ + 177, + 73, + 177, + 76, + 630, + 0, + 0, + 0 + ], + [ + 180, + 10, + 184, + 6, + 3886, + 0, + 0, + 0 + ], + [ + 181, + 14, + 183, + 10, + 3228, + 0, + 0, + 0 + ], + [ + 183, + 10, + 184, + 6, + 3886, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC18performSimpleMatch33_87A850EB8112F17CB7B6B134A8F81A90LL4path7request8response4nextySS_AA0B7RequestCAA0B8ResponseCyyctFSbyKXEfu_", + "count": 212, + "regions": [ + [ + 161, + 27, + 161, + 41, + 212, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC18performSimpleMatch33_87A850EB8112F17CB7B6B134A8F81A90LL4path7request8response4nextySS_AA0B7RequestCAA0B8ResponseCyyctFSbyKXEfu0_", + "count": 212, + "regions": [ + [ + 167, + 38, + 167, + 54, + 212, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC18performSimpleMatch33_87A850EB8112F17CB7B6B134A8F81A90LL4path7request8response4nextySS_AA0B7RequestCAA0B8ResponseCyyctFSbyKXEfu1_", + "count": 212, + "regions": [ + [ + 167, + 58, + 167, + 72, + 212, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC13processHelper33_87A850EB8112F17CB7B6B134A8F81A90LL7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctF", + "count": 974, + "regions": [ + [ + 191, + 110, + 194, + 6, + 974, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC13setParameters33_87A850EB8112F17CB7B6B134A8F81A90LL10forRequest11fromUrlPath5matchyAA0bP0C_So8NSStringCSo20NSTextCheckingResultCtF", + "count": 268, + "regions": [ + [ + 200, + 127, + 219, + 6, + 268, + 0, + 0, + 0 + ], + [ + 201, + 44, + 201, + 62, + 4, + 0, + 0, + 0 + ], + [ + 201, + 65, + 201, + 68, + 264, + 0, + 0, + 0 + ], + [ + 203, + 28, + 217, + 10, + 268, + 0, + 0, + 0 + ], + [ + 204, + 41, + 216, + 14, + 284, + 0, + 0, + 0 + ], + [ + 207, + 87, + 215, + 18, + 258, + 0, + 0, + 0 + ], + [ + 209, + 81, + 211, + 22, + 258, + 0, + 0, + 0 + ], + [ + 211, + 22, + 215, + 18, + 258, + 0, + 0, + 0 + ], + [ + 211, + 28, + 213, + 22, + 0, + 0, + 0, + 0 + ], + [ + 213, + 22, + 215, + 18, + 258, + 0, + 0, + 0 + ], + [ + 215, + 18, + 216, + 14, + 284, + 0, + 0, + 0 + ], + [ + 216, + 14, + 217, + 10, + 268, + 0, + 0, + 0 + ], + [ + 217, + 10, + 219, + 6, + 268, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC13setParameters33_87A850EB8112F17CB7B6B134A8F81A90LL10forRequest11fromUrlPath5matchyAA0bP0C_So8NSStringCSo20NSTextCheckingResultCtFSbyKXEfu_", + "count": 258, + "regions": [ + [ + 207, + 60, + 207, + 85, + 258, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "$s6Kitura13RouterElementC13setParameters33_87A850EB8112F17CB7B6B134A8F81A90LL10forRequest11fromUrlPath5matchyAA0bP0C_So8NSStringCSo20NSTextCheckingResultCtFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 212, + 37, + 212, + 80, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElement.swift" + ] + }, + { + "name": "__ntd_RouterElementWalker_line:19:1", + "count": 866, + "regions": [ + [ + 43, + 91, + 51, + 6, + 866, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElementWalker.swift" + ] + }, + { + "name": "$s6Kitura19RouterElementWalkerC4nextyyF", + "count": 7252, + "regions": [ + [ + 54, + 17, + 70, + 6, + 7252, + 0, + 0, + 0 + ], + [ + 57, + 47, + 67, + 10, + 6548, + 0, + 0, + 0 + ], + [ + 67, + 10, + 70, + 6, + 7252, + 0, + 0, + 0 + ], + [ + 67, + 16, + 69, + 10, + 704, + 0, + 0, + 0 + ], + [ + 69, + 10, + 70, + 6, + 7252, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElementWalker.swift" + ] + }, + { + "name": "$s6Kitura19RouterElementWalkerC4nextyyFyycfU_", + "count": 6386, + "regions": [ + [ + 63, + 56, + 66, + 14, + 6386, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterElementWalker.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5erroryACyAA0B7RequestC_AA0B8ResponseCyyctKcd_tF", + "count": 35, + "regions": [ + [ + 28, + 62, + 30, + 6, + 35, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs+Error.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5erroryACSayyAA0B7RequestC_AA0B8ResponseCyyctKcGF", + "count": 35, + "regions": [ + [ + 38, + 61, + 40, + 6, + 35, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs+Error.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5erroryAcA0B10Middleware_pd_tF", + "count": 35, + "regions": [ + [ + 48, + 68, + 50, + 6, + 35, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs+Error.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5erroryACSayAA0B10Middleware_pGF", + "count": 35, + "regions": [ + [ + 58, + 67, + 60, + 6, + 35, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs+Error.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3all_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 58, + "regions": [ + [ + 31, + 79, + 33, + 6, + 58, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3all_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 44, + 78, + 46, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3all_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 795, + "regions": [ + [ + 59, + 117, + 61, + 6, + 795, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3all_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 74, + 116, + 76, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1257, + "regions": [ + [ + 88, + 79, + 90, + 6, + 1257, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 101, + 78, + 103, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 3, + "regions": [ + [ + 116, + 117, + 118, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3get_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 131, + 116, + 133, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4head_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 145, + 80, + 147, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4head_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 158, + 79, + 160, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4head_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 173, + 118, + 175, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4head_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 188, + 117, + 190, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 366, + "regions": [ + [ + 202, + 80, + 204, + 6, + 366, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 215, + 79, + 217, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 230, + 118, + 232, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4post_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 245, + 117, + 247, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 31, + "regions": [ + [ + 259, + 79, + 261, + 6, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 272, + 78, + 274, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 287, + 117, + 289, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC3put_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 302, + 116, + 304, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 55, + "regions": [ + [ + 316, + 82, + 318, + 6, + 55, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 329, + 81, + 331, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 344, + 120, + 346, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6delete_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 359, + 119, + 361, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7options_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 373, + 83, + 375, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7options_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 386, + 82, + 388, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7options_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 401, + 121, + 403, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7options_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 416, + 120, + 418, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5trace_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 430, + 81, + 432, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5trace_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 443, + 80, + 445, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5trace_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 458, + 119, + 460, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5trace_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 473, + 118, + 475, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4copy_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 487, + 80, + 489, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4copy_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 500, + 79, + 502, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4copy_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 515, + 118, + 517, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4copy_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 530, + 117, + 532, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4lock_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 544, + 80, + 546, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4lock_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 557, + 79, + 559, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4lock_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 572, + 118, + 574, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4lock_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 587, + 117, + 589, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5mkCol_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 601, + 81, + 603, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5mkCol_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 614, + 80, + 616, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5mkCol_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 629, + 119, + 631, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5mkCol_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 644, + 118, + 646, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4move_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 658, + 80, + 660, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4move_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 671, + 79, + 673, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4move_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 686, + 118, + 688, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC4move_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 701, + 117, + 703, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5purge_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 715, + 81, + 717, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5purge_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 728, + 80, + 730, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5purge_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 743, + 119, + 745, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5purge_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 758, + 118, + 760, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8propFind_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 772, + 84, + 774, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8propFind_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 785, + 83, + 787, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8propFind_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 800, + 122, + 802, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8propFind_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 815, + 121, + 817, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9propPatch_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 829, + 85, + 831, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9propPatch_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 842, + 84, + 844, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9propPatch_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 857, + 123, + 859, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9propPatch_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 872, + 122, + 874, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6unlock_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 886, + 82, + 888, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6unlock_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 899, + 81, + 901, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6unlock_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 914, + 120, + 916, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6unlock_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 929, + 119, + 931, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6report_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 943, + 82, + 945, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6report_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 956, + 81, + 958, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6report_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 971, + 120, + 973, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6report_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 986, + 119, + 988, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10mkActivity_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1000, + 86, + 1002, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10mkActivity_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1013, + 85, + 1015, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10mkActivity_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1028, + 124, + 1030, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC10mkActivity_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1043, + 123, + 1045, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8checkout_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1057, + 84, + 1059, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8checkout_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1070, + 83, + 1072, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8checkout_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1085, + 122, + 1087, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC8checkout_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1100, + 121, + 1102, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5merge_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1114, + 81, + 1116, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5merge_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1127, + 80, + 1129, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5merge_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1142, + 119, + 1144, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5merge_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1157, + 118, + 1159, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7mSearch_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1171, + 83, + 1173, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7mSearch_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1184, + 82, + 1186, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7mSearch_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1199, + 121, + 1201, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7mSearch_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1214, + 120, + 1216, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6notify_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1228, + 82, + 1230, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6notify_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1241, + 81, + 1243, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6notify_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1256, + 120, + 1258, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6notify_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1271, + 119, + 1273, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9subscribe_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1285, + 85, + 1287, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9subscribe_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1298, + 84, + 1300, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9subscribe_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1313, + 123, + 1315, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC9subscribe_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1328, + 122, + 1330, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11unsubscribe_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1342, + 87, + 1344, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11unsubscribe_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1355, + 86, + 1357, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11unsubscribe_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1370, + 125, + 1372, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC11unsubscribe_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1385, + 124, + 1387, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 20, + "regions": [ + [ + 1399, + 81, + 1401, + 6, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1412, + 80, + 1414, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1427, + 119, + 1429, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC5patch_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1442, + 118, + 1444, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6search_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1456, + 82, + 1458, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6search_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1469, + 81, + 1471, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6search_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1484, + 120, + 1486, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC6search_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1499, + 119, + 1501, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7connect_7handlerACSSSg_yAA0B7RequestC_AA0B8ResponseCyyctKcdtF", + "count": 1, + "regions": [ + [ + 1513, + 83, + 1515, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7connect_7handlerACSSSg_SayyAA0B7RequestC_AA0B8ResponseCyyctKcGtF", + "count": 1, + "regions": [ + [ + 1526, + 82, + 1528, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7connect_17allowPartialMatch10middlewareACSSSg_SbAA0B10Middleware_pdtF", + "count": 1, + "regions": [ + [ + 1541, + 121, + 1543, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s6Kitura6RouterC7connect_17allowPartialMatch10middlewareACSSSg_SbSayAA0B10Middleware_pGtF", + "count": 1, + "regions": [ + [ + 1556, + 120, + 1558, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "__ntd_RouterMethod_line:19:8", + "count": 776, + "regions": [ + [ + 111, + 32, + 113, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMethod.swift" + ] + }, + { + "name": "$s6Kitura12RouterMethodO12fromRawValueACSS_tcfcACyKXEfu_", + "count": 2, + "regions": [ + [ + 112, + 56, + 112, + 64, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMethod.swift" + ] + }, + { + "name": "$s6Kitura12RouterMethodO11descriptionSSvg", + "count": 166, + "regions": [ + [ + 119, + 36, + 121, + 6, + 166, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMethod.swift" + ] + }, + { + "name": "__ntd_RouterMiddlewareGenerator_line:20:8", + "count": 1977, + "regions": [ + [ + 29, + 51, + 31, + 6, + 1977, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareGenerator.swift" + ] + }, + { + "name": "$s6Kitura25RouterMiddlewareGeneratorC6handle7request8response4nextyAA0B7RequestC_AA0B8ResponseCyyctKF", + "count": 670, + "regions": [ + [ + 42, + 109, + 44, + 6, + 670, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareGenerator.swift" + ] + }, + { + "name": "__ntd_RouterMiddlewareWalker_line:21:1", + "count": 974, + "regions": [ + [ + 44, + 147, + 51, + 6, + 974, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift" + ] + }, + { + "name": "$s6Kitura22RouterMiddlewareWalkerC4nextyyF", + "count": 978, + "regions": [ + [ + 54, + 17, + 79, + 6, + 978, + 0, + 0, + 0 + ], + [ + 57, + 95, + 76, + 10, + 976, + 0, + 0, + 0 + ], + [ + 58, + 16, + 68, + 14, + 976, + 0, + 0, + 0 + ], + [ + 59, + 72, + 59, + 80, + 974, + 0, + 0, + 0 + ], + [ + 68, + 21, + 74, + 14, + 2, + 0, + 0, + 0 + ], + [ + 74, + 14, + 76, + 10, + 976, + 0, + 0, + 0 + ], + [ + 76, + 10, + 79, + 6, + 978, + 0, + 0, + 0 + ], + [ + 76, + 16, + 78, + 10, + 2, + 0, + 0, + 0 + ], + [ + 78, + 10, + 79, + 6, + 978, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift" + ] + }, + { + "name": "$s6Kitura22RouterMiddlewareWalkerC4nextyyFSbyKXEfu_", + "count": 976, + "regions": [ + [ + 57, + 51, + 57, + 94, + 976, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift" + ] + }, + { + "name": "$s6Kitura22RouterMiddlewareWalkerC4nextyyFSbyKXEfu_SbyKXEfu0_", + "count": 8, + "regions": [ + [ + 57, + 77, + 57, + 93, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift" + ] + }, + { + "name": "$s6Kitura22RouterMiddlewareWalkerC4nextyyFyycfU_", + "count": 2, + "regions": [ + [ + 59, + 83, + 62, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift" + ] + }, + { + "name": "$s6Kitura22RouterMiddlewareWalkerC4nextyyFSSyXEfu1_", + "count": 2, + "regions": [ + [ + 72, + 27, + 72, + 37, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterMiddlewareWalker.swift" + ] + }, + { + "name": "__ntd_RouterParameterWalker_line:49:1", + "count": 866, + "regions": [ + [ + 54, + 57, + 56, + 6, + 866, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle7request8response4withyAA0B7RequestC_AA0B8ResponseCyyctF", + "count": 268, + "regions": [ + [ + 66, + 104, + 77, + 6, + 268, + 0, + 0, + 0 + ], + [ + 67, + 53, + 70, + 10, + 252, + 0, + 0, + 0 + ], + [ + 70, + 10, + 77, + 6, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle7request8response4withyAA0B7RequestC_AA0B8ResponseCyyctFSbSS_SStXEfU_", + "count": 24, + "regions": [ + [ + 72, + 50, + 74, + 14, + 24, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle7request8response4withyAA0B7RequestC_AA0B8ResponseCyyctFSbSS_SStXEfU_SbyKXEfu_", + "count": 16, + "regions": [ + [ + 73, + 58, + 73, + 103, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle7request8response4withyAA0B7RequestC_AA0B8ResponseCyyctFSS_SStSS_SStXEfU0_", + "count": 16, + "regions": [ + [ + 74, + 19, + 74, + 31, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle33_66D32EA614A6A47C325447B46722757BLL8filtered7request8response4withySaySS_SStG_AA0B7RequestCAA0B8ResponseCyyctF", + "count": 50, + "regions": [ + [ + 79, + 142, + 105, + 6, + 50, + 0, + 0, + 0 + ], + [ + 80, + 39, + 83, + 10, + 14, + 0, + 0, + 0 + ], + [ + 83, + 10, + 105, + 6, + 36, + 0, + 0, + 0 + ], + [ + 90, + 70, + 99, + 10, + 22, + 0, + 0, + 0 + ], + [ + 91, + 16, + 95, + 14, + 22, + 0, + 0, + 0 + ], + [ + 95, + 21, + 98, + 14, + 0, + 0, + 0, + 0 + ], + [ + 98, + 14, + 99, + 10, + 22, + 0, + 0, + 0 + ], + [ + 99, + 10, + 105, + 6, + 36, + 0, + 0, + 0 + ], + [ + 99, + 16, + 104, + 10, + 14, + 0, + 0, + 0 + ], + [ + 104, + 10, + 105, + 6, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle33_66D32EA614A6A47C325447B46722757BLL8filtered7request8response4withySaySS_SStG_AA0B7RequestCAA0B8ResponseCyyctFSiyKXEfu_", + "count": 0, + "regions": [ + [ + 89, + 52, + 89, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura21RouterParameterWalkerC6handle33_66D32EA614A6A47C325447B46722757BLL8filtered7request8response4withySaySS_SStG_AA0B7RequestCAA0B8ResponseCyyctFyycfU_", + "count": 20, + "regions": [ + [ + 92, + 55, + 94, + 18, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterParameterWalker.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC8hostnameSSvg", + "count": 44, + "regions": [ + [ + 52, + 33, + 54, + 6, + 44, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC8hostnameSSvgSSyKXEfu_", + "count": 0, + "regions": [ + [ + 53, + 31, + 53, + 33, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC4portSivg", + "count": 2, + "regions": [ + [ + 57, + 26, + 59, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC4portSivgSiyKXEfu_", + "count": 0, + "regions": [ + [ + 58, + 31, + 58, + 68, + 0, + 0, + 0, + 0 + ], + [ + 58, + 59, + 58, + 62, + 0, + 0, + 0, + 0 + ], + [ + 58, + 65, + 58, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "__ntd_RouterRequest_line:41:8", + "count": 774, + "regions": [ + [ + 203, + 57, + 210, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC6domainSSvgSSyXEfU_", + "count": 6, + "regions": [ + [ + 62, + 51, + 80, + 10, + 6, + 0, + 0, + 0 + ], + [ + 64, + 12, + 76, + 10, + 6, + 0, + 0, + 0 + ], + [ + 69, + 110, + 71, + 14, + 2, + 0, + 0, + 0 + ], + [ + 71, + 14, + 75, + 74, + 4, + 0, + 0, + 0 + ], + [ + 76, + 17, + 79, + 10, + 0, + 0, + 0, + 0 + ], + [ + 79, + 10, + 80, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC6domainSSvgSSyXEfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 77, + 23, + 77, + 81, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC10subdomainsSaySSGvgAEyXEfU_", + "count": 6, + "regions": [ + [ + 83, + 57, + 94, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC10subdomainsSaySSGvgAEyXEfU_SbSSXEfU_", + "count": 20, + "regions": [ + [ + 93, + 34, + 93, + 49, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC13remoteAddressSSvg", + "count": 2, + "regions": [ + [ + 106, + 38, + 106, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC9parsedURL0A3Net9URLParserCvgAGyXEfU_", + "count": 88, + "regions": [ + [ + 114, + 57, + 122, + 10, + 88, + 0, + 0, + 0 + ], + [ + 115, + 41, + 117, + 10, + 0, + 0, + 0, + 0 + ], + [ + 117, + 10, + 122, + 10, + 88, + 0, + 0, + 0 + ], + [ + 117, + 16, + 121, + 10, + 88, + 0, + 0, + 0 + ], + [ + 121, + 10, + 122, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC11originalURLSSvg", + "count": 0, + "regions": [ + [ + 133, + 36, + 133, + 82, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC3urlSSvg", + "count": 0, + "regions": [ + [ + 140, + 28, + 140, + 62, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC13urlComponents10Foundation13URLComponentsVvg", + "count": 0, + "regions": [ + [ + 146, + 45, + 146, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC6urlURL10Foundation0E0Vvg", + "count": 186, + "regions": [ + [ + 149, + 28, + 149, + 59, + 186, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC7cookiesSDySSSo12NSHTTPCookieCGvgAGyXEfU_", + "count": 10, + "regions": [ + [ + 160, + 53, + 162, + 10, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC15queryParametersSDyS2SGvgAEyXEfU_", + "count": 114, + "regions": [ + [ + 167, + 56, + 169, + 10, + 114, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC15queryParametersSDyS2SGvgAEyXEfU_AEyKXEfu_", + "count": 16, + "regions": [ + [ + 168, + 64, + 168, + 67, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC26queryParametersMultiValuesSDySSSaySSGGvgAFyXEfU_", + "count": 2, + "regions": [ + [ + 172, + 70, + 174, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC26queryParametersMultiValuesSDySSSaySSGGvgAFyXEfU_AFyKXEfu_", + "count": 0, + "regions": [ + [ + 173, + 69, + 173, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC18getQueryParameters2asxSgxm_t0A9Contracts0E6ParamsRzlF", + "count": 4, + "regions": [ + [ + 180, + 75, + 182, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC7request7decoderAC0A3Net06ServerC0_p_0A9Contracts11BodyDecoder_pSgtcfcs6UInt16VyKXEfu_", + "count": 0, + "regions": [ + [ + 206, + 76, + 206, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC7request7decoderAC0A3Net06ServerC0_p_0A9Contracts11BodyDecoder_pSgtcfcs6UInt16VyKXEfu0_", + "count": 0, + "regions": [ + [ + 206, + 120, + 206, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC4read4intoSi10Foundation4DataVz_tKF", + "count": 58, + "regions": [ + [ + 217, + 59, + 219, + 6, + 58, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC4read2asxxm_tKSeRzlF", + "count": 90, + "regions": [ + [ + 244, + 65, + 249, + 6, + 90, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC4read2asxxm_tKSeRzlF0A9Contracts11BodyDecoder_pyKXEfu_", + "count": 2, + "regions": [ + [ + 247, + 39, + 247, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC10readStringSSSgyKF", + "count": 2, + "regions": [ + [ + 255, + 48, + 257, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC7accepts6header5typesSSSgSS_SaySSGtF", + "count": 56, + "regions": [ + [ + 267, + 80, + 281, + 6, + 56, + 0, + 0, + 0 + ], + [ + 268, + 60, + 270, + 10, + 2, + 0, + 0, + 0 + ], + [ + 270, + 10, + 281, + 6, + 54, + 0, + 0, + 0 + ], + [ + 275, + 68, + 277, + 10, + 38, + 0, + 0, + 0 + ], + [ + 277, + 10, + 281, + 6, + 54, + 0, + 0, + 0 + ], + [ + 277, + 16, + 279, + 10, + 16, + 0, + 0, + 0 + ], + [ + 279, + 10, + 280, + 116, + 54, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC7accepts6header5typesSSSgSS_SSdtF", + "count": 32, + "regions": [ + [ + 289, + 81, + 291, + 6, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura13RouterRequestC7accepts6header4typeSSSgSS_SStF", + "count": 6, + "regions": [ + [ + 299, + 77, + 301, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterRequest.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC5StateV11invokedSendSbvW", + "count": 544, + "regions": [ + [ + 55, + 20, + 60, + 14, + 544, + 0, + 0, + 0 + ], + [ + 56, + 68, + 59, + 18, + 262, + 0, + 0, + 0 + ], + [ + 59, + 18, + 60, + 14, + 544, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC5StateV11invokedSendSbvWSbyKXEfu_", + "count": 544, + "regions": [ + [ + 56, + 35, + 56, + 67, + 544, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC9LifecycleV12onEndInvokedyycvpfiyycfU_", + "count": 774, + "regions": [ + [ + 71, + 46, + 71, + 48, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC9LifecycleV17writtenDataFiltery10Foundation0F0VAIcvpfiA2IcfU_", + "count": 774, + "regions": [ + [ + 74, + 52, + 76, + 10, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC9LifecycleV17resetOnEndInvokedyyF", + "count": 774, + "regions": [ + [ + 78, + 43, + 80, + 10, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC9LifecycleV17resetOnEndInvokedyyFyycfU_", + "count": 0, + "regions": [ + [ + 79, + 28, + 79, + 30, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC9LifecycleV22resetWrittenDataFilteryyF", + "count": 774, + "regions": [ + [ + 82, + 48, + 86, + 10, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC9LifecycleV22resetWrittenDataFilteryyF10Foundation0G0VAIcfU_", + "count": 0, + "regions": [ + [ + 83, + 33, + 85, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "__ntd_RouterResponse_line:43:8", + "count": 774, + "regions": [ + [ + 153, + 167, + 162, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC25sanitizeJSIdentifierRegex33_AB2CA9C636AD87D8911D628FEBBDC689LLSo19NSRegularExpressionCSgvpZfiAHyXEfU_", + "count": 1, + "regions": [ + [ + 111, + 78, + 118, + 6, + 1, + 0, + 0, + 0 + ], + [ + 112, + 12, + 114, + 10, + 1, + 0, + 0, + 0 + ], + [ + 114, + 17, + 117, + 10, + 0, + 0, + 0, + 0 + ], + [ + 117, + 10, + 118, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC25sanitizeJSIdentifierRegex33_AB2CA9C636AD87D8911D628FEBBDC689LLSo19NSRegularExpressionCSgvpZfiAHyXEfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 115, + 23, + 115, + 79, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC10statusCode0A3Net010HTTPStatusE0Ovg", + "count": 1876, + "regions": [ + [ + 131, + 13, + 133, + 10, + 1876, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC10statusCode0A3Net010HTTPStatusE0OvgAGyKXEfu_", + "count": 0, + "regions": [ + [ + 132, + 43, + 132, + 51, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC10statusCode0A3Net010HTTPStatusE0Ovs", + "count": 1096, + "regions": [ + [ + 135, + 23, + 137, + 10, + 1096, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseCfdSbyKXEfu_", + "count": 2, + "regions": [ + [ + 166, + 38, + 166, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseCfdSSyXEfu0_", + "count": 0, + "regions": [ + [ + 173, + 29, + 173, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseCfD", + "count": 774, + "regions": [ + [ + 164, + 12, + 176, + 6, + 774, + 0, + 0, + 0 + ], + [ + 165, + 30, + 175, + 10, + 0, + 0, + 0, + 0 + ], + [ + 166, + 61, + 168, + 14, + 0, + 0, + 0, + 0 + ], + [ + 168, + 14, + 175, + 10, + 0, + 0, + 0, + 0 + ], + [ + 170, + 16, + 172, + 14, + 0, + 0, + 0, + 0 + ], + [ + 172, + 21, + 174, + 14, + 0, + 0, + 0, + 0 + ], + [ + 174, + 14, + 175, + 10, + 0, + 0, + 0, + 0 + ], + [ + 175, + 10, + 176, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC3endyyKF", + "count": 778, + "regions": [ + [ + 183, + 30, + 213, + 6, + 778, + 0, + 0, + 0 + ], + [ + 184, + 38, + 187, + 10, + 4, + 0, + 0, + 0 + ], + [ + 187, + 10, + 213, + 6, + 774, + 0, + 0, + 0 + ], + [ + 192, + 35, + 194, + 10, + 2, + 0, + 0, + 0 + ], + [ + 194, + 10, + 213, + 6, + 774, + 0, + 0, + 0 + ], + [ + 200, + 34, + 202, + 10, + 774, + 0, + 0, + 0 + ], + [ + 202, + 10, + 213, + 6, + 774, + 0, + 0, + 0 + ], + [ + 204, + 30, + 206, + 10, + 4, + 0, + 0, + 0 + ], + [ + 206, + 10, + 213, + 6, + 774, + 0, + 0, + 0 + ], + [ + 208, + 37, + 210, + 10, + 772, + 0, + 0, + 0 + ], + [ + 210, + 10, + 213, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC3endyyKFSSyXEfu_", + "count": 4, + "regions": [ + [ + 185, + 25, + 185, + 97, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC10addCookies33_AB2CA9C636AD87D8911D628FEBBDC689LLyyF", + "count": 4, + "regions": [ + [ + 216, + 31, + 232, + 6, + 4, + 0, + 0, + 0 + ], + [ + 219, + 37, + 230, + 10, + 6, + 0, + 0, + 0 + ], + [ + 221, + 54, + 223, + 14, + 2, + 0, + 0, + 0 + ], + [ + 223, + 14, + 230, + 10, + 6, + 0, + 0, + 0 + ], + [ + 225, + 33, + 227, + 14, + 2, + 0, + 0, + 0 + ], + [ + 227, + 14, + 230, + 10, + 6, + 0, + 0, + 0 + ], + [ + 230, + 10, + 232, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC06selectC7Encoder33_AB2CA9C636AD87D8911D628FEBBDC689LLyAA9MediaTypeV_0A9Contracts04BodyE0_ptAA0B7RequestCF", + "count": 124, + "regions": [ + [ + 246, + 94, + 270, + 6, + 124, + 0, + 0, + 0 + ], + [ + 251, + 35, + 257, + 10, + 122, + 0, + 0, + 0 + ], + [ + 252, + 72, + 254, + 14, + 122, + 0, + 0, + 0 + ], + [ + 254, + 14, + 257, + 10, + 0, + 0, + 0, + 0 + ], + [ + 254, + 20, + 256, + 14, + 0, + 0, + 0, + 0 + ], + [ + 256, + 14, + 257, + 10, + 0, + 0, + 0, + 0 + ], + [ + 257, + 10, + 270, + 6, + 2, + 0, + 0, + 0 + ], + [ + 262, + 18, + 268, + 10, + 0, + 0, + 0, + 0 + ], + [ + 263, + 76, + 265, + 18, + 0, + 0, + 0, + 0 + ], + [ + 265, + 18, + 268, + 10, + 0, + 0, + 0, + 0 + ], + [ + 265, + 24, + 267, + 18, + 0, + 0, + 0, + 0 + ], + [ + 267, + 18, + 268, + 10, + 0, + 0, + 0, + 0 + ], + [ + 268, + 10, + 269, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC06selectC7Encoder33_AB2CA9C636AD87D8911D628FEBBDC689LLyAA9MediaTypeV_0A9Contracts04BodyE0_ptAA0B7RequestCFSbyKXEfu_", + "count": 6, + "regions": [ + [ + 249, + 13, + 249, + 32, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC06selectC7Encoder33_AB2CA9C636AD87D8911D628FEBBDC689LLyAA9MediaTypeV_0A9Contracts04BodyE0_ptAA0B7RequestCFSbyKXEfu0_", + "count": 6, + "regions": [ + [ + 250, + 13, + 250, + 32, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC06selectC7Encoder33_AB2CA9C636AD87D8911D628FEBBDC689LLyAA9MediaTypeV_0A9Contracts04BodyE0_ptAA0B7RequestCFSbyKXEfu1_", + "count": 6, + "regions": [ + [ + 251, + 13, + 251, + 34, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC06selectC7Encoder33_AB2CA9C636AD87D8911D628FEBBDC689LLyAA9MediaTypeV_0A9Contracts04BodyE0_ptAA0B7RequestCFSSAGXEfU_", + "count": 4, + "regions": [ + [ + 258, + 60, + 258, + 78, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC6statusyAC0A3Net14HTTPStatusCodeOF", + "count": 530, + "regions": [ + [ + 279, + 68, + 282, + 6, + 530, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC8redirect_6statusACSS_0A3Net14HTTPStatusCodeOtKF", + "count": 16, + "regions": [ + [ + 293, + 111, + 297, + 6, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC6render_7context7optionsACSS_SDySSypG0A14TemplateEngine16RenderingOptions_ptKF", + "count": 6, + "regions": [ + [ + 311, + 101, + 317, + 6, + 6, + 0, + 0, + 0 + ], + [ + 312, + 76, + 314, + 10, + 0, + 0, + 0, + 0 + ], + [ + 314, + 10, + 316, + 38, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC6render_4with6forKey7optionsACSS_xSSSg0A14TemplateEngine16RenderingOptions_ptKSERzlF", + "count": 6, + "regions": [ + [ + 330, + 101, + 338, + 6, + 6, + 0, + 0, + 0 + ], + [ + 332, + 76, + 334, + 10, + 0, + 0, + 0, + 0 + ], + [ + 334, + 10, + 337, + 38, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC6render_4with6forKey7optionsACSS_Sayx_q_tGSS0A14TemplateEngine16RenderingOptions_ptK0A9Contracts10IdentifierRzSER_r0_lF", + "count": 2, + "regions": [ + [ + 351, + 113, + 359, + 6, + 2, + 0, + 0, + 0 + ], + [ + 352, + 76, + 354, + 10, + 0, + 0, + 0, + 0 + ], + [ + 354, + 10, + 358, + 38, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC6render_4with6forKey7optionsACSS_Sayx_q_tGSS0A14TemplateEngine16RenderingOptions_ptK0A9Contracts10IdentifierRzSER_r0_lFq_x_q_t_tXEfU_", + "count": 2, + "regions": [ + [ + 355, + 37, + 355, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC03getB13ThatCanRender33_AB2CA9C636AD87D8911D628FEBBDC689LL8resourceAA0B0CSgSS_tF", + "count": 14, + "regions": [ + [ + 361, + 70, + 372, + 6, + 14, + 0, + 0, + 0 + ], + [ + 364, + 15, + 364, + 51, + 14, + 0, + 0, + 0 + ], + [ + 364, + 52, + 370, + 10, + 14, + 0, + 0, + 0 + ], + [ + 367, + 68, + 369, + 14, + 14, + 0, + 0, + 0 + ], + [ + 369, + 14, + 370, + 10, + 0, + 0, + 0, + 0 + ], + [ + 370, + 10, + 371, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4push6routeryAA0B0C_tF", + "count": 96, + "regions": [ + [ + 377, + 31, + 379, + 6, + 96, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC03popB0yyF", + "count": 60, + "regions": [ + [ + 382, + 22, + 384, + 6, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC15setOnEndInvokedyyycyycF", + "count": 2, + "regions": [ + [ + 392, + 100, + 396, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC20setWrittenDataFiltery10Foundation0F0VAGcA2GcF", + "count": 2, + "regions": [ + [ + 402, + 112, + 406, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC6format9callbacksySDySSyAA0B7RequestC_ACtcG_tKF", + "count": 6, + "regions": [ + [ + 419, + 96, + 429, + 6, + 6, + 0, + 0, + 0 + ], + [ + 421, + 67, + 424, + 10, + 4, + 0, + 0, + 0 + ], + [ + 424, + 10, + 429, + 6, + 6, + 0, + 0, + 0 + ], + [ + 424, + 62, + 426, + 10, + 2, + 0, + 0, + 0 + ], + [ + 426, + 10, + 429, + 6, + 6, + 0, + 0, + 0 + ], + [ + 426, + 16, + 428, + 10, + 4, + 0, + 0, + 0 + ], + [ + 428, + 10, + 429, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACSSF", + "count": 244, + "regions": [ + [ + 438, + 55, + 452, + 6, + 244, + 0, + 0, + 0 + ], + [ + 439, + 38, + 442, + 10, + 2, + 0, + 0, + 0 + ], + [ + 442, + 10, + 452, + 6, + 242, + 0, + 0, + 0 + ], + [ + 446, + 76, + 450, + 10, + 242, + 0, + 0, + 0 + ], + [ + 450, + 10, + 451, + 20, + 242, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACSSFSSyXEfu_", + "count": 2, + "regions": [ + [ + 440, + 25, + 440, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACSSSgF", + "count": 6, + "regions": [ + [ + 460, + 56, + 470, + 6, + 6, + 0, + 0, + 0 + ], + [ + 461, + 38, + 464, + 10, + 2, + 0, + 0, + 0 + ], + [ + 464, + 10, + 470, + 6, + 4, + 0, + 0, + 0 + ], + [ + 465, + 34, + 468, + 10, + 2, + 0, + 0, + 0 + ], + [ + 468, + 10, + 469, + 25, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACSSSgFSSyXEfu_", + "count": 2, + "regions": [ + [ + 462, + 25, + 462, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACSSSgFSSyXEfu0_", + "count": 2, + "regions": [ + [ + 466, + 25, + 466, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send6statusAC0A3Net14HTTPStatusCodeO_tF", + "count": 8, + "regions": [ + [ + 476, + 64, + 484, + 6, + 8, + 0, + 0, + 0 + ], + [ + 477, + 38, + 480, + 10, + 2, + 0, + 0, + 0 + ], + [ + 480, + 10, + 483, + 20, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send6statusAC0A3Net14HTTPStatusCodeO_tFSSyXEfu_", + "count": 2, + "regions": [ + [ + 478, + 25, + 478, + 102, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4dataAC10Foundation4DataV_tF", + "count": 304, + "regions": [ + [ + 493, + 52, + 501, + 6, + 304, + 0, + 0, + 0 + ], + [ + 494, + 38, + 497, + 10, + 2, + 0, + 0, + 0 + ], + [ + 497, + 10, + 500, + 20, + 302, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4dataAC10Foundation4DataV_tFSSyXEfu_", + "count": 2, + "regions": [ + [ + 495, + 25, + 495, + 100, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send8fileNameACSS_tKF", + "count": 56, + "regions": [ + [ + 512, + 65, + 527, + 6, + 56, + 0, + 0, + 0 + ], + [ + 513, + 38, + 516, + 10, + 2, + 0, + 0, + 0 + ], + [ + 516, + 10, + 527, + 6, + 54, + 0, + 0, + 0 + ], + [ + 520, + 43, + 522, + 10, + 54, + 0, + 0, + 0 + ], + [ + 522, + 10, + 526, + 20, + 54, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send8fileNameACSS_tKFSSyXEfu_", + "count": 2, + "regions": [ + [ + 514, + 25, + 514, + 104, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send8downloadySS_tKF", + "count": 4, + "regions": [ + [ + 533, + 47, + 540, + 6, + 4, + 0, + 0, + 0 + ], + [ + 534, + 38, + 537, + 10, + 2, + 0, + 0, + 0 + ], + [ + 537, + 10, + 540, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send8downloadySS_tKFSSyXEfu_", + "count": 2, + "regions": [ + [ + 535, + 25, + 535, + 104, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACSayypG_tF", + "count": 4, + "regions": [ + [ + 550, + 53, + 565, + 6, + 4, + 0, + 0, + 0 + ], + [ + 551, + 38, + 554, + 10, + 2, + 0, + 0, + 0 + ], + [ + 554, + 10, + 565, + 6, + 2, + 0, + 0, + 0 + ], + [ + 556, + 12, + 560, + 10, + 2, + 0, + 0, + 0 + ], + [ + 560, + 17, + 562, + 10, + 0, + 0, + 0, + 0 + ], + [ + 562, + 10, + 564, + 20, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACSayypG_tFSSyXEfu_", + "count": 2, + "regions": [ + [ + 552, + 25, + 552, + 100, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACSayypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 561, + 25, + 561, + 92, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACSDySSypG_tF", + "count": 2, + "regions": [ + [ + 574, + 61, + 589, + 6, + 2, + 0, + 0, + 0 + ], + [ + 575, + 38, + 578, + 10, + 0, + 0, + 0, + 0 + ], + [ + 578, + 10, + 589, + 6, + 2, + 0, + 0, + 0 + ], + [ + 580, + 12, + 584, + 10, + 2, + 0, + 0, + 0 + ], + [ + 584, + 17, + 586, + 10, + 0, + 0, + 0, + 0 + ], + [ + 586, + 10, + 588, + 20, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACSDySSypG_tFSSyXEfu_", + "count": 0, + "regions": [ + [ + 576, + 25, + 576, + 100, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACSDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 585, + 25, + 585, + 92, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACxSERzlF", + "count": 124, + "regions": [ + [ + 604, + 65, + 619, + 6, + 124, + 0, + 0, + 0 + ], + [ + 605, + 38, + 608, + 10, + 0, + 0, + 0, + 0 + ], + [ + 608, + 10, + 619, + 6, + 124, + 0, + 0, + 0 + ], + [ + 609, + 12, + 613, + 10, + 124, + 0, + 0, + 0 + ], + [ + 613, + 17, + 616, + 10, + 0, + 0, + 0, + 0 + ], + [ + 616, + 10, + 618, + 20, + 124, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACxSERzlFSSyXEfu_", + "count": 0, + "regions": [ + [ + 606, + 25, + 606, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4sendyACxSERzlFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 614, + 25, + 614, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACx_tSERzlF", + "count": 70, + "regions": [ + [ + 627, + 64, + 641, + 6, + 70, + 0, + 0, + 0 + ], + [ + 628, + 38, + 631, + 10, + 4, + 0, + 0, + 0 + ], + [ + 631, + 10, + 641, + 6, + 66, + 0, + 0, + 0 + ], + [ + 632, + 12, + 635, + 10, + 66, + 0, + 0, + 0 + ], + [ + 635, + 17, + 638, + 10, + 0, + 0, + 0, + 0 + ], + [ + 638, + 10, + 640, + 20, + 66, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACx_tSERzlFSSyXEfu_", + "count": 4, + "regions": [ + [ + 629, + 25, + 629, + 101, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACx_tSERzlF0A9Contracts11BodyEncoder_pyKXEfu0_", + "count": 0, + "regions": [ + [ + 634, + 51, + 634, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send4jsonACx_tSERzlFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 636, + 25, + 636, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlF", + "count": 12, + "regions": [ + [ + 655, + 112, + 692, + 6, + 12, + 0, + 0, + 0 + ], + [ + 656, + 38, + 659, + 10, + 2, + 0, + 0, + 0 + ], + [ + 659, + 10, + 692, + 6, + 10, + 0, + 0, + 0 + ], + [ + 681, + 79, + 688, + 10, + 6, + 0, + 0, + 0 + ], + [ + 688, + 10, + 692, + 6, + 10, + 0, + 0, + 0 + ], + [ + 688, + 16, + 690, + 10, + 4, + 0, + 0, + 0 + ], + [ + 690, + 10, + 691, + 20, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlFSSyXEfu_", + "count": 2, + "regions": [ + [ + 657, + 25, + 657, + 101, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlF20sanitizeJSIdentifierL_yS2SSERzlF", + "count": 8, + "regions": [ + [ + 660, + 62, + 663, + 10, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlF22validJsonpCallbackNameL_ySSSgAHSERzlF", + "count": 10, + "regions": [ + [ + 664, + 65, + 671, + 10, + 10, + 0, + 0, + 0 + ], + [ + 665, + 32, + 669, + 14, + 8, + 0, + 0, + 0 + ], + [ + 666, + 73, + 668, + 18, + 6, + 0, + 0, + 0 + ], + [ + 668, + 18, + 669, + 14, + 2, + 0, + 0, + 0 + ], + [ + 669, + 14, + 670, + 23, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlF22validJsonpCallbackNameL_ySSSgAHSERzlFSbyKXEfu_", + "count": 8, + "regions": [ + [ + 666, + 38, + 666, + 72, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlF8jsonToJSL_yS2SSERzlF", + "count": 6, + "regions": [ + [ + 672, + 49, + 676, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "$s6Kitura14RouterResponseC4send5jsonp17callbackParameterACx_SStKSERzlF0A9Contracts11BodyEncoder_pyKXEfu0_", + "count": 0, + "regions": [ + [ + 677, + 63, + 677, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/RouterResponse.swift" + ] + }, + { + "name": "__ntd_SSLConfig_line:21:8", + "count": 1, + "regions": [ + [ + 79, + 177, + 82, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SSLConfig.swift" + ] + }, + { + "name": "$s6Kitura5StackV7topItemxSgvg", + "count": 23, + "regions": [ + [ + 28, + 27, + 30, + 6, + 23, + 0, + 0, + 0 + ], + [ + 29, + 32, + 29, + 35, + 2, + 0, + 0, + 0 + ], + [ + 29, + 38, + 29, + 60, + 21, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Stack.swift" + ] + }, + { + "name": "$s6Kitura5StackV4pushyyxF", + "count": 874, + "regions": [ + [ + 35, + 41, + 37, + 6, + 874, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Stack.swift" + ] + }, + { + "name": "$s6Kitura5StackV3popxyF", + "count": 78, + "regions": [ + [ + 42, + 36, + 44, + 6, + 78, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/Stack.swift" + ] + }, + { + "name": "$sSS6KituraE25urlDecodedFieldValuePairsSDyS2SGvg", + "count": 102, + "regions": [ + [ + 25, + 53, + 40, + 6, + 102, + 0, + 0, + 0 + ], + [ + 27, + 55, + 38, + 10, + 188, + 0, + 0, + 0 + ], + [ + 29, + 34, + 37, + 14, + 188, + 0, + 0, + 0 + ], + [ + 31, + 52, + 33, + 18, + 4, + 0, + 0, + 0 + ], + [ + 33, + 18, + 37, + 14, + 188, + 0, + 0, + 0 + ], + [ + 34, + 22, + 36, + 18, + 184, + 0, + 0, + 0 + ], + [ + 36, + 18, + 37, + 14, + 188, + 0, + 0, + 0 + ], + [ + 37, + 14, + 38, + 10, + 188, + 0, + 0, + 0 + ], + [ + 38, + 10, + 39, + 22, + 102, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/String+Extensions.swift" + ] + }, + { + "name": "$sSS6KituraE30urlDecodedFieldMultiValuePairsSDySSSaySSGGvg", + "count": 4, + "regions": [ + [ + 44, + 60, + 55, + 6, + 4, + 0, + 0, + 0 + ], + [ + 47, + 55, + 52, + 10, + 14, + 0, + 0, + 0 + ], + [ + 49, + 34, + 51, + 14, + 14, + 0, + 0, + 0 + ], + [ + 51, + 14, + 52, + 10, + 14, + 0, + 0, + 0 + ], + [ + 52, + 10, + 54, + 22, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/String+Extensions.swift" + ] + }, + { + "name": "$sSS6KituraE30urlDecodedFieldMultiValuePairsSDySSSaySSGGvgACyXEfu_", + "count": 8, + "regions": [ + [ + 50, + 38, + 50, + 40, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/String+Extensions.swift" + ] + }, + { + "name": "$sSS6KituraE18keyAndDecodedValueSS0B0_SSSg5valuetvgSSyXEfu_", + "count": 0, + "regions": [ + [ + 70, + 25, + 70, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/String+Extensions.swift" + ] + }, + { + "name": "$sSS6KituraE18keyAndDecodedValueSS0B0_SSSg5valuetvgSSyKXEfu0_", + "count": 0, + "regions": [ + [ + 72, + 50, + 72, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/String+Extensions.swift" + ] + }, + { + "name": "$s6Kitura14ResponseSchemaO6encode2toys7Encoder_p_tKF", + "count": 153, + "regions": [ + [ + 76, + 45, + 82, + 6, + 153, + 0, + 0, + 0 + ], + [ + 79, + 9, + 79, + 66, + 18, + 0, + 0, + 0 + ], + [ + 80, + 9, + 80, + 69, + 135, + 0, + 0, + 0 + ], + [ + 81, + 10, + 82, + 6, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura16CollectionFormatO6encode2toys7Encoder_p_tKF", + "count": 36, + "regions": [ + [ + 89, + 45, + 92, + 6, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura14QueryParameterO6encode2toys7Encoder_p_tKF", + "count": 135, + "regions": [ + [ + 161, + 45, + 168, + 6, + 135, + 0, + 0, + 0 + ], + [ + 165, + 9, + 165, + 80, + 36, + 0, + 0, + 0 + ], + [ + 166, + 9, + 166, + 83, + 99, + 0, + 0, + 0 + ], + [ + 167, + 10, + 168, + 6, + 135, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura16SwaggerParameterO6encode2toys7Encoder_p_tKF", + "count": 243, + "regions": [ + [ + 177, + 45, + 185, + 6, + 243, + 0, + 0, + 0 + ], + [ + 181, + 9, + 181, + 75, + 54, + 0, + 0, + 0 + ], + [ + 182, + 9, + 182, + 75, + 54, + 0, + 0, + 0 + ], + [ + 183, + 9, + 183, + 78, + 135, + 0, + 0, + 0 + ], + [ + 184, + 10, + 185, + 6, + 243, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "__ntd_NativeArraySchema_line:209:1", + "count": 11, + "regions": [ + [ + 213, + 24, + 216, + 6, + 11, + 0, + 0, + 0 + ], + [ + 218, + 40, + 221, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura13PropertyValueO6encode2toys7Encoder_p_tKF", + "count": 225, + "regions": [ + [ + 232, + 45, + 241, + 6, + 225, + 0, + 0, + 0 + ], + [ + 235, + 9, + 235, + 71, + 9, + 0, + 0, + 0 + ], + [ + 236, + 9, + 236, + 72, + 0, + 0, + 0, + 0 + ], + [ + 237, + 9, + 237, + 90, + 9, + 0, + 0, + 0 + ], + [ + 238, + 9, + 238, + 73, + 198, + 0, + 0, + 0 + ], + [ + 239, + 9, + 239, + 69, + 9, + 0, + 0, + 0 + ], + [ + 240, + 10, + 241, + 6, + 225, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura9SwiftTypeO07swaggerC0SSyF", + "count": 529, + "regions": [ + [ + 267, + 34, + 280, + 6, + 529, + 0, + 0, + 0 + ], + [ + 269, + 9, + 270, + 29, + 9, + 0, + 0, + 0 + ], + [ + 271, + 9, + 272, + 28, + 0, + 0, + 0, + 0 + ], + [ + 273, + 9, + 274, + 28, + 19, + 0, + 0, + 0 + ], + [ + 275, + 9, + 276, + 29, + 294, + 0, + 0, + 0 + ], + [ + 277, + 9, + 278, + 28, + 207, + 0, + 0, + 0 + ], + [ + 279, + 10, + 280, + 6, + 529, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura9SwiftTypeO13swaggerFormatSSSgyF", + "count": 421, + "regions": [ + [ + 285, + 37, + 292, + 6, + 421, + 0, + 0, + 0 + ], + [ + 287, + 9, + 288, + 46, + 99, + 0, + 0, + 0 + ], + [ + 289, + 9, + 290, + 23, + 322, + 0, + 0, + 0 + ], + [ + 291, + 10, + 292, + 6, + 421, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura9SwiftTypeO06isBaseC0ySbSSFZ", + "count": 20, + "regions": [ + [ + 295, + 56, + 318, + 6, + 20, + 0, + 0, + 0 + ], + [ + 297, + 9, + 314, + 24, + 11, + 0, + 0, + 0 + ], + [ + 315, + 9, + 316, + 25, + 9, + 0, + 0, + 0 + ], + [ + 317, + 10, + 318, + 6, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "__ntd_SwaggerDocument_line:321:1", + "count": 550, + "regions": [ + [ + 343, + 19, + 350, + 6, + 550, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV14processedTypesShy11TypeDecoder0F4InfoOGvg", + "count": 0, + "regions": [ + [ + 353, + 46, + 353, + 69, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV16unprocessedTypesShy11TypeDecoder0F4InfoOGvg", + "count": 240, + "regions": [ + [ + 356, + 48, + 356, + 73, + 240, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV14buildParameter4name13parameterTypeAA0bE0OSS_SStF", + "count": 206, + "regions": [ + [ + 363, + 82, + 381, + 6, + 206, + 0, + 0, + 0 + ], + [ + 364, + 25, + 377, + 10, + 108, + 0, + 0, + 0 + ], + [ + 368, + 63, + 373, + 14, + 108, + 0, + 0, + 0 + ], + [ + 370, + 62, + 372, + 18, + 0, + 0, + 0, + 0 + ], + [ + 372, + 18, + 373, + 14, + 108, + 0, + 0, + 0 + ], + [ + 373, + 14, + 376, + 49, + 108, + 0, + 0, + 0 + ], + [ + 377, + 10, + 380, + 45, + 98, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV14buildParameter4name13parameterTypeAA0bE0OSS_SStFSbyKXEfu_", + "count": 11, + "regions": [ + [ + 370, + 43, + 370, + 61, + 11, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV21processQueryParameter4name8typeInfo10parameters7isArray0K8RequiredySS_11TypeDecoder0nI0OSayAA0bF0OGzS2btF", + "count": 280, + "regions": [ + [ + 390, + 163, + 420, + 6, + 280, + 0, + 0, + 0 + ], + [ + 394, + 61, + 397, + 10, + 42, + 0, + 0, + 0 + ], + [ + 397, + 10, + 420, + 6, + 280, + 0, + 0, + 0 + ], + [ + 397, + 66, + 400, + 10, + 48, + 0, + 0, + 0 + ], + [ + 400, + 10, + 420, + 6, + 280, + 0, + 0, + 0 + ], + [ + 400, + 60, + 419, + 10, + 184, + 0, + 0, + 0 + ], + [ + 402, + 82, + 418, + 14, + 184, + 0, + 0, + 0 + ], + [ + 404, + 59, + 406, + 18, + 90, + 0, + 0, + 0 + ], + [ + 406, + 18, + 418, + 14, + 184, + 0, + 0, + 0 + ], + [ + 407, + 53, + 417, + 18, + 184, + 0, + 0, + 0 + ], + [ + 408, + 30, + 412, + 22, + 42, + 0, + 0, + 0 + ], + [ + 412, + 22, + 417, + 18, + 184, + 0, + 0, + 0 + ], + [ + 412, + 28, + 415, + 22, + 142, + 0, + 0, + 0 + ], + [ + 415, + 22, + 417, + 18, + 184, + 0, + 0, + 0 + ], + [ + 417, + 18, + 418, + 14, + 184, + 0, + 0, + 0 + ], + [ + 418, + 14, + 419, + 10, + 184, + 0, + 0, + 0 + ], + [ + 419, + 10, + 420, + 6, + 280, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV18addQueryParameters7qParams13allOptQParams10parametersy11TypeDecoder17OrderedDictionaryVySSAH0L4InfoOG_SbSayAA0B9ParameterOGztF", + "count": 100, + "regions": [ + [ + 426, + 106, + 430, + 6, + 100, + 0, + 0, + 0 + ], + [ + 427, + 41, + 429, + 10, + 190, + 0, + 0, + 0 + ], + [ + 429, + 10, + 430, + 6, + 100, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV13buildResponse11description12responseTypeAA0bE0VSS_AA0beH0VtF", + "count": 240, + "regions": [ + [ + 437, + 99, + 443, + 6, + 240, + 0, + 0, + 0 + ], + [ + 439, + 31, + 441, + 10, + 37, + 0, + 0, + 0 + ], + [ + 441, + 10, + 442, + 85, + 203, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV20isDictEncodedAsTupleySbypF", + "count": 226, + "regions": [ + [ + 454, + 52, + 458, + 6, + 226, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV18getUnkeyedTypeNameyS2SF", + "count": 20, + "regions": [ + [ + 469, + 55, + 478, + 6, + 20, + 0, + 0, + 0 + ], + [ + 473, + 28, + 476, + 10, + 20, + 0, + 0, + 0 + ], + [ + 476, + 10, + 477, + 25, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV28swaggerPropertyFromSwiftTypeySDySSAA0E5ValueOGypKF", + "count": 226, + "regions": [ + [ + 485, + 86, + 503, + 6, + 226, + 0, + 0, + 0 + ], + [ + 490, + 47, + 492, + 10, + 0, + 0, + 0, + 0 + ], + [ + 492, + 10, + 503, + 6, + 226, + 0, + 0, + 0 + ], + [ + 494, + 57, + 499, + 10, + 226, + 0, + 0, + 0 + ], + [ + 496, + 50, + 498, + 14, + 9, + 0, + 0, + 0 + ], + [ + 498, + 14, + 499, + 10, + 226, + 0, + 0, + 0 + ], + [ + 499, + 10, + 503, + 6, + 226, + 0, + 0, + 0 + ], + [ + 499, + 16, + 501, + 10, + 0, + 0, + 0, + 0 + ], + [ + 501, + 10, + 502, + 24, + 226, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV13decomposeType_4name7isArray0G8RequiredSDySSAA13PropertyValueOG_Sbt0E7Decoder0E4InfoO_SSS2btF", + "count": 398, + "regions": [ + [ + 512, + 155, + 571, + 6, + 398, + 0, + 0, + 0 + ], + [ + 516, + 9, + 522, + 48, + 29, + 0, + 0, + 0 + ], + [ + 523, + 9, + 528, + 40, + 9, + 0, + 0, + 0 + ], + [ + 529, + 9, + 549, + 48, + 20, + 0, + 0, + 0 + ], + [ + 532, + 47, + 540, + 14, + 11, + 0, + 0, + 0 + ], + [ + 533, + 61, + 539, + 18, + 11, + 0, + 0, + 0 + ], + [ + 534, + 58, + 536, + 22, + 0, + 0, + 0, + 0 + ], + [ + 536, + 22, + 539, + 18, + 11, + 0, + 0, + 0 + ], + [ + 536, + 28, + 538, + 22, + 11, + 0, + 0, + 0 + ], + [ + 538, + 22, + 539, + 18, + 11, + 0, + 0, + 0 + ], + [ + 539, + 18, + 540, + 14, + 11, + 0, + 0, + 0 + ], + [ + 540, + 14, + 549, + 48, + 20, + 0, + 0, + 0 + ], + [ + 540, + 20, + 542, + 14, + 9, + 0, + 0, + 0 + ], + [ + 542, + 14, + 549, + 48, + 20, + 0, + 0, + 0 + ], + [ + 546, + 69, + 548, + 14, + 20, + 0, + 0, + 0 + ], + [ + 548, + 14, + 549, + 48, + 20, + 0, + 0, + 0 + ], + [ + 550, + 9, + 552, + 48, + 0, + 0, + 0, + 0 + ], + [ + 553, + 9, + 559, + 14, + 226, + 0, + 0, + 0 + ], + [ + 554, + 16, + 557, + 14, + 226, + 0, + 0, + 0 + ], + [ + 557, + 21, + 559, + 14, + 0, + 0, + 0, + 0 + ], + [ + 559, + 14, + 559, + 14, + 0, + 0, + 0, + 0 + ], + [ + 560, + 9, + 561, + 97, + 114, + 0, + 0, + 0 + ], + [ + 562, + 9, + 568, + 14, + 0, + 0, + 0, + 0 + ], + [ + 563, + 16, + 566, + 14, + 0, + 0, + 0, + 0 + ], + [ + 566, + 21, + 568, + 14, + 0, + 0, + 0, + 0 + ], + [ + 568, + 14, + 568, + 14, + 0, + 0, + 0, + 0 + ], + [ + 569, + 10, + 570, + 36, + 398, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV13decomposeType_4name7isArray0G8RequiredSDySSAA13PropertyValueOG_Sbt0E7Decoder0E4InfoO_SSS2btFSSyXEfu_", + "count": 0, + "regions": [ + [ + 558, + 29, + 558, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV13decomposeType_4name7isArray0G8RequiredSDySSAA13PropertyValueOG_Sbt0E7Decoder0E4InfoO_SSS2btFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 567, + 29, + 567, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV10buildModely11TypeDecoder17OrderedDictionaryVySSSDySSAA13PropertyValueOGG10properties_ShySSG8requiredtAE0F4InfoOSgKF", + "count": 92, + "regions": [ + [ + 578, + 118, + 599, + 6, + 92, + 0, + 0, + 0 + ], + [ + 581, + 44, + 581, + 92, + 0, + 0, + 0, + 0 + ], + [ + 581, + 92, + 599, + 6, + 92, + 0, + 0, + 0 + ], + [ + 583, + 54, + 594, + 10, + 92, + 0, + 0, + 0 + ], + [ + 584, + 38, + 591, + 14, + 275, + 0, + 0, + 0 + ], + [ + 587, + 25, + 589, + 18, + 161, + 0, + 0, + 0 + ], + [ + 589, + 18, + 591, + 14, + 275, + 0, + 0, + 0 + ], + [ + 591, + 14, + 594, + 10, + 92, + 0, + 0, + 0 + ], + [ + 594, + 10, + 599, + 6, + 92, + 0, + 0, + 0 + ], + [ + 594, + 16, + 597, + 10, + 0, + 0, + 0, + 0 + ], + [ + 597, + 10, + 598, + 43, + 92, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV10buildModely11TypeDecoder17OrderedDictionaryVySSSDySSAA13PropertyValueOGG10properties_ShySSG8requiredtAE0F4InfoOSgKFSSyXEfu_", + "count": 0, + "regions": [ + [ + 596, + 23, + 596, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV8addModel5modely11TypeDecoder0G4InfoO_tFSSyXEfu_", + "count": 189, + "regions": [ + [ + 614, + 27, + 614, + 63, + 189, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV8addModel5modely11TypeDecoder0G4InfoO_tFSSyXEfu0_", + "count": 91, + "regions": [ + [ + 620, + 29, + 620, + 57, + 91, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV8addModel5modely11TypeDecoder0G4InfoO_tFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 629, + 29, + 629, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV8addModel5modely11TypeDecoder0G4InfoO_tFSSyXEfu2_", + "count": 310, + "regions": [ + [ + 632, + 23, + 632, + 83, + 310, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV7addPath4path6method2id7qParams13allOptQParams9inputType12responseListySS_S2SSg0N7Decoder17OrderedDictionaryVySSAM0N4InfoOGSgSbALSayAA0b8ResponseN0VGSgtF", + "count": 294, + "regions": [ + [ + 644, + 181, + 711, + 6, + 294, + 0, + 0, + 0 + ], + [ + 650, + 28, + 710, + 10, + 294, + 0, + 0, + 0 + ], + [ + 655, + 26, + 657, + 14, + 108, + 0, + 0, + 0 + ], + [ + 656, + 60, + 656, + 80, + 6, + 0, + 0, + 0 + ], + [ + 656, + 83, + 656, + 104, + 102, + 0, + 0, + 0 + ], + [ + 657, + 14, + 710, + 10, + 294, + 0, + 0, + 0 + ], + [ + 659, + 49, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 660, + 39, + 664, + 18, + 54, + 0, + 0, + 0 + ], + [ + 664, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 664, + 24, + 666, + 18, + 240, + 0, + 0, + 0 + ], + [ + 666, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 670, + 32, + 672, + 18, + 108, + 0, + 0, + 0 + ], + [ + 672, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 674, + 46, + 676, + 18, + 98, + 0, + 0, + 0 + ], + [ + 676, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 678, + 42, + 681, + 18, + 100, + 0, + 0, + 0 + ], + [ + 681, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 692, + 89, + 692, + 99, + 239, + 0, + 0, + 0 + ], + [ + 692, + 102, + 692, + 105, + 55, + 0, + 0, + 0 + ], + [ + 694, + 58, + 700, + 18, + 21, + 0, + 0, + 0 + ], + [ + 700, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 700, + 24, + 708, + 18, + 273, + 0, + 0, + 0 + ], + [ + 708, + 18, + 709, + 14, + 294, + 0, + 0, + 0 + ], + [ + 709, + 14, + 710, + 10, + 294, + 0, + 0, + 0 + ], + [ + 710, + 10, + 711, + 6, + 294, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV7addPath4path6method2id7qParams13allOptQParams9inputType12responseListySS_S2SSg0N7Decoder17OrderedDictionaryVySSAM0N4InfoOGSgSbALSayAA0b8ResponseN0VGSgtFSSyXEfu_", + "count": 293, + "regions": [ + [ + 689, + 29, + 689, + 98, + 293, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV7addPath4path6method2id7qParams13allOptQParams9inputType12responseListySS_S2SSg0N7Decoder17OrderedDictionaryVySSAM0N4InfoOGSgSbALSayAA0b8ResponseN0VGSgtFSSyXEfu0_", + "count": 21, + "regions": [ + [ + 696, + 31, + 696, + 94, + 21, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV7addPath4path6method2id7qParams13allOptQParams9inputType12responseListySS_S2SSg0N7Decoder17OrderedDictionaryVySSAM0N4InfoOGSgSbALSayAA0b8ResponseN0VGSgtFSSyXEfu1_", + "count": 272, + "regions": [ + [ + 702, + 31, + 702, + 90, + 272, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV25JSONEncodeModelProperties10properties6pretty5depthSS11TypeDecoder17OrderedDictionaryVySSSDySSAA13PropertyValueOGG_SbSitKF", + "count": 45, + "regions": [ + [ + 719, + 110, + 742, + 6, + 45, + 0, + 0, + 0 + ], + [ + 722, + 27, + 722, + 31, + 45, + 0, + 0, + 0 + ], + [ + 722, + 34, + 722, + 36, + 0, + 0, + 0, + 0 + ], + [ + 726, + 47, + 740, + 10, + 180, + 0, + 0, + 0 + ], + [ + 729, + 70, + 736, + 14, + 180, + 0, + 0, + 0 + ], + [ + 731, + 50, + 733, + 18, + 135, + 0, + 0, + 0 + ], + [ + 733, + 18, + 736, + 14, + 180, + 0, + 0, + 0 + ], + [ + 736, + 14, + 740, + 10, + 180, + 0, + 0, + 0 + ], + [ + 736, + 20, + 739, + 14, + 0, + 0, + 0, + 0 + ], + [ + 739, + 14, + 740, + 10, + 180, + 0, + 0, + 0 + ], + [ + 740, + 10, + 741, + 27, + 45, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV25JSONEncodeModelProperties10properties6pretty5depthSS11TypeDecoder17OrderedDictionaryVySSSDySSAA13PropertyValueOGG_SbSitKFSSyXEfu_", + "count": 0, + "regions": [ + [ + 737, + 29, + 737, + 84, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV22JSONEncodeModelContent5model6pretty5depthS2S_SbSitKF", + "count": 45, + "regions": [ + [ + 750, + 91, + 784, + 6, + 45, + 0, + 0, + 0 + ], + [ + 753, + 27, + 753, + 31, + 45, + 0, + 0, + 0 + ], + [ + 753, + 34, + 753, + 36, + 0, + 0, + 0, + 0 + ], + [ + 755, + 51, + 779, + 10, + 45, + 0, + 0, + 0 + ], + [ + 757, + 44, + 770, + 14, + 36, + 0, + 0, + 0 + ], + [ + 759, + 20, + 766, + 18, + 36, + 0, + 0, + 0 + ], + [ + 761, + 78, + 763, + 22, + 36, + 0, + 0, + 0 + ], + [ + 763, + 22, + 766, + 18, + 36, + 0, + 0, + 0 + ], + [ + 763, + 28, + 765, + 22, + 0, + 0, + 0, + 0 + ], + [ + 765, + 22, + 766, + 18, + 36, + 0, + 0, + 0 + ], + [ + 766, + 52, + 769, + 18, + 0, + 0, + 0, + 0 + ], + [ + 769, + 18, + 770, + 14, + 36, + 0, + 0, + 0 + ], + [ + 770, + 14, + 779, + 10, + 45, + 0, + 0, + 0 + ], + [ + 772, + 16, + 774, + 14, + 45, + 0, + 0, + 0 + ], + [ + 774, + 48, + 777, + 14, + 0, + 0, + 0, + 0 + ], + [ + 777, + 14, + 779, + 10, + 45, + 0, + 0, + 0 + ], + [ + 779, + 10, + 784, + 6, + 45, + 0, + 0, + 0 + ], + [ + 779, + 16, + 782, + 10, + 0, + 0, + 0, + 0 + ], + [ + 782, + 10, + 783, + 26, + 45, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV22JSONEncodeModelContent5model6pretty5depthS2S_SbSitKFSSyXEfu_", + "count": 0, + "regions": [ + [ + 767, + 33, + 767, + 106, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV22JSONEncodeModelContent5model6pretty5depthS2S_SbSitKFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 775, + 29, + 775, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV22JSONEncodeModelContent5model6pretty5depthS2S_SbSitKFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 780, + 25, + 780, + 66, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV15JSONEncodeModel5model6pretty5depthS2S_SbSitKF", + "count": 45, + "regions": [ + [ + 792, + 84, + 802, + 6, + 45, + 0, + 0, + 0 + ], + [ + 795, + 27, + 795, + 31, + 45, + 0, + 0, + 0 + ], + [ + 795, + 34, + 795, + 36, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV21JSONEncodeDefinitions6prettySSSb_tKF", + "count": 9, + "regions": [ + [ + 809, + 63, + 837, + 6, + 9, + 0, + 0, + 0 + ], + [ + 814, + 19, + 817, + 10, + 9, + 0, + 0, + 0 + ], + [ + 817, + 10, + 837, + 6, + 9, + 0, + 0, + 0 + ], + [ + 824, + 44, + 832, + 10, + 45, + 0, + 0, + 0 + ], + [ + 828, + 47, + 830, + 14, + 36, + 0, + 0, + 0 + ], + [ + 830, + 14, + 832, + 10, + 45, + 0, + 0, + 0 + ], + [ + 832, + 10, + 836, + 30, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV18serializeAPIToJSONSSSgyKF", + "count": 9, + "regions": [ + [ + 841, + 56, + 858, + 6, + 9, + 0, + 0, + 0 + ], + [ + 847, + 37, + 856, + 10, + 9, + 0, + 0, + 0 + ], + [ + 848, + 59, + 850, + 14, + 9, + 0, + 0, + 0 + ], + [ + 850, + 14, + 856, + 10, + 9, + 0, + 0, + 0 + ], + [ + 851, + 102, + 854, + 14, + 9, + 0, + 0, + 0 + ], + [ + 854, + 14, + 856, + 10, + 9, + 0, + 0, + 0 + ], + [ + 856, + 10, + 857, + 20, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV12serializeAPI6formatSSSgAA0bC6FormatO_tKF", + "count": 9, + "regions": [ + [ + 863, + 88, + 884, + 6, + 9, + 0, + 0, + 0 + ], + [ + 868, + 87, + 870, + 10, + 0, + 0, + 0, + 0 + ], + [ + 870, + 10, + 884, + 6, + 9, + 0, + 0, + 0 + ], + [ + 871, + 87, + 873, + 10, + 0, + 0, + 0, + 0 + ], + [ + 873, + 10, + 884, + 6, + 9, + 0, + 0, + 0 + ], + [ + 877, + 9, + 878, + 48, + 9, + 0, + 0, + 0 + ], + [ + 880, + 9, + 881, + 56, + 0, + 0, + 0, + 0 + ], + [ + 882, + 10, + 883, + 24, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV12serializeAPI6formatSSSgAA0bC6FormatO_tKFSb0A3Net10HTTPServerC6server_Si4portt_tXEfU_", + "count": 0, + "regions": [ + [ + 868, + 47, + 868, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15SwaggerDocumentV12serializeAPI6formatSSSgAA0bC6FormatO_tKFSb0A3Net10HTTPServerC6server_Si4portt_tXEfU0_", + "count": 0, + "regions": [ + [ + 871, + 47, + 871, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC18logTypeDecodeError33_A56FC133718FCC41C6CB61EBDE201BF3LL_3for2on2asys0F0_p_xmSSAC05ParamD0AELLOtSeRzSERzlF", + "count": 0, + "regions": [ + [ + 897, + 128, + 907, + 6, + 0, + 0, + 0, + 0 + ], + [ + 898, + 52, + 904, + 10, + 0, + 0, + 0, + 0 + ], + [ + 900, + 68, + 902, + 14, + 0, + 0, + 0, + 0 + ], + [ + 902, + 14, + 904, + 10, + 0, + 0, + 0, + 0 + ], + [ + 904, + 10, + 907, + 6, + 0, + 0, + 0, + 0 + ], + [ + 904, + 16, + 906, + 10, + 0, + 0, + 0, + 0 + ], + [ + 906, + 10, + 907, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC18logTypeDecodeError33_A56FC133718FCC41C6CB61EBDE201BF3LL_3for2on2asys0F0_p_xmSSAC05ParamD0AELLOtSeRzSERzlFSSyXEfu_", + "count": 0, + "regions": [ + [ + 903, + 25, + 903, + 159, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC18logTypeDecodeError33_A56FC133718FCC41C6CB61EBDE201BF3LL_3for2on2asys0F0_p_xmSSAC05ParamD0AELLOtSeRzSERzlFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 905, + 25, + 905, + 109, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method10outputType13responseTypesySS_SSxmSayAA015SwaggerResponseH0VGtSeRzSERzlF", + "count": 41, + "regions": [ + [ + 915, + 125, + 936, + 6, + 41, + 0, + 0, + 0 + ], + [ + 919, + 12, + 921, + 10, + 41, + 0, + 0, + 0 + ], + [ + 921, + 17, + 923, + 10, + 0, + 0, + 0, + 0 + ], + [ + 923, + 10, + 936, + 6, + 41, + 0, + 0, + 0 + ], + [ + 932, + 60, + 935, + 10, + 54, + 0, + 0, + 0 + ], + [ + 935, + 10, + 936, + 6, + 41, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method10outputType13responseTypesySS_SSxmSayAA015SwaggerResponseH0VGtSeRzSERzlFSSyXEfu_", + "count": 40, + "regions": [ + [ + 916, + 19, + 916, + 62, + 40, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method10outputType13responseTypesySS_SSxmSayAA015SwaggerResponseH0VGtSeRzSERzlFSSyXEfu0_", + "count": 54, + "regions": [ + [ + 933, + 23, + 933, + 86, + 54, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method9queryType13allOptQParams06outputH013responseTypesySS_SSxmSbq_mSayAA015SwaggerResponseH0VGt0A9Contracts11QueryParamsRzSeR_SER_r0_lF", + "count": 67, + "regions": [ + [ + 946, + 181, + 976, + 6, + 67, + 0, + 0, + 0 + ], + [ + 950, + 12, + 952, + 10, + 67, + 0, + 0, + 0 + ], + [ + 952, + 17, + 954, + 10, + 0, + 0, + 0, + 0 + ], + [ + 954, + 10, + 976, + 6, + 67, + 0, + 0, + 0 + ], + [ + 957, + 12, + 961, + 10, + 67, + 0, + 0, + 0 + ], + [ + 958, + 77, + 960, + 14, + 67, + 0, + 0, + 0 + ], + [ + 960, + 14, + 961, + 10, + 67, + 0, + 0, + 0 + ], + [ + 961, + 17, + 963, + 10, + 0, + 0, + 0, + 0 + ], + [ + 963, + 10, + 976, + 6, + 67, + 0, + 0, + 0 + ], + [ + 972, + 60, + 975, + 10, + 112, + 0, + 0, + 0 + ], + [ + 975, + 10, + 976, + 6, + 67, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method9queryType13allOptQParams06outputH013responseTypesySS_SSxmSbq_mSayAA015SwaggerResponseH0VGt0A9Contracts11QueryParamsRzSeR_SER_r0_lFSSyXEfu_", + "count": 67, + "regions": [ + [ + 947, + 19, + 947, + 62, + 67, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method9queryType13allOptQParams06outputH013responseTypesySS_SSxmSbq_mSayAA015SwaggerResponseH0VGt0A9Contracts11QueryParamsRzSeR_SER_r0_lFSSyXEfu0_", + "count": 112, + "regions": [ + [ + 973, + 23, + 973, + 86, + 112, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method9inputType06outputH013responseTypesySS_SSxmq_mSayAA015SwaggerResponseH0VGtSeRzSERzSeR_SER_r0_lF", + "count": 31, + "regions": [ + [ + 985, + 156, + 1018, + 6, + 31, + 0, + 0, + 0 + ], + [ + 989, + 12, + 991, + 10, + 31, + 0, + 0, + 0 + ], + [ + 991, + 17, + 993, + 10, + 0, + 0, + 0, + 0 + ], + [ + 993, + 10, + 1018, + 6, + 31, + 0, + 0, + 0 + ], + [ + 996, + 36, + 1002, + 10, + 9, + 0, + 0, + 0 + ], + [ + 997, + 16, + 999, + 14, + 9, + 0, + 0, + 0 + ], + [ + 999, + 21, + 1001, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1001, + 14, + 1002, + 10, + 9, + 0, + 0, + 0 + ], + [ + 1002, + 10, + 1018, + 6, + 31, + 0, + 0, + 0 + ], + [ + 1009, + 48, + 1011, + 10, + 9, + 0, + 0, + 0 + ], + [ + 1011, + 10, + 1018, + 6, + 31, + 0, + 0, + 0 + ], + [ + 1014, + 60, + 1017, + 10, + 36, + 0, + 0, + 0 + ], + [ + 1017, + 10, + 1018, + 6, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method9inputType06outputH013responseTypesySS_SSxmq_mSayAA015SwaggerResponseH0VGtSeRzSERzSeR_SER_r0_lFSSyXEfu_", + "count": 31, + "regions": [ + [ + 986, + 19, + 986, + 62, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method9inputType06outputH013responseTypesySS_SSxmq_mSayAA015SwaggerResponseH0VGtSeRzSERzSeR_SER_r0_lFSSyXEfu0_", + "count": 36, + "regions": [ + [ + 1015, + 23, + 1015, + 86, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method2id10outputType13responseTypesySS_SSxmq_mSayAA015SwaggerResponseI0VGt0A9Contracts10IdentifierRzSeR_SER_r0_lF", + "count": 34, + "regions": [ + [ + 1027, + 154, + 1048, + 6, + 34, + 0, + 0, + 0 + ], + [ + 1031, + 12, + 1033, + 10, + 34, + 0, + 0, + 0 + ], + [ + 1033, + 17, + 1035, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1035, + 10, + 1048, + 6, + 34, + 0, + 0, + 0 + ], + [ + 1044, + 60, + 1047, + 10, + 36, + 0, + 0, + 0 + ], + [ + 1047, + 10, + 1048, + 6, + 34, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method2id10outputType13responseTypesySS_SSxmq_mSayAA015SwaggerResponseI0VGt0A9Contracts10IdentifierRzSeR_SER_r0_lFSSyXEfu_", + "count": 34, + "regions": [ + [ + 1028, + 19, + 1028, + 62, + 34, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method2id10outputType13responseTypesySS_SSxmq_mSayAA015SwaggerResponseI0VGt0A9Contracts10IdentifierRzSeR_SER_r0_lFSSyXEfu0_", + "count": 36, + "regions": [ + [ + 1045, + 23, + 1045, + 86, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method2id9inputType06outputI013responseTypesySS_SSxmq_mq0_mSayAA015SwaggerResponseI0VGt0A9Contracts10IdentifierRzSeR_SER_SeR0_SER0_r1_lF", + "count": 67, + "regions": [ + [ + 1058, + 185, + 1091, + 6, + 67, + 0, + 0, + 0 + ], + [ + 1062, + 12, + 1064, + 10, + 67, + 0, + 0, + 0 + ], + [ + 1064, + 17, + 1066, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1066, + 10, + 1091, + 6, + 67, + 0, + 0, + 0 + ], + [ + 1069, + 36, + 1075, + 10, + 3, + 0, + 0, + 0 + ], + [ + 1070, + 16, + 1072, + 14, + 3, + 0, + 0, + 0 + ], + [ + 1072, + 21, + 1074, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1074, + 14, + 1075, + 10, + 3, + 0, + 0, + 0 + ], + [ + 1075, + 10, + 1091, + 6, + 67, + 0, + 0, + 0 + ], + [ + 1082, + 48, + 1084, + 10, + 3, + 0, + 0, + 0 + ], + [ + 1084, + 10, + 1091, + 6, + 67, + 0, + 0, + 0 + ], + [ + 1087, + 60, + 1090, + 10, + 72, + 0, + 0, + 0 + ], + [ + 1090, + 10, + 1091, + 6, + 67, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method2id9inputType06outputI013responseTypesySS_SSxmq_mq0_mSayAA015SwaggerResponseI0VGt0A9Contracts10IdentifierRzSeR_SER_SeR0_SER0_r1_lFSSyXEfu_", + "count": 67, + "regions": [ + [ + 1059, + 19, + 1059, + 62, + 67, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC13registerRoute5route6method2id9inputType06outputI013responseTypesySS_SSxmq_mq0_mSayAA015SwaggerResponseI0VGt0A9Contracts10IdentifierRzSeR_SER_SeR0_SER0_r1_lFSSyXEfu0_", + "count": 72, + "regions": [ + [ + 1088, + 23, + 1088, + 86, + 72, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC14registerDelete5route13responseTypesySS_SayAA19SwaggerResponseTypeVGtF", + "count": 14, + "regions": [ + [ + 1097, + 78, + 1102, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC14registerDelete5route13responseTypesySS_SayAA19SwaggerResponseTypeVGtFSSyXEfu_", + "count": 14, + "regions": [ + [ + 1098, + 19, + 1098, + 59, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC14registerDelete5route9queryType13allOptQParams13responseTypesySS_xmSbSayAA015SwaggerResponseG0VGt0A9Contracts11QueryParamsRzlF", + "count": 33, + "regions": [ + [ + 1110, + 134, + 1126, + 6, + 33, + 0, + 0, + 0 + ], + [ + 1115, + 12, + 1120, + 10, + 33, + 0, + 0, + 0 + ], + [ + 1117, + 52, + 1119, + 14, + 33, + 0, + 0, + 0 + ], + [ + 1119, + 14, + 1120, + 10, + 33, + 0, + 0, + 0 + ], + [ + 1120, + 17, + 1122, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1122, + 10, + 1126, + 6, + 33, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC14registerDelete5route9queryType13allOptQParams13responseTypesySS_xmSbSayAA015SwaggerResponseG0VGt0A9Contracts11QueryParamsRzlFSSyXEfu_", + "count": 33, + "regions": [ + [ + 1111, + 19, + 1111, + 59, + 33, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC14registerDelete5route2id13responseTypesySS_xmSayAA19SwaggerResponseTypeVGt0A9Contracts10IdentifierRzlF", + "count": 7, + "regions": [ + [ + 1132, + 107, + 1137, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC14registerDelete5route2id13responseTypesySS_xmSayAA19SwaggerResponseTypeVGt0A9Contracts10IdentifierRzlFSSyXEfu_", + "count": 7, + "regions": [ + [ + 1133, + 19, + 1133, + 59, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16registerGetRoute5route10outputType0G7IsArrayySS_xmSbtSeRzSERzlF", + "count": 41, + "regions": [ + [ + 1143, + 110, + 1148, + 6, + 41, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16registerGetRoute5route2id10outputType0H7IsArrayySS_xmq_mSbt0A9Contracts10IdentifierRzSeR_SER_r0_lF", + "count": 34, + "regions": [ + [ + 1155, + 139, + 1160, + 6, + 34, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16registerGetRoute5route11queryParams14optionalQParam10outputType0K7IsArrayySS_xmSbq_mSbt0A9Contracts05QueryH0RzSeR_SER_r0_lF", + "count": 67, + "regions": [ + [ + 1168, + 169, + 1173, + 6, + 67, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC19registerDeleteRoute5routeySS_tF", + "count": 14, + "regions": [ + [ + 1178, + 52, + 1183, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC19registerDeleteRoute5route11queryParams14optionalQParamySS_xmSbt0A9Contracts05QueryH0RzlF", + "count": 33, + "regions": [ + [ + 1190, + 111, + 1195, + 6, + 33, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC19registerDeleteRoute5route2idySS_xmt0A9Contracts10IdentifierRzlF", + "count": 7, + "regions": [ + [ + 1201, + 82, + 1206, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC17registerPostRoute5route9inputType06outputH0ySS_xmq_mtSeRzSERzSeR_SER_r0_lF", + "count": 31, + "regions": [ + [ + 1213, + 113, + 1218, + 6, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC17registerPostRoute5route2id9inputType06outputI0ySS_q_mxmq0_mtSeRzSERz0A9Contracts10IdentifierR_SeR0_SER0_r1_lF", + "count": 18, + "regions": [ + [ + 1226, + 142, + 1231, + 6, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC16registerPutRoute5route2id9inputType06outputI0ySS_xmq_mq0_mt0A9Contracts10IdentifierRzSeR_SER_SeR0_SER0_r1_lF", + "count": 30, + "regions": [ + [ + 1239, + 141, + 1244, + 6, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura6RouterC18registerPatchRoute5route2id9inputType06outputI0ySS_xmq_mq0_mt0A9Contracts10IdentifierRzSeR_SER_SeR0_SER0_r1_lF", + "count": 19, + "regions": [ + [ + 1252, + 143, + 1257, + 6, + 19, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/SwaggerGenerator.swift" + ] + }, + { + "name": "$s6Kitura15TemplatingErrorO11descriptionSSvg", + "count": 0, + "regions": [ + [ + 25, + 29, + 32, + 6, + 0, + 0, + 0, + 0 + ], + [ + 27, + 9, + 28, + 84, + 0, + 0, + 0, + 0 + ], + [ + 29, + 9, + 30, + 79, + 0, + 0, + 0, + 0 + ], + [ + 31, + 10, + 32, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/TemplatingError.swift" + ] + }, + { + "name": "__ntd_BodyParser_line:59:8", + "count": 178, + "regions": [ + [ + 76, + 19, + 76, + 21, + 178, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura10BodyParserC6handle7request8response4nextyAA13RouterRequestC_AA0H8ResponseCyyctKF", + "count": 28, + "regions": [ + [ + 85, + 109, + 97, + 6, + 28, + 0, + 0, + 0 + ], + [ + 86, + 40, + 88, + 10, + 2, + 0, + 0, + 0 + ], + [ + 88, + 10, + 97, + 6, + 26, + 0, + 0, + 0 + ], + [ + 91, + 68, + 93, + 10, + 0, + 0, + 0, + 0 + ], + [ + 93, + 10, + 97, + 6, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura10BodyParserC5parse_11contentTypeAA06ParsedB0OSgAA13RouterRequestC_SSSgtFZ", + "count": 28, + "regions": [ + [ + 110, + 92, + 120, + 6, + 28, + 0, + 0, + 0 + ], + [ + 111, + 50, + 113, + 10, + 0, + 0, + 0, + 0 + ], + [ + 113, + 10, + 120, + 6, + 28, + 0, + 0, + 0 + ], + [ + 115, + 61, + 117, + 10, + 28, + 0, + 0, + 0 + ], + [ + 117, + 10, + 119, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura10BodyParserC03getC011contentTypeAA0bC8Protocol_pSgSS_tFZ", + "count": 44, + "regions": [ + [ + 122, + 70, + 155, + 6, + 44, + 0, + 0, + 0 + ], + [ + 127, + 77, + 129, + 10, + 16, + 0, + 0, + 0 + ], + [ + 129, + 10, + 155, + 6, + 44, + 0, + 0, + 0 + ], + [ + 130, + 65, + 132, + 10, + 12, + 0, + 0, + 0 + ], + [ + 132, + 10, + 155, + 6, + 32, + 0, + 0, + 0 + ], + [ + 132, + 82, + 134, + 10, + 22, + 0, + 0, + 0 + ], + [ + 134, + 10, + 155, + 6, + 10, + 0, + 0, + 0 + ], + [ + 134, + 64, + 152, + 10, + 8, + 0, + 0, + 0 + ], + [ + 135, + 78, + 137, + 14, + 0, + 0, + 0, + 0 + ], + [ + 137, + 14, + 152, + 10, + 8, + 0, + 0, + 0 + ], + [ + 148, + 61, + 150, + 14, + 2, + 0, + 0, + 0 + ], + [ + 150, + 14, + 151, + 59, + 8, + 0, + 0, + 0 + ], + [ + 152, + 10, + 155, + 6, + 2, + 0, + 0, + 0 + ], + [ + 152, + 16, + 154, + 10, + 2, + 0, + 0, + 0 + ], + [ + 154, + 10, + 155, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura10BodyParserC5parse33_536D499D64F8CC06D350A9124C838ED0LL_6parserAA06ParsedB0OSgAA13RouterRequestC_AA0bC8Protocol_ptFZ", + "count": 28, + "regions": [ + [ + 167, + 99, + 176, + 6, + 28, + 0, + 0, + 0 + ], + [ + 169, + 12, + 172, + 10, + 28, + 0, + 0, + 0 + ], + [ + 172, + 17, + 174, + 10, + 0, + 0, + 0, + 0 + ], + [ + 174, + 10, + 175, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura10BodyParserC5parse33_536D499D64F8CC06D350A9124C838ED0LL_6parserAA06ParsedB0OSgAA13RouterRequestC_AA0bC8Protocol_ptFZSSyXEfu_", + "count": 0, + "regions": [ + [ + 173, + 23, + 173, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura10BodyParserC04readB4Data4with10Foundation0E0VAA13RouterRequestC_tKFZ", + "count": 28, + "regions": [ + [ + 187, + 79, + 196, + 6, + 28, + 0, + 0, + 0 + ], + [ + 191, + 16, + 193, + 10, + 56, + 0, + 0, + 0 + ], + [ + 193, + 10, + 195, + 24, + 28, + 0, + 0, + 0 + ], + [ + 193, + 17, + 193, + 28, + 56, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura20BodyParserMultiValueC03getC011contentTypeAA0bC8Protocol_pSgSS_tFZ", + "count": 2, + "regions": [ + [ + 209, + 79, + 216, + 6, + 2, + 0, + 0, + 0 + ], + [ + 210, + 71, + 212, + 10, + 2, + 0, + 0, + 0 + ], + [ + 212, + 10, + 216, + 6, + 0, + 0, + 0, + 0 + ], + [ + 213, + 14, + 215, + 10, + 0, + 0, + 0, + 0 + ], + [ + 215, + 10, + 216, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura20BodyParserMultiValueC6handle7request8response4nextyAA13RouterRequestC_AA0J8ResponseCyyctKF", + "count": 2, + "regions": [ + [ + 225, + 118, + 237, + 6, + 2, + 0, + 0, + 0 + ], + [ + 226, + 40, + 228, + 10, + 0, + 0, + 0, + 0 + ], + [ + 228, + 10, + 237, + 6, + 2, + 0, + 0, + 0 + ], + [ + 231, + 68, + 233, + 10, + 0, + 0, + 0, + 0 + ], + [ + 233, + 10, + 237, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s10Foundation4DataV6KituraE9hasPrefixySbACF", + "count": 26, + "regions": [ + [ + 241, + 42, + 246, + 6, + 26, + 0, + 0, + 0 + ], + [ + 242, + 36, + 244, + 10, + 0, + 0, + 0, + 0 + ], + [ + 244, + 10, + 245, + 58, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/BodyParser.swift" + ] + }, + { + "name": "$s6Kitura14JSONBodyParserC5parseyAA10ParsedBodyOSg10Foundation4DataVF", + "count": 8, + "regions": [ + [ + 20, + 45, + 26, + 6, + 8, + 0, + 0, + 0 + ], + [ + 22, + 55, + 24, + 8, + 0, + 0, + 0, + 0 + ], + [ + 24, + 8, + 25, + 25, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/JSONBodyParser.swift" + ] + }, + { + "name": "__ntd_MultiPartBodyParser_line:20:1", + "count": 10, + "regions": [ + [ + 26, + 28, + 40, + 6, + 10, + 0, + 0, + 0 + ], + [ + 31, + 18, + 34, + 10, + 0, + 0, + 0, + 0 + ], + [ + 34, + 10, + 40, + 6, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC8boundaryACSS_tcfcSSyXEfu_", + "count": 0, + "regions": [ + [ + 32, + 27, + 32, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC5parseyAA06ParsedD0OSg10Foundation4DataVF", + "count": 10, + "regions": [ + [ + 42, + 45, + 60, + 6, + 10, + 0, + 0, + 0 + ], + [ + 48, + 45, + 58, + 10, + 26, + 0, + 0, + 0 + ], + [ + 50, + 57, + 53, + 14, + 8, + 0, + 0, + 0 + ], + [ + 53, + 14, + 58, + 10, + 18, + 0, + 0, + 0 + ], + [ + 55, + 50, + 57, + 14, + 18, + 0, + 0, + 0 + ], + [ + 57, + 14, + 58, + 10, + 18, + 0, + 0, + 0 + ], + [ + 58, + 10, + 59, + 64, + 10, + 0, + 0, + 0 + ], + [ + 59, + 41, + 59, + 58, + 8, + 0, + 0, + 0 + ], + [ + 59, + 61, + 59, + 64, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC03getC033_A3DE0E24E8E5C49EE9A91F4B78A260E1LLyAA0C0VSg10Foundation4DataVF", + "count": 18, + "regions": [ + [ + 62, + 58, + 93, + 6, + 18, + 0, + 0, + 0 + ], + [ + 63, + 102, + 65, + 10, + 0, + 0, + 0, + 0 + ], + [ + 65, + 10, + 93, + 6, + 18, + 0, + 0, + 0 + ], + [ + 71, + 35, + 76, + 10, + 48, + 0, + 0, + 0 + ], + [ + 72, + 90, + 74, + 14, + 0, + 0, + 0, + 0 + ], + [ + 74, + 14, + 76, + 10, + 48, + 0, + 0, + 0 + ], + [ + 76, + 10, + 93, + 6, + 18, + 0, + 0, + 0 + ], + [ + 80, + 49, + 82, + 10, + 18, + 0, + 0, + 0 + ], + [ + 82, + 10, + 93, + 6, + 18, + 0, + 0, + 0 + ], + [ + 84, + 31, + 91, + 10, + 18, + 0, + 0, + 0 + ], + [ + 86, + 57, + 88, + 14, + 18, + 0, + 0, + 0 + ], + [ + 88, + 14, + 91, + 10, + 18, + 0, + 0, + 0 + ], + [ + 88, + 20, + 90, + 14, + 0, + 0, + 0, + 0 + ], + [ + 90, + 14, + 91, + 10, + 18, + 0, + 0, + 0 + ], + [ + 91, + 10, + 92, + 20, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC16handleHeaderLine33_A3DE0E24E8E5C49EE9A91F4B78A260E1LL_4partySS_AA0C0VztF", + "count": 48, + "regions": [ + [ + 96, + 69, + 134, + 6, + 48, + 0, + 0, + 0 + ], + [ + 97, + 74, + 101, + 10, + 12, + 0, + 0, + 0 + ], + [ + 101, + 10, + 134, + 6, + 36, + 0, + 0, + 0 + ], + [ + 103, + 81, + 117, + 10, + 10, + 0, + 0, + 0 + ], + [ + 105, + 134, + 109, + 14, + 10, + 0, + 0, + 0 + ], + [ + 109, + 14, + 117, + 10, + 10, + 0, + 0, + 0 + ], + [ + 110, + 142, + 114, + 14, + 8, + 0, + 0, + 0 + ], + [ + 114, + 14, + 116, + 19, + 10, + 0, + 0, + 0 + ], + [ + 117, + 10, + 134, + 6, + 26, + 0, + 0, + 0 + ], + [ + 120, + 122, + 126, + 10, + 0, + 0, + 0, + 0 + ], + [ + 126, + 10, + 134, + 6, + 26, + 0, + 0, + 0 + ], + [ + 128, + 66, + 131, + 10, + 4, + 0, + 0, + 0 + ], + [ + 131, + 10, + 134, + 6, + 22, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC16handleHeaderLine33_A3DE0E24E8E5C49EE9A91F4B78A260E1LL_4partySS_AA0C0VztFSS5IndexVyKXEfu_", + "count": 0, + "regions": [ + [ + 108, + 89, + 108, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC16handleHeaderLine33_A3DE0E24E8E5C49EE9A91F4B78A260E1LL_4partySS_AA0C0VztFSS5IndexVyKXEfu0_", + "count": 0, + "regions": [ + [ + 113, + 93, + 113, + 106, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura19MultiPartBodyParserC13getLabelRange33_A3DE0E24E8E5C49EE9A91F4B78A260E1LL2of2inSnySS5IndexVGSgSS_SStF", + "count": 110, + "regions": [ + [ + 137, + 30, + 143, + 6, + 110, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/MultiPartBodyParser.swift" + ] + }, + { + "name": "$s6Kitura10ParsedBodyO6asJSONSDySSypGSgvg", + "count": 4, + "regions": [ + [ + 55, + 39, + 62, + 6, + 4, + 0, + 0, + 0 + ], + [ + 57, + 9, + 58, + 24, + 2, + 0, + 0, + 0 + ], + [ + 59, + 9, + 60, + 23, + 2, + 0, + 0, + 0 + ], + [ + 61, + 10, + 62, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift" + ] + }, + { + "name": "$s6Kitura10ParsedBodyO11asMultiPartSayAA0F0VGSgvg", + "count": 6, + "regions": [ + [ + 68, + 37, + 75, + 6, + 6, + 0, + 0, + 0 + ], + [ + 70, + 9, + 71, + 24, + 6, + 0, + 0, + 0 + ], + [ + 72, + 9, + 73, + 23, + 0, + 0, + 0, + 0 + ], + [ + 74, + 10, + 75, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift" + ] + }, + { + "name": "$s6Kitura10ParsedBodyO5asRaw10Foundation4DataVSgvg", + "count": 2, + "regions": [ + [ + 80, + 29, + 87, + 6, + 2, + 0, + 0, + 0 + ], + [ + 82, + 9, + 83, + 24, + 2, + 0, + 0, + 0 + ], + [ + 84, + 9, + 85, + 23, + 0, + 0, + 0, + 0 + ], + [ + 86, + 10, + 87, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift" + ] + }, + { + "name": "$s6Kitura10ParsedBodyO6asTextSSSgvg", + "count": 12, + "regions": [ + [ + 92, + 32, + 99, + 6, + 12, + 0, + 0, + 0 + ], + [ + 94, + 9, + 95, + 24, + 8, + 0, + 0, + 0 + ], + [ + 96, + 9, + 97, + 23, + 4, + 0, + 0, + 0 + ], + [ + 98, + 10, + 99, + 6, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift" + ] + }, + { + "name": "$s6Kitura10ParsedBodyO12asURLEncodedSDyS2SGSgvg", + "count": 14, + "regions": [ + [ + 106, + 47, + 113, + 6, + 14, + 0, + 0, + 0 + ], + [ + 108, + 9, + 109, + 24, + 4, + 0, + 0, + 0 + ], + [ + 110, + 9, + 111, + 23, + 10, + 0, + 0, + 0 + ], + [ + 112, + 10, + 113, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift" + ] + }, + { + "name": "$s6Kitura10ParsedBodyO22asURLEncodedMultiValueSDySSSaySSGGSgvg", + "count": 10, + "regions": [ + [ + 120, + 60, + 127, + 6, + 10, + 0, + 0, + 0 + ], + [ + 122, + 9, + 123, + 24, + 2, + 0, + 0, + 0 + ], + [ + 124, + 9, + 125, + 23, + 8, + 0, + 0, + 0 + ], + [ + 126, + 10, + 127, + 6, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/ParsedBody.swift" + ] + }, + { + "name": "$s6Kitura13RawBodyParserC5parseyAA06ParsedC0OSg10Foundation4DataVF", + "count": 2, + "regions": [ + [ + 20, + 45, + 22, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/RawBodyParser.swift" + ] + }, + { + "name": "$s6Kitura14TextBodyParserC5parseyAA06ParsedC0OSg10Foundation4DataVF", + "count": 22, + "regions": [ + [ + 21, + 45, + 28, + 6, + 22, + 0, + 0, + 0 + ], + [ + 23, + 75, + 25, + 10, + 22, + 0, + 0, + 0 + ], + [ + 25, + 10, + 27, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/TextBodyParser.swift" + ] + }, + { + "name": "$s6Kitura20URLEncodedBodyParserC5parseyAA06ParsedC0OSg10Foundation4DataVF", + "count": 4, + "regions": [ + [ + 20, + 45, + 27, + 6, + 4, + 0, + 0, + 0 + ], + [ + 21, + 75, + 23, + 10, + 0, + 0, + 0, + 0 + ], + [ + 23, + 10, + 26, + 68, + 4, + 0, + 0, + 0 + ], + [ + 26, + 39, + 26, + 62, + 4, + 0, + 0, + 0 + ], + [ + 26, + 65, + 26, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/URLEncodedBodyParser.swift" + ] + }, + { + "name": "$s6Kitura30URLEncodedMultiValueBodyParserC5parseyAA06ParsedE0OSg10Foundation4DataVF", + "count": 2, + "regions": [ + [ + 31, + 45, + 38, + 6, + 2, + 0, + 0, + 0 + ], + [ + 32, + 75, + 34, + 10, + 0, + 0, + 0, + 0 + ], + [ + 34, + 10, + 37, + 78, + 2, + 0, + 0, + 0 + ], + [ + 37, + 39, + 37, + 72, + 2, + 0, + 0, + 0 + ], + [ + 37, + 75, + 37, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/bodyParser/URLEncodedBodyParser.swift" + ] + }, + { + "name": "__ntd_ContentType_line:33:8", + "count": 1, + "regions": [ + [ + 42, + 21, + 66, + 6, + 1, + 0, + 0, + 0 + ], + [ + 44, + 44, + 47, + 10, + 0, + 0, + 0, + 0 + ], + [ + 47, + 10, + 66, + 6, + 1, + 0, + 0, + 0 + ], + [ + 56, + 70, + 59, + 10, + 0, + 0, + 0, + 0 + ], + [ + 59, + 10, + 66, + 6, + 1, + 0, + 0, + 0 + ], + [ + 61, + 45, + 65, + 10, + 785, + 0, + 0, + 0 + ], + [ + 62, + 29, + 64, + 14, + 1014, + 0, + 0, + 0 + ], + [ + 64, + 14, + 65, + 10, + 785, + 0, + 0, + 0 + ], + [ + 65, + 10, + 66, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeCACyc33_8DDD3BC4516B0A6B9EBD5CBC057CE091LlfcSSyXEfu_", + "count": 0, + "regions": [ + [ + 45, + 23, + 45, + 60, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeCACyc33_8DDD3BC4516B0A6B9EBD5CBC057CE091LlfcSSyXEfu0_", + "count": 0, + "regions": [ + [ + 57, + 27, + 57, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC03getbC012forExtensionSSSgSS_tF", + "count": 441, + "regions": [ + [ + 80, + 69, + 82, + 6, + 441, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC03getbC011forFileNameSSSgSS_tF", + "count": 77, + "regions": [ + [ + 96, + 73, + 115, + 6, + 77, + 0, + 0, + 0 + ], + [ + 101, + 72, + 103, + 10, + 72, + 0, + 0, + 0 + ], + [ + 103, + 10, + 115, + 6, + 77, + 0, + 0, + 0 + ], + [ + 103, + 16, + 105, + 10, + 5, + 0, + 0, + 0 + ], + [ + 105, + 10, + 115, + 6, + 77, + 0, + 0, + 0 + ], + [ + 107, + 96, + 109, + 10, + 76, + 0, + 0, + 0 + ], + [ + 109, + 10, + 115, + 6, + 77, + 0, + 0, + 0 + ], + [ + 109, + 16, + 112, + 10, + 1, + 0, + 0, + 0 + ], + [ + 112, + 10, + 114, + 72, + 77, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC02isbC0_02ofC0SbSS_SStF", + "count": 5, + "regions": [ + [ + 130, + 100, + 158, + 6, + 5, + 0, + 0, + 0 + ], + [ + 135, + 35, + 137, + 10, + 1, + 0, + 0, + 0 + ], + [ + 137, + 10, + 158, + 6, + 4, + 0, + 0, + 0 + ], + [ + 140, + 53, + 142, + 10, + 1, + 0, + 0, + 0 + ], + [ + 142, + 10, + 158, + 6, + 3, + 0, + 0, + 0 + ], + [ + 146, + 45, + 148, + 10, + 1, + 0, + 0, + 0 + ], + [ + 148, + 10, + 158, + 6, + 2, + 0, + 0, + 0 + ], + [ + 154, + 92, + 156, + 10, + 1, + 0, + 0, + 0 + ], + [ + 156, + 10, + 157, + 21, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC02isbC0_02ofC0SbSS_SStFSbyKXEfu_", + "count": 2, + "regions": [ + [ + 153, + 42, + 153, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC02isbC0_02ofC0SbSS_SStFSbyKXEfu0_", + "count": 2, + "regions": [ + [ + 154, + 16, + 154, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC02isbC0_02ofC0SbSS_SStFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 154, + 63, + 154, + 91, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "$s6Kitura11ContentTypeC9normalize33_8DDD3BC4516B0A6B9EBD5CBC057CE091LL4typeS2S_tF", + "count": 3, + "regions": [ + [ + 165, + 52, + 184, + 6, + 3, + 0, + 0, + 0 + ], + [ + 168, + 9, + 169, + 55, + 1, + 0, + 0, + 0 + ], + [ + 170, + 9, + 171, + 33, + 1, + 0, + 0, + 0 + ], + [ + 172, + 9, + 173, + 38, + 1, + 0, + 0, + 0 + ], + [ + 181, + 9, + 182, + 24, + 0, + 0, + 0, + 0 + ], + [ + 183, + 10, + 184, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/ContentType.swift" + ] + }, + { + "name": "__ntd_MediaType_line:30:8", + "count": 5, + "regions": [ + [ + 72, + 60, + 77, + 6, + 5, + 0, + 0, + 0 + ], + [ + 87, + 39, + 103, + 6, + 773, + 0, + 0, + 0 + ], + [ + 91, + 89, + 93, + 10, + 2, + 0, + 0, + 0 + ], + [ + 93, + 10, + 103, + 6, + 771, + 0, + 0, + 0 + ], + [ + 95, + 77, + 97, + 10, + 769, + 0, + 0, + 0 + ], + [ + 97, + 10, + 103, + 6, + 771, + 0, + 0, + 0 + ], + [ + 97, + 16, + 99, + 10, + 2, + 0, + 0, + 0 + ], + [ + 99, + 10, + 103, + 6, + 771, + 0, + 0, + 0 + ], + [ + 112, + 39, + 118, + 6, + 766, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/MediaType.swift" + ] + }, + { + "name": "$s6Kitura9MediaTypeVyACSgSScfcSbyKXEfu_", + "count": 769, + "regions": [ + [ + 95, + 50, + 95, + 76, + 769, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/MediaType.swift" + ] + }, + { + "name": "$s6Kitura9MediaTypeV07contentC6HeaderACSgSS_tcfcSbSJXEfU_", + "count": 8879, + "regions": [ + [ + 113, + 50, + 116, + 10, + 8879, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/MediaType.swift" + ] + }, + { + "name": "$s6Kitura9MediaTypeV2eeoiySbAC_ACtFZ", + "count": 876, + "regions": [ + [ + 157, + 68, + 159, + 6, + 876, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/contentType/MediaType.swift" + ] + }, + { + "name": "__ntd_CacheRelatedHeadersSetter_line:22:5", + "count": 421, + "regions": [ + [ + 33, + 94, + 37, + 10, + 421, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CacheRelatedHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC25CacheRelatedHeadersSetterC017setCustomResponseG08response8filePath0M10AttributesyAA06RouterK0C_SSSDySo18NSFileAttributeKeyaypGtF", + "count": 60, + "regions": [ + [ + 40, + 81, + 44, + 10, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CacheRelatedHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC25CacheRelatedHeadersSetterC15addLastModified33_3EA71E611B0B4F862AF3F1990D81F81ALL8response14fileAttributesyAA14RouterResponseC_SDySo18NSFileAttributeKeyaypGtF", + "count": 60, + "regions": [ + [ + 47, + 80, + 54, + 10, + 60, + 0, + 0, + 0 + ], + [ + 48, + 38, + 53, + 14, + 44, + 0, + 0, + 0 + ], + [ + 50, + 36, + 52, + 18, + 44, + 0, + 0, + 0 + ], + [ + 52, + 18, + 53, + 14, + 44, + 0, + 0, + 0 + ], + [ + 53, + 14, + 54, + 10, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CacheRelatedHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC25CacheRelatedHeadersSetterC7addETag33_3EA71E611B0B4F862AF3F1990D81F81ALL8response14fileAttributesyAA14RouterResponseC_SDySo18NSFileAttributeKeyaypGtF", + "count": 60, + "regions": [ + [ + 57, + 72, + 62, + 10, + 60, + 0, + 0, + 0 + ], + [ + 59, + 90, + 61, + 14, + 44, + 0, + 0, + 0 + ], + [ + 61, + 14, + 62, + 10, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CacheRelatedHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC25CacheRelatedHeadersSetterC9setMaxAge33_3EA71E611B0B4F862AF3F1990D81F81ALL8responseyAA14RouterResponseC_tF", + "count": 60, + "regions": [ + [ + 64, + 58, + 66, + 10, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CacheRelatedHeadersSetter.swift" + ] + }, + { + "name": "__ntd_CompositeRelatedHeadersSetter_line:20:1", + "count": 421, + "regions": [ + [ + 24, + 46, + 26, + 6, + 421, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CompositeHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura29CompositeRelatedHeadersSetterC7settersAcA08ResponsedE0_pSgd_tcfcSbAFXEfU_", + "count": 842, + "regions": [ + [ + 25, + 49, + 25, + 62, + 842, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CompositeHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura29CompositeRelatedHeadersSetterC7settersAcA08ResponsedE0_pSgd_tcfcAaE_pAFXEfU0_", + "count": 541, + "regions": [ + [ + 25, + 67, + 25, + 74, + 541, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CompositeHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura29CompositeRelatedHeadersSetterC017setCustomResponseD08response8filePath0J10AttributesyAA06RouterH0C_SSSDySo18NSFileAttributeKeyaypGtF", + "count": 60, + "regions": [ + [ + 29, + 77, + 34, + 6, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CompositeHeadersSetter.swift" + ] + }, + { + "name": "$s6Kitura29CompositeRelatedHeadersSetterC017setCustomResponseD08response8filePath0J10AttributesyAA06RouterH0C_SSSDySo18NSFileAttributeKeyaypGtFyAA0hdE0_pXEfU_", + "count": 104, + "regions": [ + [ + 30, + 40, + 33, + 10, + 104, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/CompositeHeadersSetter.swift" + ] + }, + { + "name": "__ntd_FileServer_line:23:5", + "count": 421, + "regions": [ + [ + 45, + 61, + 52, + 10, + 421, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C03getC4Path4fromSSSgAA13RouterRequestC_tF", + "count": 168, + "regions": [ + [ + 54, + 66, + 87, + 10, + 168, + 0, + 0, + 0 + ], + [ + 56, + 69, + 58, + 14, + 0, + 0, + 0, + 0 + ], + [ + 58, + 14, + 87, + 10, + 168, + 0, + 0, + 0 + ], + [ + 60, + 43, + 62, + 14, + 0, + 0, + 0, + 0 + ], + [ + 62, + 14, + 87, + 10, + 168, + 0, + 0, + 0 + ], + [ + 63, + 44, + 65, + 14, + 168, + 0, + 0, + 0 + ], + [ + 65, + 14, + 87, + 10, + 168, + 0, + 0, + 0 + ], + [ + 67, + 51, + 76, + 14, + 154, + 0, + 0, + 0 + ], + [ + 70, + 65, + 72, + 18, + 154, + 0, + 0, + 0 + ], + [ + 72, + 18, + 76, + 14, + 154, + 0, + 0, + 0 + ], + [ + 72, + 24, + 75, + 18, + 0, + 0, + 0, + 0 + ], + [ + 75, + 18, + 76, + 14, + 154, + 0, + 0, + 0 + ], + [ + 76, + 14, + 87, + 10, + 168, + 0, + 0, + 0 + ], + [ + 78, + 40, + 84, + 14, + 44, + 0, + 0, + 0 + ], + [ + 79, + 43, + 81, + 18, + 42, + 0, + 0, + 0 + ], + [ + 81, + 18, + 84, + 14, + 44, + 0, + 0, + 0 + ], + [ + 81, + 24, + 83, + 18, + 2, + 0, + 0, + 0 + ], + [ + 83, + 18, + 84, + 14, + 42, + 0, + 0, + 0 + ], + [ + 84, + 14, + 86, + 28, + 166, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C03getC4Path4fromSSSgAA13RouterRequestC_tFSSyXEfu_", + "count": 0, + "regions": [ + [ + 73, + 33, + 73, + 62, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C05serveC0_11requestPath8responseySS_SSAA14RouterResponseCtF", + "count": 166, + "regions": [ + [ + 89, + 91, + 105, + 10, + 166, + 0, + 0, + 0 + ], + [ + 93, + 84, + 102, + 14, + 74, + 0, + 0, + 0 + ], + [ + 102, + 14, + 105, + 10, + 92, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C24tryToServeWithExtensions33_17F711BCCD97D5ACEB49723B8D2461E9LL_8responseySS_AA14RouterResponseCtF", + "count": 92, + "regions": [ + [ + 107, + 93, + 112, + 10, + 92, + 0, + 0, + 0 + ], + [ + 109, + 73, + 111, + 14, + 4, + 0, + 0, + 0 + ], + [ + 111, + 14, + 112, + 10, + 92, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C24tryToServeWithExtensions33_17F711BCCD97D5ACEB49723B8D2461E9LL_8responseySS_AA14RouterResponseCtFS2SXEfU_", + "count": 4, + "regions": [ + [ + 108, + 73, + 108, + 96, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C013serveExistingC033_17F711BCCD97D5ACEB49723B8D2461E9LL_11requestPath11isDirectory8responseySS_SSSbAA14RouterResponseCtF", + "count": 74, + "regions": [ + [ + 115, + 66, + 127, + 10, + 74, + 0, + 0, + 0 + ], + [ + 116, + 28, + 124, + 14, + 16, + 0, + 0, + 0 + ], + [ + 117, + 29, + 123, + 18, + 14, + 0, + 0, + 0 + ], + [ + 118, + 24, + 120, + 22, + 14, + 0, + 0, + 0 + ], + [ + 120, + 29, + 122, + 22, + 0, + 0, + 0, + 0 + ], + [ + 122, + 22, + 123, + 18, + 14, + 0, + 0, + 0 + ], + [ + 123, + 18, + 124, + 14, + 16, + 0, + 0, + 0 + ], + [ + 124, + 14, + 127, + 10, + 74, + 0, + 0, + 0 + ], + [ + 124, + 20, + 126, + 14, + 58, + 0, + 0, + 0 + ], + [ + 126, + 14, + 127, + 10, + 74, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C019serveIfNonDirectoryC033_17F711BCCD97D5ACEB49723B8D2461E9LL6atPath8responseSbSS_AA14RouterResponseCtF", + "count": 4, + "regions": [ + [ + 130, + 101, + 144, + 10, + 4, + 0, + 0, + 0 + ], + [ + 132, + 82, + 142, + 14, + 2, + 0, + 0, + 0 + ], + [ + 138, + 37, + 141, + 18, + 2, + 0, + 0, + 0 + ], + [ + 141, + 18, + 142, + 14, + 0, + 0, + 0, + 0 + ], + [ + 142, + 14, + 143, + 25, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C017serveNonDirectoryC033_17F711BCCD97D5ACEB49723B8D2461E9LL_8responseySS_AA14RouterResponseCtF", + "count": 60, + "regions": [ + [ + 146, + 90, + 203, + 10, + 60, + 0, + 0, + 0 + ], + [ + 147, + 44, + 149, + 14, + 0, + 0, + 0, + 0 + ], + [ + 149, + 14, + 203, + 10, + 60, + 0, + 0, + 0 + ], + [ + 151, + 16, + 200, + 14, + 60, + 0, + 0, + 0 + ], + [ + 157, + 68, + 157, + 75, + 58, + 0, + 0, + 0 + ], + [ + 157, + 78, + 157, + 84, + 2, + 0, + 0, + 0 + ], + [ + 166, + 102, + 184, + 18, + 20, + 0, + 0, + 0 + ], + [ + 170, + 58, + 180, + 22, + 18, + 0, + 0, + 0 + ], + [ + 172, + 134, + 176, + 26, + 4, + 0, + 0, + 0 + ], + [ + 176, + 26, + 180, + 22, + 18, + 0, + 0, + 0 + ], + [ + 176, + 32, + 179, + 26, + 14, + 0, + 0, + 0 + ], + [ + 179, + 26, + 180, + 22, + 18, + 0, + 0, + 0 + ], + [ + 180, + 22, + 184, + 18, + 20, + 0, + 0, + 0 + ], + [ + 180, + 28, + 183, + 22, + 2, + 0, + 0, + 0 + ], + [ + 183, + 22, + 184, + 18, + 20, + 0, + 0, + 0 + ], + [ + 184, + 18, + 200, + 14, + 60, + 0, + 0, + 0 + ], + [ + 184, + 24, + 199, + 18, + 40, + 0, + 0, + 0 + ], + [ + 186, + 41, + 189, + 22, + 2, + 0, + 0, + 0 + ], + [ + 189, + 22, + 199, + 18, + 40, + 0, + 0, + 0 + ], + [ + 189, + 28, + 198, + 22, + 38, + 0, + 0, + 0 + ], + [ + 191, + 97, + 193, + 26, + 0, + 0, + 0, + 0 + ], + [ + 193, + 26, + 198, + 22, + 38, + 0, + 0, + 0 + ], + [ + 193, + 32, + 197, + 26, + 38, + 0, + 0, + 0 + ], + [ + 197, + 26, + 198, + 22, + 38, + 0, + 0, + 0 + ], + [ + 198, + 22, + 199, + 18, + 40, + 0, + 0, + 0 + ], + [ + 199, + 18, + 200, + 14, + 60, + 0, + 0, + 0 + ], + [ + 200, + 21, + 202, + 14, + 0, + 0, + 0, + 0 + ], + [ + 202, + 14, + 203, + 10, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C017serveNonDirectoryC033_17F711BCCD97D5ACEB49723B8D2461E9LL_8responseySS_AA14RouterResponseCtFSSyXEfu_", + "count": 0, + "regions": [ + [ + 201, + 27, + 201, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C07isValidC4Path33_17F711BCCD97D5ACEB49723B8D2461E9LLySbSSF", + "count": 60, + "regions": [ + [ + 205, + 66, + 211, + 10, + 60, + 0, + 0, + 0 + ], + [ + 207, + 112, + 209, + 14, + 0, + 0, + 0, + 0 + ], + [ + 209, + 14, + 210, + 65, + 60, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C19serveNotSatisfiable33_17F711BCCD97D5ACEB49723B8D2461E9LL_8fileSize8responseySS_s6UInt64VAA14RouterResponseCtF", + "count": 2, + "regions": [ + [ + 213, + 106, + 216, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C024serveNonDirectoryPartialC033_17F711BCCD97D5ACEB49723B8D2461E9LL_8fileSize6ranges8responseySS_s6UInt64VSaySnyALGGAA14RouterResponseCtF", + "count": 14, + "regions": [ + [ + 218, + 140, + 247, + 10, + 14, + 0, + 0, + 0 + ], + [ + 220, + 34, + 228, + 14, + 12, + 0, + 0, + 0 + ], + [ + 228, + 14, + 247, + 10, + 14, + 0, + 0, + 0 + ], + [ + 228, + 20, + 246, + 14, + 2, + 0, + 0, + 0 + ], + [ + 246, + 14, + 247, + 10, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C024serveNonDirectoryPartialC033_17F711BCCD97D5ACEB49723B8D2461E9LL_8fileSize6ranges8responseySS_s6UInt64VSaySnyALGGAA14RouterResponseCtF10Foundation4DataVyKXEfu_", + "count": 0, + "regions": [ + [ + 225, + 45, + 225, + 51, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C024serveNonDirectoryPartialC033_17F711BCCD97D5ACEB49723B8D2461E9LL_8fileSize6ranges8responseySS_s6UInt64VSaySnyALGGAA14RouterResponseCtFyAMXEfU_", + "count": 4, + "regions": [ + [ + 233, + 32, + 242, + 18, + 4, + 0, + 0, + 0 + ], + [ + 237, + 57, + 237, + 59, + 0, + 0, + 0, + 0 + ], + [ + 237, + 62, + 237, + 97, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C024serveNonDirectoryPartialC033_17F711BCCD97D5ACEB49723B8D2461E9LL_8fileSize6ranges8responseySS_s6UInt64VSaySnyALGGAA14RouterResponseCtFyAMXEfU_10Foundation4DataVyKXEfu_", + "count": 0, + "regions": [ + [ + 234, + 97, + 234, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC0cD0C40ifRangeHeaderShouldPreventPartialReponse33_17F711BCCD97D5ACEB49723B8D2461E9LL14requestHeaders14fileAttributesSbAA0T0V_SDySo18NSFileAttributeKeyaypGtF", + "count": 18, + "regions": [ + [ + 250, + 146, + 272, + 10, + 18, + 0, + 0, + 0 + ], + [ + 252, + 76, + 254, + 14, + 10, + 0, + 0, + 0 + ], + [ + 254, + 14, + 272, + 10, + 8, + 0, + 0, + 0 + ], + [ + 257, + 41, + 264, + 14, + 4, + 0, + 0, + 0 + ], + [ + 260, + 44, + 262, + 18, + 2, + 0, + 0, + 0 + ], + [ + 262, + 18, + 263, + 28, + 2, + 0, + 0, + 0 + ], + [ + 264, + 14, + 272, + 10, + 4, + 0, + 0, + 0 + ], + [ + 268, + 110, + 270, + 14, + 2, + 0, + 0, + 0 + ], + [ + 270, + 14, + 271, + 25, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/FileServer.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV07isBytesbC0ySbSSFZ", + "count": 27, + "regions": [ + [ + 39, + 72, + 52, + 6, + 27, + 0, + 0, + 0 + ], + [ + 44, + 12, + 46, + 10, + 27, + 0, + 0, + 0 + ], + [ + 46, + 17, + 49, + 10, + 0, + 0, + 0, + 0 + ], + [ + 49, + 10, + 51, + 32, + 27, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV07isBytesbC0ySbSSFZSSyXEfu_", + "count": 0, + "regions": [ + [ + 47, + 23, + 47, + 94, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV5parse4size11headerValue13shouldCombineACs6UInt64V_SSSbtKFZ", + "count": 40, + "regions": [ + [ + 60, + 108, + 132, + 6, + 40, + 0, + 0, + 0 + ], + [ + 62, + 71, + 65, + 10, + 1, + 0, + 0, + 0 + ], + [ + 65, + 10, + 132, + 6, + 39, + 0, + 0, + 0 + ], + [ + 121, + 36, + 124, + 10, + 8, + 0, + 0, + 0 + ], + [ + 124, + 10, + 132, + 6, + 31, + 0, + 0, + 0 + ], + [ + 126, + 26, + 129, + 10, + 20, + 0, + 0, + 0 + ], + [ + 129, + 10, + 132, + 6, + 11, + 0, + 0, + 0 + ], + [ + 129, + 16, + 131, + 10, + 11, + 0, + 0, + 0 + ], + [ + 131, + 10, + 132, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV5parse4size11headerValue13shouldCombineACs6UInt64V_SSSbtKFZySSXEfU_", + "count": 53, + "regions": [ + [ + 79, + 30, + 119, + 10, + 53, + 0, + 0, + 0 + ], + [ + 81, + 40, + 84, + 14, + 1, + 0, + 0, + 0 + ], + [ + 84, + 14, + 119, + 10, + 52, + 0, + 0, + 0 + ], + [ + 90, + 59, + 94, + 14, + 41, + 0, + 0, + 0 + ], + [ + 94, + 14, + 119, + 10, + 52, + 0, + 0, + 0 + ], + [ + 94, + 43, + 103, + 14, + 5, + 0, + 0, + 0 + ], + [ + 97, + 31, + 99, + 18, + 1, + 0, + 0, + 0 + ], + [ + 99, + 18, + 103, + 14, + 5, + 0, + 0, + 0 + ], + [ + 99, + 24, + 102, + 18, + 4, + 0, + 0, + 0 + ], + [ + 102, + 18, + 103, + 14, + 5, + 0, + 0, + 0 + ], + [ + 103, + 14, + 119, + 10, + 52, + 0, + 0, + 0 + ], + [ + 103, + 20, + 107, + 14, + 47, + 0, + 0, + 0 + ], + [ + 107, + 14, + 119, + 10, + 52, + 0, + 0, + 0 + ], + [ + 110, + 48, + 112, + 14, + 11, + 0, + 0, + 0 + ], + [ + 112, + 14, + 119, + 10, + 52, + 0, + 0, + 0 + ], + [ + 115, + 108, + 117, + 14, + 10, + 0, + 0, + 0 + ], + [ + 117, + 14, + 119, + 10, + 42, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV5parse4size11headerValue13shouldCombineACs6UInt64V_SSSbtKFZySSXEfU_SbyKXEfu_", + "count": 47, + "regions": [ + [ + 90, + 40, + 90, + 58, + 47, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV5parse4size11headerValue13shouldCombineACs6UInt64V_SSSbtKFZySSXEfU_SbyKXEfu0_", + "count": 51, + "regions": [ + [ + 110, + 30, + 110, + 47, + 51, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV14combinedRanges6rangesSaySnys6UInt64VGGAI_tFZAC07IndexedB0VAHXEfU_", + "count": 29, + "regions": [ + [ + 147, + 34, + 151, + 14, + 29, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV14combinedRanges6rangesSaySnys6UInt64VGGAI_tFZSbAC07IndexedB0V_AKtXEfU0_", + "count": 12, + "regions": [ + [ + 151, + 22, + 153, + 14, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV14combinedRanges6rangesSaySnys6UInt64VGGAI_tFZSbAC07IndexedB0V_AKtXEfU1_", + "count": 6, + "regions": [ + [ + 174, + 39, + 176, + 14, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura11RangeHeaderV14combinedRanges6rangesSaySnys6UInt64VGGAI_tFZAhC07IndexedB0VXEfU2_", + "count": 25, + "regions": [ + [ + 176, + 19, + 178, + 14, + 25, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/RangeHeader.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC19ResourcePathHandlerC011getAbsoluteF03forS2S_tFZ", + "count": 477, + "regions": [ + [ + 28, + 65, + 63, + 10, + 477, + 0, + 0, + 0 + ], + [ + 30, + 63, + 32, + 14, + 263, + 0, + 0, + 0 + ], + [ + 32, + 14, + 63, + 10, + 477, + 0, + 0, + 0 + ], + [ + 37, + 39, + 39, + 14, + 62, + 0, + 0, + 0 + ], + [ + 39, + 14, + 63, + 10, + 415, + 0, + 0, + 0 + ], + [ + 52, + 61, + 54, + 14, + 302, + 0, + 0, + 0 + ], + [ + 54, + 14, + 63, + 10, + 113, + 0, + 0, + 0 + ], + [ + 58, + 81, + 60, + 14, + 0, + 0, + 0, + 0 + ], + [ + 60, + 14, + 62, + 61, + 113, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/ResourcePathHandler.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC19ResourcePathHandlerC011getAbsoluteF03forS2S_tFZSbyKXEfu_", + "count": 265, + "regions": [ + [ + 30, + 45, + 30, + 62, + 265, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/ResourcePathHandler.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC19ResourcePathHandlerC021getOriginalRepositoryF033_A25850C0D0B94E54FE9E36694ECBD9B0LLSSSgyFZSSyXEfu_", + "count": 0, + "regions": [ + [ + 76, + 27, + 76, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/ResourcePathHandler.swift" + ] + }, + { + "name": "__ntd_CacheOptions_line:39:12", + "count": 241, + "regions": [ + [ + 53, + 41, + 57, + 10, + 241, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/StaticFileServer.swift" + ] + }, + { + "name": "__ntd_Options_line:61:12", + "count": 421, + "regions": [ + [ + 80, + 109, + 86, + 10, + 421, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/StaticFileServer.swift" + ] + }, + { + "name": "__ntd_StaticFileServer_line:34:6", + "count": 421, + "regions": [ + [ + 105, + 77, + 119, + 6, + 421, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/StaticFileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC6handle7request8response4nextyAA13RouterRequestC_AA0I8ResponseCyyctF", + "count": 172, + "regions": [ + [ + 131, + 100, + 149, + 6, + 172, + 0, + 0, + 0 + ], + [ + 136, + 100, + 138, + 10, + 4, + 0, + 0, + 0 + ], + [ + 138, + 10, + 149, + 6, + 168, + 0, + 0, + 0 + ], + [ + 140, + 73, + 142, + 10, + 2, + 0, + 0, + 0 + ], + [ + 142, + 10, + 149, + 6, + 166, + 0, + 0, + 0 + ], + [ + 144, + 61, + 146, + 10, + 0, + 0, + 0, + 0 + ], + [ + 146, + 10, + 149, + 6, + 166, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/StaticFileServer.swift" + ] + }, + { + "name": "$s6Kitura16StaticFileServerC6handle7request8response4nextyAA13RouterRequestC_AA0I8ResponseCyyctFSbyKXEfu_", + "count": 8, + "regions": [ + [ + 136, + 64, + 136, + 94, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Sources/Kitura/staticFileServer/StaticFileServer.swift" + ] + }, + { + "name": "__ntd_BodyFormat_line:39:8", + "count": 1, + "regions": [ + [ + 46, + 34, + 48, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/BodyFormat.swift" + ] + }, + { + "name": "$s15KituraContracts10BodyFormatV2eeoiySbAC_ACtFZ", + "count": 28, + "regions": [ + [ + 53, + 74, + 55, + 6, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/BodyFormat.swift" + ] + }, + { + "name": "__ntd_UnsupportedBodyFormatError_line:67:8", + "count": 0, + "regions": [ + [ + 75, + 43, + 77, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/BodyFormat.swift" + ] + }, + { + "name": "__ntd_Coder_line:27:8", + "count": 96, + "regions": [ + [ + 43, + 19, + 47, + 6, + 96, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Coder.swift" + ] + }, + { + "name": "$s15KituraContracts5CoderC12getFieldName4fromSSSays9CodingKey_pG_tFZ", + "count": 243, + "regions": [ + [ + 57, + 77, + 63, + 6, + 243, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Coder.swift" + ] + }, + { + "name": "$s15KituraContracts5CoderC12getFieldName4fromSSSays9CodingKey_pG_tFZSSSgsAF_pXEfU_", + "count": 189, + "regions": [ + [ + 59, + 42, + 59, + 58, + 189, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Coder.swift" + ] + }, + { + "name": "$sSS15KituraContractsE3intSiSgvg", + "count": 48, + "regions": [ + [ + 24, + 26, + 26, + 6, + 48, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE4int8s4Int8VSgvg", + "count": 0, + "regions": [ + [ + 29, + 28, + 31, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5int16s5Int16VSgvg", + "count": 0, + "regions": [ + [ + 34, + 30, + 36, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5int32s5Int32VSgvg", + "count": 0, + "regions": [ + [ + 39, + 30, + 41, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5int64s5Int64VSgvg", + "count": 0, + "regions": [ + [ + 44, + 30, + 46, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE4uIntSuSgvg", + "count": 0, + "regions": [ + [ + 49, + 28, + 51, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5uInt8s5UInt8VSgvg", + "count": 0, + "regions": [ + [ + 54, + 30, + 56, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE6uInt16s6UInt16VSgvg", + "count": 0, + "regions": [ + [ + 59, + 32, + 61, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE6uInt32s6UInt32VSgvg", + "count": 0, + "regions": [ + [ + 64, + 32, + 66, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE6uInt64s6UInt64VSgvg", + "count": 0, + "regions": [ + [ + 69, + 32, + 71, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5floatSfSgvg", + "count": 0, + "regions": [ + [ + 74, + 30, + 76, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE6doubleSdSgvg", + "count": 0, + "regions": [ + [ + 79, + 32, + 81, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE7booleanSbSgvg", + "count": 0, + "regions": [ + [ + 84, + 31, + 86, + 6, + 0, + 0, + 0, + 0 + ], + [ + 85, + 32, + 85, + 42, + 0, + 0, + 0, + 0 + ], + [ + 85, + 45, + 85, + 50, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE6stringSSvg", + "count": 30, + "regions": [ + [ + 89, + 31, + 91, + 6, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE8intArraySaySiGSgvg", + "count": 12, + "regions": [ + [ + 94, + 33, + 96, + 6, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9int8ArraySays4Int8VGSgvg", + "count": 0, + "regions": [ + [ + 99, + 35, + 101, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE10int16ArraySays5Int16VGSgvg", + "count": 0, + "regions": [ + [ + 104, + 37, + 106, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE10int32ArraySays5Int32VGSgvg", + "count": 0, + "regions": [ + [ + 109, + 37, + 111, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE10int64ArraySays5Int64VGSgvg", + "count": 0, + "regions": [ + [ + 114, + 37, + 116, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9uIntArraySaySuGSgvg", + "count": 0, + "regions": [ + [ + 119, + 35, + 121, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE10uInt8ArraySays5UInt8VGSgvg", + "count": 0, + "regions": [ + [ + 124, + 37, + 126, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11uInt16ArraySays6UInt16VGSgvg", + "count": 0, + "regions": [ + [ + 129, + 39, + 131, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11uInt32ArraySays6UInt32VGSgvg", + "count": 0, + "regions": [ + [ + 134, + 39, + 136, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11uInt64ArraySays6UInt64VGSgvg", + "count": 0, + "regions": [ + [ + 139, + 39, + 141, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE10floatArraySaySfGSgvg", + "count": 0, + "regions": [ + [ + 144, + 37, + 146, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11doubleArraySaySdGSgvg", + "count": 0, + "regions": [ + [ + 149, + 39, + 151, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE12booleanArraySaySbGSgvg", + "count": 0, + "regions": [ + [ + 154, + 38, + 156, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11stringArraySaySSGvg", + "count": 2, + "regions": [ + [ + 159, + 38, + 162, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9decodableyxSgxmSeRzlF", + "count": 12, + "regions": [ + [ + 170, + 63, + 176, + 6, + 12, + 0, + 0, + 0 + ], + [ + 171, + 55, + 173, + 10, + 0, + 0, + 0, + 0 + ], + [ + 173, + 10, + 175, + 19, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE4datey10Foundation4DateVSgSo15NSDateFormatterCF", + "count": 24, + "regions": [ + [ + 184, + 59, + 186, + 6, + 24, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9dateArrayySay10Foundation4DateVGSgSo15NSDateFormatterCF", + "count": 0, + "regions": [ + [ + 194, + 66, + 201, + 6, + 0, + 0, + 0, + 0 + ], + [ + 197, + 38, + 199, + 10, + 0, + 0, + 0, + 0 + ], + [ + 199, + 10, + 200, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9dateArrayySay10Foundation4DateVGSgSo15NSDateFormatterCFAESgSSXEfU_", + "count": 0, + "regions": [ + [ + 196, + 30, + 196, + 58, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9dateArrayySay10Foundation4DateVGSgSo15NSDateFormatterCFSbAESgXEfU0_", + "count": 0, + "regions": [ + [ + 196, + 66, + 196, + 79, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE9dateArrayySay10Foundation4DateVGSgSo15NSDateFormatterCFA2ESgXEfU1_", + "count": 0, + "regions": [ + [ + 196, + 84, + 196, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11decodeArray33_6B76857DA99967C298D8768CB9E6AA49LLySayxGSgxms25LosslessStringConvertibleRzlFxSgSSXEfU_", + "count": 36, + "regions": [ + [ + 206, + 36, + 206, + 45, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11decodeArray33_6B76857DA99967C298D8768CB9E6AA49LLySayxGSgxms25LosslessStringConvertibleRzlFSbxSgXEfU0_", + "count": 36, + "regions": [ + [ + 206, + 53, + 206, + 66, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE11decodeArray33_6B76857DA99967C298D8768CB9E6AA49LLySayxGSgxms25LosslessStringConvertibleRzlFxxSgXEfU1_", + "count": 36, + "regions": [ + [ + 206, + 71, + 206, + 78, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE25urlDecodedFieldValuePairsSDyS2SGvg", + "count": 8, + "regions": [ + [ + 212, + 53, + 227, + 6, + 8, + 0, + 0, + 0 + ], + [ + 214, + 55, + 225, + 10, + 16, + 0, + 0, + 0 + ], + [ + 216, + 34, + 224, + 14, + 14, + 0, + 0, + 0 + ], + [ + 218, + 52, + 220, + 18, + 0, + 0, + 0, + 0 + ], + [ + 220, + 18, + 224, + 14, + 14, + 0, + 0, + 0 + ], + [ + 221, + 22, + 223, + 18, + 14, + 0, + 0, + 0 + ], + [ + 223, + 18, + 224, + 14, + 14, + 0, + 0, + 0 + ], + [ + 224, + 14, + 225, + 10, + 16, + 0, + 0, + 0 + ], + [ + 225, + 10, + 226, + 22, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE18keyAndDecodedValueSS0C0_SSSg5valuetvgSSyXEfu_", + "count": 0, + "regions": [ + [ + 242, + 25, + 242, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "$sSS15KituraContractsE18keyAndDecodedValueSS0C0_SSSg5valuetvgSSyKXEfu0_", + "count": 0, + "regions": [ + [ + 244, + 50, + 244, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/Extensions.swift" + ] + }, + { + "name": "__ntd_QueryDecoder_line:41:8", + "count": 14, + "regions": [ + [ + 67, + 28, + 70, + 6, + 14, + 0, + 0, + 0 + ], + [ + 74, + 48, + 77, + 6, + 62, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC6decode_4fromxxm_10Foundation4DataVtKSeRzlF", + "count": 8, + "regions": [ + [ + 92, + 83, + 98, + 6, + 8, + 0, + 0, + 0 + ], + [ + 93, + 72, + 95, + 10, + 0, + 0, + 0, + 0 + ], + [ + 95, + 10, + 97, + 36, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC6decodeyxxmKSeRzlF", + "count": 200, + "regions": [ + [ + 113, + 66, + 222, + 6, + 200, + 0, + 0, + 0 + ], + [ + 120, + 9, + 121, + 67, + 0, + 0, + 0, + 0 + ], + [ + 123, + 9, + 124, + 63, + 66, + 0, + 0, + 0 + ], + [ + 125, + 9, + 126, + 64, + 0, + 0, + 0, + 0 + ], + [ + 127, + 9, + 128, + 65, + 0, + 0, + 0, + 0 + ], + [ + 129, + 9, + 130, + 65, + 0, + 0, + 0, + 0 + ], + [ + 131, + 9, + 132, + 65, + 0, + 0, + 0, + 0 + ], + [ + 134, + 9, + 135, + 68, + 12, + 0, + 0, + 0 + ], + [ + 136, + 9, + 137, + 69, + 0, + 0, + 0, + 0 + ], + [ + 138, + 9, + 139, + 70, + 0, + 0, + 0, + 0 + ], + [ + 140, + 9, + 141, + 70, + 0, + 0, + 0, + 0 + ], + [ + 142, + 9, + 143, + 70, + 0, + 0, + 0, + 0 + ], + [ + 145, + 9, + 146, + 64, + 0, + 0, + 0, + 0 + ], + [ + 147, + 9, + 148, + 65, + 0, + 0, + 0, + 0 + ], + [ + 149, + 9, + 150, + 66, + 0, + 0, + 0, + 0 + ], + [ + 151, + 9, + 152, + 66, + 0, + 0, + 0, + 0 + ], + [ + 153, + 9, + 154, + 66, + 0, + 0, + 0, + 0 + ], + [ + 156, + 9, + 157, + 69, + 0, + 0, + 0, + 0 + ], + [ + 158, + 9, + 159, + 70, + 0, + 0, + 0, + 0 + ], + [ + 160, + 9, + 161, + 71, + 0, + 0, + 0, + 0 + ], + [ + 162, + 9, + 163, + 71, + 0, + 0, + 0, + 0 + ], + [ + 164, + 9, + 165, + 71, + 0, + 0, + 0, + 0 + ], + [ + 167, + 9, + 168, + 65, + 0, + 0, + 0, + 0 + ], + [ + 169, + 9, + 170, + 70, + 0, + 0, + 0, + 0 + ], + [ + 172, + 9, + 173, + 66, + 0, + 0, + 0, + 0 + ], + [ + 174, + 9, + 175, + 71, + 0, + 0, + 0, + 0 + ], + [ + 177, + 9, + 178, + 79, + 24, + 0, + 0, + 0 + ], + [ + 179, + 9, + 180, + 84, + 0, + 0, + 0, + 0 + ], + [ + 182, + 9, + 183, + 66, + 30, + 0, + 0, + 0 + ], + [ + 184, + 9, + 185, + 71, + 2, + 0, + 0, + 0 + ], + [ + 186, + 9, + 194, + 77, + 0, + 0, + 0, + 0 + ], + [ + 188, + 47, + 193, + 14, + 0, + 0, + 0, + 0 + ], + [ + 190, + 49, + 192, + 16, + 0, + 0, + 0, + 0 + ], + [ + 192, + 16, + 193, + 14, + 0, + 0, + 0, + 0 + ], + [ + 193, + 14, + 194, + 77, + 0, + 0, + 0, + 0 + ], + [ + 195, + 9, + 203, + 77, + 0, + 0, + 0, + 0 + ], + [ + 197, + 47, + 202, + 14, + 0, + 0, + 0, + 0 + ], + [ + 199, + 49, + 201, + 16, + 0, + 0, + 0, + 0 + ], + [ + 201, + 16, + 202, + 14, + 0, + 0, + 0, + 0 + ], + [ + 202, + 14, + 203, + 77, + 0, + 0, + 0, + 0 + ], + [ + 204, + 9, + 212, + 77, + 0, + 0, + 0, + 0 + ], + [ + 206, + 47, + 211, + 14, + 0, + 0, + 0, + 0 + ], + [ + 208, + 49, + 210, + 16, + 0, + 0, + 0, + 0 + ], + [ + 210, + 16, + 211, + 14, + 0, + 0, + 0, + 0 + ], + [ + 211, + 14, + 212, + 77, + 0, + 0, + 0, + 0 + ], + [ + 213, + 9, + 220, + 14, + 66, + 0, + 0, + 0 + ], + [ + 215, + 34, + 217, + 14, + 54, + 0, + 0, + 0 + ], + [ + 217, + 14, + 220, + 14, + 12, + 0, + 0, + 0 + ], + [ + 217, + 20, + 220, + 14, + 12, + 0, + 0, + 0 + ], + [ + 220, + 14, + 220, + 14, + 0, + 0, + 0, + 0 + ], + [ + 221, + 10, + 222, + 6, + 200, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC6decodeyxxmKSeRzlFSSyXEfu_", + "count": 200, + "regions": [ + [ + 116, + 21, + 116, + 93, + 200, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC6decodeyxxmKSeRzlFSSyXEfu0_", + "count": 66, + "regions": [ + [ + 214, + 25, + 214, + 63, + 66, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC9container7keyedBys22KeyedDecodingContainerVyxGxm_tKs9CodingKeyRzlF", + "count": 62, + "regions": [ + [ + 232, + 116, + 234, + 6, + 62, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16unkeyedContainers015UnkeyedDecodingF0_pyKF", + "count": 0, + "regions": [ + [ + 244, + 71, + 246, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC20singleValueContainers06Singlef8DecodingG0_pyKF", + "count": 0, + "regions": [ + [ + 256, + 79, + 258, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC10decodeType33_8DEAD7704A4B07403C11337F56EFC165LL_2toq_x_q_mtKSeRzSeR_r0_lF", + "count": 146, + "regions": [ + [ + 260, + 99, + 266, + 6, + 146, + 0, + 0, + 0 + ], + [ + 261, + 38, + 263, + 10, + 128, + 0, + 0, + 0 + ], + [ + 263, + 10, + 266, + 6, + 18, + 0, + 0, + 0 + ], + [ + 263, + 16, + 265, + 10, + 18, + 0, + 0, + 0 + ], + [ + 265, + 10, + 266, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC13decodingError33_8DEAD7704A4B07403C11337F56EFC165LLs08DecodingF0OyF", + "count": 18, + "regions": [ + [ + 268, + 51, + 274, + 6, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC13decodingError33_8DEAD7704A4B07403C11337F56EFC165LLs08DecodingF0OyFSSyXEfu_", + "count": 18, + "regions": [ + [ + 271, + 19, + 271, + 27, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 279, + 37, + 279, + 50, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV7allKeysSayxGvg", + "count": 0, + "regions": [ + [ + 281, + 28, + 281, + 41, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV8containsySbxF", + "count": 24, + "regions": [ + [ + 283, + 43, + 285, + 10, + 24, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV6decode_6forKeyqd__qd__m_xtKSeRd__lF", + "count": 146, + "regions": [ + [ + 287, + 89, + 291, + 10, + 146, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV9decodeNil6forKeySbx_tKF", + "count": 24, + "regions": [ + [ + 294, + 56, + 296, + 10, + 24, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV9decodeNil6forKeySbx_tKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 295, + 67, + 295, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV06nestedF07keyedBy6forKeys0e8DecodingF0Vyqd__Gqd__m_xtKs06CodingQ0Rd__lF", + "count": 0, + "regions": [ + [ + 298, + 160, + 300, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV013nestedUnkeyedF06forKeys0n8DecodingF0_px_tKF", + "count": 0, + "regions": [ + [ + 302, + 89, + 304, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV05superD0s0D0_pyKF", + "count": 0, + "regions": [ + [ + 306, + 47, + 308, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC14KeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV05superD06forKeys0D0_px_tKF", + "count": 0, + "regions": [ + [ + 310, + 62, + 312, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 318, + 37, + 318, + 50, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV5countSiSgvg", + "count": 0, + "regions": [ + [ + 320, + 25, + 320, + 39, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV12currentIndexSivg", + "count": 0, + "regions": [ + [ + 322, + 31, + 322, + 43, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV7isAtEndSbvg", + "count": 0, + "regions": [ + [ + 324, + 27, + 324, + 43, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV6decodeyxxmKSeRzlF", + "count": 0, + "regions": [ + [ + 326, + 72, + 328, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV9decodeNilSbyF", + "count": 0, + "regions": [ + [ + 330, + 34, + 332, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV06nestedF07keyedBys013KeyedDecodingF0VyxGxm_tKs9CodingKeyRzlF", + "count": 0, + "regions": [ + [ + 334, + 143, + 336, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV06nestedeF0s0e8DecodingF0_pyKF", + "count": 0, + "regions": [ + [ + 338, + 74, + 340, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryDecoderC16UnkeyedContainer33_8DEAD7704A4B07403C11337F56EFC165LLV05superD0s0D0_pyKF", + "count": 0, + "regions": [ + [ + 342, + 47, + 344, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryDecoder.swift" + ] + }, + { + "name": "__ntd_QueryEncoder_line:40:8", + "count": 14, + "regions": [ + [ + 67, + 28, + 71, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySSxKSERzlF", + "count": 3, + "regions": [ + [ + 86, + 67, + 92, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySSxKSERzlFS2S_SStXEfU_", + "count": 21, + "regions": [ + [ + 88, + 37, + 88, + 72, + 21, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySSxKSERzlFS2S_SStXEfU0_", + "count": 21, + "regions": [ + [ + 89, + 25, + 89, + 62, + 21, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodey10Foundation4DataVxKSERzlF", + "count": 4, + "regions": [ + [ + 107, + 66, + 116, + 6, + 4, + 0, + 0, + 0 + ], + [ + 112, + 56, + 114, + 10, + 0, + 0, + 0, + 0 + ], + [ + 114, + 10, + 115, + 20, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodey10Foundation4DataVxKSERzlFS2S_SStXEfU_", + "count": 4, + "regions": [ + [ + 109, + 38, + 109, + 73, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodey10Foundation4DataVxKSERzlFS2S_SStXEfU0_", + "count": 4, + "regions": [ + [ + 110, + 25, + 110, + 62, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySay10Foundation12URLQueryItemVGxKSERzlF", + "count": 0, + "regions": [ + [ + 131, + 75, + 138, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySay10Foundation12URLQueryItemVGxKSERzlFA2H_SS3key_SS5valuettXEfU_", + "count": 0, + "regions": [ + [ + 133, + 46, + 137, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySDyS2SGxKSERzlF", + "count": 7, + "regions": [ + [ + 153, + 78, + 157, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC6encodeySDySSypGxKSERzlF", + "count": 0, + "regions": [ + [ + 162, + 75, + 166, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC9container7keyedBys22KeyedEncodingContainerVyxGxm_ts9CodingKeyRzlF", + "count": 7, + "regions": [ + [ + 177, + 109, + 179, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16unkeyedContainers015UnkeyedEncodingF0_pyF", + "count": 0, + "regions": [ + [ + 189, + 64, + 191, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC20singleValueContainers06Singlef8EncodingG0_pyF", + "count": 0, + "regions": [ + [ + 201, + 72, + 203, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC13encodingError_010underlyingF0s08EncodingF0Oyp_s0F0_pSgtF", + "count": 0, + "regions": [ + [ + 205, + 95, + 209, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 214, + 37, + 214, + 50, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lF", + "count": 25, + "regions": [ + [ + 216, + 80, + 365, + 10, + 25, + 0, + 0, + 0 + ], + [ + 223, + 13, + 225, + 62, + 6, + 0, + 0, + 0 + ], + [ + 226, + 13, + 228, + 62, + 0, + 0, + 0, + 0 + ], + [ + 229, + 13, + 231, + 62, + 0, + 0, + 0, + 0 + ], + [ + 232, + 13, + 234, + 62, + 0, + 0, + 0, + 0 + ], + [ + 235, + 13, + 237, + 62, + 0, + 0, + 0, + 0 + ], + [ + 239, + 13, + 242, + 62, + 3, + 0, + 0, + 0 + ], + [ + 243, + 13, + 246, + 62, + 0, + 0, + 0, + 0 + ], + [ + 247, + 13, + 250, + 62, + 0, + 0, + 0, + 0 + ], + [ + 251, + 13, + 254, + 62, + 0, + 0, + 0, + 0 + ], + [ + 255, + 13, + 258, + 62, + 0, + 0, + 0, + 0 + ], + [ + 260, + 13, + 262, + 62, + 0, + 0, + 0, + 0 + ], + [ + 264, + 13, + 266, + 62, + 0, + 0, + 0, + 0 + ], + [ + 268, + 13, + 270, + 62, + 0, + 0, + 0, + 0 + ], + [ + 272, + 13, + 274, + 62, + 0, + 0, + 0, + 0 + ], + [ + 276, + 13, + 278, + 62, + 0, + 0, + 0, + 0 + ], + [ + 281, + 13, + 284, + 62, + 0, + 0, + 0, + 0 + ], + [ + 286, + 13, + 289, + 62, + 0, + 0, + 0, + 0 + ], + [ + 290, + 13, + 293, + 62, + 0, + 0, + 0, + 0 + ], + [ + 294, + 13, + 297, + 62, + 0, + 0, + 0, + 0 + ], + [ + 298, + 13, + 301, + 62, + 0, + 0, + 0, + 0 + ], + [ + 303, + 13, + 305, + 62, + 0, + 0, + 0, + 0 + ], + [ + 306, + 13, + 309, + 62, + 0, + 0, + 0, + 0 + ], + [ + 311, + 13, + 313, + 62, + 0, + 0, + 0, + 0 + ], + [ + 314, + 13, + 317, + 62, + 0, + 0, + 0, + 0 + ], + [ + 319, + 13, + 321, + 62, + 0, + 0, + 0, + 0 + ], + [ + 322, + 13, + 325, + 62, + 0, + 0, + 0, + 0 + ], + [ + 327, + 13, + 329, + 62, + 3, + 0, + 0, + 0 + ], + [ + 330, + 13, + 332, + 62, + 0, + 0, + 0, + 0 + ], + [ + 334, + 13, + 336, + 62, + 10, + 0, + 0, + 0 + ], + [ + 337, + 13, + 340, + 62, + 0, + 0, + 0, + 0 + ], + [ + 341, + 13, + 343, + 62, + 0, + 0, + 0, + 0 + ], + [ + 344, + 13, + 346, + 62, + 0, + 0, + 0, + 0 + ], + [ + 347, + 13, + 349, + 62, + 0, + 0, + 0, + 0 + ], + [ + 350, + 13, + 363, + 18, + 3, + 0, + 0, + 0 + ], + [ + 351, + 38, + 355, + 18, + 0, + 0, + 0, + 0 + ], + [ + 355, + 18, + 363, + 18, + 3, + 0, + 0, + 0 + ], + [ + 355, + 24, + 363, + 18, + 3, + 0, + 0, + 0 + ], + [ + 356, + 24, + 360, + 22, + 3, + 0, + 0, + 0 + ], + [ + 360, + 39, + 362, + 22, + 0, + 0, + 0, + 0 + ], + [ + 362, + 22, + 363, + 18, + 3, + 0, + 0, + 0 + ], + [ + 363, + 18, + 363, + 18, + 3, + 0, + 0, + 0 + ], + [ + 364, + 14, + 365, + 10, + 25, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSSiXEfU_", + "count": 9, + "regions": [ + [ + 240, + 53, + 240, + 67, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs4Int8VXEfU0_", + "count": 0, + "regions": [ + [ + 244, + 53, + 244, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs5Int16VXEfU1_", + "count": 0, + "regions": [ + [ + 248, + 53, + 248, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs5Int32VXEfU2_", + "count": 0, + "regions": [ + [ + 252, + 53, + 252, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs5Int64VXEfU3_", + "count": 0, + "regions": [ + [ + 256, + 53, + 256, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSSuXEfU4_", + "count": 0, + "regions": [ + [ + 282, + 53, + 282, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs5UInt8VXEfU5_", + "count": 0, + "regions": [ + [ + 287, + 53, + 287, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs6UInt16VXEfU6_", + "count": 0, + "regions": [ + [ + 291, + 53, + 291, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs6UInt32VXEfU7_", + "count": 0, + "regions": [ + [ + 295, + 53, + 295, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSs6UInt64VXEfU8_", + "count": 0, + "regions": [ + [ + 299, + 53, + 299, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSSfXEfU9_", + "count": 0, + "regions": [ + [ + 307, + 53, + 307, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSSdXEfU10_", + "count": 0, + "regions": [ + [ + 315, + 53, + 315, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSSSbXEfU11_", + "count": 0, + "regions": [ + [ + 323, + 53, + 323, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV6encode_6forKeyyqd___xtKSERd__lFSS10Foundation4DateVXEfU12_", + "count": 0, + "regions": [ + [ + 338, + 53, + 338, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV9encodeNil6forKeyyx_tKF", + "count": 0, + "regions": [ + [ + 367, + 44, + 367, + 46, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV06nestedF07keyedBy6forKeys0e8EncodingF0Vyqd__Gqd__m_xts06CodingQ0Rd__lF", + "count": 0, + "regions": [ + [ + 369, + 156, + 371, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV013nestedUnkeyedF06forKeys0n8EncodingF0_px_tF", + "count": 0, + "regions": [ + [ + 373, + 82, + 375, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV05superD0s0D0_pyF", + "count": 0, + "regions": [ + [ + 377, + 40, + 379, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC14KeyedContainer33_761A3053604ADFEC3D608EB1A228DDABLLV05superD06forKeys0D0_px_tF", + "count": 0, + "regions": [ + [ + 381, + 55, + 383, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 389, + 37, + 389, + 50, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV5countSivg", + "count": 0, + "regions": [ + [ + 391, + 24, + 391, + 36, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV15nestedContainer7keyedBys013KeyedEncodingN0VyxGxm_ts9CodingKeyRzlF", + "count": 0, + "regions": [ + [ + 393, + 139, + 395, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV06nestedE9Containers0e8EncodingN0_pyF", + "count": 0, + "regions": [ + [ + 397, + 67, + 399, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV05superD0s0D0_pyF", + "count": 0, + "regions": [ + [ + 401, + 40, + 403, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV9encodeNilyyKF", + "count": 0, + "regions": [ + [ + 405, + 33, + 405, + 35, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "$s15KituraContracts12QueryEncoderC16UnkeyedContanier33_761A3053604ADFEC3D608EB1A228DDABLLV6encodeyyxKSERzlF", + "count": 0, + "regions": [ + [ + 407, + 63, + 409, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/CodableQuery/QueryEncoder.swift" + ] + }, + { + "name": "__ntd_RequestError_line:38:8", + "count": 0, + "regions": [ + [ + 63, + 32, + 66, + 6, + 0, + 0, + 0, + 0 + ], + [ + 74, + 48, + 77, + 6, + 0, + 0, + 0, + 0 + ], + [ + 86, + 66, + 96, + 6, + 21, + 0, + 0, + 0 + ], + [ + 108, + 82, + 116, + 6, + 0, + 0, + 0, + 0 + ], + [ + 113, + 13, + 113, + 30, + 0, + 0, + 0, + 0 + ], + [ + 114, + 13, + 114, + 62, + 0, + 0, + 0, + 0 + ], + [ + 115, + 10, + 116, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV_4bodyA2C_xtcSeRzSERzlufc10Foundation4DataVAA10BodyFormatVKcfU_", + "count": 28, + "regions": [ + [ + 90, + 32, + 95, + 10, + 28, + 0, + 0, + 0 + ], + [ + 92, + 17, + 92, + 66, + 28, + 0, + 0, + 0 + ], + [ + 93, + 17, + 93, + 66, + 0, + 0, + 0, + 0 + ], + [ + 94, + 14, + 95, + 10, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV10encodeBodyy10Foundation4DataVSgAA0F6FormatVKF", + "count": 56, + "regions": [ + [ + 189, + 66, + 192, + 6, + 56, + 0, + 0, + 0 + ], + [ + 190, + 42, + 190, + 56, + 28, + 0, + 0, + 0 + ], + [ + 190, + 56, + 191, + 44, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV10decodeBodyyxSgxmKSeRzSERzlF", + "count": 0, + "regions": [ + [ + 223, + 78, + 229, + 6, + 0, + 0, + 0, + 0 + ], + [ + 224, + 61, + 224, + 75, + 0, + 0, + 0, + 0 + ], + [ + 224, + 75, + 229, + 6, + 0, + 0, + 0, + 0 + ], + [ + 226, + 13, + 226, + 78, + 0, + 0, + 0, + 0 + ], + [ + 227, + 13, + 227, + 62, + 0, + 0, + 0, + 0 + ], + [ + 228, + 10, + 229, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV6bodyAsyxSgxmSeRzSERzlF", + "count": 0, + "regions": [ + [ + 257, + 67, + 259, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV6bodyAsyxSgxmSeRzSERzlFAEyKXEfu_", + "count": 0, + "regions": [ + [ + 258, + 43, + 258, + 46, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV1loiySbAC_ACtFZ", + "count": 0, + "regions": [ + [ + 266, + 73, + 268, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV2eeoiySbAC_ACtFZ", + "count": 0, + "regions": [ + [ + 273, + 74, + 275, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV2eeoiySbAC_ACtFZSbyKXEfu_", + "count": 0, + "regions": [ + [ + 274, + 49, + 274, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV11descriptionSSvg", + "count": 0, + "regions": [ + [ + 282, + 36, + 284, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV9hashValueSivg", + "count": 0, + "regions": [ + [ + 289, + 31, + 292, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV8httpCodeSivg", + "count": 150, + "regions": [ + [ + 306, + 30, + 308, + 6, + 150, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts12RequestErrorV8httpCodeACSi_tcfC", + "count": 7, + "regions": [ + [ + 314, + 32, + 317, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5valueS2S_tcfC", + "count": 0, + "regions": [ + [ + 588, + 32, + 590, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSS15KituraContractsE5valueSSvg", + "count": 9, + "regions": [ + [ + 593, + 30, + 595, + 6, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSi15KituraContractsE5valueSiSS_tKcfC", + "count": 74, + "regions": [ + [ + 610, + 39, + 616, + 6, + 74, + 0, + 0, + 0 + ], + [ + 611, + 32, + 613, + 10, + 74, + 0, + 0, + 0 + ], + [ + 613, + 10, + 616, + 6, + 74, + 0, + 0, + 0 + ], + [ + 613, + 16, + 615, + 10, + 0, + 0, + 0, + 0 + ], + [ + 615, + 10, + 616, + 6, + 74, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSi15KituraContractsE5valueSSvg", + "count": 49, + "regions": [ + [ + 619, + 30, + 621, + 6, + 49, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss4Int8V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 636, + 39, + 642, + 6, + 0, + 0, + 0, + 0 + ], + [ + 637, + 33, + 639, + 10, + 0, + 0, + 0, + 0 + ], + [ + 639, + 10, + 642, + 6, + 0, + 0, + 0, + 0 + ], + [ + 639, + 16, + 641, + 10, + 0, + 0, + 0, + 0 + ], + [ + 641, + 10, + 642, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss4Int8V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 645, + 30, + 647, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5Int16V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 662, + 39, + 668, + 6, + 0, + 0, + 0, + 0 + ], + [ + 663, + 34, + 665, + 10, + 0, + 0, + 0, + 0 + ], + [ + 665, + 10, + 668, + 6, + 0, + 0, + 0, + 0 + ], + [ + 665, + 16, + 667, + 10, + 0, + 0, + 0, + 0 + ], + [ + 667, + 10, + 668, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5Int16V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 671, + 30, + 673, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5Int32V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 688, + 39, + 694, + 6, + 0, + 0, + 0, + 0 + ], + [ + 689, + 34, + 691, + 10, + 0, + 0, + 0, + 0 + ], + [ + 691, + 10, + 694, + 6, + 0, + 0, + 0, + 0 + ], + [ + 691, + 16, + 693, + 10, + 0, + 0, + 0, + 0 + ], + [ + 693, + 10, + 694, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5Int32V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 697, + 30, + 699, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5Int64V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 714, + 39, + 720, + 6, + 0, + 0, + 0, + 0 + ], + [ + 715, + 34, + 717, + 10, + 0, + 0, + 0, + 0 + ], + [ + 717, + 10, + 720, + 6, + 0, + 0, + 0, + 0 + ], + [ + 717, + 16, + 719, + 10, + 0, + 0, + 0, + 0 + ], + [ + 719, + 10, + 720, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5Int64V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 723, + 30, + 725, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSu15KituraContractsE5valueSuSS_tKcfC", + "count": 0, + "regions": [ + [ + 740, + 39, + 746, + 6, + 0, + 0, + 0, + 0 + ], + [ + 741, + 33, + 743, + 10, + 0, + 0, + 0, + 0 + ], + [ + 743, + 10, + 746, + 6, + 0, + 0, + 0, + 0 + ], + [ + 743, + 16, + 745, + 10, + 0, + 0, + 0, + 0 + ], + [ + 745, + 10, + 746, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSu15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 749, + 30, + 751, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5UInt8V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 766, + 39, + 772, + 6, + 0, + 0, + 0, + 0 + ], + [ + 767, + 34, + 769, + 10, + 0, + 0, + 0, + 0 + ], + [ + 769, + 10, + 772, + 6, + 0, + 0, + 0, + 0 + ], + [ + 769, + 16, + 771, + 10, + 0, + 0, + 0, + 0 + ], + [ + 771, + 10, + 772, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss5UInt8V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 775, + 30, + 777, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss6UInt16V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 792, + 39, + 798, + 6, + 0, + 0, + 0, + 0 + ], + [ + 793, + 35, + 795, + 10, + 0, + 0, + 0, + 0 + ], + [ + 795, + 10, + 798, + 6, + 0, + 0, + 0, + 0 + ], + [ + 795, + 16, + 797, + 10, + 0, + 0, + 0, + 0 + ], + [ + 797, + 10, + 798, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss6UInt16V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 801, + 30, + 803, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss6UInt32V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 818, + 39, + 824, + 6, + 0, + 0, + 0, + 0 + ], + [ + 819, + 35, + 821, + 10, + 0, + 0, + 0, + 0 + ], + [ + 821, + 10, + 824, + 6, + 0, + 0, + 0, + 0 + ], + [ + 821, + 16, + 823, + 10, + 0, + 0, + 0, + 0 + ], + [ + 823, + 10, + 824, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss6UInt32V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 827, + 30, + 829, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss6UInt64V15KituraContractsE5valueABSS_tKcfC", + "count": 0, + "regions": [ + [ + 844, + 39, + 850, + 6, + 0, + 0, + 0, + 0 + ], + [ + 845, + 35, + 847, + 10, + 0, + 0, + 0, + 0 + ], + [ + 847, + 10, + 850, + 6, + 0, + 0, + 0, + 0 + ], + [ + 847, + 16, + 849, + 10, + 0, + 0, + 0, + 0 + ], + [ + 849, + 10, + 850, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$ss6UInt64V15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 853, + 30, + 855, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSd15KituraContractsE5valueSdSS_tKcfC", + "count": 0, + "regions": [ + [ + 861, + 39, + 867, + 6, + 0, + 0, + 0, + 0 + ], + [ + 862, + 35, + 864, + 10, + 0, + 0, + 0, + 0 + ], + [ + 864, + 10, + 867, + 6, + 0, + 0, + 0, + 0 + ], + [ + 864, + 16, + 866, + 10, + 0, + 0, + 0, + 0 + ], + [ + 866, + 10, + 867, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSd15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 870, + 30, + 872, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSf15KituraContractsE5valueSfSS_tKcfC", + "count": 0, + "regions": [ + [ + 878, + 39, + 884, + 6, + 0, + 0, + 0, + 0 + ], + [ + 879, + 34, + 881, + 10, + 0, + 0, + 0, + 0 + ], + [ + 881, + 10, + 884, + 6, + 0, + 0, + 0, + 0 + ], + [ + 881, + 16, + 883, + 10, + 0, + 0, + 0, + 0 + ], + [ + 883, + 10, + 884, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSf15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 887, + 30, + 889, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSb15KituraContractsE5valueSbSS_tKcfC", + "count": 0, + "regions": [ + [ + 895, + 39, + 901, + 6, + 0, + 0, + 0, + 0 + ], + [ + 896, + 33, + 898, + 10, + 0, + 0, + 0, + 0 + ], + [ + 898, + 10, + 901, + 6, + 0, + 0, + 0, + 0 + ], + [ + 898, + 16, + 900, + 10, + 0, + 0, + 0, + 0 + ], + [ + 900, + 10, + 901, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$sSb15KituraContractsE5valueSSvg", + "count": 0, + "regions": [ + [ + 904, + 30, + 906, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts5OrderO6encode2toys7Encoder_p_tKF", + "count": 0, + "regions": [ + [ + 932, + 50, + 940, + 4, + 0, + 0, + 0, + 0 + ], + [ + 935, + 5, + 936, + 48, + 0, + 0, + 0, + 0 + ], + [ + 937, + 5, + 938, + 49, + 0, + 0, + 0, + 0 + ], + [ + 939, + 6, + 940, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_Order_line:918:8", + "count": 0, + "regions": [ + [ + 943, + 45, + 952, + 4, + 0, + 0, + 0, + 0 + ], + [ + 945, + 10, + 948, + 8, + 0, + 0, + 0, + 0 + ], + [ + 948, + 15, + 951, + 8, + 0, + 0, + 0, + 0 + ], + [ + 951, + 8, + 952, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts5OrderO11descriptionSSvg", + "count": 0, + "regions": [ + [ + 955, + 34, + 962, + 4, + 0, + 0, + 0, + 0 + ], + [ + 957, + 5, + 958, + 28, + 0, + 0, + 0, + 0 + ], + [ + 959, + 5, + 960, + 29, + 0, + 0, + 0, + 0 + ], + [ + 961, + 6, + 962, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts5OrderO5valueSSvg", + "count": 0, + "regions": [ + [ + 965, + 28, + 972, + 4, + 0, + 0, + 0, + 0 + ], + [ + 967, + 5, + 968, + 19, + 0, + 0, + 0, + 0 + ], + [ + 969, + 5, + 970, + 19, + 0, + 0, + 0, + 0 + ], + [ + 971, + 6, + 972, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_Ordering_line:983:8", + "count": 0, + "regions": [ + [ + 988, + 35, + 990, + 4, + 0, + 0, + 0, + 0 + ], + [ + 993, + 34, + 995, + 4, + 0, + 0, + 0, + 0 + ], + [ + 998, + 46, + 1020, + 4, + 0, + 0, + 0, + 0 + ], + [ + 999, + 29, + 1008, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1001, + 32, + 1003, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1003, + 8, + 1008, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1003, + 40, + 1005, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1005, + 8, + 1008, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1005, + 14, + 1007, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1007, + 8, + 1008, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1008, + 6, + 1020, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1008, + 12, + 1019, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1019, + 6, + 1020, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts8OrderingV6stringACSS_tKcfcSSSsXEfU_", + "count": 0, + "regions": [ + [ + 1009, + 56, + 1009, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts8OrderingV6stringACSS_tKcfcAA5OrderOSSKXEfU0_", + "count": 0, + "regions": [ + [ + 1009, + 75, + 1018, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1011, + 31, + 1013, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1013, + 10, + 1018, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1013, + 39, + 1015, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1015, + 10, + 1018, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1015, + 16, + 1017, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1017, + 10, + 1018, + 8, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts8OrderingV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1034, + 44, + 1036, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts8OrderingV14getStringValueSSyFSSAA5OrderOXEfU_", + "count": 0, + "regions": [ + [ + 1035, + 26, + 1035, + 44, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts8OrderingV9getValuesSayAA5OrderOGyF", + "count": 0, + "regions": [ + [ + 1039, + 38, + 1041, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_Pagination_line:1057:8", + "count": 0, + "regions": [ + [ + 1062, + 43, + 1065, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1067, + 46, + 1074, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1069, + 25, + 1071, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1071, + 6, + 1074, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts10PaginationV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1076, + 44, + 1078, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts10PaginationV9getValuesSi5start_Si4sizetyF", + "count": 0, + "regions": [ + [ + 1081, + 54, + 1083, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_GreaterThan_line:1159:8", + "count": 0, + "regions": [ + [ + 1164, + 25, + 1166, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1169, + 44, + 1171, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts11GreaterThanV8getValuexyF", + "count": 0, + "regions": [ + [ + 1174, + 31, + 1176, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts11GreaterThanV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1179, + 42, + 1181, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts11GreaterThanV11getOperatorAA0F0OyF", + "count": 0, + "regions": [ + [ + 1184, + 41, + 1186, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_GreaterThanOrEqual_line:1206:8", + "count": 0, + "regions": [ + [ + 1211, + 25, + 1213, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1216, + 44, + 1218, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts18GreaterThanOrEqualV8getValuexyF", + "count": 0, + "regions": [ + [ + 1221, + 31, + 1223, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts18GreaterThanOrEqualV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1226, + 42, + 1228, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts18GreaterThanOrEqualV11getOperatorAA0H0OyF", + "count": 0, + "regions": [ + [ + 1231, + 41, + 1233, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_LowerThan_line:1254:8", + "count": 0, + "regions": [ + [ + 1259, + 25, + 1261, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1264, + 44, + 1266, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts9LowerThanV8getValuexyF", + "count": 0, + "regions": [ + [ + 1269, + 31, + 1271, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts9LowerThanV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1274, + 42, + 1276, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts9LowerThanV11getOperatorAA0F0OyF", + "count": 0, + "regions": [ + [ + 1279, + 41, + 1281, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_LowerThanOrEqual_line:1301:8", + "count": 0, + "regions": [ + [ + 1306, + 25, + 1308, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1311, + 44, + 1313, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts16LowerThanOrEqualV8getValuexyF", + "count": 0, + "regions": [ + [ + 1316, + 31, + 1318, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts16LowerThanOrEqualV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1321, + 42, + 1323, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts16LowerThanOrEqualV11getOperatorAA0H0OyF", + "count": 0, + "regions": [ + [ + 1326, + 41, + 1328, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_InclusiveRange_line:1348:8", + "count": 0, + "regions": [ + [ + 1354, + 33, + 1357, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1360, + 44, + 1367, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1362, + 25, + 1364, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1364, + 6, + 1367, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts14InclusiveRangeV8getValuex5start_x3endtyF", + "count": 0, + "regions": [ + [ + 1370, + 48, + 1372, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts14InclusiveRangeV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1375, + 42, + 1377, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts14InclusiveRangeV11getOperatorAA0F0OyF", + "count": 0, + "regions": [ + [ + 1380, + 41, + 1382, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_ExclusiveRange_line:1402:8", + "count": 0, + "regions": [ + [ + 1408, + 33, + 1411, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1414, + 44, + 1421, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1416, + 25, + 1418, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1418, + 6, + 1421, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts14ExclusiveRangeV8getValuex5start_x3endtyF", + "count": 0, + "regions": [ + [ + 1424, + 48, + 1426, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts14ExclusiveRangeV14getStringValueSSyF", + "count": 0, + "regions": [ + [ + 1429, + 42, + 1431, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "$s15KituraContracts14ExclusiveRangeV11getOperatorAA0F0OyF", + "count": 0, + "regions": [ + [ + 1434, + 41, + 1436, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/KituraContracts/Sources/KituraContracts/Contracts.swift" + ] + }, + { + "name": "__ntd_BufferList_line:61:8", + "count": 3833, + "regions": [ + [ + 102, + 19, + 102, + 21, + 3833, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC9localData33_FD864288D22FB17CDBFA5144B3869894LLSo09NSMutableF0CvpfiAGyKXEfu_", + "count": 0, + "regions": [ + [ + 68, + 62, + 68, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC5countSivg", + "count": 761, + "regions": [ + [ + 80, + 27, + 82, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC4data10Foundation4DataVvg", + "count": 774, + "regions": [ + [ + 87, + 27, + 89, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC6append5bytes6lengthySPys5UInt8VG_SitF", + "count": 6332, + "regions": [ + [ + 119, + 66, + 121, + 6, + 6332, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC6append4datay10Foundation4DataV_tF", + "count": 454, + "regions": [ + [ + 135, + 36, + 137, + 6, + 454, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC4fill5arraySiSays5UInt8VGz_tF", + "count": 0, + "regions": [ + [ + 153, + 51, + 156, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC4fill6buffer6lengthSiSpys5UInt8VG_SitF", + "count": 270, + "regions": [ + [ + 172, + 79, + 185, + 6, + 270, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC4fill4dataSi10Foundation4DataVz_tF", + "count": 1016, + "regions": [ + [ + 200, + 47, + 207, + 6, + 1016, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC4fill4dataSiSo13NSMutableDataC_tF", + "count": 760, + "regions": [ + [ + 221, + 50, + 228, + 6, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC5resetyyF", + "count": 2313, + "regions": [ + [ + 238, + 25, + 243, + 6, + 2313, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$s9KituraNet10BufferListC6rewindyyF", + "count": 776, + "regions": [ + [ + 253, + 26, + 257, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/BufferList.swift" + ] + }, + { + "name": "$ss5Int16V9KituraNetE8toUInt1633_49D1A1CDD172EED7D059EF5A54A69CBDLLs0E0VyF", + "count": 761, + "regions": [ + [ + 32, + 31, + 34, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "__ntd_ClientRequest_line:54:8", + "count": 0, + "regions": [ + [ + 232, + 53, + 237, + 6, + 0, + 0, + 0, + 0 + ], + [ + 243, + 60, + 291, + 6, + 761, + 0, + 0, + 0 + ], + [ + 252, + 32, + 278, + 10, + 4948, + 0, + 0, + 0 + ], + [ + 255, + 17, + 257, + 32, + 1904, + 0, + 0, + 0 + ], + [ + 258, + 17, + 262, + 39, + 761, + 0, + 0, + 0 + ], + [ + 259, + 67, + 261, + 22, + 761, + 0, + 0, + 0 + ], + [ + 261, + 22, + 262, + 39, + 761, + 0, + 0, + 0 + ], + [ + 263, + 17, + 264, + 36, + 761, + 0, + 0, + 0 + ], + [ + 265, + 17, + 267, + 44, + 761, + 0, + 0, + 0 + ], + [ + 268, + 17, + 272, + 35, + 761, + 0, + 0, + 0 + ], + [ + 269, + 45, + 271, + 22, + 34, + 0, + 0, + 0 + ], + [ + 271, + 22, + 272, + 35, + 761, + 0, + 0, + 0 + ], + [ + 273, + 17, + 274, + 45, + 0, + 0, + 0, + 0 + ], + [ + 275, + 17, + 276, + 45, + 0, + 0, + 0, + 0 + ], + [ + 277, + 14, + 278, + 10, + 4948, + 0, + 0, + 0 + ], + [ + 278, + 10, + 291, + 6, + 761, + 0, + 0, + 0 + ], + [ + 285, + 44, + 287, + 10, + 0, + 0, + 0, + 0 + ], + [ + 287, + 10, + 291, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC7options8callbackACSayAC7OptionsOG_yAA0C8ResponseCSgctcfcSbyKXEfu_", + "count": 761, + "regions": [ + [ + 259, + 51, + 259, + 66, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC7options8callbackACSayAC7OptionsOG_yAA0C8ResponseCSgctcfcSSyKXEfu0_", + "count": 761, + "regions": [ + [ + 281, + 37, + 281, + 39, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC7options8callbackACSayAC7OptionsOG_yAA0C8ResponseCSgctcfcSSyKXEfu1_", + "count": 761, + "regions": [ + [ + 282, + 36, + 282, + 38, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC7options8callbackACSayAC7OptionsOG_yAA0C8ResponseCSgctcfcSbyKXEfu2_", + "count": 761, + "regions": [ + [ + 285, + 30, + 285, + 42, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3setyyAC7OptionsOF", + "count": 1904, + "regions": [ + [ + 306, + 40, + 324, + 6, + 1904, + 0, + 0, + 0 + ], + [ + 309, + 9, + 310, + 77, + 0, + 0, + 0, + 0 + ], + [ + 311, + 9, + 312, + 33, + 761, + 0, + 0, + 0 + ], + [ + 313, + 9, + 316, + 14, + 761, + 0, + 0, + 0 + ], + [ + 314, + 41, + 316, + 14, + 1073, + 0, + 0, + 0 + ], + [ + 316, + 14, + 316, + 14, + 761, + 0, + 0, + 0 + ], + [ + 317, + 9, + 318, + 45, + 0, + 0, + 0, + 0 + ], + [ + 319, + 9, + 320, + 47, + 382, + 0, + 0, + 0 + ], + [ + 321, + 9, + 322, + 33, + 0, + 0, + 0, + 0 + ], + [ + 323, + 10, + 324, + 6, + 1904, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3setyyAC7OptionsOFSSyXEfu_", + "count": 0, + "regions": [ + [ + 310, + 23, + 310, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC5parseySayAC7OptionsOGSSFZ", + "count": 0, + "regions": [ + [ + 339, + 77, + 345, + 6, + 0, + 0, + 0, + 0 + ], + [ + 341, + 45, + 343, + 10, + 0, + 0, + 0, + 0 + ], + [ + 343, + 10, + 344, + 18, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC5parseySayAC7OptionsOG10Foundation3URLVFZ", + "count": 0, + "regions": [ + [ + 359, + 68, + 386, + 6, + 0, + 0, + 0, + 0 + ], + [ + 363, + 36, + 365, + 10, + 0, + 0, + 0, + 0 + ], + [ + 365, + 10, + 386, + 6, + 0, + 0, + 0, + 0 + ], + [ + 366, + 32, + 368, + 10, + 0, + 0, + 0, + 0 + ], + [ + 368, + 10, + 386, + 6, + 0, + 0, + 0, + 0 + ], + [ + 371, + 34, + 374, + 10, + 0, + 0, + 0, + 0 + ], + [ + 374, + 10, + 386, + 6, + 0, + 0, + 0, + 0 + ], + [ + 376, + 32, + 378, + 10, + 0, + 0, + 0, + 0 + ], + [ + 378, + 10, + 386, + 6, + 0, + 0, + 0, + 0 + ], + [ + 379, + 36, + 381, + 10, + 0, + 0, + 0, + 0 + ], + [ + 381, + 10, + 386, + 6, + 0, + 0, + 0, + 0 + ], + [ + 382, + 40, + 384, + 10, + 0, + 0, + 0, + 0 + ], + [ + 384, + 10, + 385, + 23, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestCfD", + "count": 761, + "regions": [ + [ + 389, + 12, + 399, + 6, + 761, + 0, + 0, + 0 + ], + [ + 391, + 34, + 393, + 10, + 0, + 0, + 0, + 0 + ], + [ + 393, + 10, + 399, + 6, + 761, + 0, + 0, + 0 + ], + [ + 395, + 33, + 397, + 10, + 0, + 0, + 0, + 0 + ], + [ + 397, + 10, + 399, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC5write4fromySS_tF", + "count": 36, + "regions": [ + [ + 412, + 44, + 418, + 6, + 36, + 0, + 0, + 0 + ], + [ + 414, + 51, + 416, + 10, + 36, + 0, + 0, + 0 + ], + [ + 416, + 10, + 418, + 6, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC5write4fromy10Foundation4DataV_tF", + "count": 152, + "regions": [ + [ + 434, + 40, + 438, + 6, + 152, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end_5closeySS_SbtF", + "count": 0, + "regions": [ + [ + 452, + 58, + 457, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end_5closey10Foundation4DataV_SbtF", + "count": 0, + "regions": [ + [ + 473, + 56, + 478, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end5closeySb_tF", + "count": 761, + "regions": [ + [ + 490, + 42, + 540, + 6, + 761, + 0, + 0, + 0 + ], + [ + 494, + 63, + 497, + 10, + 0, + 0, + 0, + 0 + ], + [ + 497, + 10, + 540, + 6, + 761, + 0, + 0, + 0 + ], + [ + 507, + 37, + 511, + 10, + 1, + 0, + 0, + 0 + ], + [ + 511, + 10, + 540, + 6, + 760, + 0, + 0, + 0 + ], + [ + 514, + 37, + 518, + 10, + 0, + 0, + 0, + 0 + ], + [ + 518, + 10, + 540, + 6, + 760, + 0, + 0, + 0 + ], + [ + 522, + 16, + 537, + 10, + 760, + 0, + 0, + 0 + ], + [ + 524, + 49, + 528, + 14, + 0, + 0, + 0, + 0 + ], + [ + 528, + 14, + 537, + 10, + 760, + 0, + 0, + 0 + ], + [ + 530, + 62, + 534, + 14, + 0, + 0, + 0, + 0 + ], + [ + 534, + 14, + 537, + 10, + 760, + 0, + 0, + 0 + ], + [ + 537, + 10, + 540, + 6, + 760, + 0, + 0, + 0 + ], + [ + 537, + 17, + 537, + 85, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end5closeySb_tFSSyXEfu_", + "count": 1, + "regions": [ + [ + 508, + 23, + 508, + 101, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end5closeySb_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 515, + 23, + 515, + 99, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end5closeySb_tFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 525, + 27, + 525, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end5closeySb_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 531, + 27, + 531, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC3end5closeySb_tFSbyKXEfu3_", + "count": 760, + "regions": [ + [ + 537, + 48, + 537, + 85, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC13prepareHandle33_49D1A1CDD172EED7D059EF5A54A69CBDLL5usingySays4Int8VG_tF", + "count": 761, + "regions": [ + [ + 545, + 58, + 565, + 6, + 761, + 0, + 0, + 0 + ], + [ + 551, + 35, + 554, + 10, + 382, + 0, + 0, + 0 + ], + [ + 554, + 10, + 565, + 6, + 761, + 0, + 0, + 0 + ], + [ + 562, + 21, + 564, + 10, + 0, + 0, + 0, + 0 + ], + [ + 564, + 10, + 565, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC25setMethodAndContentLength33_49D1A1CDD172EED7D059EF5A54A69CBDLLyyF", + "count": 761, + "regions": [ + [ + 568, + 46, + 591, + 6, + 761, + 0, + 0, + 0 + ], + [ + 573, + 13, + 574, + 74, + 533, + 0, + 0, + 0 + ], + [ + 575, + 13, + 577, + 75, + 96, + 0, + 0, + 0 + ], + [ + 578, + 13, + 580, + 72, + 32, + 0, + 0, + 0 + ], + [ + 581, + 13, + 582, + 73, + 2, + 0, + 0, + 0 + ], + [ + 583, + 13, + 586, + 72, + 26, + 0, + 0, + 0 + ], + [ + 587, + 13, + 588, + 88, + 72, + 0, + 0, + 0 + ], + [ + 589, + 10, + 591, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC12setupHeaders33_49D1A1CDD172EED7D059EF5A54A69CBDLLyyF", + "count": 761, + "regions": [ + [ + 594, + 33, + 606, + 6, + 761, + 0, + 0, + 0 + ], + [ + 596, + 28, + 598, + 10, + 761, + 0, + 0, + 0 + ], + [ + 598, + 10, + 606, + 6, + 761, + 0, + 0, + 0 + ], + [ + 600, + 49, + 604, + 10, + 1834, + 0, + 0, + 0 + ], + [ + 601, + 88, + 603, + 14, + 1834, + 0, + 0, + 0 + ], + [ + 603, + 14, + 604, + 10, + 1834, + 0, + 0, + 0 + ], + [ + 604, + 10, + 606, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC17curlWriteCallback33_49D1A1CDD172EED7D059EF5A54A69CBDLL_4sizeSiSpys4Int8VG_SitF", + "count": 773, + "regions": [ + [ + 614, + 93, + 619, + 6, + 773, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC16curlReadCallback33_49D1A1CDD172EED7D059EF5A54A69CBDLL_4sizeSiSpys4Int8VG_SitF", + "count": 270, + "regions": [ + [ + 622, + 92, + 627, + 6, + 270, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC18curlHeaderCallback33_49D1A1CDD172EED7D059EF5A54A69CBDLL_4sizeSiSpys4Int8VG_SitF", + "count": 4556, + "regions": [ + [ + 630, + 94, + 648, + 6, + 4556, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC18curlHeaderCallback33_49D1A1CDD172EED7D059EF5A54A69CBDLL_4sizeSiSpys4Int8VG_SitFySPys5UInt8VGXEfU_", + "count": 4556, + "regions": [ + [ + 633, + 64, + 644, + 10, + 4556, + 0, + 0, + 0 + ], + [ + 634, + 82, + 640, + 14, + 0, + 0, + 0, + 0 + ], + [ + 640, + 14, + 644, + 10, + 4556, + 0, + 0, + 0 + ], + [ + 641, + 18, + 643, + 14, + 4556, + 0, + 0, + 0 + ], + [ + 643, + 14, + 644, + 10, + 4556, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC18curlHeaderCallback33_49D1A1CDD172EED7D059EF5A54A69CBDLL_4sizeSiSpys4Int8VG_SitFySPys5UInt8VGXEfU_yALXEfU_", + "count": 0, + "regions": [ + [ + 635, + 81, + 639, + 18, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet13ClientRequestC18prepareForRedirect33_49D1A1CDD172EED7D059EF5A54A69CBDLLyyF", + "count": 16, + "regions": [ + [ + 651, + 43, + 656, + 6, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "__ntd_CurlInvoker_line:660:9", + "count": 761, + "regions": [ + [ + 672, + 74, + 677, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC6invokeSo8CURLcodeayF", + "count": 761, + "regions": [ + [ + 682, + 43, + 731, + 6, + 761, + 0, + 0, + 0 + ], + [ + 685, + 49, + 687, + 10, + 0, + 0, + 0, + 0 + ], + [ + 687, + 10, + 730, + 18, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC6invokeSo8CURLcodeayFySpyAA0cD8DelegateACLL_pSgGXEfU_", + "count": 761, + "regions": [ + [ + 689, + 54, + 728, + 10, + 761, + 0, + 0, + 0 + ], + [ + 694, + 20, + 727, + 14, + 777, + 0, + 0, + 0 + ], + [ + 697, + 37, + 725, + 18, + 776, + 0, + 0, + 0 + ], + [ + 700, + 44, + 724, + 22, + 776, + 0, + 0, + 0 + ], + [ + 701, + 48, + 720, + 26, + 16, + 0, + 0, + 0 + ], + [ + 703, + 62, + 716, + 30, + 16, + 0, + 0, + 0 + ], + [ + 711, + 72, + 713, + 34, + 0, + 0, + 0, + 0 + ], + [ + 713, + 34, + 716, + 30, + 16, + 0, + 0, + 0 + ], + [ + 716, + 30, + 720, + 26, + 16, + 0, + 0, + 0 + ], + [ + 717, + 34, + 719, + 30, + 0, + 0, + 0, + 0 + ], + [ + 719, + 30, + 720, + 26, + 16, + 0, + 0, + 0 + ], + [ + 720, + 26, + 724, + 22, + 776, + 0, + 0, + 0 + ], + [ + 721, + 30, + 723, + 26, + 760, + 0, + 0, + 0 + ], + [ + 723, + 26, + 724, + 22, + 776, + 0, + 0, + 0 + ], + [ + 724, + 22, + 725, + 18, + 776, + 0, + 0, + 0 + ], + [ + 725, + 18, + 727, + 14, + 777, + 0, + 0, + 0 + ], + [ + 727, + 14, + 728, + 10, + 761, + 0, + 0, + 0 + ], + [ + 727, + 22, + 727, + 52, + 777, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC6invokeSo8CURLcodeayFySpyAA0cD8DelegateACLL_pSgGXEfU_SbyKXEfu_", + "count": 16, + "regions": [ + [ + 711, + 58, + 711, + 71, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC6invokeSo8CURLcodeayFySpyAA0cD8DelegateACLL_pSgGXEfU_SbyKXEfu0_", + "count": 776, + "regions": [ + [ + 727, + 42, + 727, + 52, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC13prepareHandleyySpyAA0cD8DelegateACLL_pSgGF", + "count": 761, + "regions": [ + [ + 736, + 83, + 755, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC13prepareHandleyySpyAA0cD8DelegateACLL_pSgGFSiSpys4Int8VGSg_S2iSvSgtcfU_", + "count": 270, + "regions": [ + [ + 738, + 47, + 742, + 10, + 270, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC13prepareHandleyySpyAA0cD8DelegateACLL_pSgGFSiSpys4Int8VGSg_S2iSvSgtcfU0_", + "count": 773, + "regions": [ + [ + 744, + 48, + 748, + 10, + 773, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "$s9KituraNet11CurlInvoker33_49D1A1CDD172EED7D059EF5A54A69CBDLLC13prepareHandleyySpyAA0cD8DelegateACLL_pSgGFSiSpys4Int8VGSg_S2iSvSgtcfU1_", + "count": 4556, + "regions": [ + [ + 750, + 49, + 754, + 10, + 4556, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "__ntd_OneTimeInitializations_line:772:9", + "count": 0, + "regions": [ + [ + 774, + 12, + 776, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientRequest.swift" + ] + }, + { + "name": "__ntd_ClientResponse_line:32:8", + "count": 761, + "regions": [ + [ + 225, + 34, + 227, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC6methodSSvg", + "count": 0, + "regions": [ + [ + 58, + 31, + 58, + 59, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC16httpVersionMajors6UInt16VSgvg", + "count": 0, + "regions": [ + [ + 68, + 42, + 68, + 80, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC16httpVersionMinors6UInt16VSgvg", + "count": 0, + "regions": [ + [ + 78, + 42, + 78, + 80, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC7headersAA16HeadersContainerCvg", + "count": 334, + "regions": [ + [ + 88, + 42, + 88, + 71, + 334, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC5parse_4fromAA16HTTPParserStatusVSo6NSDataC_SitF", + "count": 760, + "regions": [ + [ + 107, + 66, + 140, + 6, + 760, + 0, + 0, + 0 + ], + [ + 110, + 32, + 114, + 10, + 0, + 0, + 0, + 0 + ], + [ + 114, + 10, + 140, + 6, + 760, + 0, + 0, + 0 + ], + [ + 117, + 43, + 119, + 10, + 760, + 0, + 0, + 0 + ], + [ + 119, + 10, + 140, + 6, + 760, + 0, + 0, + 0 + ], + [ + 124, + 35, + 127, + 10, + 760, + 0, + 0, + 0 + ], + [ + 127, + 10, + 140, + 6, + 760, + 0, + 0, + 0 + ], + [ + 129, + 33, + 131, + 10, + 760, + 0, + 0, + 0 + ], + [ + 131, + 10, + 140, + 6, + 760, + 0, + 0, + 0 + ], + [ + 132, + 41, + 135, + 10, + 0, + 0, + 0, + 0 + ], + [ + 135, + 10, + 139, + 28, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC4read4intoSi10Foundation4DataVz_tKF", + "count": 866, + "regions": [ + [ + 154, + 59, + 157, + 6, + 866, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC11readAllData4intoSi10Foundation0G0Vz_tKF", + "count": 420, + "regions": [ + [ + 172, + 66, + 180, + 6, + 420, + 0, + 0, + 0 + ], + [ + 175, + 15, + 175, + 25, + 658, + 0, + 0, + 0 + ], + [ + 175, + 26, + 178, + 10, + 238, + 0, + 0, + 0 + ], + [ + 178, + 10, + 179, + 25, + 420, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC10readStringSSSgyKF", + "count": 198, + "regions": [ + [ + 193, + 48, + 202, + 6, + 198, + 0, + 0, + 0 + ], + [ + 196, + 23, + 198, + 10, + 192, + 0, + 0, + 0 + ], + [ + 198, + 10, + 202, + 6, + 6, + 0, + 0, + 0 + ], + [ + 199, + 14, + 201, + 10, + 6, + 0, + 0, + 0 + ], + [ + 201, + 10, + 202, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC16parsingCompletedyyF", + "count": 760, + "regions": [ + [ + 205, + 29, + 211, + 6, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC14prepareToResetyyF", + "count": 760, + "regions": [ + [ + 214, + 27, + 216, + 6, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC5reset33_0468D7341B865EC59A7C9C082797E559LLyyF", + "count": 760, + "regions": [ + [ + 219, + 26, + 222, + 6, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC6statusSivW", + "count": 760, + "regions": [ + [ + 239, + 16, + 241, + 10, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC6statusSivWAA14HTTPStatusCodeOyKXEfu_", + "count": 0, + "regions": [ + [ + 240, + 62, + 240, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet14ClientResponseC5parseAA16HTTPParserStatusVyF", + "count": 760, + "regions": [ + [ + 262, + 38, + 278, + 6, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ClientResponse.swift" + ] + }, + { + "name": "$s9KituraNet24ConnectionUpgradeFactoryPAAE7upgrade7handler7request8responseAA23IncomingSocketProcessor_pSg_10Foundation4DataVSgSSSgtAA0jK7HandlerC_AA13ServerRequest_pAA0P8Response_ptF", + "count": 0, + "regions": [ + [ + 53, + 146, + 60, + 6, + 0, + 0, + 0, + 0 + ], + [ + 56, + 44, + 58, + 10, + 0, + 0, + 0, + 0 + ], + [ + 58, + 10, + 59, + 37, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgradeFactory.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV14upgradersExistSbvgZ", + "count": 0, + "regions": [ + [ + 28, + 37, + 30, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV8register7factoryyAA0C14UpgradeFactory_p_tFZ", + "count": 0, + "regions": [ + [ + 38, + 68, + 40, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV5clearyyFZ", + "count": 0, + "regions": [ + [ + 43, + 25, + 45, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV07upgradeC07handler7request8responseyAA21IncomingSocketHandlerC_AA13ServerRequest_pAA0L8Response_ptF", + "count": 0, + "regions": [ + [ + 52, + 110, + 116, + 6, + 0, + 0, + 0, + 0 + ], + [ + 53, + 63, + 63, + 10, + 0, + 0, + 0, + 0 + ], + [ + 54, + 16, + 58, + 14, + 0, + 0, + 0, + 0 + ], + [ + 59, + 19, + 61, + 14, + 0, + 0, + 0, + 0 + ], + [ + 61, + 14, + 62, + 19, + 0, + 0, + 0, + 0 + ], + [ + 63, + 10, + 116, + 6, + 0, + 0, + 0, + 0 + ], + [ + 74, + 42, + 82, + 10, + 0, + 0, + 0, + 0 + ], + [ + 76, + 89, + 81, + 14, + 0, + 0, + 0, + 0 + ], + [ + 81, + 14, + 82, + 10, + 0, + 0, + 0, + 0 + ], + [ + 82, + 10, + 116, + 6, + 0, + 0, + 0, + 0 + ], + [ + 84, + 12, + 112, + 10, + 0, + 0, + 0, + 0 + ], + [ + 85, + 25, + 89, + 14, + 0, + 0, + 0, + 0 + ], + [ + 89, + 14, + 112, + 10, + 0, + 0, + 0, + 0 + ], + [ + 90, + 18, + 104, + 14, + 0, + 0, + 0, + 0 + ], + [ + 91, + 85, + 98, + 18, + 0, + 0, + 0, + 0 + ], + [ + 98, + 18, + 104, + 14, + 0, + 0, + 0, + 0 + ], + [ + 99, + 22, + 103, + 18, + 0, + 0, + 0, + 0 + ], + [ + 100, + 58, + 102, + 22, + 0, + 0, + 0, + 0 + ], + [ + 102, + 22, + 103, + 18, + 0, + 0, + 0, + 0 + ], + [ + 103, + 18, + 104, + 14, + 0, + 0, + 0, + 0 + ], + [ + 104, + 14, + 112, + 10, + 0, + 0, + 0, + 0 + ], + [ + 105, + 43, + 109, + 14, + 0, + 0, + 0, + 0 + ], + [ + 109, + 14, + 112, + 10, + 0, + 0, + 0, + 0 + ], + [ + 113, + 15, + 115, + 10, + 0, + 0, + 0, + 0 + ], + [ + 115, + 10, + 116, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV07upgradeC07handler7request8responseyAA21IncomingSocketHandlerC_AA13ServerRequest_pAA0L8Response_ptFSSyXEfu_", + "count": 0, + "regions": [ + [ + 60, + 27, + 60, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV07upgradeC07handler7request8responseyAA21IncomingSocketHandlerC_AA13ServerRequest_pAA0L8Response_ptFSSyKXEfu0_", + "count": 0, + "regions": [ + [ + 75, + 103, + 75, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV07upgradeC07handler7request8responseyAA21IncomingSocketHandlerC_AA13ServerRequest_pAA0L8Response_ptFSSyKXEfu1_", + "count": 0, + "regions": [ + [ + 106, + 77, + 106, + 89, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet18ConnectionUpgraderV07upgradeC07handler7request8responseyAA21IncomingSocketHandlerC_AA13ServerRequest_pAA0L8Response_ptFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 114, + 23, + 114, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ConnectionUpgrader.swift" + ] + }, + { + "name": "$s9KituraNet5ErrorO11descriptionSSvg", + "count": 0, + "regions": [ + [ + 31, + 36, + 36, + 6, + 0, + 0, + 0, + 0 + ], + [ + 33, + 13, + 34, + 101, + 0, + 0, + 0, + 0 + ], + [ + 35, + 10, + 36, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Error.swift" + ] + }, + { + "name": "$s9KituraNet7FastCGIC12createServerAA0C9CGIServerCyFZ", + "count": 3, + "regions": [ + [ + 102, + 56, + 104, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGI.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC12appendZeroes33_F3E761AA27CA3B41D0138897C3616E2ELL4data5county10Foundation4DataVz_SitF", + "count": 0, + "regions": [ + [ + 41, + 61, + 46, + 6, + 0, + 0, + 0, + 0 + ], + [ + 43, + 28, + 45, + 10, + 0, + 0, + 0, + 0 + ], + [ + 45, + 10, + 46, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC24getNetworkByteOrderSmall33_F3E761AA27CA3B41D0138897C3616E2ELL4froms6UInt16VAH_tFZ", + "count": 0, + "regions": [ + [ + 52, + 92, + 58, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC24getNetworkByteOrderLarge33_F3E761AA27CA3B41D0138897C3616E2ELL4froms6UInt32VAH_tFZ", + "count": 0, + "regions": [ + [ + 64, + 92, + 70, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC11appendBytes33_F3E761AA27CA3B41D0138897C3616E2ELL2to5bytes5county10Foundation4DataVz_SVSitF", + "count": 0, + "regions": [ + [ + 73, + 83, + 75, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC19createRecordStarter33_F3E761AA27CA3B41D0138897C3616E2ELL10Foundation4DataVyF", + "count": 0, + "regions": [ + [ + 81, + 48, + 93, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC29finalizeRequestCompleteRecord33_F3E761AA27CA3B41D0138897C3616E2ELL4data10Foundation4DataVAIz_tF", + "count": 0, + "regions": [ + [ + 98, + 74, + 122, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC26finalizeRequestBeginRecord33_F3E761AA27CA3B41D0138897C3616E2ELL4data10Foundation4DataVAIz_tF", + "count": 0, + "regions": [ + [ + 127, + 71, + 152, + 6, + 0, + 0, + 0, + 0 + ], + [ + 131, + 41, + 131, + 73, + 0, + 0, + 0, + 0 + ], + [ + 131, + 76, + 131, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC18writeEncodedLength33_F3E761AA27CA3B41D0138897C3616E2ELL6length4intoySi_10Foundation4DataVztF", + "count": 0, + "regions": [ + [ + 157, + 68, + 168, + 6, + 0, + 0, + 0, + 0 + ], + [ + 159, + 25, + 162, + 10, + 0, + 0, + 0, + 0 + ], + [ + 162, + 10, + 168, + 6, + 0, + 0, + 0, + 0 + ], + [ + 163, + 14, + 166, + 10, + 0, + 0, + 0, + 0 + ], + [ + 166, + 10, + 168, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC22createParameterRecords33_F3E761AA27CA3B41D0138897C3616E2ELL10Foundation4DataVyF", + "count": 0, + "regions": [ + [ + 173, + 51, + 200, + 6, + 0, + 0, + 0, + 0 + ], + [ + 177, + 40, + 197, + 10, + 0, + 0, + 0, + 0 + ], + [ + 182, + 61, + 185, + 14, + 0, + 0, + 0, + 0 + ], + [ + 185, + 14, + 197, + 10, + 0, + 0, + 0, + 0 + ], + [ + 187, + 66, + 190, + 14, + 0, + 0, + 0, + 0 + ], + [ + 190, + 14, + 197, + 10, + 0, + 0, + 0, + 0 + ], + [ + 197, + 10, + 199, + 23, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC18finalizeParameters33_F3E761AA27CA3B41D0138897C3616E2ELL4data10Foundation4DataVAIz_tF", + "count": 0, + "regions": [ + [ + 205, + 63, + 208, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC18finalizeDataRecord33_F3E761AA27CA3B41D0138897C3616E2ELL4data10Foundation0G0VAIz_tF", + "count": 0, + "regions": [ + [ + 213, + 63, + 241, + 6, + 0, + 0, + 0, + 0 + ], + [ + 215, + 46, + 215, + 52, + 0, + 0, + 0, + 0 + ], + [ + 215, + 55, + 215, + 65, + 0, + 0, + 0, + 0 + ], + [ + 221, + 30, + 223, + 10, + 0, + 0, + 0, + 0 + ], + [ + 223, + 10, + 241, + 6, + 0, + 0, + 0, + 0 + ], + [ + 236, + 30, + 238, + 10, + 0, + 0, + 0, + 0 + ], + [ + 238, + 10, + 240, + 20, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC10recordTest33_F3E761AA27CA3B41D0138897C3616E2ELLyyKF", + "count": 0, + "regions": [ + [ + 246, + 46, + 301, + 6, + 0, + 0, + 0, + 0 + ], + [ + 251, + 9, + 256, + 18, + 0, + 0, + 0, + 0 + ], + [ + 258, + 9, + 259, + 51, + 0, + 0, + 0, + 0 + ], + [ + 260, + 10, + 301, + 6, + 0, + 0, + 0, + 0 + ], + [ + 264, + 61, + 276, + 10, + 0, + 0, + 0, + 0 + ], + [ + 267, + 13, + 270, + 22, + 0, + 0, + 0, + 0 + ], + [ + 272, + 13, + 273, + 58, + 0, + 0, + 0, + 0 + ], + [ + 274, + 14, + 276, + 10, + 0, + 0, + 0, + 0 + ], + [ + 276, + 10, + 301, + 6, + 0, + 0, + 0, + 0 + ], + [ + 277, + 68, + 283, + 10, + 0, + 0, + 0, + 0 + ], + [ + 279, + 72, + 281, + 14, + 0, + 0, + 0, + 0 + ], + [ + 281, + 14, + 283, + 10, + 0, + 0, + 0, + 0 + ], + [ + 283, + 10, + 301, + 6, + 0, + 0, + 0, + 0 + ], + [ + 287, + 78, + 289, + 10, + 0, + 0, + 0, + 0 + ], + [ + 289, + 10, + 301, + 6, + 0, + 0, + 0, + 0 + ], + [ + 294, + 36, + 296, + 10, + 0, + 0, + 0, + 0 + ], + [ + 296, + 10, + 301, + 6, + 0, + 0, + 0, + 0 + ], + [ + 297, + 40, + 299, + 10, + 0, + 0, + 0, + 0 + ], + [ + 299, + 10, + 301, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordCreateC6create10Foundation4DataVyKF", + "count": 0, + "regions": [ + [ + 306, + 34, + 328, + 6, + 0, + 0, + 0, + 0 + ], + [ + 314, + 9, + 315, + 61, + 0, + 0, + 0, + 0 + ], + [ + 317, + 9, + 318, + 64, + 0, + 0, + 0, + 0 + ], + [ + 320, + 9, + 321, + 53, + 0, + 0, + 0, + 0 + ], + [ + 323, + 9, + 325, + 53, + 0, + 0, + 0, + 0 + ], + [ + 326, + 10, + 328, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordCreate.swift" + ] + }, + { + "name": "__ntd_FastCGIRecordParser_line:25:1", + "count": 0, + "regions": [ + [ + 116, + 24, + 118, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC9keepaliveSbvg", + "count": 0, + "regions": [ + [ + 39, + 26, + 41, + 6, + 0, + 0, + 0, + 0 + ], + [ + 40, + 64, + 40, + 69, + 0, + 0, + 0, + 0 + ], + [ + 40, + 72, + 40, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC7advanceSiyKF", + "count": 0, + "regions": [ + [ + 57, + 34, + 66, + 6, + 0, + 0, + 0, + 0 + ], + [ + 59, + 43, + 61, + 10, + 0, + 0, + 0, + 0 + ], + [ + 61, + 10, + 65, + 17, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC4skipyySiKF", + "count": 0, + "regions": [ + [ + 73, + 36, + 84, + 6, + 0, + 0, + 0, + 0 + ], + [ + 81, + 44, + 83, + 10, + 0, + 0, + 0, + 0 + ], + [ + 83, + 10, + 84, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC22getLocalByteOrderSmall33_7A5181C21371C32CFCC412160A833AF1LL4froms6UInt16VSays5UInt8VG_tFZ", + "count": 0, + "regions": [ + [ + 90, + 93, + 98, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC22getLocalByteOrderLarge33_7A5181C21371C32CFCC412160A833AF1LL4froms6UInt32VSays5UInt8VG_tFZ", + "count": 0, + "regions": [ + [ + 104, + 93, + 112, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC12parseVersion33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 123, + 40, + 129, + 6, + 0, + 0, + 0, + 0 + ], + [ + 126, + 74, + 128, + 10, + 0, + 0, + 0, + 0 + ], + [ + 128, + 10, + 129, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC9parseType33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 133, + 37, + 149, + 6, + 0, + 0, + 0, + 0 + ], + [ + 138, + 9, + 143, + 18, + 0, + 0, + 0, + 0 + ], + [ + 145, + 9, + 146, + 51, + 0, + 0, + 0, + 0 + ], + [ + 147, + 10, + 149, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC14parseRequestId33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 153, + 42, + 161, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC18parseContentLength33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 165, + 46, + 173, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC18parsePaddingLength33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 177, + 46, + 179, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC9parseRole33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 183, + 37, + 196, + 6, + 0, + 0, + 0, + 0 + ], + [ + 192, + 61, + 194, + 10, + 0, + 0, + 0, + 0 + ], + [ + 194, + 10, + 196, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC14parseAppStatus33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 200, + 42, + 210, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC19parseProtocolStatus33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 214, + 47, + 216, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC9parseData33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 220, + 37, + 227, + 6, + 0, + 0, + 0, + 0 + ], + [ + 221, + 30, + 224, + 10, + 0, + 0, + 0, + 0 + ], + [ + 224, + 10, + 227, + 6, + 0, + 0, + 0, + 0 + ], + [ + 224, + 16, + 226, + 10, + 0, + 0, + 0, + 0 + ], + [ + 226, + 10, + 227, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC20parseParameterLength33_7A5181C21371C32CFCC412160A833AF1LLSiyKF", + "count": 0, + "regions": [ + [ + 250, + 55, + 276, + 6, + 0, + 0, + 0, + 0 + ], + [ + 254, + 33, + 261, + 10, + 0, + 0, + 0, + 0 + ], + [ + 261, + 10, + 276, + 6, + 0, + 0, + 0, + 0 + ], + [ + 261, + 16, + 274, + 10, + 0, + 0, + 0, + 0 + ], + [ + 274, + 10, + 276, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC15parseParameters33_7A5181C21371C32CFCC412160A833AF1LLyyKF", + "count": 0, + "regions": [ + [ + 280, + 43, + 354, + 6, + 0, + 0, + 0, + 0 + ], + [ + 282, + 38, + 284, + 10, + 0, + 0, + 0, + 0 + ], + [ + 284, + 10, + 354, + 6, + 0, + 0, + 0, + 0 + ], + [ + 288, + 16, + 351, + 10, + 0, + 0, + 0, + 0 + ], + [ + 296, + 39, + 301, + 14, + 0, + 0, + 0, + 0 + ], + [ + 301, + 14, + 351, + 10, + 0, + 0, + 0, + 0 + ], + [ + 307, + 81, + 312, + 14, + 0, + 0, + 0, + 0 + ], + [ + 312, + 14, + 351, + 10, + 0, + 0, + 0, + 0 + ], + [ + 314, + 45, + 320, + 14, + 0, + 0, + 0, + 0 + ], + [ + 320, + 14, + 351, + 10, + 0, + 0, + 0, + 0 + ], + [ + 324, + 32, + 340, + 14, + 0, + 0, + 0, + 0 + ], + [ + 330, + 87, + 335, + 18, + 0, + 0, + 0, + 0 + ], + [ + 335, + 18, + 340, + 14, + 0, + 0, + 0, + 0 + ], + [ + 340, + 14, + 351, + 10, + 0, + 0, + 0, + 0 + ], + [ + 341, + 18, + 345, + 14, + 0, + 0, + 0, + 0 + ], + [ + 345, + 14, + 351, + 10, + 0, + 0, + 0, + 0 + ], + [ + 351, + 10, + 354, + 6, + 0, + 0, + 0, + 0 + ], + [ + 352, + 15, + 352, + 35, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC21skipPaddingThenReturn33_7A5181C21371C32CFCC412160A833AF1LL10Foundation4DataVSgyKF", + "count": 0, + "regions": [ + [ + 359, + 58, + 373, + 6, + 0, + 0, + 0, + 0 + ], + [ + 361, + 30, + 363, + 10, + 0, + 0, + 0, + 0 + ], + [ + 363, + 10, + 373, + 6, + 0, + 0, + 0, + 0 + ], + [ + 367, + 38, + 369, + 10, + 0, + 0, + 0, + 0 + ], + [ + 369, + 10, + 373, + 6, + 0, + 0, + 0, + 0 + ], + [ + 369, + 16, + 371, + 10, + 0, + 0, + 0, + 0 + ], + [ + 371, + 10, + 373, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "$s9KituraNet19FastCGIRecordParserC5parse10Foundation4DataVSgyKF", + "count": 0, + "regions": [ + [ + 377, + 34, + 416, + 6, + 0, + 0, + 0, + 0 + ], + [ + 392, + 9, + 395, + 18, + 0, + 0, + 0, + 0 + ], + [ + 397, + 9, + 401, + 18, + 0, + 0, + 0, + 0 + ], + [ + 403, + 9, + 405, + 18, + 0, + 0, + 0, + 0 + ], + [ + 407, + 9, + 410, + 18, + 0, + 0, + 0, + 0 + ], + [ + 411, + 10, + 415, + 43, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIRecordParser.swift" + ] + }, + { + "name": "__ntd_FastCGIServer_line:35:8", + "count": 3, + "regions": [ + [ + 95, + 19, + 105, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC21maxPendingConnections33_58A0056BE3E65EE8F3AF83D84A51E79ALLSivgSiyXEfU_", + "count": 3, + "regions": [ + [ + 71, + 51, + 77, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen2onySi_tKF", + "count": 3, + "regions": [ + [ + 117, + 45, + 143, + 6, + 3, + 0, + 0, + 0 + ], + [ + 119, + 12, + 137, + 10, + 3, + 0, + 0, + 0 + ], + [ + 138, + 25, + 142, + 10, + 3, + 0, + 0, + 0 + ], + [ + 142, + 10, + 143, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen2onySi_tKFSSyXEfu_", + "count": 0, + "regions": [ + [ + 124, + 22, + 124, + 49, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen2onySi_tKFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 125, + 25, + 125, + 140, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen2onySi_tKFyycfU_", + "count": 0, + "regions": [ + [ + 131, + 55, + 134, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen2on8delegateACSi_AA14ServerDelegate_pSgtKFZ", + "count": 0, + "regions": [ + [ + 158, + 96, + 163, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen4port12errorHandlerySi_ys5Error_pcSgtF", + "count": 0, + "regions": [ + [ + 177, + 81, + 188, + 6, + 0, + 0, + 0, + 0 + ], + [ + 178, + 12, + 180, + 10, + 0, + 0, + 0, + 0 + ], + [ + 181, + 25, + 187, + 10, + 0, + 0, + 0, + 0 + ], + [ + 182, + 44, + 184, + 14, + 0, + 0, + 0, + 0 + ], + [ + 184, + 14, + 187, + 10, + 0, + 0, + 0, + 0 + ], + [ + 184, + 20, + 186, + 14, + 0, + 0, + 0, + 0 + ], + [ + 186, + 14, + 187, + 10, + 0, + 0, + 0, + 0 + ], + [ + 187, + 10, + 188, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen4port12errorHandlerySi_ys5Error_pcSgtFSSyXEfu_", + "count": 0, + "regions": [ + [ + 185, + 27, + 185, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen4port8delegate12errorHandlerACSi_AA14ServerDelegate_pys5Error_pcSgtFZ", + "count": 0, + "regions": [ + [ + 205, + 131, + 211, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tF", + "count": 0, + "regions": [ + [ + 214, + 47, + 243, + 6, + 0, + 0, + 0, + 0 + ], + [ + 215, + 16, + 237, + 10, + 0, + 0, + 0, + 0 + ], + [ + 216, + 16, + 221, + 14, + 0, + 0, + 0, + 0 + ], + [ + 221, + 31, + 236, + 14, + 0, + 0, + 0, + 0 + ], + [ + 222, + 43, + 232, + 18, + 0, + 0, + 0, + 0 + ], + [ + 223, + 65, + 229, + 22, + 0, + 0, + 0, + 0 + ], + [ + 224, + 92, + 226, + 26, + 0, + 0, + 0, + 0 + ], + [ + 226, + 26, + 229, + 22, + 0, + 0, + 0, + 0 + ], + [ + 226, + 32, + 228, + 26, + 0, + 0, + 0, + 0 + ], + [ + 228, + 26, + 229, + 22, + 0, + 0, + 0, + 0 + ], + [ + 229, + 22, + 232, + 18, + 0, + 0, + 0, + 0 + ], + [ + 229, + 28, + 231, + 22, + 0, + 0, + 0, + 0 + ], + [ + 231, + 22, + 232, + 18, + 0, + 0, + 0, + 0 + ], + [ + 232, + 18, + 236, + 14, + 0, + 0, + 0, + 0 + ], + [ + 232, + 24, + 235, + 18, + 0, + 0, + 0, + 0 + ], + [ + 235, + 18, + 236, + 14, + 0, + 0, + 0, + 0 + ], + [ + 236, + 14, + 237, + 10, + 0, + 0, + 0, + 0 + ], + [ + 237, + 10, + 243, + 6, + 0, + 0, + 0, + 0 + ], + [ + 237, + 17, + 237, + 67, + 0, + 0, + 0, + 0 + ], + [ + 239, + 35, + 242, + 10, + 0, + 0, + 0, + 0 + ], + [ + 242, + 10, + 243, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSSyXEfu_", + "count": 0, + "regions": [ + [ + 218, + 27, + 219, + 80, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 225, + 38, + 225, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 227, + 41, + 227, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 230, + 37, + 230, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 233, + 31, + 233, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSbyKXEfu4_", + "count": 0, + "regions": [ + [ + 237, + 43, + 237, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6listen33_58A0056BE3E65EE8F3AF83D84A51E79ALL0E6Sockety0O0AGC_tFSSyXEfu5_", + "count": 0, + "regions": [ + [ + 240, + 23, + 240, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC19handleClientRequest33_58A0056BE3E65EE8F3AF83D84A51E79ALL6sockety6SocketAGC_tF", + "count": 0, + "regions": [ + [ + 248, + 67, + 277, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC19handleClientRequest33_58A0056BE3E65EE8F3AF83D84A51E79ALL6sockety6SocketAGC_tFyycfU_", + "count": 0, + "regions": [ + [ + 250, + 40, + 276, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC19handleClientRequest33_58A0056BE3E65EE8F3AF83D84A51E79ALL6sockety6SocketAGC_tFyycfU_yAA0cdG0C0C18CGIParserErrorTypeOXEfU_", + "count": 0, + "regions": [ + [ + 254, + 29, + 274, + 14, + 0, + 0, + 0, + 0 + ], + [ + 256, + 17, + 260, + 26, + 0, + 0, + 0, + 0 + ], + [ + 261, + 17, + 267, + 26, + 0, + 0, + 0, + 0 + ], + [ + 263, + 24, + 265, + 22, + 0, + 0, + 0, + 0 + ], + [ + 265, + 29, + 265, + 31, + 0, + 0, + 0, + 0 + ], + [ + 265, + 31, + 267, + 26, + 0, + 0, + 0, + 0 + ], + [ + 268, + 17, + 272, + 26, + 0, + 0, + 0, + 0 + ], + [ + 273, + 18, + 274, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC19handleClientRequest33_58A0056BE3E65EE8F3AF83D84A51E79ALL6sockety6SocketAGC_tFyycfU_yAA0cdG0C0C18CGIParserErrorTypeOXEfU_AA14ServerDelegate_pyKXEfu_", + "count": 0, + "regions": [ + [ + 259, + 39, + 259, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC30sendMultiplexRequestRejections33_58A0056BE3E65EE8F3AF83D84A51E79ALL7request8responseyAA0cdG0C_AA0cD8ResponseCtF", + "count": 0, + "regions": [ + [ + 280, + 113, + 288, + 6, + 0, + 0, + 0, + 0 + ], + [ + 281, + 46, + 287, + 10, + 0, + 0, + 0, + 0 + ], + [ + 282, + 54, + 286, + 14, + 0, + 0, + 0, + 0 + ], + [ + 283, + 20, + 285, + 18, + 0, + 0, + 0, + 0 + ], + [ + 285, + 25, + 285, + 27, + 0, + 0, + 0, + 0 + ], + [ + 285, + 27, + 286, + 14, + 0, + 0, + 0, + 0 + ], + [ + 286, + 14, + 287, + 10, + 0, + 0, + 0, + 0 + ], + [ + 287, + 10, + 288, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC4stopyyF", + "count": 3, + "regions": [ + [ + 298, + 24, + 302, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC7started8callbackACXDyyc_tF", + "count": 3, + "regions": [ + [ + 317, + 65, + 320, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC7stopped8callbackACXDyyc_tF", + "count": 1, + "regions": [ + [ + 335, + 65, + 338, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC6failed8callbackACXDys5Error_pc_tF", + "count": 3, + "regions": [ + [ + 353, + 75, + 356, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC22clientConnectionFailed8callbackACXDys5Error_pc_tF", + "count": 0, + "regions": [ + [ + 373, + 91, + 376, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC0C22CGIDummyServerDelegate33_58A0056BE3E65EE8F3AF83D84A51E79ALLC6handle7request8responseyAA0F7Request_p_AA0F8Response_ptF", + "count": 0, + "regions": [ + [ + 390, + 70, + 398, + 10, + 0, + 0, + 0, + 0 + ], + [ + 391, + 16, + 394, + 14, + 0, + 0, + 0, + 0 + ], + [ + 395, + 19, + 397, + 14, + 0, + 0, + 0, + 0 + ], + [ + 397, + 14, + 398, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "$s9KituraNet13FastCGIServerC0C22CGIDummyServerDelegate33_58A0056BE3E65EE8F3AF83D84A51E79ALLC6handle7request8responseyAA0F7Request_p_AA0F8Response_ptFSSyXEfu_", + "count": 0, + "regions": [ + [ + 396, + 27, + 396, + 74, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServer.swift" + ] + }, + { + "name": "__ntd_FastCGIServerRequest_line:47:8", + "count": 0, + "regions": [ + [ + 236, + 43, + 238, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC9urlStringSSvg", + "count": 0, + "regions": [ + [ + 137, + 35, + 137, + 62, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC9urlStringSSvgSSyKXEfu_", + "count": 0, + "regions": [ + [ + 137, + 58, + 137, + 60, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC3url10Foundation4DataVvg", + "count": 0, + "regions": [ + [ + 149, + 27, + 149, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC3url10Foundation4DataVvgAGyKXEfu_", + "count": 0, + "regions": [ + [ + 149, + 70, + 149, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13urlComponents10Foundation13URLComponentsVvgAGyXEfU_", + "count": 0, + "regions": [ + [ + 162, + 52, + 164, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13urlComponents10Foundation13URLComponentsVvgAGyXEfU_AGyKXEfu_", + "count": 0, + "regions": [ + [ + 163, + 83, + 163, + 98, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC4read4intoSi10Foundation4DataVz_tKF", + "count": 0, + "regions": [ + [ + 253, + 59, + 255, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC11readAllData4intoSi10Foundation0H0Vz_tKF", + "count": 0, + "regions": [ + [ + 270, + 66, + 272, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC10readStringSSSgyKF", + "count": 0, + "regions": [ + [ + 285, + 48, + 294, + 6, + 0, + 0, + 0, + 0 + ], + [ + 289, + 22, + 291, + 10, + 0, + 0, + 0, + 0 + ], + [ + 291, + 10, + 294, + 6, + 0, + 0, + 0, + 0 + ], + [ + 291, + 16, + 293, + 10, + 0, + 0, + 0, + 0 + ], + [ + 293, + 10, + 294, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC23postProcessUrlParameteryyF", + "count": 0, + "regions": [ + [ + 297, + 44, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 299, + 62, + 301, + 10, + 0, + 0, + 0, + 0 + ], + [ + 301, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 301, + 16, + 304, + 10, + 0, + 0, + 0, + 0 + ], + [ + 304, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 306, + 43, + 308, + 10, + 0, + 0, + 0, + 0 + ], + [ + 308, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 308, + 16, + 311, + 10, + 0, + 0, + 0, + 0 + ], + [ + 311, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 313, + 62, + 315, + 10, + 0, + 0, + 0, + 0 + ], + [ + 315, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 315, + 16, + 317, + 10, + 0, + 0, + 0, + 0 + ], + [ + 317, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 319, + 42, + 321, + 10, + 0, + 0, + 0, + 0 + ], + [ + 321, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ], + [ + 321, + 16, + 323, + 10, + 0, + 0, + 0, + 0 + ], + [ + 323, + 10, + 324, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC23postProcessUrlParameteryyFSSyXEfu_", + "count": 0, + "regions": [ + [ + 303, + 23, + 303, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC23postProcessUrlParameteryyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 310, + 23, + 310, + 49, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC23postProcessUrlParameteryyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 316, + 23, + 316, + 62, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC23postProcessUrlParameteryyFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 322, + 23, + 322, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC21postProcessParameters33_4370C674B76B3037B72CAFC426DD5FF1LLyyF", + "count": 0, + "regions": [ + [ + 329, + 42, + 344, + 6, + 0, + 0, + 0, + 0 + ], + [ + 332, + 30, + 334, + 10, + 0, + 0, + 0, + 0 + ], + [ + 334, + 10, + 344, + 6, + 0, + 0, + 0, + 0 + ], + [ + 337, + 37, + 339, + 10, + 0, + 0, + 0, + 0 + ], + [ + 339, + 10, + 344, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC17processHttpHeader33_4370C674B76B3037B72CAFC426DD5FF1LL_5value6removeySS_S2StF", + "count": 0, + "regions": [ + [ + 349, + 83, + 356, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC21processServerProtocol33_4370C674B76B3037B72CAFC426DD5FF1LLyySSF", + "count": 0, + "regions": [ + [ + 359, + 66, + 405, + 6, + 0, + 0, + 0, + 0 + ], + [ + 361, + 45, + 363, + 10, + 0, + 0, + 0, + 0 + ], + [ + 363, + 10, + 405, + 6, + 0, + 0, + 0, + 0 + ], + [ + 366, + 55, + 368, + 10, + 0, + 0, + 0, + 0 + ], + [ + 368, + 10, + 405, + 6, + 0, + 0, + 0, + 0 + ], + [ + 374, + 33, + 380, + 10, + 0, + 0, + 0, + 0 + ], + [ + 375, + 25, + 377, + 14, + 0, + 0, + 0, + 0 + ], + [ + 377, + 14, + 380, + 10, + 0, + 0, + 0, + 0 + ], + [ + 377, + 20, + 379, + 14, + 0, + 0, + 0, + 0 + ], + [ + 379, + 14, + 380, + 10, + 0, + 0, + 0, + 0 + ], + [ + 380, + 10, + 405, + 6, + 0, + 0, + 0, + 0 + ], + [ + 386, + 32, + 390, + 10, + 0, + 0, + 0, + 0 + ], + [ + 390, + 10, + 405, + 6, + 0, + 0, + 0, + 0 + ], + [ + 393, + 51, + 397, + 10, + 0, + 0, + 0, + 0 + ], + [ + 397, + 10, + 405, + 6, + 0, + 0, + 0, + 0 + ], + [ + 400, + 55, + 403, + 10, + 0, + 0, + 0, + 0 + ], + [ + 403, + 10, + 405, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC21processServerProtocol33_4370C674B76B3037B72CAFC426DD5FF1LLyySSFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 366, + 13, + 366, + 49, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC21processServerProtocol33_4370C674B76B3037B72CAFC426DD5FF1LLyySSFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 400, + 35, + 400, + 54, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processHeader33_4370C674B76B3037B72CAFC426DD5FF1LL_5valueySS_SStF", + "count": 0, + "regions": [ + [ + 413, + 65, + 455, + 6, + 0, + 0, + 0, + 0 + ], + [ + 415, + 74, + 420, + 10, + 0, + 0, + 0, + 0 + ], + [ + 420, + 10, + 455, + 6, + 0, + 0, + 0, + 0 + ], + [ + 420, + 78, + 425, + 10, + 0, + 0, + 0, + 0 + ], + [ + 425, + 10, + 455, + 6, + 0, + 0, + 0, + 0 + ], + [ + 425, + 78, + 430, + 10, + 0, + 0, + 0, + 0 + ], + [ + 430, + 10, + 455, + 6, + 0, + 0, + 0, + 0 + ], + [ + 430, + 82, + 437, + 10, + 0, + 0, + 0, + 0 + ], + [ + 437, + 10, + 455, + 6, + 0, + 0, + 0, + 0 + ], + [ + 438, + 41, + 450, + 10, + 0, + 0, + 0, + 0 + ], + [ + 450, + 10, + 455, + 6, + 0, + 0, + 0, + 0 + ], + [ + 452, + 37, + 454, + 10, + 0, + 0, + 0, + 0 + ], + [ + 454, + 10, + 455, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKF", + "count": 0, + "regions": [ + [ + 459, + 72, + 563, + 6, + 0, + 0, + 0, + 0 + ], + [ + 464, + 64, + 466, + 10, + 0, + 0, + 0, + 0 + ], + [ + 466, + 10, + 563, + 6, + 0, + 0, + 0, + 0 + ], + [ + 469, + 65, + 477, + 10, + 0, + 0, + 0, + 0 + ], + [ + 477, + 10, + 563, + 6, + 0, + 0, + 0, + 0 + ], + [ + 478, + 69, + 498, + 10, + 0, + 0, + 0, + 0 + ], + [ + 487, + 46, + 491, + 14, + 0, + 0, + 0, + 0 + ], + [ + 491, + 14, + 498, + 10, + 0, + 0, + 0, + 0 + ], + [ + 491, + 20, + 496, + 14, + 0, + 0, + 0, + 0 + ], + [ + 496, + 14, + 498, + 10, + 0, + 0, + 0, + 0 + ], + [ + 498, + 10, + 563, + 6, + 0, + 0, + 0, + 0 + ], + [ + 500, + 58, + 533, + 10, + 0, + 0, + 0, + 0 + ], + [ + 511, + 54, + 513, + 14, + 0, + 0, + 0, + 0 + ], + [ + 513, + 14, + 533, + 10, + 0, + 0, + 0, + 0 + ], + [ + 515, + 41, + 520, + 14, + 0, + 0, + 0, + 0 + ], + [ + 516, + 45, + 519, + 18, + 0, + 0, + 0, + 0 + ], + [ + 519, + 18, + 520, + 14, + 0, + 0, + 0, + 0 + ], + [ + 520, + 14, + 533, + 10, + 0, + 0, + 0, + 0 + ], + [ + 520, + 20, + 531, + 14, + 0, + 0, + 0, + 0 + ], + [ + 531, + 14, + 533, + 10, + 0, + 0, + 0, + 0 + ], + [ + 533, + 10, + 563, + 6, + 0, + 0, + 0, + 0 + ], + [ + 535, + 57, + 561, + 10, + 0, + 0, + 0, + 0 + ], + [ + 546, + 54, + 548, + 14, + 0, + 0, + 0, + 0 + ], + [ + 548, + 14, + 561, + 10, + 0, + 0, + 0, + 0 + ], + [ + 550, + 55, + 554, + 14, + 0, + 0, + 0, + 0 + ], + [ + 554, + 14, + 561, + 10, + 0, + 0, + 0, + 0 + ], + [ + 555, + 18, + 559, + 14, + 0, + 0, + 0, + 0 + ], + [ + 559, + 14, + 561, + 10, + 0, + 0, + 0, + 0 + ], + [ + 561, + 10, + 563, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 469, + 13, + 469, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 500, + 13, + 500, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 530, + 29, + 530, + 194, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKFSSyXEfu1_SSyKXEfu2_", + "count": 0, + "regions": [ + [ + 530, + 99, + 530, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKFSSyXEfu1_SSyKXEfu3_", + "count": 0, + "regions": [ + [ + 530, + 156, + 530, + 162, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC13processRecord33_4370C674B76B3037B72CAFC426DD5FF1LLyyAA0C15CGIRecordParserCKFSbyKXEfu4_", + "count": 0, + "regions": [ + [ + 535, + 13, + 535, + 56, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet20FastCGIServerRequestC5parseyyyAC0C18CGIParserErrorTypeOXEF", + "count": 0, + "regions": [ + [ + 566, + 63, + 659, + 6, + 0, + 0, + 0, + 0 + ], + [ + 575, + 16, + 657, + 10, + 0, + 0, + 0, + 0 + ], + [ + 577, + 16, + 637, + 14, + 0, + 0, + 0, + 0 + ], + [ + 581, + 42, + 585, + 18, + 0, + 0, + 0, + 0 + ], + [ + 585, + 18, + 637, + 14, + 0, + 0, + 0, + 0 + ], + [ + 591, + 24, + 634, + 18, + 0, + 0, + 0, + 0 + ], + [ + 604, + 24, + 613, + 22, + 0, + 0, + 0, + 0 + ], + [ + 607, + 49, + 609, + 26, + 0, + 0, + 0, + 0 + ], + [ + 609, + 26, + 613, + 22, + 0, + 0, + 0, + 0 + ], + [ + 609, + 32, + 612, + 26, + 0, + 0, + 0, + 0 + ], + [ + 612, + 26, + 613, + 22, + 0, + 0, + 0, + 0 + ], + [ + 614, + 64, + 623, + 22, + 0, + 0, + 0, + 0 + ], + [ + 623, + 22, + 634, + 18, + 0, + 0, + 0, + 0 + ], + [ + 629, + 57, + 632, + 22, + 0, + 0, + 0, + 0 + ], + [ + 632, + 22, + 634, + 18, + 0, + 0, + 0, + 0 + ], + [ + 634, + 18, + 637, + 14, + 0, + 0, + 0, + 0 + ], + [ + 634, + 25, + 634, + 29, + 0, + 0, + 0, + 0 + ], + [ + 637, + 57, + 640, + 14, + 0, + 0, + 0, + 0 + ], + [ + 640, + 56, + 643, + 14, + 0, + 0, + 0, + 0 + ], + [ + 643, + 58, + 646, + 14, + 0, + 0, + 0, + 0 + ], + [ + 646, + 54, + 649, + 14, + 0, + 0, + 0, + 0 + ], + [ + 649, + 58, + 652, + 14, + 0, + 0, + 0, + 0 + ], + [ + 652, + 21, + 655, + 14, + 0, + 0, + 0, + 0 + ], + [ + 655, + 14, + 657, + 10, + 0, + 0, + 0, + 0 + ], + [ + 657, + 10, + 659, + 6, + 0, + 0, + 0, + 0 + ], + [ + 657, + 17, + 657, + 21, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerRequest.swift" + ] + }, + { + "name": "$sSn9KituraNetSzRzrlE7iterate2by6actionyx_ySnyxGKXEtKF", + "count": 0, + "regions": [ + [ + 27, + 79, + 37, + 6, + 0, + 0, + 0, + 0 + ], + [ + 31, + 15, + 31, + 39, + 0, + 0, + 0, + 0 + ], + [ + 31, + 40, + 36, + 10, + 0, + 0, + 0, + 0 + ], + [ + 36, + 10, + 37, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "__ntd_FastCGIServerResponse_line:58:8", + "count": 0, + "regions": [ + [ + 113, + 57, + 117, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC10statusCodeAA010HTTPStatusG0OSgvg", + "count": 0, + "regions": [ + [ + 98, + 13, + 100, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC10statusCodeAA010HTTPStatusG0OSgvs", + "count": 0, + "regions": [ + [ + 101, + 24, + 105, + 10, + 0, + 0, + 0, + 0 + ], + [ + 102, + 55, + 104, + 14, + 0, + 0, + 0, + 0 + ], + [ + 104, + 14, + 105, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC3end4textySS_tKF", + "count": 0, + "regions": [ + [ + 131, + 42, + 134, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC5write4fromySS_tKF", + "count": 0, + "regions": [ + [ + 148, + 51, + 150, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC5write4fromy10Foundation4DataV_tKF", + "count": 0, + "regions": [ + [ + 164, + 47, + 173, + 6, + 0, + 0, + 0, + 0 + ], + [ + 168, + 75, + 170, + 10, + 0, + 0, + 0, + 0 + ], + [ + 170, + 10, + 173, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC3endyyKF", + "count": 0, + "regions": [ + [ + 185, + 30, + 189, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC05startE033_3FB914FF9FD13448BA2618FB0A708305LLyyKF", + "count": 0, + "regions": [ + [ + 199, + 41, + 226, + 6, + 0, + 0, + 0, + 0 + ], + [ + 201, + 51, + 203, + 10, + 0, + 0, + 0, + 0 + ], + [ + 203, + 10, + 226, + 6, + 0, + 0, + 0, + 0 + ], + [ + 211, + 43, + 218, + 10, + 0, + 0, + 0, + 0 + ], + [ + 212, + 38, + 217, + 14, + 0, + 0, + 0, + 0 + ], + [ + 217, + 14, + 218, + 10, + 0, + 0, + 0, + 0 + ], + [ + 218, + 10, + 226, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC05startE033_3FB914FF9FD13448BA2618FB0A708305LLyyKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 201, + 32, + 201, + 45, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC20getEndRequestMessage33_3FB914FF9FD13448BA2618FB0A708305LL9requestId14protocolStatus10Foundation4DataVs6UInt16V_s5UInt8VtKF", + "count": 0, + "regions": [ + [ + 229, + 96, + 239, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC25getRequestCompleteMessage33_3FB914FF9FD13448BA2618FB0A708305LL10Foundation4DataVyKF", + "count": 0, + "regions": [ + [ + 243, + 61, + 252, + 6, + 0, + 0, + 0, + 0 + ], + [ + 245, + 59, + 247, + 10, + 0, + 0, + 0, + 0 + ], + [ + 247, + 10, + 250, + 97, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC24getNoMultiplexingMessage33_3FB914FF9FD13448BA2618FB0A708305LL9requestId10Foundation4DataVs6UInt16V_tKF", + "count": 0, + "regions": [ + [ + 257, + 77, + 259, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC25getUnsupportedRoleMessage33_3FB914FF9FD13448BA2618FB0A708305LL10Foundation4DataVSgyKF", + "count": 0, + "regions": [ + [ + 263, + 62, + 274, + 6, + 0, + 0, + 0, + 0 + ], + [ + 265, + 59, + 267, + 10, + 0, + 0, + 0, + 0 + ], + [ + 267, + 10, + 274, + 6, + 0, + 0, + 0, + 0 + ], + [ + 268, + 92, + 270, + 10, + 0, + 0, + 0, + 0 + ], + [ + 270, + 10, + 272, + 129, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC24rejectMultiplexConnecton9requestIdys6UInt16V_tKF", + "count": 0, + "regions": [ + [ + 286, + 68, + 289, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC21rejectUnsupportedRoleyyKF", + "count": 0, + "regions": [ + [ + 299, + 48, + 304, + 6, + 0, + 0, + 0, + 0 + ], + [ + 300, + 66, + 302, + 10, + 0, + 0, + 0, + 0 + ], + [ + 302, + 10, + 304, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC5resetyyF", + "count": 0, + "regions": [ + [ + 314, + 25, + 316, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC10getMessage33_3FB914FF9FD13448BA2618FB0A708305LL6buffer10Foundation4DataVAISg_tKF", + "count": 0, + "regions": [ + [ + 320, + 59, + 333, + 6, + 0, + 0, + 0, + 0 + ], + [ + 327, + 26, + 329, + 10, + 0, + 0, + 0, + 0 + ], + [ + 329, + 10, + 331, + 35, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC13writeToSocket33_3FB914FF9FD13448BA2618FB0A708305LL_13wrapAsMessagey10Foundation4DataV_SbtKF", + "count": 0, + "regions": [ + [ + 336, + 81, + 356, + 6, + 0, + 0, + 0, + 0 + ], + [ + 338, + 40, + 340, + 10, + 0, + 0, + 0, + 0 + ], + [ + 340, + 10, + 356, + 6, + 0, + 0, + 0, + 0 + ], + [ + 342, + 26, + 352, + 10, + 0, + 0, + 0, + 0 + ], + [ + 352, + 10, + 356, + 6, + 0, + 0, + 0, + 0 + ], + [ + 352, + 16, + 354, + 10, + 0, + 0, + 0, + 0 + ], + [ + 354, + 10, + 356, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC13writeToSocket33_3FB914FF9FD13448BA2618FB0A708305LL_13wrapAsMessagey10Foundation4DataV_SbtKFySnySiGKXEfU_", + "count": 0, + "regions": [ + [ + 343, + 84, + 351, + 14, + 0, + 0, + 0, + 0 + ], + [ + 345, + 50, + 347, + 18, + 0, + 0, + 0, + 0 + ], + [ + 347, + 18, + 351, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC5flush33_3FB914FF9FD13448BA2618FB0A708305LLyyKF", + "count": 0, + "regions": [ + [ + 360, + 33, + 370, + 6, + 0, + 0, + 0, + 0 + ], + [ + 362, + 37, + 364, + 10, + 0, + 0, + 0, + 0 + ], + [ + 364, + 10, + 370, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet21FastCGIServerResponseC08concludeE033_3FB914FF9FD13448BA2618FB0A708305LLyyKF", + "count": 0, + "regions": [ + [ + 377, + 44, + 394, + 6, + 0, + 0, + 0, + 0 + ], + [ + 390, + 37, + 392, + 10, + 0, + 0, + 0, + 0 + ], + [ + 392, + 10, + 394, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/FastCGI/FastCGIServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet4HTTPC12createServerAA10HTTPServerCyFZ", + "count": 8, + "regions": [ + [ + 92, + 53, + 94, + 6, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "$s9KituraNet4HTTPC7request_8callbackAA13ClientRequestCSS_yAA0F8ResponseCSgctFZ", + "count": 0, + "regions": [ + [ + 110, + 108, + 112, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "$s9KituraNet4HTTPC7request_8callbackAA13ClientRequestCSayAG7OptionsOG_yAA0F8ResponseCSgctFZ", + "count": 761, + "regions": [ + [ + 128, + 129, + 130, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "$s9KituraNet4HTTPC3get_8callbackAA13ClientRequestCSS_yAA0F8ResponseCSgctFZ", + "count": 0, + "regions": [ + [ + 149, + 104, + 153, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "$s9KituraNet4HTTPC6escape3urlS2S_tFZ", + "count": 0, + "regions": [ + [ + 169, + 54, + 175, + 6, + 0, + 0, + 0, + 0 + ], + [ + 170, + 96, + 172, + 10, + 0, + 0, + 0, + 0 + ], + [ + 172, + 10, + 174, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "__ntd_Class_line:304:12", + "count": 174, + "regions": [ + [ + 318, + 25, + 327, + 10, + 174, + 0, + 0, + 0 + ], + [ + 320, + 13, + 320, + 50, + 0, + 0, + 0, + 0 + ], + [ + 321, + 13, + 321, + 47, + 126, + 0, + 0, + 0 + ], + [ + 322, + 13, + 322, + 48, + 0, + 0, + 0, + 0 + ], + [ + 323, + 13, + 323, + 48, + 26, + 0, + 0, + 0 + ], + [ + 324, + 13, + 324, + 48, + 22, + 0, + 0, + 0 + ], + [ + 325, + 13, + 325, + 43, + 0, + 0, + 0, + 0 + ], + [ + 326, + 14, + 327, + 10, + 174, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "$s9KituraNet14HTTPStatusCodeO5classAC5ClassOvg", + "count": 174, + "regions": [ + [ + 331, + 31, + 333, + 6, + 174, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTP.swift" + ] + }, + { + "name": "__ntd_HTTPServer_line:41:8", + "count": 8, + "regions": [ + [ + 134, + 19, + 145, + 6, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKF", + "count": 9, + "regions": [ + [ + 157, + 45, + 215, + 6, + 9, + 0, + 0, + 0 + ], + [ + 159, + 12, + 209, + 10, + 9, + 0, + 0, + 0 + ], + [ + 165, + 42, + 167, + 14, + 4, + 0, + 0, + 0 + ], + [ + 167, + 14, + 209, + 10, + 9, + 0, + 0, + 0 + ], + [ + 176, + 38, + 182, + 14, + 8, + 0, + 0, + 0 + ], + [ + 179, + 30, + 181, + 18, + 0, + 0, + 0, + 0 + ], + [ + 181, + 18, + 182, + 14, + 8, + 0, + 0, + 0 + ], + [ + 182, + 14, + 209, + 10, + 9, + 0, + 0, + 0 + ], + [ + 184, + 47, + 194, + 14, + 4, + 0, + 0, + 0 + ], + [ + 194, + 14, + 209, + 10, + 9, + 0, + 0, + 0 + ], + [ + 194, + 20, + 197, + 14, + 5, + 0, + 0, + 0 + ], + [ + 197, + 14, + 209, + 10, + 9, + 0, + 0, + 0 + ], + [ + 210, + 25, + 214, + 10, + 1, + 0, + 0, + 0 + ], + [ + 214, + 10, + 215, + 6, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKFSSyXEfu_", + "count": 0, + "regions": [ + [ + 180, + 31, + 180, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKFSSyXEfu0_", + "count": 4, + "regions": [ + [ + 192, + 26, + 192, + 83, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKFSSyXEfu1_", + "count": 4, + "regions": [ + [ + 193, + 29, + 193, + 173, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKFSSyXEfu2_", + "count": 4, + "regions": [ + [ + 195, + 26, + 195, + 59, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKFSSyXEfu3_", + "count": 4, + "regions": [ + [ + 196, + 29, + 196, + 150, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2onySi_tKFyycfU_", + "count": 8, + "regions": [ + [ + 203, + 55, + 206, + 14, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen2on8delegateACSi_AA14ServerDelegate_pSgtKFZ", + "count": 0, + "regions": [ + [ + 230, + 93, + 235, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen4port12errorHandlerySi_ys5Error_pcSgtF", + "count": 0, + "regions": [ + [ + 248, + 81, + 259, + 6, + 0, + 0, + 0, + 0 + ], + [ + 249, + 12, + 251, + 10, + 0, + 0, + 0, + 0 + ], + [ + 252, + 25, + 258, + 10, + 0, + 0, + 0, + 0 + ], + [ + 253, + 44, + 255, + 14, + 0, + 0, + 0, + 0 + ], + [ + 255, + 14, + 258, + 10, + 0, + 0, + 0, + 0 + ], + [ + 255, + 20, + 257, + 14, + 0, + 0, + 0, + 0 + ], + [ + 257, + 14, + 258, + 10, + 0, + 0, + 0, + 0 + ], + [ + 258, + 10, + 259, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen4port12errorHandlerySi_ys5Error_pcSgtFSSyXEfu_", + "count": 0, + "regions": [ + [ + 256, + 27, + 256, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen4port8delegate12errorHandlerACSi_AA14ServerDelegate_pys5Error_pcSgtFZ", + "count": 0, + "regions": [ + [ + 275, + 128, + 280, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtF", + "count": 8, + "regions": [ + [ + 283, + 85, + 337, + 6, + 8, + 0, + 0, + 0 + ], + [ + 284, + 16, + 331, + 10, + 784, + 0, + 0, + 0 + ], + [ + 285, + 16, + 315, + 14, + 784, + 0, + 0, + 0 + ], + [ + 290, + 49, + 312, + 18, + 389, + 0, + 0, + 0 + ], + [ + 312, + 18, + 315, + 14, + 784, + 0, + 0, + 0 + ], + [ + 312, + 24, + 314, + 18, + 395, + 0, + 0, + 0 + ], + [ + 314, + 18, + 315, + 14, + 784, + 0, + 0, + 0 + ], + [ + 315, + 31, + 330, + 14, + 6, + 0, + 0, + 0 + ], + [ + 316, + 43, + 326, + 18, + 6, + 0, + 0, + 0 + ], + [ + 317, + 65, + 323, + 22, + 6, + 0, + 0, + 0 + ], + [ + 318, + 92, + 320, + 26, + 6, + 0, + 0, + 0 + ], + [ + 320, + 26, + 323, + 22, + 6, + 0, + 0, + 0 + ], + [ + 320, + 32, + 322, + 26, + 0, + 0, + 0, + 0 + ], + [ + 322, + 26, + 323, + 22, + 6, + 0, + 0, + 0 + ], + [ + 323, + 22, + 326, + 18, + 6, + 0, + 0, + 0 + ], + [ + 323, + 28, + 325, + 22, + 0, + 0, + 0, + 0 + ], + [ + 325, + 22, + 326, + 18, + 6, + 0, + 0, + 0 + ], + [ + 326, + 18, + 330, + 14, + 6, + 0, + 0, + 0 + ], + [ + 326, + 24, + 329, + 18, + 0, + 0, + 0, + 0 + ], + [ + 329, + 18, + 330, + 14, + 6, + 0, + 0, + 0 + ], + [ + 330, + 14, + 331, + 10, + 784, + 0, + 0, + 0 + ], + [ + 331, + 10, + 337, + 6, + 8, + 0, + 0, + 0 + ], + [ + 331, + 17, + 331, + 67, + 784, + 0, + 0, + 0 + ], + [ + 333, + 35, + 336, + 10, + 0, + 0, + 0, + 0 + ], + [ + 336, + 10, + 337, + 6, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSSyXEfu_", + "count": 776, + "regions": [ + [ + 288, + 27, + 288, + 75, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFyycfU_", + "count": 389, + "regions": [ + [ + 291, + 50, + 311, + 22, + 389, + 0, + 0, + 0 + ], + [ + 292, + 58, + 295, + 26, + 0, + 0, + 0, + 0 + ], + [ + 295, + 26, + 311, + 22, + 389, + 0, + 0, + 0 + ], + [ + 296, + 28, + 299, + 26, + 389, + 0, + 0, + 0 + ], + [ + 299, + 43, + 310, + 26, + 0, + 0, + 0, + 0 + ], + [ + 300, + 61, + 306, + 30, + 0, + 0, + 0, + 0 + ], + [ + 301, + 77, + 303, + 34, + 0, + 0, + 0, + 0 + ], + [ + 303, + 34, + 306, + 30, + 0, + 0, + 0, + 0 + ], + [ + 303, + 40, + 305, + 34, + 0, + 0, + 0, + 0 + ], + [ + 305, + 34, + 306, + 30, + 0, + 0, + 0, + 0 + ], + [ + 306, + 30, + 310, + 26, + 0, + 0, + 0, + 0 + ], + [ + 306, + 36, + 309, + 30, + 0, + 0, + 0, + 0 + ], + [ + 309, + 30, + 310, + 26, + 0, + 0, + 0, + 0 + ], + [ + 310, + 26, + 311, + 22, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFyycfU_SSyXEfu_", + "count": 0, + "regions": [ + [ + 293, + 38, + 293, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFyycfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 302, + 49, + 302, + 152, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFyycfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 304, + 49, + 304, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFyycfU_SSyXEfu2_", + "count": 0, + "regions": [ + [ + 307, + 43, + 307, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSSyXEfu0_", + "count": 6, + "regions": [ + [ + 319, + 38, + 319, + 68, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 321, + 41, + 321, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 324, + 37, + 324, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 327, + 31, + 327, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSbyKXEfu4_", + "count": 776, + "regions": [ + [ + 331, + 43, + 331, + 67, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6listen33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL0D6Socket13socketManagery0N0AHC_AA08IncomingnP0CtFSSyXEfu5_", + "count": 0, + "regions": [ + [ + 334, + 23, + 334, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC26initializeClientConnection33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL12clientSocket06listenQ0y0Q0AHC_AItKF", + "count": 389, + "regions": [ + [ + 343, + 96, + 347, + 6, + 389, + 0, + 0, + 0 + ], + [ + 344, + 41, + 346, + 10, + 389, + 0, + 0, + 0 + ], + [ + 346, + 10, + 347, + 6, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC22handleClientConnection33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL12clientSocket13socketManagery0Q0AHC_AA08IncomingqS0CtF", + "count": 776, + "regions": [ + [ + 352, + 101, + 373, + 6, + 776, + 0, + 0, + 0 + ], + [ + 359, + 119, + 369, + 10, + 776, + 0, + 0, + 0 + ], + [ + 363, + 13, + 364, + 157, + 776, + 0, + 0, + 0 + ], + [ + 365, + 13, + 366, + 148, + 0, + 0, + 0, + 0 + ], + [ + 367, + 14, + 369, + 10, + 776, + 0, + 0, + 0 + ], + [ + 369, + 10, + 373, + 6, + 776, + 0, + 0, + 0 + ], + [ + 370, + 14, + 372, + 10, + 0, + 0, + 0, + 0 + ], + [ + 372, + 10, + 373, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC22handleClientConnection33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL12clientSocket13socketManagery0Q0AHC_AA08IncomingqS0CtFAA14ServerDelegate_pyKXEfu_", + "count": 0, + "regions": [ + [ + 360, + 46, + 360, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC22handleClientConnection33_92AA53CEEC3B42FE7AE426A27AF9C2E0LL12clientSocket13socketManagery0Q0AHC_AA08IncomingqS0CtFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 371, + 23, + 371, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC4stopyyF", + "count": 7, + "regions": [ + [ + 384, + 24, + 392, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC7started8callbackACXDyyc_tF", + "count": 3, + "regions": [ + [ + 406, + 65, + 409, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC7stopped8callbackACXDyyc_tF", + "count": 2, + "regions": [ + [ + 423, + 65, + 426, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC6failed8callbackACXDys5Error_pc_tF", + "count": 3, + "regions": [ + [ + 440, + 75, + 443, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC22clientConnectionFailed8callbackACXDys5Error_pc_tF", + "count": 0, + "regions": [ + [ + 457, + 91, + 460, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC16waitForListenersyyFZ", + "count": 0, + "regions": [ + [ + 474, + 43, + 476, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC23HTTPDummyServerDelegate33_92AA53CEEC3B42FE7AE426A27AF9C2E0LLC6handle7request8responseyAA0E7Request_p_AA0E8Response_ptF", + "count": 0, + "regions": [ + [ + 490, + 70, + 502, + 10, + 0, + 0, + 0, + 0 + ], + [ + 491, + 16, + 498, + 14, + 0, + 0, + 0, + 0 + ], + [ + 499, + 19, + 501, + 14, + 0, + 0, + 0, + 0 + ], + [ + 501, + 14, + 502, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC23HTTPDummyServerDelegate33_92AA53CEEC3B42FE7AE426A27AF9C2E0LLC6handle7request8responseyAA0E7Request_p_AA0E8Response_ptFSSyXEfu_", + "count": 0, + "regions": [ + [ + 500, + 27, + 500, + 74, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPServerC8register30incomingSocketProcessorCreatoryAA08IncomingfgH0_p_tFZ", + "count": 1, + "regions": [ + [ + 516, + 105, + 518, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "__ntd_HTTPServerOneTimeInitializations_line:521:13", + "count": 1, + "regions": [ + [ + 522, + 16, + 524, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServer.swift" + ] + }, + { + "name": "__ntd_HTTPServerRequest_line:44:8", + "count": 774, + "regions": [ + [ + 239, + 52, + 242, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC13remoteAddressSSvg", + "count": 2, + "regions": [ + [ + 69, + 38, + 71, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6methodSSvg", + "count": 1014, + "regions": [ + [ + 81, + 31, + 81, + 65, + 1014, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6methodSSvgSSyKXEfu_", + "count": 0, + "regions": [ + [ + 81, + 62, + 81, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16httpVersionMajors6UInt16VSgvg", + "count": 774, + "regions": [ + [ + 91, + 42, + 91, + 85, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16httpVersionMajors6UInt16VSgvgAFyKXEfu_", + "count": 0, + "regions": [ + [ + 91, + 83, + 91, + 84, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16httpVersionMinors6UInt16VSgvg", + "count": 774, + "regions": [ + [ + 101, + 42, + 101, + 85, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16httpVersionMinors6UInt16VSgvgAFyKXEfu_", + "count": 0, + "regions": [ + [ + 101, + 83, + 101, + 84, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC7headersAA16HeadersContainerCvg", + "count": 2544, + "regions": [ + [ + 111, + 42, + 111, + 94, + 2544, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC7headersAA16HeadersContainerCvgAFyKXEfu_", + "count": 0, + "regions": [ + [ + 111, + 74, + 111, + 92, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC9signature6SocketAEC9SignatureVSgvg", + "count": 986, + "regions": [ + [ + 121, + 45, + 121, + 72, + 986, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6urlURL10Foundation0F0Vvg", + "count": 274, + "regions": [ + [ + 133, + 28, + 165, + 6, + 274, + 0, + 0, + 0 + ], + [ + 134, + 28, + 136, + 10, + 62, + 0, + 0, + 0 + ], + [ + 136, + 10, + 165, + 6, + 212, + 0, + 0, + 0 + ], + [ + 140, + 47, + 143, + 10, + 212, + 0, + 0, + 0 + ], + [ + 141, + 33, + 141, + 40, + 106, + 0, + 0, + 0 + ], + [ + 141, + 43, + 141, + 49, + 106, + 0, + 0, + 0 + ], + [ + 143, + 10, + 165, + 6, + 212, + 0, + 0, + 0 + ], + [ + 143, + 16, + 146, + 10, + 0, + 0, + 0, + 0 + ], + [ + 146, + 10, + 165, + 6, + 212, + 0, + 0, + 0 + ], + [ + 148, + 43, + 150, + 10, + 212, + 0, + 0, + 0 + ], + [ + 150, + 10, + 165, + 6, + 212, + 0, + 0, + 0 + ], + [ + 150, + 16, + 153, + 10, + 0, + 0, + 0, + 0 + ], + [ + 153, + 10, + 165, + 6, + 212, + 0, + 0, + 0 + ], + [ + 157, + 42, + 159, + 10, + 212, + 0, + 0, + 0 + ], + [ + 159, + 10, + 165, + 6, + 212, + 0, + 0, + 0 + ], + [ + 159, + 16, + 162, + 10, + 0, + 0, + 0, + 0 + ], + [ + 162, + 10, + 164, + 26, + 212, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6urlURL10Foundation0F0VvgSSyXEfu_", + "count": 0, + "regions": [ + [ + 145, + 23, + 145, + 69, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6urlURL10Foundation0F0VvgSSyXEfu0_", + "count": 0, + "regions": [ + [ + 152, + 23, + 152, + 49, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6urlURL10Foundation0F0VvgSSyKXEfu1_", + "count": 0, + "regions": [ + [ + 155, + 45, + 155, + 47, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC6urlURL10Foundation0F0VvgSSyXEfu2_", + "count": 0, + "regions": [ + [ + 160, + 23, + 160, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC13urlComponents10Foundation13URLComponentsVvg", + "count": 0, + "regions": [ + [ + 180, + 45, + 187, + 6, + 0, + 0, + 0, + 0 + ], + [ + 181, + 33, + 183, + 10, + 0, + 0, + 0, + 0 + ], + [ + 183, + 10, + 186, + 20, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC13urlComponents10Foundation13URLComponentsVvgAGyKXEfu_", + "count": 0, + "regions": [ + [ + 184, + 87, + 184, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC9urlStringSSvg", + "count": 0, + "regions": [ + [ + 201, + 35, + 201, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC9urlStringSSvgSSyKXEfu_", + "count": 0, + "regions": [ + [ + 201, + 69, + 201, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC3url10Foundation4DataVvg", + "count": 774, + "regions": [ + [ + 213, + 27, + 218, + 6, + 774, + 0, + 0, + 0 + ], + [ + 214, + 40, + 216, + 10, + 774, + 0, + 0, + 0 + ], + [ + 216, + 10, + 217, + 22, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC4read4intoSi10Foundation4DataVz_tKF", + "count": 150, + "regions": [ + [ + 256, + 59, + 263, + 6, + 150, + 0, + 0, + 0 + ], + [ + 257, + 48, + 259, + 10, + 0, + 0, + 0, + 0 + ], + [ + 259, + 10, + 262, + 21, + 150, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC11readAllData4intoSi10Foundation0G0Vz_tKF", + "count": 0, + "regions": [ + [ + 278, + 66, + 286, + 6, + 0, + 0, + 0, + 0 + ], + [ + 281, + 15, + 281, + 25, + 0, + 0, + 0, + 0 + ], + [ + 281, + 26, + 284, + 10, + 0, + 0, + 0, + 0 + ], + [ + 284, + 10, + 285, + 25, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC10readStringSSSgyKF", + "count": 2, + "regions": [ + [ + 299, + 48, + 308, + 6, + 2, + 0, + 0, + 0 + ], + [ + 302, + 23, + 304, + 10, + 2, + 0, + 0, + 0 + ], + [ + 304, + 10, + 308, + 6, + 0, + 0, + 0, + 0 + ], + [ + 305, + 14, + 307, + 10, + 0, + 0, + 0, + 0 + ], + [ + 307, + 10, + 308, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyF", + "count": 774, + "regions": [ + [ + 311, + 29, + 339, + 6, + 774, + 0, + 0, + 0 + ], + [ + 313, + 48, + 316, + 10, + 0, + 0, + 0, + 0 + ], + [ + 316, + 10, + 339, + 6, + 774, + 0, + 0, + 0 + ], + [ + 322, + 36, + 335, + 10, + 774, + 0, + 0, + 0 + ], + [ + 324, + 51, + 326, + 14, + 774, + 0, + 0, + 0 + ], + [ + 325, + 37, + 325, + 44, + 388, + 0, + 0, + 0 + ], + [ + 325, + 47, + 325, + 53, + 386, + 0, + 0, + 0 + ], + [ + 326, + 14, + 335, + 10, + 774, + 0, + 0, + 0 + ], + [ + 326, + 20, + 328, + 14, + 0, + 0, + 0, + 0 + ], + [ + 328, + 14, + 335, + 10, + 774, + 0, + 0, + 0 + ], + [ + 330, + 66, + 332, + 14, + 0, + 0, + 0, + 0 + ], + [ + 332, + 14, + 335, + 10, + 774, + 0, + 0, + 0 + ], + [ + 332, + 20, + 334, + 14, + 774, + 0, + 0, + 0 + ], + [ + 334, + 14, + 335, + 10, + 774, + 0, + 0, + 0 + ], + [ + 335, + 10, + 339, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyFSSyXEfu_", + "count": 0, + "regions": [ + [ + 314, + 23, + 314, + 35, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 327, + 27, + 327, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 331, + 29, + 331, + 157, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyFSSyXEfu1_SSyKXEfu2_", + "count": 0, + "regions": [ + [ + 331, + 118, + 331, + 124, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyFSSyXEfu3_", + "count": 774, + "regions": [ + [ + 333, + 29, + 333, + 100, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "$s9KituraNet17HTTPServerRequestC16parsingCompletedyyFSSyXEfu3_SSyKXEfu4_", + "count": 0, + "regions": [ + [ + 333, + 91, + 333, + 97, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerRequest.swift" + ] + }, + { + "name": "__ntd_HTTPServerResponse_line:44:8", + "count": 776, + "regions": [ + [ + 93, + 79, + 98, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC10statusCodeAA010HTTPStatusF0OSgvg", + "count": 1876, + "regions": [ + [ + 82, + 13, + 84, + 10, + 1876, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC10statusCodeAA010HTTPStatusF0OSgvs", + "count": 1628, + "regions": [ + [ + 85, + 24, + 89, + 10, + 1628, + 0, + 0, + 0 + ], + [ + 86, + 55, + 88, + 14, + 1626, + 0, + 0, + 0 + ], + [ + 88, + 14, + 89, + 10, + 1628, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC9processor7requestAcA27IncomingHTTPSocketProcessorC_AA0C7RequestCSgtcfcSo13NSMutableDataCyKXEfu_", + "count": 0, + "regions": [ + [ + 95, + 76, + 95, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC5write4fromySS_tKF", + "count": 0, + "regions": [ + [ + 111, + 51, + 114, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC5write4fromy10Foundation4DataV_tKF", + "count": 772, + "regions": [ + [ + 127, + 47, + 142, + 6, + 772, + 0, + 0, + 0 + ], + [ + 128, + 39, + 141, + 10, + 772, + 0, + 0, + 0 + ], + [ + 130, + 101, + 133, + 14, + 14, + 0, + 0, + 0 + ], + [ + 133, + 14, + 141, + 10, + 772, + 0, + 0, + 0 + ], + [ + 134, + 60, + 137, + 14, + 14, + 0, + 0, + 0 + ], + [ + 137, + 14, + 141, + 10, + 772, + 0, + 0, + 0 + ], + [ + 138, + 18, + 140, + 14, + 758, + 0, + 0, + 0 + ], + [ + 140, + 14, + 141, + 10, + 772, + 0, + 0, + 0 + ], + [ + 141, + 10, + 142, + 6, + 772, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC5write4fromy10Foundation4DataV_tKFSbyKXEfu_", + "count": 14, + "regions": [ + [ + 130, + 81, + 130, + 99, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC3end4textySS_tKF", + "count": 0, + "regions": [ + [ + 155, + 42, + 158, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC3endyyKF", + "count": 776, + "regions": [ + [ + 170, + 30, + 190, + 6, + 776, + 0, + 0, + 0 + ], + [ + 171, + 38, + 189, + 10, + 776, + 0, + 0, + 0 + ], + [ + 173, + 36, + 175, + 14, + 762, + 0, + 0, + 0 + ], + [ + 175, + 14, + 189, + 10, + 776, + 0, + 0, + 0 + ], + [ + 177, + 51, + 179, + 14, + 776, + 0, + 0, + 0 + ], + [ + 179, + 14, + 189, + 10, + 776, + 0, + 0, + 0 + ], + [ + 180, + 38, + 182, + 14, + 774, + 0, + 0, + 0 + ], + [ + 182, + 14, + 189, + 10, + 776, + 0, + 0, + 0 + ], + [ + 186, + 27, + 188, + 14, + 0, + 0, + 0, + 0 + ], + [ + 188, + 14, + 189, + 10, + 776, + 0, + 0, + 0 + ], + [ + 189, + 10, + 190, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC3endyyKFSbyKXEfu_", + "count": 776, + "regions": [ + [ + 177, + 30, + 177, + 50, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC10flushStart33_8A9E8F62631F03CCFCED4F4223E40C30LLyyKF", + "count": 1548, + "regions": [ + [ + 195, + 38, + 243, + 6, + 1548, + 0, + 0, + 0 + ], + [ + 197, + 27, + 199, + 10, + 772, + 0, + 0, + 0 + ], + [ + 199, + 10, + 243, + 6, + 776, + 0, + 0, + 0 + ], + [ + 208, + 31, + 210, + 10, + 0, + 0, + 0, + 0 + ], + [ + 210, + 10, + 243, + 6, + 776, + 0, + 0, + 0 + ], + [ + 215, + 43, + 222, + 10, + 2226, + 0, + 0, + 0 + ], + [ + 216, + 38, + 221, + 14, + 2228, + 0, + 0, + 0 + ], + [ + 221, + 14, + 222, + 10, + 2226, + 0, + 0, + 0 + ], + [ + 222, + 10, + 243, + 6, + 776, + 0, + 0, + 0 + ], + [ + 226, + 21, + 238, + 10, + 776, + 0, + 0, + 0 + ], + [ + 227, + 27, + 234, + 14, + 0, + 0, + 0, + 0 + ], + [ + 230, + 87, + 232, + 18, + 0, + 0, + 0, + 0 + ], + [ + 232, + 18, + 234, + 14, + 0, + 0, + 0, + 0 + ], + [ + 234, + 14, + 238, + 10, + 776, + 0, + 0, + 0 + ], + [ + 235, + 18, + 237, + 14, + 776, + 0, + 0, + 0 + ], + [ + 237, + 14, + 238, + 10, + 776, + 0, + 0, + 0 + ], + [ + 238, + 10, + 243, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC10flushStart33_8A9E8F62631F03CCFCED4F4223E40C30LLyyKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 224, + 47, + 224, + 52, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC10flushStart33_8A9E8F62631F03CCFCED4F4223E40C30LLyyKFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 225, + 51, + 225, + 56, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC26writeToSocketThroughBuffer33_8A9E8F62631F03CCFCED4F4223E40C30LL4textySS_tKF", + "count": 776, + "regions": [ + [ + 248, + 66, + 269, + 6, + 776, + 0, + 0, + 0 + ], + [ + 249, + 46, + 251, + 10, + 0, + 0, + 0, + 0 + ], + [ + 251, + 10, + 269, + 6, + 776, + 0, + 0, + 0 + ], + [ + 255, + 89, + 257, + 10, + 0, + 0, + 0, + 0 + ], + [ + 257, + 10, + 269, + 6, + 776, + 0, + 0, + 0 + ], + [ + 259, + 97, + 262, + 10, + 0, + 0, + 0, + 0 + ], + [ + 262, + 10, + 269, + 6, + 776, + 0, + 0, + 0 + ], + [ + 263, + 56, + 265, + 10, + 0, + 0, + 0, + 0 + ], + [ + 265, + 10, + 269, + 6, + 776, + 0, + 0, + 0 + ], + [ + 266, + 14, + 268, + 10, + 776, + 0, + 0, + 0 + ], + [ + 268, + 10, + 269, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC26writeToSocketThroughBuffer33_8A9E8F62631F03CCFCED4F4223E40C30LL4textySS_tKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 259, + 77, + 259, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "$s9KituraNet18HTTPServerResponseC5resetyyF", + "count": 0, + "regions": [ + [ + 279, + 25, + 285, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/HTTPServerResponse.swift" + ] + }, + { + "name": "__ntd_IncomingHTTPSocketProcessor_line:39:8", + "count": 776, + "regions": [ + [ + 115, + 76, + 120, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC11isKeepAliveSbvg", + "count": 1552, + "regions": [ + [ + 100, + 27, + 100, + 110, + 1552, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC11isKeepAliveSbvgSbyKXEfu_", + "count": 0, + "regions": [ + [ + 100, + 64, + 100, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC11isKeepAliveSbvgSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 100, + 94, + 100, + 108, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC7processySbSo6NSDataCF", + "count": 936, + "regions": [ + [ + 135, + 51, + 155, + 6, + 936, + 0, + 0, + 0 + ], + [ + 139, + 9, + 142, + 24, + 0, + 0, + 0, + 0 + ], + [ + 144, + 9, + 147, + 44, + 936, + 0, + 0, + 0 + ], + [ + 149, + 9, + 151, + 18, + 0, + 0, + 0, + 0 + ], + [ + 152, + 10, + 154, + 22, + 936, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC7processySbSo6NSDataCFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 150, + 48, + 150, + 66, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5write4fromySo6NSDataC_tF", + "count": 790, + "regions": [ + [ + 167, + 42, + 169, + 6, + 790, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5write4from6lengthySV_SitF", + "count": 0, + "regions": [ + [ + 182, + 66, + 184, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5closeyyF", + "count": 1552, + "regions": [ + [ + 194, + 25, + 199, + 6, + 1552, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC12socketClosedyyF", + "count": 9, + "regions": [ + [ + 210, + 32, + 214, + 6, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5parse_4from14completeBufferAA16HTTPParserStatusVSo6NSDataC_SiSbtF", + "count": 936, + "regions": [ + [ + 223, + 94, + 263, + 6, + 936, + 0, + 0, + 0 + ], + [ + 227, + 32, + 231, + 10, + 0, + 0, + 0, + 0 + ], + [ + 231, + 10, + 263, + 6, + 936, + 0, + 0, + 0 + ], + [ + 234, + 37, + 236, + 10, + 0, + 0, + 0, + 0 + ], + [ + 236, + 10, + 263, + 6, + 936, + 0, + 0, + 0 + ], + [ + 241, + 53, + 244, + 10, + 0, + 0, + 0, + 0 + ], + [ + 244, + 10, + 263, + 6, + 936, + 0, + 0, + 0 + ], + [ + 246, + 25, + 248, + 10, + 0, + 0, + 0, + 0 + ], + [ + 248, + 10, + 263, + 6, + 936, + 0, + 0, + 0 + ], + [ + 252, + 33, + 256, + 10, + 774, + 0, + 0, + 0 + ], + [ + 256, + 10, + 263, + 6, + 162, + 0, + 0, + 0 + ], + [ + 257, + 41, + 260, + 10, + 2, + 0, + 0, + 0 + ], + [ + 260, + 10, + 262, + 22, + 162, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5parse_4from14completeBufferAA16HTTPParserStatusVSo6NSDataC_SiSbtFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 241, + 30, + 241, + 52, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5parse33_35F286AF5BE880D03C012662FD231F0BLLyySo6NSDataCF", + "count": 936, + "regions": [ + [ + 267, + 42, + 303, + 6, + 936, + 0, + 0, + 0 + ], + [ + 270, + 41, + 272, + 10, + 934, + 0, + 0, + 0 + ], + [ + 272, + 10, + 303, + 6, + 936, + 0, + 0, + 0 + ], + [ + 273, + 14, + 275, + 10, + 2, + 0, + 0, + 0 + ], + [ + 275, + 10, + 303, + 6, + 936, + 0, + 0, + 0 + ], + [ + 277, + 50, + 290, + 10, + 2, + 0, + 0, + 0 + ], + [ + 284, + 16, + 286, + 14, + 2, + 0, + 0, + 0 + ], + [ + 287, + 19, + 287, + 21, + 0, + 0, + 0, + 0 + ], + [ + 287, + 21, + 289, + 19, + 2, + 0, + 0, + 0 + ], + [ + 290, + 10, + 303, + 6, + 934, + 0, + 0, + 0 + ], + [ + 293, + 9, + 294, + 18, + 160, + 0, + 0, + 0 + ], + [ + 295, + 9, + 298, + 30, + 774, + 0, + 0, + 0 + ], + [ + 299, + 9, + 301, + 18, + 0, + 0, + 0, + 0 + ], + [ + 302, + 10, + 303, + 6, + 934, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5parse33_35F286AF5BE880D03C012662FD231F0BLLyySo6NSDataCFSSyXEfu_", + "count": 2, + "regions": [ + [ + 278, + 23, + 278, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC5parse33_35F286AF5BE880D03C012662FD231F0BLLyySo6NSDataCFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 297, + 67, + 297, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC15parsingComplete33_35F286AF5BE880D03C012662FD231F0BLLyyF", + "count": 774, + "regions": [ + [ + 306, + 36, + 333, + 6, + 774, + 0, + 0, + 0 + ], + [ + 315, + 42, + 318, + 10, + 0, + 0, + 0, + 0 + ], + [ + 318, + 10, + 333, + 6, + 774, + 0, + 0, + 0 + ], + [ + 320, + 22, + 323, + 10, + 0, + 0, + 0, + 0 + ], + [ + 323, + 10, + 333, + 6, + 774, + 0, + 0, + 0 + ], + [ + 324, + 14, + 332, + 10, + 774, + 0, + 0, + 0 + ], + [ + 332, + 10, + 333, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC15parsingComplete33_35F286AF5BE880D03C012662FD231F0BLLyyFSSyXEfu_", + "count": 0, + "regions": [ + [ + 316, + 23, + 316, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC15parsingComplete33_35F286AF5BE880D03C012662FD231F0BLLyyFyycfU_", + "count": 774, + "regions": [ + [ + 326, + 44, + 331, + 14, + 774, + 0, + 0, + 0 + ], + [ + 327, + 75, + 330, + 18, + 774, + 0, + 0, + 0 + ], + [ + 330, + 18, + 331, + 14, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet27IncomingHTTPSocketProcessorC9keepAliveyyF", + "count": 0, + "regions": [ + [ + 336, + 22, + 342, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet34HTTPIncomingSocketProcessorCreatorC014createIncomingdE06socket5usingAA0hdE0_p0D0AHC_AA14ServerDelegate_ptF", + "count": 0, + "regions": [ + [ + 348, + 113, + 350, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet34HTTPIncomingSocketProcessorCreatorC014createIncomingdE06socket5using9keepaliveAA0hdE0_p0D0AIC_AA14ServerDelegate_pAA14KeepAliveStateOtF", + "count": 776, + "regions": [ + [ + 358, + 133, + 360, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/IncomingHTTPSocketProcessor.swift" + ] + }, + { + "name": "$s9KituraNet14KeepAliveStateO04keepD0SbyF", + "count": 0, + "regions": [ + [ + 24, + 30, + 30, + 6, + 0, + 0, + 0, + 0 + ], + [ + 26, + 9, + 26, + 37, + 0, + 0, + 0, + 0 + ], + [ + 27, + 9, + 27, + 37, + 0, + 0, + 0, + 0 + ], + [ + 28, + 9, + 28, + 51, + 0, + 0, + 0, + 0 + ], + [ + 29, + 10, + 30, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift" + ] + }, + { + "name": "$s9KituraNet14KeepAliveStateO9decrementyyF", + "count": 0, + "regions": [ + [ + 33, + 39, + 42, + 6, + 0, + 0, + 0, + 0 + ], + [ + 35, + 9, + 35, + 31, + 0, + 0, + 0, + 0 + ], + [ + 36, + 9, + 38, + 52, + 0, + 0, + 0, + 0 + ], + [ + 39, + 9, + 40, + 77, + 0, + 0, + 0, + 0 + ], + [ + 41, + 10, + 42, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift" + ] + }, + { + "name": "$s9KituraNet14KeepAliveStateO9decrementyyFSbyXEfu_", + "count": 0, + "regions": [ + [ + 37, + 20, + 37, + 29, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift" + ] + }, + { + "name": "$s9KituraNet14KeepAliveStateO9decrementyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 37, + 31, + 37, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift" + ] + }, + { + "name": "$s9KituraNet14KeepAliveStateO9decrementyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 40, + 30, + 40, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift" + ] + }, + { + "name": "$s9KituraNet14KeepAliveStateO17requestsRemainingSuSgvg", + "count": 0, + "regions": [ + [ + 45, + 34, + 50, + 6, + 0, + 0, + 0, + 0 + ], + [ + 47, + 9, + 47, + 47, + 0, + 0, + 0, + 0 + ], + [ + 48, + 9, + 48, + 28, + 0, + 0, + 0, + 0 + ], + [ + 49, + 10, + 50, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTP/KeepAliveState.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC6methodSSvg", + "count": 1014, + "regions": [ + [ + 25, + 24, + 25, + 54, + 1014, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC3urlSo6NSDataCvg", + "count": 1548, + "regions": [ + [ + 28, + 21, + 28, + 48, + 1548, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9urlStringSSvg", + "count": 212, + "regions": [ + [ + 31, + 27, + 31, + 60, + 212, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC16httpVersionMajors6UInt16Vvg", + "count": 774, + "regions": [ + [ + 34, + 34, + 34, + 74, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC16httpVersionMinors6UInt16Vvg", + "count": 774, + "regions": [ + [ + 37, + 34, + 37, + 74, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC7headersAA16HeadersContainerCvg", + "count": 2878, + "regions": [ + [ + 40, + 35, + 40, + 66, + 2878, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9bodyChunkAA10BufferListCvg", + "count": 1016, + "regions": [ + [ + 43, + 31, + 43, + 64, + 1016, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9completedSbvg", + "count": 1696, + "regions": [ + [ + 46, + 25, + 46, + 58, + 1696, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "__ntd_HTTPParser_line:22:1", + "count": 1537, + "regions": [ + [ + 69, + 51, + 134, + 6, + 1537, + 0, + 0, + 0 + ], + [ + 108, + 21, + 113, + 10, + 2, + 0, + 0, + 0 + ], + [ + 113, + 10, + 134, + 6, + 1537, + 0, + 0, + 0 + ], + [ + 113, + 16, + 118, + 10, + 1535, + 0, + 0, + 0 + ], + [ + 118, + 10, + 134, + 6, + 1537, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSg_SPys4Int8VGSgSitcfU_", + "count": 774, + "regions": [ + [ + 78, + 27, + 82, + 10, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSg_SPys4Int8VGSgSitcfU0_", + "count": 6546, + "regions": [ + [ + 84, + 36, + 88, + 10, + 6546, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSg_SPys4Int8VGSgSitcfU1_", + "count": 6546, + "regions": [ + [ + 90, + 36, + 94, + 10, + 6546, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSg_SPys4Int8VGSgSitcfU2_", + "count": 761, + "regions": [ + [ + 96, + 28, + 101, + 10, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSgcfU3_", + "count": 2, + "regions": [ + [ + 109, + 44, + 112, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSgcfU4_", + "count": 1532, + "regions": [ + [ + 114, + 44, + 117, + 14, + 1532, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC9isRequest8skipBodyACSb_Sbtcfcs5Int32VSpySo11http_parserVGSgcfU5_", + "count": 1534, + "regions": [ + [ + 127, + 40, + 131, + 10, + 1534, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC7execute_6lengthSi_s6UInt32VtSPys4Int8VG_SitF", + "count": 2456, + "regions": [ + [ + 142, + 78, + 146, + 6, + 2456, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC5resetyyF", + "count": 2297, + "regions": [ + [ + 149, + 18, + 152, + 6, + 2297, + 0, + 0, + 0 + ], + [ + 150, + 47, + 150, + 59, + 776, + 0, + 0, + 0 + ], + [ + 150, + 62, + 150, + 75, + 1521, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC11isKeepAliveSbyF", + "count": 2308, + "regions": [ + [ + 155, + 32, + 157, + 6, + 2308, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC11isKeepAliveSbyFSbyKXEfu_", + "count": 1548, + "regions": [ + [ + 156, + 29, + 156, + 65, + 1548, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC10statusCodeAA010HTTPStatusE0Ovg", + "count": 760, + "regions": [ + [ + 160, + 36, + 162, + 6, + 760, + 0, + 0, + 0 + ], + [ + 161, + 28, + 161, + 36, + 0, + 0, + 0, + 0 + ], + [ + 161, + 39, + 161, + 100, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet10HTTPParserC10statusCodeAA010HTTPStatusE0OvgAFyKXEfu_", + "count": 0, + "regions": [ + [ + 161, + 92, + 161, + 100, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParser.swift" + ] + }, + { + "name": "$s9KituraNet19HTTPParserErrorTypeO11descriptionSSvg", + "count": 2, + "regions": [ + [ + 36, + 36, + 45, + 6, + 2, + 0, + 0, + 0 + ], + [ + 38, + 9, + 39, + 48, + 0, + 0, + 0, + 0 + ], + [ + 40, + 9, + 41, + 76, + 2, + 0, + 0, + 0 + ], + [ + 42, + 9, + 43, + 70, + 0, + 0, + 0, + 0 + ], + [ + 44, + 10, + 45, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParserStatus.swift" + ] + }, + { + "name": "__ntd_HTTPParserStatus_line:48:1", + "count": 2471, + "regions": [ + [ + 50, + 12, + 50, + 14, + 2471, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParserStatus.swift" + ] + }, + { + "name": "$s9KituraNet16HTTPParserStatusV5resetyyF", + "count": 760, + "regions": [ + [ + 58, + 27, + 63, + 6, + 760, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/HTTPParserStatus.swift" + ] + }, + { + "name": "__ntd_ParseResults_line:20:1", + "count": 1537, + "regions": [ + [ + 54, + 12, + 54, + 14, + 1537, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC3urlSo13NSMutableDataCvpfiAFyKXEfu_", + "count": 0, + "regions": [ + [ + 28, + 48, + 28, + 63, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC6onBody_5countySPys5UInt8VG_SitF", + "count": 761, + "regions": [ + [ + 60, + 61, + 62, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC17onHeadersComplete6method12versionMajor0I5MinorySS_s6UInt16VAItF", + "count": 1534, + "regions": [ + [ + 69, + 88, + 81, + 6, + 1534, + 0, + 0, + 0 + ], + [ + 73, + 34, + 75, + 10, + 1534, + 0, + 0, + 0 + ], + [ + 75, + 10, + 81, + 6, + 1534, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC13onHeaderField_5countySPys5UInt8VG_SitF", + "count": 6546, + "regions": [ + [ + 87, + 68, + 96, + 6, + 6546, + 0, + 0, + 0 + ], + [ + 89, + 32, + 91, + 10, + 5012, + 0, + 0, + 0 + ], + [ + 91, + 10, + 96, + 6, + 6546, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC13onHeaderValue_5countySPys5UInt8VG_SitF", + "count": 6546, + "regions": [ + [ + 102, + 68, + 106, + 6, + 6546, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC17onMessageCompleteyyF", + "count": 1534, + "regions": [ + [ + 109, + 30, + 111, + 6, + 1534, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC5onURL_5countySPys5UInt8VG_SitF", + "count": 774, + "regions": [ + [ + 117, + 59, + 119, + 6, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC5resetyyF", + "count": 2297, + "regions": [ + [ + 121, + 18, + 127, + 6, + 2297, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "$s9KituraNet12ParseResultsC9addHeader33_961CF6C9F61F6B2878A8FA2BEF375127LLyyF", + "count": 6546, + "regions": [ + [ + 130, + 30, + 142, + 6, + 6546, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/ParseResults.swift" + ] + }, + { + "name": "__ntd_URLParser_line:41:8", + "count": 862, + "regions": [ + [ + 122, + 46, + 157, + 6, + 862, + 0, + 0, + 0 + ], + [ + 127, + 46, + 127, + 47, + 0, + 0, + 0, + 0 + ], + [ + 127, + 50, + 127, + 51, + 862, + 0, + 0, + 0 + ], + [ + 132, + 37, + 132, + 47, + 0, + 0, + 0, + 0 + ], + [ + 132, + 47, + 157, + 6, + 862, + 0, + 0, + 0 + ], + [ + 143, + 31, + 145, + 10, + 88, + 0, + 0, + 0 + ], + [ + 145, + 10, + 157, + 6, + 862, + 0, + 0, + 0 + ], + [ + 147, + 30, + 156, + 10, + 100, + 0, + 0, + 0 + ], + [ + 149, + 31, + 155, + 14, + 186, + 0, + 0, + 0 + ], + [ + 152, + 41, + 154, + 18, + 186, + 0, + 0, + 0 + ], + [ + 154, + 18, + 155, + 14, + 186, + 0, + 0, + 0 + ], + [ + 155, + 14, + 156, + 10, + 100, + 0, + 0, + 0 + ], + [ + 156, + 10, + 157, + 6, + 862, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/URLParser.swift" + ] + }, + { + "name": "$s9KituraNet9URLParserC11descriptionSSvg", + "count": 0, + "regions": [ + [ + 82, + 36, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 85, + 32, + 87, + 10, + 0, + 0, + 0, + 0 + ], + [ + 87, + 10, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 88, + 28, + 90, + 10, + 0, + 0, + 0, + 0 + ], + [ + 90, + 10, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 91, + 28, + 93, + 10, + 0, + 0, + 0, + 0 + ], + [ + 93, + 10, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 94, + 28, + 96, + 10, + 0, + 0, + 0, + 0 + ], + [ + 96, + 10, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 97, + 30, + 100, + 10, + 0, + 0, + 0, + 0 + ], + [ + 100, + 10, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 101, + 36, + 103, + 10, + 0, + 0, + 0, + 0 + ], + [ + 103, + 10, + 109, + 6, + 0, + 0, + 0, + 0 + ], + [ + 104, + 36, + 106, + 10, + 0, + 0, + 0, + 0 + ], + [ + 106, + 10, + 108, + 20, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/URLParser.swift" + ] + }, + { + "name": "$s9KituraNet9URLParserC3url9isConnectAC10Foundation4DataV_Sbtcfcs5Int32VSPys4Int8VGXEfU_", + "count": 862, + "regions": [ + [ + 128, + 48, + 130, + 10, + 862, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/URLParser.swift" + ] + }, + { + "name": "$s9KituraNet9URLParserC15getValueFromURL33_5CCE9CFCE329A28EE41DE851C0D8F31BLL_8fieldSet0P5Index0P4DataSSSg10Foundation0S0V_s6UInt16VANSo016http_parser_url_P5_dataVtF", + "count": 6034, + "regions": [ + [ + 164, + 59, + 174, + 6, + 6034, + 0, + 0, + 0 + ], + [ + 166, + 46, + 171, + 10, + 1226, + 0, + 0, + 0 + ], + [ + 171, + 10, + 173, + 19, + 4808, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HTTPParser/URLParser.swift" + ] + }, + { + "name": "__ntd_HeadersContainer_line:30:8", + "count": 2315, + "regions": [ + [ + 44, + 19, + 44, + 21, + 2315, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerCySaySSGSgSScig", + "count": 3582, + "regions": [ + [ + 59, + 13, + 61, + 10, + 3582, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerCySaySSGSgSScis", + "count": 2239, + "regions": [ + [ + 63, + 23, + 70, + 10, + 2239, + 0, + 0, + 0 + ], + [ + 64, + 40, + 66, + 14, + 2235, + 0, + 0, + 0 + ], + [ + 66, + 14, + 70, + 10, + 2239, + 0, + 0, + 0 + ], + [ + 67, + 18, + 69, + 14, + 4, + 0, + 0, + 0 + ], + [ + 69, + 14, + 70, + 10, + 2239, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC6append_5valueySS_SaySSGtF", + "count": 6572, + "regions": [ + [ + 83, + 56, + 121, + 6, + 6572, + 0, + 0, + 0 + ], + [ + 92, + 9, + 97, + 14, + 10, + 0, + 0, + 0 + ], + [ + 93, + 30, + 95, + 14, + 2, + 0, + 0, + 0 + ], + [ + 95, + 14, + 97, + 14, + 10, + 0, + 0, + 0 + ], + [ + 95, + 20, + 97, + 14, + 8, + 0, + 0, + 0 + ], + [ + 97, + 14, + 97, + 14, + 10, + 0, + 0, + 0 + ], + [ + 102, + 9, + 110, + 24, + 2908, + 0, + 0, + 0 + ], + [ + 106, + 30, + 109, + 14, + 8, + 0, + 0, + 0 + ], + [ + 109, + 14, + 110, + 24, + 2900, + 0, + 0, + 0 + ], + [ + 113, + 9, + 119, + 55, + 6554, + 0, + 0, + 0 + ], + [ + 114, + 58, + 117, + 14, + 6552, + 0, + 0, + 0 + ], + [ + 117, + 14, + 119, + 55, + 2, + 0, + 0, + 0 + ], + [ + 120, + 10, + 121, + 6, + 6572, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC6append_5valueySS_SaySSGtFSSyXEfu_", + "count": 8, + "regions": [ + [ + 107, + 29, + 107, + 64, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC6append_5valueySS_SStF", + "count": 6568, + "regions": [ + [ + 133, + 54, + 136, + 6, + 6568, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC3get33_B931C096A89BE187663755DC4126C8AFLLySaySSGSgSSF", + "count": 3582, + "regions": [ + [ + 153, + 50, + 155, + 6, + 3582, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC9removeAllyyF", + "count": 2297, + "regions": [ + [ + 166, + 29, + 168, + 6, + 2297, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC3set33_B931C096A89BE187663755DC4126C8AFLL_5valueySS_SaySSGtF", + "count": 2235, + "regions": [ + [ + 174, + 54, + 176, + 6, + 2235, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC3set33_B931C096A89BE187663755DC4126C8AFLL_12lowerCaseKey5valueySS_SSSaySSGtF", + "count": 8795, + "regions": [ + [ + 182, + 76, + 184, + 6, + 8795, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC6remove33_B931C096A89BE187663755DC4126C8AFLLyySSF", + "count": 4, + "regions": [ + [ + 189, + 40, + 191, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC10startIndexSD0F0VyS2S3key_SaySSG5valuet_Gvg", + "count": 8, + "regions": [ + [ + 200, + 33, + 200, + 62, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC8endIndexSD0F0VyS2S3key_SaySSG5valuet_Gvg", + "count": 31, + "regions": [ + [ + 203, + 31, + 203, + 58, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerCySS3key_SaySSG5valuetSD5IndexVyS2SAD_AeFt_Gcig", + "count": 26, + "regions": [ + [ + 217, + 13, + 219, + 10, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "$s9KituraNet16HeadersContainerC5index5afterSD5IndexVyS2S3key_SaySSG5valuet_GAK_tF", + "count": 25, + "regions": [ + [ + 233, + 48, + 235, + 6, + 25, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/HeadersContainer.swift" + ] + }, + { + "name": "__ntd_IncomingSocketHandler_line:49:8", + "count": 776, + "regions": [ + [ + 111, + 58, + 131, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC14fileDescriptors5Int32Vvg", + "count": 0, + "regions": [ + [ + 109, + 31, + 109, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC6socket5usingAC0D0AFC_AA0cD9Processor_ptcfcyycfU_", + "count": 945, + "regions": [ + [ + 125, + 44, + 127, + 14, + 945, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC10handleReadSbyF", + "count": 945, + "regions": [ + [ + 136, + 31, + 183, + 6, + 945, + 0, + 0, + 0 + ], + [ + 147, + 51, + 150, + 10, + 0, + 0, + 0, + 0 + ], + [ + 150, + 10, + 183, + 6, + 945, + 0, + 0, + 0 + ], + [ + 154, + 12, + 169, + 10, + 945, + 0, + 0, + 0 + ], + [ + 156, + 20, + 156, + 30, + 2868, + 0, + 0, + 0 + ], + [ + 156, + 32, + 158, + 14, + 1923, + 0, + 0, + 0 + ], + [ + 158, + 14, + 169, + 10, + 945, + 0, + 0, + 0 + ], + [ + 159, + 40, + 161, + 14, + 936, + 0, + 0, + 0 + ], + [ + 161, + 14, + 169, + 10, + 945, + 0, + 0, + 0 + ], + [ + 162, + 18, + 168, + 14, + 9, + 0, + 0, + 0 + ], + [ + 163, + 51, + 167, + 18, + 9, + 0, + 0, + 0 + ], + [ + 167, + 18, + 168, + 14, + 9, + 0, + 0, + 0 + ], + [ + 168, + 14, + 169, + 10, + 945, + 0, + 0, + 0 + ], + [ + 170, + 41, + 177, + 10, + 0, + 0, + 0, + 0 + ], + [ + 171, + 77, + 173, + 14, + 0, + 0, + 0, + 0 + ], + [ + 173, + 14, + 177, + 10, + 0, + 0, + 0, + 0 + ], + [ + 173, + 20, + 175, + 14, + 0, + 0, + 0, + 0 + ], + [ + 175, + 14, + 177, + 10, + 0, + 0, + 0, + 0 + ], + [ + 177, + 17, + 180, + 10, + 0, + 0, + 0, + 0 + ], + [ + 180, + 10, + 182, + 22, + 945, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC10handleReadSbyFSbyKXEfu_", + "count": 945, + "regions": [ + [ + 147, + 25, + 147, + 45, + 945, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC10handleReadSbyFSSyXEfu0_", + "count": 9, + "regions": [ + [ + 164, + 31, + 164, + 78, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC10handleReadSbyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 172, + 27, + 172, + 107, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC10handleReadSbyFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 174, + 27, + 174, + 108, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC10handleReadSbyFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 178, + 23, + 178, + 44, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC16handleReadHelper33_F1F9040F439C50BA72402C6FB6C06BAELLSbyF", + "count": 936, + "regions": [ + [ + 185, + 45, + 193, + 6, + 936, + 0, + 0, + 0 + ], + [ + 186, + 46, + 186, + 61, + 0, + 0, + 0, + 0 + ], + [ + 186, + 61, + 193, + 6, + 936, + 0, + 0, + 0 + ], + [ + 189, + 23, + 191, + 10, + 936, + 0, + 0, + 0 + ], + [ + 191, + 10, + 192, + 25, + 936, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC28handleBufferedReadDataHelperSbyF", + "count": 0, + "regions": [ + [ + 197, + 49, + 207, + 6, + 0, + 0, + 0, + 0 + ], + [ + 200, + 36, + 202, + 10, + 0, + 0, + 0, + 0 + ], + [ + 202, + 10, + 207, + 6, + 0, + 0, + 0, + 0 + ], + [ + 203, + 14, + 205, + 10, + 0, + 0, + 0, + 0 + ], + [ + 205, + 10, + 206, + 22, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC22handleBufferedReadDatayyF", + "count": 0, + "regions": [ + [ + 220, + 42, + 230, + 6, + 0, + 0, + 0, + 0 + ], + [ + 222, + 68, + 228, + 14, + 0, + 0, + 0, + 0 + ], + [ + 228, + 14, + 230, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC22handleBufferedReadDatayyFyyXEfU_", + "count": 0, + "regions": [ + [ + 223, + 42, + 227, + 18, + 0, + 0, + 0, + 0 + ], + [ + 224, + 46, + 226, + 22, + 0, + 0, + 0, + 0 + ], + [ + 226, + 22, + 227, + 18, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC11handleWriteyyF", + "count": 0, + "regions": [ + [ + 233, + 24, + 239, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC17handleWriteHelper33_F1F9040F439C50BA72402C6FB6C06BAELLyyF", + "count": 2, + "regions": [ + [ + 243, + 38, + 309, + 6, + 2, + 0, + 0, + 0 + ], + [ + 252, + 37, + 308, + 10, + 2, + 0, + 0, + 0 + ], + [ + 263, + 55, + 269, + 14, + 0, + 0, + 0, + 0 + ], + [ + 269, + 14, + 308, + 10, + 2, + 0, + 0, + 0 + ], + [ + 271, + 16, + 295, + 14, + 2, + 0, + 0, + 0 + ], + [ + 276, + 38, + 279, + 18, + 2, + 0, + 0, + 0 + ], + [ + 279, + 18, + 295, + 14, + 2, + 0, + 0, + 0 + ], + [ + 280, + 22, + 286, + 18, + 0, + 0, + 0, + 0 + ], + [ + 281, + 42, + 283, + 22, + 0, + 0, + 0, + 0 + ], + [ + 283, + 22, + 286, + 18, + 0, + 0, + 0, + 0 + ], + [ + 286, + 18, + 295, + 14, + 2, + 0, + 0, + 0 + ], + [ + 288, + 45, + 290, + 18, + 0, + 0, + 0, + 0 + ], + [ + 290, + 18, + 295, + 14, + 2, + 0, + 0, + 0 + ], + [ + 291, + 22, + 294, + 18, + 2, + 0, + 0, + 0 + ], + [ + 294, + 18, + 295, + 14, + 2, + 0, + 0, + 0 + ], + [ + 296, + 29, + 307, + 14, + 0, + 0, + 0, + 0 + ], + [ + 297, + 117, + 299, + 18, + 0, + 0, + 0, + 0 + ], + [ + 299, + 18, + 307, + 14, + 0, + 0, + 0, + 0 + ], + [ + 299, + 24, + 301, + 18, + 0, + 0, + 0, + 0 + ], + [ + 301, + 18, + 307, + 14, + 0, + 0, + 0, + 0 + ], + [ + 307, + 14, + 308, + 10, + 2, + 0, + 0, + 0 + ], + [ + 308, + 10, + 309, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC17handleWriteHelper33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 264, + 29, + 264, + 119, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC17handleWriteHelper33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSbyKXEfu_", + "count": 2, + "regions": [ + [ + 263, + 29, + 263, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC17handleWriteHelper33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 282, + 35, + 282, + 129, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC17handleWriteHelper33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 298, + 31, + 298, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC17handleWriteHelper33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 300, + 31, + 300, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC18createWriterSource33_F1F9040F439C50BA72402C6FB6C06BAELLyyF", + "count": 2, + "regions": [ + [ + 312, + 39, + 323, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC18createWriterSource33_F1F9040F439C50BA72402C6FB6C06BAELLyyFyycfU_", + "count": 2, + "regions": [ + [ + 318, + 46, + 320, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4fromySo6NSDataC_tF", + "count": 790, + "regions": [ + [ + 335, + 42, + 337, + 6, + 790, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4from6lengthySV_SitF", + "count": 790, + "regions": [ + [ + 350, + 66, + 396, + 6, + 790, + 0, + 0, + 0 + ], + [ + 361, + 51, + 365, + 10, + 0, + 0, + 0, + 0 + ], + [ + 365, + 10, + 396, + 6, + 790, + 0, + 0, + 0 + ], + [ + 367, + 12, + 388, + 10, + 790, + 0, + 0, + 0 + ], + [ + 370, + 41, + 372, + 14, + 790, + 0, + 0, + 0 + ], + [ + 372, + 14, + 388, + 10, + 790, + 0, + 0, + 0 + ], + [ + 373, + 18, + 375, + 14, + 0, + 0, + 0, + 0 + ], + [ + 375, + 14, + 388, + 10, + 790, + 0, + 0, + 0 + ], + [ + 377, + 34, + 387, + 14, + 2, + 0, + 0, + 0 + ], + [ + 383, + 44, + 385, + 22, + 2, + 0, + 0, + 0 + ], + [ + 385, + 22, + 387, + 14, + 2, + 0, + 0, + 0 + ], + [ + 387, + 14, + 388, + 10, + 790, + 0, + 0, + 0 + ], + [ + 389, + 25, + 395, + 10, + 2, + 0, + 0, + 0 + ], + [ + 390, + 113, + 392, + 14, + 0, + 0, + 0, + 0 + ], + [ + 392, + 14, + 395, + 10, + 2, + 0, + 0, + 0 + ], + [ + 392, + 20, + 394, + 14, + 2, + 0, + 0, + 0 + ], + [ + 394, + 14, + 395, + 10, + 2, + 0, + 0, + 0 + ], + [ + 395, + 10, + 396, + 6, + 790, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4from6lengthySV_SitFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 362, + 25, + 362, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4from6lengthySV_SitFSbyKXEfu_", + "count": 790, + "regions": [ + [ + 361, + 25, + 361, + 45, + 790, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4from6lengthySV_SitFyyXEfU_", + "count": 2, + "regions": [ + [ + 378, + 64, + 380, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4from6lengthySV_SitFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 391, + 27, + 391, + 107, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5write4from6lengthySV_SitFSSyXEfu2_", + "count": 2, + "regions": [ + [ + 393, + 27, + 393, + 107, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC14prepareToCloseyyF", + "count": 782, + "regions": [ + [ + 408, + 34, + 411, + 6, + 782, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5close33_F1F9040F439C50BA72402C6FB6C06BAELLyyF", + "count": 797, + "regions": [ + [ + 418, + 26, + 438, + 6, + 797, + 0, + 0, + 0 + ], + [ + 419, + 19, + 437, + 10, + 791, + 0, + 0, + 0 + ], + [ + 427, + 67, + 430, + 14, + 15, + 0, + 0, + 0 + ], + [ + 430, + 14, + 437, + 10, + 776, + 0, + 0, + 0 + ], + [ + 437, + 10, + 438, + 6, + 782, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5close33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSbyKXEfu_", + "count": 784, + "regions": [ + [ + 426, + 39, + 426, + 61, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5close33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSbyKXEfu0_", + "count": 784, + "regions": [ + [ + 426, + 65, + 426, + 86, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC5close33_F1F9040F439C50BA72402C6FB6C06BAELLyyFSbyKXEfu1_", + "count": 778, + "regions": [ + [ + 427, + 20, + 427, + 61, + 778, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketHandlerC12handleCancel33_F1F9040F439C50BA72402C6FB6C06BAELLyyF", + "count": 776, + "regions": [ + [ + 441, + 33, + 452, + 6, + 776, + 0, + 0, + 0 + ], + [ + 443, + 33, + 445, + 10, + 776, + 0, + 0, + 0 + ], + [ + 445, + 10, + 452, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketHandler.swift" + ] + }, + { + "name": "__ntd_IncomingSocketManager_line:50:8", + "count": 8, + "regions": [ + [ + 117, + 23, + 119, + 10, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC18socketHandlerCountSivg", + "count": 0, + "regions": [ + [ + 56, + 42, + 62, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC18socketHandlerCountSivgyyXEfU_", + "count": 0, + "regions": [ + [ + 58, + 22, + 60, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerCfD", + "count": 6, + "regions": [ + [ + 122, + 12, + 124, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC4stopyyF", + "count": 12, + "regions": [ + [ + 135, + 24, + 140, + 6, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC6handle6socket9processory0D0AGC_AA0cD9Processor_ptF", + "count": 776, + "regions": [ + [ + 153, + 76, + 182, + 6, + 776, + 0, + 0, + 0 + ], + [ + 154, + 29, + 157, + 10, + 0, + 0, + 0, + 0 + ], + [ + 157, + 10, + 182, + 6, + 776, + 0, + 0, + 0 + ], + [ + 159, + 12, + 176, + 10, + 776, + 0, + 0, + 0 + ], + [ + 177, + 25, + 179, + 10, + 0, + 0, + 0, + 0 + ], + [ + 179, + 10, + 182, + 6, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC6handle6socket9processory0D0AGC_AA0cD9Processor_ptFSSyXEfu_", + "count": 0, + "regions": [ + [ + 155, + 25, + 155, + 82, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC6handle6socket9processory0D0AGC_AA0cD9Processor_ptFyyXEfU_", + "count": 776, + "regions": [ + [ + 163, + 43, + 165, + 14, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC6handle6socket9processory0D0AGC_AA0cD9Processor_ptFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 178, + 23, + 178, + 123, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tF", + "count": 788, + "regions": [ + [ + 274, + 61, + 299, + 6, + 788, + 0, + 0, + 0 + ], + [ + 276, + 118, + 276, + 128, + 752, + 0, + 0, + 0 + ], + [ + 276, + 128, + 299, + 6, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFSbyKXEfu_", + "count": 776, + "regions": [ + [ + 276, + 28, + 276, + 111, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFyyXEfU_", + "count": 36, + "regions": [ + [ + 277, + 39, + 298, + 10, + 36, + 0, + 0, + 0 + ], + [ + 279, + 61, + 296, + 14, + 30, + 0, + 0, + 0 + ], + [ + 280, + 173, + 282, + 18, + 24, + 0, + 0, + 0 + ], + [ + 282, + 18, + 296, + 14, + 6, + 0, + 0, + 0 + ], + [ + 296, + 14, + 298, + 10, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFyyXEfU_SbyKXEfu_", + "count": 26, + "regions": [ + [ + 280, + 34, + 280, + 58, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFyyXEfU_SbyKXEfu0_", + "count": 24, + "regions": [ + [ + 280, + 64, + 280, + 172, + 24, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFyyXEfU_SbyKXEfu0_SbyKXEfu1_", + "count": 0, + "regions": [ + [ + 280, + 98, + 280, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFyyXEfU_SbyKXEfu0_SbyKXEfu2_", + "count": 0, + "regions": [ + [ + 280, + 109, + 280, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC17removeIdleSockets33_684BF7E5C6D71BC96F4DF81B5FFCF484LL0F3AllySb_tFyyXEfU_SbyKXEfu0_SbyKXEfu2_SdyKXEfu3_", + "count": 0, + "regions": [ + [ + 280, + 160, + 280, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC9lastError33_684BF7E5C6D71BC96F4DF81B5FFCF484LLSSyF", + "count": 0, + "regions": [ + [ + 304, + 40, + 307, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet21IncomingSocketManagerC9lastError33_684BF7E5C6D71BC96F4DF81B5FFCF484LLSSyFSSyKXEfu_", + "count": 0, + "regions": [ + [ + 306, + 59, + 306, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/IncomingSocketManager.swift" + ] + }, + { + "name": "$s9KituraNet13ListenerGroupC16waitForListenersyyFZ", + "count": 1, + "regions": [ + [ + 44, + 43, + 46, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ListenerGroup.swift" + ] + }, + { + "name": "$s9KituraNet13ListenerGroupC21enqueueAsynchronously2on5blockySo17OS_dispatch_queueC_8Dispatch0L8WorkItemCtFZ", + "count": 8, + "regions": [ + [ + 62, + 96, + 64, + 6, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/ListenerGroup.swift" + ] + }, + { + "name": "$s9KituraNet8SPIUtilsC8httpDate4fromSSSi_tFZ", + "count": 824, + "regions": [ + [ + 58, + 79, + 89, + 6, + 824, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/SPIUtils.swift" + ] + }, + { + "name": "$s9KituraNet8SPIUtilsC8httpDateySS10Foundation0E0VFZ", + "count": 48, + "regions": [ + [ + 103, + 57, + 105, + 6, + 48, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/SPIUtils.swift" + ] + }, + { + "name": "$s10Foundation4DateV9KituraNetE04httpB0SSvg", + "count": 0, + "regions": [ + [ + 125, + 26, + 127, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/SPIUtils.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC21performStartCallbacksyyF", + "count": 8, + "regions": [ + [ + 37, + 34, + 41, + 6, + 8, + 0, + 0, + 0 + ], + [ + 38, + 45, + 40, + 10, + 2, + 0, + 0, + 0 + ], + [ + 40, + 10, + 41, + 6, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC20performStopCallbacksyyF", + "count": 6, + "regions": [ + [ + 46, + 33, + 50, + 6, + 6, + 0, + 0, + 0 + ], + [ + 47, + 44, + 49, + 10, + 3, + 0, + 0, + 0 + ], + [ + 49, + 10, + 50, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC20performFailCallbacks4withys5Error_p_tF", + "count": 4, + "regions": [ + [ + 57, + 56, + 61, + 6, + 4, + 0, + 0, + 0 + ], + [ + 58, + 44, + 60, + 10, + 4, + 0, + 0, + 0 + ], + [ + 60, + 10, + 61, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC36performClientConnectionFailCallbacks4withys5Error_p_tF", + "count": 0, + "regions": [ + [ + 66, + 72, + 70, + 6, + 0, + 0, + 0, + 0 + ], + [ + 67, + 60, + 69, + 10, + 0, + 0, + 0, + 0 + ], + [ + 69, + 10, + 70, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC16addStartCallback7perform_ySb_yyctF", + "count": 6, + "regions": [ + [ + 76, + 84, + 81, + 6, + 6, + 0, + 0, + 0 + ], + [ + 77, + 20, + 79, + 10, + 0, + 0, + 0, + 0 + ], + [ + 79, + 10, + 81, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC15addStopCallback7perform_ySb_yyctF", + "count": 3, + "regions": [ + [ + 87, + 83, + 92, + 6, + 3, + 0, + 0, + 0 + ], + [ + 88, + 20, + 90, + 10, + 0, + 0, + 0, + 0 + ], + [ + 90, + 10, + 92, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC15addFailCallbackyyys5Error_pcF", + "count": 6, + "regions": [ + [ + 97, + 71, + 99, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "$s9KituraNet23ServerLifecycleListenerC31addClientConnectionFailCallbackyyys5Error_pcF", + "count": 0, + "regions": [ + [ + 104, + 87, + 106, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-net/Sources/KituraNet/Server/ServerLifecycleListener.swift" + ] + }, + { + "name": "__ntd_NullRenderingOptions_line:20:8", + "count": 32, + "regions": [ + [ + 21, + 19, + 21, + 21, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-TemplateEngine/Sources/KituraTemplateEngine/TemplateEngine.swift" + ] + }, + { + "name": "$s20KituraTemplateEngine0bC0PAAE6render8filePath7context7optionsS2S_SDySSypGAA16RenderingOptions_ptKF", + "count": 14, + "regions": [ + [ + 95, + 68, + 97, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-TemplateEngine/Sources/KituraTemplateEngine/TemplateEngine.swift" + ] + }, + { + "name": "$s20KituraTemplateEngine0bC0PAAE6render8filePath7context7options12templateNameS2S_SDySSypGAA16RenderingOptions_pSStKF", + "count": 14, + "regions": [ + [ + 102, + 90, + 104, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-TemplateEngine/Sources/KituraTemplateEngine/TemplateEngine.swift" + ] + }, + { + "name": "$s20KituraTemplateEngine0bC0PAAE12setRootPaths04rootF0ySaySSG_tF", + "count": 23, + "regions": [ + [ + 107, + 51, + 107, + 53, + 23, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/Kitura-TemplateEngine/Sources/KituraTemplateEngine/TemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests15ExternSubrouterC9getRouter0A00F0CyFZ", + "count": 1, + "regions": [ + [ + 7, + 36, + 21, + 3, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/ExternalSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests15ExternSubrouterC9getRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 10, + 28, + 13, + 4, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/ExternalSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests15ExternSubrouterC9getRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 15, + 32, + 18, + 4, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/ExternalSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC9sslConfig0A09SSLConfigVvpZfiAGyXEfU_", + "count": 1, + "regions": [ + [ + 42, + 39, + 55, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC8initOnce33_6FB7B4D9E4502755BD3BC9159DE6D2E1LLytvpZfiyyXEfU_", + "count": 1, + "regions": [ + [ + 57, + 39, + 59, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC5setUpyyF", + "count": 354, + "regions": [ + [ + 61, + 27, + 64, + 6, + 354, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC011buildServerC0_9sslOption7timeout4lineAA07RequestC7Builder_p0A3Net0E8Delegate_p_AA9SSLOptionOSdSitF", + "count": 59, + "regions": [ + [ + 67, + 69, + 69, + 6, + 59, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC013performServerC0_9sslOption7timeout4line10asyncTasksy0A3Net0E8Delegate_p_AA9SSLOptionOSdSiySo17XCTestExpectationCcdtF", + "count": 146, + "regions": [ + [ + 72, + 91, + 74, + 6, + 146, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC013performServerC0_9sslOption7timeout4line10asyncTasksy0A3Net0E8Delegate_p_AA9SSLOptionOSdSiSayySo17XCTestExpectationCcGtF", + "count": 205, + "regions": [ + [ + 77, + 90, + 92, + 6, + 205, + 0, + 0, + 0 + ], + [ + 78, + 45, + 82, + 10, + 205, + 0, + 0, + 0 + ], + [ + 82, + 10, + 92, + 6, + 205, + 0, + 0, + 0 + ], + [ + 87, + 44, + 91, + 10, + 205, + 0, + 0, + 0 + ], + [ + 91, + 10, + 92, + 6, + 205, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC015doPerformServerC06router7timeout4line10asyncTasksy0A3Net0F8Delegate_p_SdSiSayySo17XCTestExpectationCcGtF", + "count": 410, + "regions": [ + [ + 94, + 131, + 113, + 6, + 410, + 0, + 0, + 0 + ], + [ + 96, + 59, + 99, + 10, + 0, + 0, + 0, + 0 + ], + [ + 99, + 10, + 113, + 6, + 410, + 0, + 0, + 0 + ], + [ + 102, + 59, + 107, + 10, + 752, + 0, + 0, + 0 + ], + [ + 107, + 10, + 113, + 6, + 410, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC015doPerformServerC06router7timeout4line10asyncTasksy0A3Net0F8Delegate_p_SdSiSayySo17XCTestExpectationCcGtFyycfU_", + "count": 752, + "regions": [ + [ + 104, + 32, + 106, + 14, + 752, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC015doPerformServerC06router7timeout4line10asyncTasksy0A3Net0F8Delegate_p_SdSiSayySo17XCTestExpectationCcGtFys5Error_pSgcfU0_", + "count": 410, + "regions": [ + [ + 110, + 47, + 112, + 10, + 410, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC015doPerformServerC06router7timeout4line10asyncTasksy0A3Net0F8Delegate_p_SdSiSayySo17XCTestExpectationCcGtFys5Error_pSgcfU0_ypSgyKXEfu_", + "count": 410, + "regions": [ + [ + 111, + 26, + 111, + 31, + 410, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC11startServer33_6FB7B4D9E4502755BD3BC9159DE6D2E1LL6routerSiSg0A3Net0E8Delegate_p_tF", + "count": 410, + "regions": [ + [ + 115, + 62, + 147, + 6, + 410, + 0, + 0, + 0 + ], + [ + 116, + 19, + 121, + 10, + 205, + 0, + 0, + 0 + ], + [ + 117, + 52, + 120, + 14, + 203, + 0, + 0, + 0 + ], + [ + 120, + 14, + 121, + 10, + 2, + 0, + 0, + 0 + ], + [ + 121, + 10, + 147, + 6, + 207, + 0, + 0, + 0 + ], + [ + 121, + 16, + 126, + 10, + 205, + 0, + 0, + 0 + ], + [ + 122, + 51, + 125, + 14, + 203, + 0, + 0, + 0 + ], + [ + 125, + 14, + 126, + 10, + 2, + 0, + 0, + 0 + ], + [ + 126, + 10, + 147, + 6, + 4, + 0, + 0, + 0 + ], + [ + 130, + 19, + 132, + 10, + 2, + 0, + 0, + 0 + ], + [ + 132, + 10, + 147, + 6, + 4, + 0, + 0, + 0 + ], + [ + 134, + 12, + 143, + 10, + 4, + 0, + 0, + 0 + ], + [ + 137, + 23, + 139, + 14, + 2, + 0, + 0, + 0 + ], + [ + 139, + 14, + 143, + 10, + 4, + 0, + 0, + 0 + ], + [ + 139, + 20, + 141, + 14, + 2, + 0, + 0, + 0 + ], + [ + 141, + 14, + 142, + 31, + 4, + 0, + 0, + 0 + ], + [ + 143, + 17, + 146, + 10, + 0, + 0, + 0, + 0 + ], + [ + 146, + 10, + 147, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC10stopServeryyF", + "count": 4, + "regions": [ + [ + 149, + 23, + 155, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC14performRequest_4path4port6useSSL8callback7headers15requestModifierySS_SSSiSgSbSgy0A3Net14ClientResponseCSgcSDyS2SGSgyAM0oE0CcSgtF", + "count": 761, + "regions": [ + [ + 159, + 76, + 187, + 6, + 761, + 0, + 0, + 0 + ], + [ + 165, + 35, + 169, + 10, + 188, + 0, + 0, + 0 + ], + [ + 166, + 55, + 168, + 14, + 316, + 0, + 0, + 0 + ], + [ + 168, + 14, + 169, + 10, + 188, + 0, + 0, + 0 + ], + [ + 169, + 10, + 187, + 6, + 761, + 0, + 0, + 0 + ], + [ + 170, + 46, + 172, + 10, + 757, + 0, + 0, + 0 + ], + [ + 172, + 10, + 187, + 6, + 761, + 0, + 0, + 0 + ], + [ + 174, + 31, + 174, + 38, + 382, + 0, + 0, + 0 + ], + [ + 174, + 41, + 174, + 47, + 379, + 0, + 0, + 0 + ], + [ + 178, + 19, + 180, + 10, + 382, + 0, + 0, + 0 + ], + [ + 180, + 10, + 187, + 6, + 761, + 0, + 0, + 0 + ], + [ + 183, + 50, + 185, + 10, + 154, + 0, + 0, + 0 + ], + [ + 185, + 10, + 187, + 6, + 761, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC14performRequest_4path4port6useSSL8callback7headers15requestModifierySS_SSSiSgSbSgy0A3Net14ClientResponseCSgcSDyS2SGSgyAM0oE0CcSgtFSiyKXEfu_", + "count": 758, + "regions": [ + [ + 161, + 28, + 161, + 37, + 758, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC14performRequest_4path4port6useSSL8callback7headers15requestModifierySS_SSSiSgSbSgy0A3Net14ClientResponseCSgcSDyS2SGSgyAM0oE0CcSgtFSbyKXEfu0_", + "count": 758, + "regions": [ + [ + 162, + 32, + 162, + 43, + 758, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "$s11KituraTests0A4TestC11expectation4line5indexSo17XCTestExpectationCSi_SitF", + "count": 752, + "regions": [ + [ + 189, + 66, + 191, + 6, + 752, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTest.swift" + ] + }, + { + "name": "__ntd_Request_line:75:13", + "count": 106, + "regions": [ + [ + 80, + 101, + 85, + 10, + 106, + 0, + 0, + 0 + ], + [ + 87, + 126, + 96, + 10, + 50, + 0, + 0, + 0 + ], + [ + 98, + 194, + 107, + 10, + 5, + 0, + 0, + 0 + ], + [ + 109, + 129, + 117, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC___7headersAfA0aD0C_S2SSDyS2SGSgtcfcyy0A3Net14ClientResponseCSgccfU_", + "count": 212, + "regions": [ + [ + 82, + 28, + 84, + 14, + 212, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC____7headersAfA0aD0C_S2SxSDyS2SGSgtcSERzlufcyy0A3Net14ClientResponseCSgcKcfU_", + "count": 100, + "regions": [ + [ + 89, + 28, + 95, + 14, + 100, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC____7headersAfA0aD0C_S2SxSDyS2SGSgtcSERzlufcyy0A3Net14ClientResponseCSgcKcfU_yAL0pF0CcfU_", + "count": 100, + "regions": [ + [ + 91, + 112, + 94, + 18, + 100, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC____7headers7encoder9mediaTypeAfA0aD0C_S2SxSDyS2SGSg0A9Contracts11BodyEncoder_pyc0A005MediaQ0VtcSERzlufcyy0A3Net14ClientResponseCSgcKcfU_", + "count": 10, + "regions": [ + [ + 100, + 28, + 106, + 14, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC____7headers7encoder9mediaTypeAfA0aD0C_S2SxSDyS2SGSg0A9Contracts11BodyEncoder_pyc0A005MediaQ0VtcSERzlufcyy0A3Net14ClientResponseCSgcKcfU_yAS0wF0CcfU_", + "count": 10, + "regions": [ + [ + 102, + 112, + 105, + 18, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC____7headersAfA0aD0C_S3SSDyS2SGSgtcfcyy0A3Net14ClientResponseCSgccfU_", + "count": 8, + "regions": [ + [ + 111, + 28, + 116, + 14, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7Request33_00C04E5FE30325629F7E99EFA75667A6LLC____7headersAfA0aD0C_S3SSDyS2SGSgtcfcyy0A3Net14ClientResponseCSgccfU_yAL0pF0CcfU_", + "count": 8, + "regions": [ + [ + 112, + 112, + 115, + 18, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "__ntd_ServerTestBuilder_line:72:1", + "count": 59, + "regions": [ + [ + 127, + 115, + 133, + 6, + 59, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC14currentRequest33_00C04E5FE30325629F7E99EFA75667A6LLAC0G0AELLCSgvg", + "count": 425, + "regions": [ + [ + 125, + 42, + 125, + 66, + 425, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4pathAA09AssertiondE0_pSS_SStF", + "count": 57, + "regions": [ + [ + 135, + 81, + 137, + 6, + 57, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4path7headersAA09AssertiondE0_pSS_SSSDyS2SGSgtF", + "count": 106, + "regions": [ + [ + 139, + 108, + 142, + 6, + 106, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4path4dataAA09AssertiondE0_pSS_SSxtSERzlF", + "count": 34, + "regions": [ + [ + 144, + 104, + 146, + 6, + 34, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4path4data7headersAA09AssertiondE0_pSS_SSxSDyS2SGSgtSERzlF", + "count": 50, + "regions": [ + [ + 148, + 131, + 151, + 6, + 50, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4path4data7headers7encoderAA09AssertiondE0_pSS_SSxSDyS2SGSg0A9Contracts11BodyEncoder_pyctSERzlF", + "count": 5, + "regions": [ + [ + 153, + 169, + 156, + 6, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4path16urlEncodedStringAA09AssertiondE0_pSS_S2StF", + "count": 4, + "regions": [ + [ + 158, + 107, + 160, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7request_4path16urlEncodedString7headersAA09AssertiondE0_pSS_S2SSDyS2SGSgtF", + "count": 4, + "regions": [ + [ + 162, + 134, + 165, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC3has8callbackACXDy0A3Net14ClientResponseCc_tF", + "count": 425, + "regions": [ + [ + 167, + 75, + 170, + 6, + 425, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasStatusyACXD0A3Net14HTTPStatusCodeOF", + "count": 165, + "regions": [ + [ + 172, + 65, + 174, + 6, + 165, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasStatusyACXD0A3Net14HTTPStatusCodeOFyAE14ClientResponseCcfU_", + "count": 330, + "regions": [ + [ + 173, + 20, + 173, + 65, + 330, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasStatusyACXD0A3Net14HTTPStatusCodeOFyAE14ClientResponseCcfU_AGyKXEfu_", + "count": 330, + "regions": [ + [ + 173, + 37, + 173, + 50, + 330, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasStatusyACXD0A3Net14HTTPStatusCodeOFyAE14ClientResponseCcfU_AGyKXEfu0_", + "count": 330, + "regions": [ + [ + 173, + 52, + 173, + 62, + 330, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC14hasContentType10withPrefixACXDSS_tF", + "count": 71, + "regions": [ + [ + 176, + 78, + 178, + 6, + 71, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_10withPrefixACXDSS_SStF", + "count": 71, + "regions": [ + [ + 180, + 86, + 193, + 6, + 71, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_10withPrefixACXDSS_SStFy0A3Net14ClientResponseCcfU_", + "count": 142, + "regions": [ + [ + 181, + 20, + 192, + 10, + 142, + 0, + 0, + 0 + ], + [ + 182, + 60, + 185, + 14, + 0, + 0, + 0, + 0 + ], + [ + 185, + 14, + 192, + 10, + 142, + 0, + 0, + 0 + ], + [ + 186, + 42, + 189, + 14, + 0, + 0, + 0, + 0 + ], + [ + 189, + 14, + 192, + 10, + 142, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_10withPrefixACXDSS_SStFy0A3Net14ClientResponseCcfU_SbSSXEfU_", + "count": 142, + "regions": [ + [ + 190, + 41, + 190, + 73, + 142, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_10withPrefixACXDSS_SStFy0A3Net14ClientResponseCcfU_SbyKXEfu_", + "count": 142, + "regions": [ + [ + 191, + 23, + 191, + 40, + 142, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_10withPrefixACXDSS_SStFy0A3Net14ClientResponseCcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 191, + 42, + 191, + 182, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_4onlyACXDSS_SStF", + "count": 4, + "regions": [ + [ + 195, + 79, + 207, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_4onlyACXDSS_SStFy0A3Net14ClientResponseCcfU_", + "count": 8, + "regions": [ + [ + 196, + 20, + 206, + 10, + 8, + 0, + 0, + 0 + ], + [ + 197, + 60, + 200, + 14, + 0, + 0, + 0, + 0 + ], + [ + 200, + 14, + 206, + 10, + 8, + 0, + 0, + 0 + ], + [ + 201, + 74, + 204, + 14, + 0, + 0, + 0, + 0 + ], + [ + 204, + 14, + 206, + 10, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_4onlyACXDSS_SStFy0A3Net14ClientResponseCcfU_SSyKXEfu_", + "count": 8, + "regions": [ + [ + 205, + 28, + 205, + 39, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_4onlyACXDSS_SStFy0A3Net14ClientResponseCcfU_SSyKXEfu0_", + "count": 8, + "regions": [ + [ + 205, + 41, + 205, + 54, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasHeader_4onlyACXDSS_SStFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 205, + 56, + 205, + 157, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC14readDataOrFail33_00C04E5FE30325629F7E99EFA75667A6LL4from10allowEmptySi6length_10Foundation0G0V4datatSg0A3Net14ClientResponseC_SbtF", + "count": 330, + "regions": [ + [ + 209, + 120, + 220, + 6, + 330, + 0, + 0, + 0 + ], + [ + 211, + 72, + 214, + 10, + 0, + 0, + 0, + 0 + ], + [ + 214, + 10, + 220, + 6, + 330, + 0, + 0, + 0 + ], + [ + 215, + 45, + 218, + 10, + 0, + 0, + 0, + 0 + ], + [ + 218, + 10, + 219, + 30, + 330, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC14readDataOrFail33_00C04E5FE30325629F7E99EFA75667A6LL4from10allowEmptySi6length_10Foundation0G0V4datatSg0A3Net14ClientResponseC_SbtFSbyKXEfu_", + "count": 154, + "regions": [ + [ + 215, + 29, + 215, + 39, + 154, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasNoDataACXDyF", + "count": 88, + "regions": [ + [ + 222, + 37, + 227, + 6, + 88, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasNoDataACXDyFy0A3Net14ClientResponseCcfU_", + "count": 176, + "regions": [ + [ + 223, + 20, + 226, + 10, + 176, + 0, + 0, + 0 + ], + [ + 224, + 96, + 224, + 106, + 0, + 0, + 0, + 0 + ], + [ + 224, + 106, + 226, + 10, + 176, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasNoDataACXDyFy0A3Net14ClientResponseCcfU_SiyKXEfu_", + "count": 176, + "regions": [ + [ + 225, + 28, + 225, + 34, + 176, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasNoDataACXDyFy0A3Net14ClientResponseCcfU_SiyKXEfu0_", + "count": 176, + "regions": [ + [ + 225, + 36, + 225, + 37, + 176, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC9hasNoDataACXDyFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 225, + 39, + 225, + 118, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDataACXDyF", + "count": 6, + "regions": [ + [ + 229, + 35, + 233, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDataACXDyFy0A3Net14ClientResponseCcfU_", + "count": 12, + "regions": [ + [ + 230, + 20, + 232, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXD10Foundation0G0VF", + "count": 0, + "regions": [ + [ + 235, + 51, + 240, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXD10Foundation0G0VFy0A3Net14ClientResponseCcfU_", + "count": 0, + "regions": [ + [ + 236, + 20, + 239, + 10, + 0, + 0, + 0, + 0 + ], + [ + 237, + 76, + 237, + 86, + 0, + 0, + 0, + 0 + ], + [ + 237, + 86, + 239, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXD10Foundation0G0VFy0A3Net14ClientResponseCcfU_AGyKXEfu_", + "count": 0, + "regions": [ + [ + 238, + 28, + 238, + 32, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXD10Foundation0G0VFy0A3Net14ClientResponseCcfU_AGyKXEfu0_", + "count": 0, + "regions": [ + [ + 238, + 34, + 238, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXD10Foundation0G0VFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 238, + 44, + 238, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSSF", + "count": 0, + "regions": [ + [ + 242, + 53, + 251, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSSFy0A3Net14ClientResponseCcfU_", + "count": 0, + "regions": [ + [ + 243, + 20, + 250, + 10, + 0, + 0, + 0, + 0 + ], + [ + 244, + 76, + 244, + 86, + 0, + 0, + 0, + 0 + ], + [ + 244, + 86, + 250, + 10, + 0, + 0, + 0, + 0 + ], + [ + 245, + 73, + 248, + 14, + 0, + 0, + 0, + 0 + ], + [ + 248, + 14, + 250, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSSFy0A3Net14ClientResponseCcfU_SSyKXEfu_", + "count": 0, + "regions": [ + [ + 249, + 28, + 249, + 36, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSSFy0A3Net14ClientResponseCcfU_SSyKXEfu0_", + "count": 0, + "regions": [ + [ + 249, + 38, + 249, + 44, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSSFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 249, + 46, + 249, + 134, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSayxGSeRzSQRzlF", + "count": 11, + "regions": [ + [ + 253, + 76, + 255, + 6, + 11, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSayxGSeRzSQRzlF0A9Contracts11BodyDecoder_pycfU_", + "count": 22, + "regions": [ + [ + 254, + 49, + 254, + 73, + 22, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDxSeRzSQRzlF", + "count": 44, + "regions": [ + [ + 256, + 74, + 258, + 6, + 44, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDxSeRzSQRzlF0A9Contracts11BodyDecoder_pycfU_", + "count": 88, + "regions": [ + [ + 257, + 49, + 257, + 73, + 88, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSaySDySSxGGSeRzSQRzlF", + "count": 5, + "regions": [ + [ + 259, + 87, + 261, + 6, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasDatayACXDSaySDySSxGGSeRzSQRzlF0A9Contracts11BodyDecoder_pycfU_", + "count": 10, + "regions": [ + [ + 260, + 49, + 260, + 73, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSayxG_0A9Contracts04BodyI0_pyctSeRzSQRzlF", + "count": 13, + "regions": [ + [ + 263, + 120, + 273, + 6, + 13, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSayxG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_", + "count": 26, + "regions": [ + [ + 264, + 20, + 272, + 10, + 26, + 0, + 0, + 0 + ], + [ + 265, + 76, + 265, + 86, + 0, + 0, + 0, + 0 + ], + [ + 265, + 86, + 272, + 10, + 26, + 0, + 0, + 0 + ], + [ + 266, + 16, + 269, + 14, + 26, + 0, + 0, + 0 + ], + [ + 269, + 21, + 271, + 14, + 0, + 0, + 0, + 0 + ], + [ + 271, + 14, + 272, + 10, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSayxG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_AFyKXEfu_", + "count": 26, + "regions": [ + [ + 268, + 32, + 268, + 40, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSayxG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_AFyKXEfu0_", + "count": 26, + "regions": [ + [ + 268, + 42, + 268, + 48, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSayxG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 268, + 50, + 268, + 138, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDx_0A9Contracts04BodyI0_pyctSeRzSQRzlF", + "count": 52, + "regions": [ + [ + 275, + 118, + 285, + 6, + 52, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDx_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_", + "count": 104, + "regions": [ + [ + 276, + 20, + 284, + 10, + 104, + 0, + 0, + 0 + ], + [ + 277, + 76, + 277, + 86, + 0, + 0, + 0, + 0 + ], + [ + 277, + 86, + 284, + 10, + 104, + 0, + 0, + 0 + ], + [ + 278, + 16, + 281, + 14, + 104, + 0, + 0, + 0 + ], + [ + 281, + 21, + 283, + 14, + 0, + 0, + 0, + 0 + ], + [ + 283, + 14, + 284, + 10, + 104, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDx_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_xyKXEfu_", + "count": 104, + "regions": [ + [ + 280, + 32, + 280, + 40, + 104, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDx_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_xyKXEfu0_", + "count": 104, + "regions": [ + [ + 280, + 42, + 280, + 48, + 104, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDx_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 280, + 50, + 280, + 138, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlF", + "count": 6, + "regions": [ + [ + 287, + 124, + 302, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_", + "count": 12, + "regions": [ + [ + 288, + 20, + 301, + 10, + 12, + 0, + 0, + 0 + ], + [ + 289, + 76, + 289, + 86, + 0, + 0, + 0, + 0 + ], + [ + 289, + 86, + 301, + 10, + 12, + 0, + 0, + 0 + ], + [ + 290, + 16, + 298, + 14, + 12, + 0, + 0, + 0 + ], + [ + 292, + 59, + 297, + 18, + 32, + 0, + 0, + 0 + ], + [ + 297, + 18, + 298, + 14, + 12, + 0, + 0, + 0 + ], + [ + 298, + 21, + 300, + 14, + 0, + 0, + 0, + 0 + ], + [ + 300, + 14, + 301, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_SSyKXEfu_", + "count": 32, + "regions": [ + [ + 295, + 36, + 295, + 44, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_SSyKXEfu0_", + "count": 32, + "regions": [ + [ + 295, + 46, + 295, + 57, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 295, + 59, + 295, + 150, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_xSgyKXEfu2_", + "count": 32, + "regions": [ + [ + 296, + 36, + 296, + 51, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_xSgyKXEfu3_", + "count": 32, + "regions": [ + [ + 296, + 53, + 296, + 81, + 32, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC7hasData_13customDecoderACXDSaySDySSxGG_0A9Contracts04BodyI0_pyctSeRzSQRzlFy0A3Net14ClientResponseCcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 296, + 83, + 296, + 240, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC3runyyF", + "count": 59, + "regions": [ + [ + 304, + 23, + 328, + 6, + 59, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC3runyyFySo17XCTestExpectationCcAC7Request33_00C04E5FE30325629F7E99EFA75667A6LLCXEfU_", + "count": 165, + "regions": [ + [ + 307, + 34, + 326, + 10, + 165, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC3runyyFySo17XCTestExpectationCcAC7Request33_00C04E5FE30325629F7E99EFA75667A6LLCXEfU_yAFcfU_", + "count": 330, + "regions": [ + [ + 308, + 20, + 325, + 14, + 330, + 0, + 0, + 0 + ], + [ + 309, + 20, + 321, + 18, + 330, + 0, + 0, + 0 + ], + [ + 321, + 25, + 324, + 18, + 0, + 0, + 0, + 0 + ], + [ + 324, + 18, + 325, + 14, + 330, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests17ServerTestBuilderC3runyyFySo17XCTestExpectationCcAC7Request33_00C04E5FE30325629F7E99EFA75667A6LLCXEfU_yAFcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 330, + "regions": [ + [ + 310, + 43, + 320, + 22, + 330, + 0, + 0, + 0 + ], + [ + 311, + 60, + 315, + 26, + 0, + 0, + 0, + 0 + ], + [ + 315, + 26, + 320, + 22, + 330, + 0, + 0, + 0 + ], + [ + 316, + 61, + 318, + 26, + 850, + 0, + 0, + 0 + ], + [ + 318, + 26, + 320, + 22, + 330, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/KituraTestBuilder.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 25, + 80, + 30, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyF", + "count": 1, + "regions": [ + [ + 32, + 24, + 70, + 6, + 1, + 0, + 0, + 0 + ], + [ + 41, + 9, + 44, + 37, + 0, + 0, + 0, + 0 + ], + [ + 45, + 9, + 48, + 38, + 1, + 0, + 0, + 0 + ], + [ + 49, + 9, + 51, + 83, + 0, + 0, + 0, + 0 + ], + [ + 52, + 10, + 70, + 6, + 1, + 0, + 0, + 0 + ], + [ + 59, + 9, + 62, + 146, + 1, + 0, + 0, + 0 + ], + [ + 63, + 9, + 66, + 132, + 0, + 0, + 0, + 0 + ], + [ + 67, + 9, + 68, + 83, + 0, + 0, + 0, + 0 + ], + [ + 69, + 10, + 70, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFypSgyKXEfu_", + "count": 0, + "regions": [ + [ + 42, + 29, + 42, + 34, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 42, + 36, + 42, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu1_", + "count": 0, + "regions": [ + [ + 43, + 28, + 43, + 33, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu2_", + "count": 0, + "regions": [ + [ + 43, + 35, + 43, + 49, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 43, + 51, + 43, + 145, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFypSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 46, + 29, + 46, + 34, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu5_", + "count": 0, + "regions": [ + [ + 46, + 36, + 46, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu6_", + "count": 1, + "regions": [ + [ + 47, + 28, + 47, + 33, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu7_", + "count": 1, + "regions": [ + [ + 47, + 35, + 47, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 47, + 44, + 47, + 131, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSD5IndexVyS2S3key_SaySSG5valuet_GyKXEfu9_", + "count": 1, + "regions": [ + [ + 55, + 27, + 55, + 31, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSD5IndexVyS2S3key_SaySSG5valuet_GyKXEfu10_", + "count": 1, + "regions": [ + [ + 55, + 33, + 55, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu11_", + "count": 0, + "regions": [ + [ + 55, + 51, + 55, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSbyKXEfu12_", + "count": 1, + "regions": [ + [ + 60, + 28, + 60, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu13_", + "count": 0, + "regions": [ + [ + 60, + 47, + 60, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFypSgyKXEfu14_", + "count": 1, + "regions": [ + [ + 61, + 29, + 61, + 34, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu15_", + "count": 0, + "regions": [ + [ + 61, + 36, + 61, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu16_", + "count": 1, + "regions": [ + [ + 62, + 28, + 62, + 33, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu17_", + "count": 1, + "regions": [ + [ + 62, + 35, + 62, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu18_", + "count": 0, + "regions": [ + [ + 62, + 51, + 62, + 145, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSbyKXEfu19_", + "count": 0, + "regions": [ + [ + 64, + 27, + 64, + 44, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu20_", + "count": 0, + "regions": [ + [ + 64, + 46, + 64, + 85, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFypSgyKXEfu21_", + "count": 0, + "regions": [ + [ + 65, + 29, + 65, + 34, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu22_", + "count": 0, + "regions": [ + [ + 65, + 36, + 65, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu23_", + "count": 0, + "regions": [ + [ + 66, + 28, + 66, + 33, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSSgyKXEfu24_", + "count": 0, + "regions": [ + [ + 66, + 35, + 66, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C11testHeadersyyFSSyXEfu25_", + "count": 0, + "regions": [ + [ + 66, + 44, + 66, + 131, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyF", + "count": 1, + "regions": [ + [ + 72, + 31, + 103, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 77, + 25, + 77, + 33, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 77, + 35, + 77, + 63, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 78, + 24, + 78, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 78, + 34, + 78, + 37, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 78, + 39, + 78, + 115, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 84, + 24, + 84, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu5_", + "count": 1, + "regions": [ + [ + 84, + 34, + 84, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 84, + 44, + 84, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFypSgyKXEfu7_", + "count": 1, + "regions": [ + [ + 88, + 25, + 88, + 36, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 88, + 38, + 88, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu9_", + "count": 1, + "regions": [ + [ + 90, + 24, + 90, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu10_", + "count": 1, + "regions": [ + [ + 90, + 37, + 90, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu11_", + "count": 0, + "regions": [ + [ + 90, + 58, + 90, + 162, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFypSgyKXEfu12_", + "count": 1, + "regions": [ + [ + 93, + 22, + 93, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu13_", + "count": 0, + "regions": [ + [ + 93, + 41, + 93, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFypSgyKXEfu14_", + "count": 1, + "regions": [ + [ + 97, + 22, + 97, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu15_", + "count": 0, + "regions": [ + [ + 97, + 41, + 97, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFypSgyKXEfu16_", + "count": 1, + "regions": [ + [ + 101, + 25, + 101, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu17_", + "count": 0, + "regions": [ + [ + 101, + 44, + 101, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu18_", + "count": 1, + "regions": [ + [ + 102, + 24, + 102, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSSgyKXEfu19_", + "count": 1, + "regions": [ + [ + 102, + 43, + 102, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "$s11KituraTests013MiscellaneousB0C18testHeadersHelpersyyFSSyXEfu20_", + "count": 0, + "regions": [ + [ + 102, + 57, + 102, + 170, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/MiscellaneousTests.swift" + ] + }, + { + "name": "__ntd_PrintLogger_line:35:8", + "count": 1, + "regions": [ + [ + 38, + 25, + 40, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/PrintLogger.swift" + ] + }, + { + "name": "$s11KituraTests11PrintLoggerC3log_3msg12functionName7lineNum04fileH0y0D3API0D11MessageTypeO_S2SSiSStF", + "count": 4412, + "regions": [ + [ + 43, + 76, + 62, + 6, + 4412, + 0, + 0, + 0 + ], + [ + 46, + 28, + 49, + 10, + 0, + 0, + 0, + 0 + ], + [ + 49, + 10, + 62, + 6, + 4412, + 0, + 0, + 0 + ], + [ + 53, + 9, + 54, + 28, + 34, + 0, + 0, + 0 + ], + [ + 55, + 9, + 56, + 25, + 46, + 0, + 0, + 0 + ], + [ + 57, + 9, + 58, + 32, + 4332, + 0, + 0, + 0 + ], + [ + 59, + 10, + 62, + 6, + 4412, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/PrintLogger.swift" + ] + }, + { + "name": "$s11KituraTests11PrintLoggerC9isLoggingySb0D3API0D11MessageTypeOF", + "count": 5186, + "regions": [ + [ + 64, + 73, + 66, + 6, + 5186, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/PrintLogger.swift" + ] + }, + { + "name": "$s11KituraTests11PrintLoggerC3use7coloredySb_tFZ", + "count": 1, + "regions": [ + [ + 68, + 43, + 71, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/PrintLogger.swift" + ] + }, + { + "name": "$s11KituraTests11PrintLoggerC7getFile019_F8ABA7C7EB712F9246G12A43831C72E2FLLyS2SF", + "count": 4412, + "regions": [ + [ + 73, + 52, + 79, + 6, + 4412, + 0, + 0, + 0 + ], + [ + 74, + 73, + 76, + 10, + 0, + 0, + 0, + 0 + ], + [ + 76, + 10, + 78, + 49, + 4412, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/PrintLogger.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 35, + 88, + 39, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyF", + "count": 1, + "regions": [ + [ + 43, + 31, + 59, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 44, + 32, + 58, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_", + "count": 2, + "regions": [ + [ + 45, + 64, + 57, + 14, + 2, + 0, + 0, + 0 + ], + [ + 50, + 20, + 53, + 18, + 2, + 0, + 0, + 0 + ], + [ + 53, + 25, + 55, + 18, + 0, + 0, + 0, + 0 + ], + [ + 55, + 18, + 57, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 46, + 33, + 46, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 46, + 43, + 46, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_AG0eF0OSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 47, + 32, + 47, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_AG0eF0OSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 47, + 54, + 47, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 47, + 73, + 47, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 48, + 33, + 48, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 48, + 60, + 48, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 52, + 36, + 52, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC18testSimpleResponseyyFySo17XCTestExpectationCcfU_y0A3Net06ClientI0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 52, + 42, + 52, + 104, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests26TestBridgingHTTPStatusCodeC11setupRouter0A00H0CyFZyAE0H7RequestC_AE0H8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 63, + 29, + 71, + 10, + 2, + 0, + 0, + 0 + ], + [ + 65, + 16, + 67, + 14, + 2, + 0, + 0, + 0 + ], + [ + 67, + 21, + 69, + 14, + 0, + 0, + 0, + 0 + ], + [ + 69, + 14, + 71, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingHTTPStatusCode.swift" + ] + }, + { + "name": "$s11KituraTests24TestBridgingRequestErrorC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 35, + 86, + 39, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingRequestError.swift" + ] + }, + { + "name": "$s11KituraTests24TestBridgingRequestErrorC06AccessF0V2eeoiySbAE_AEtFZ", + "count": 2, + "regions": [ + [ + 46, + 118, + 48, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingRequestError.swift" + ] + }, + { + "name": "$s11KituraTests24TestBridgingRequestErrorC04testeF0yyF", + "count": 1, + "regions": [ + [ + 65, + 29, + 72, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingRequestError.swift" + ] + }, + { + "name": "$s11KituraTests24TestBridgingRequestErrorC11setupRouter0A00H0CyFZyySayAC5DummyVGSg_0A9Contracts0eF0VSgtXEcfU_", + "count": 2, + "regions": [ + [ + 76, + 32, + 79, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestBridgingRequestError.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 24, + 79, + 52, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC5setUpyyF", + "count": 49, + "regions": [ + [ + 60, + 27, + 66, + 6, + 49, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "__ntd_Conflict_line:68:5", + "count": 7, + "regions": [ + [ + 71, + 32, + 73, + 10, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC8ConflictV2eeoiySbAE_AEtFZ", + "count": 12, + "regions": [ + [ + 75, + 62, + 77, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "__ntd_User_line:80:5", + "count": 309, + "regions": [ + [ + 84, + 37, + 87, + 10, + 309, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC4UserV2eeoiySbAE_AEtFZ", + "count": 44, + "regions": [ + [ + 89, + 54, + 91, + 10, + 44, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC4UserV2eeoiySbAE_AEtFZSbyKXEfu_", + "count": 44, + "regions": [ + [ + 90, + 40, + 90, + 60, + 44, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "__ntd_OptionalUser_line:94:5", + "count": 0, + "regions": [ + [ + 98, + 39, + 101, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12OptionalUserV2eeoiySbAE_AEtFZ", + "count": 0, + "regions": [ + [ + 103, + 70, + 105, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12OptionalUserV2eeoiySbAE_AEtFZSbyKXEfu_", + "count": 0, + "regions": [ + [ + 104, + 40, + 104, + 60, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "__ntd_Status_line:108:5", + "count": 28, + "regions": [ + [ + 110, + 30, + 112, + 10, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC6StatusV2eeoiySbAE_AEtFZ", + "count": 22, + "regions": [ + [ + 114, + 58, + 116, + 10, + 22, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZ", + "count": 20, + "regions": [ + [ + 130, + 67, + 138, + 10, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZSbyKXEfu_", + "count": 20, + "regions": [ + [ + 132, + 17, + 132, + 61, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZSbyKXEfu0_", + "count": 20, + "regions": [ + [ + 133, + 17, + 133, + 51, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZSbyKXEfu1_", + "count": 20, + "regions": [ + [ + 134, + 17, + 134, + 45, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZSbyKXEfu2_", + "count": 20, + "regions": [ + [ + 135, + 17, + 135, + 91, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZSbyKXEfu3_", + "count": 20, + "regions": [ + [ + 136, + 17, + 136, + 109, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC7MyQueryV2eeoiySbAE_AEtFZSbyKXEfu4_", + "count": 20, + "regions": [ + [ + 137, + 17, + 137, + 41, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC6NestedV2eeoiySbAE_AEtFZSbyKXEfu_", + "count": 20, + "regions": [ + [ + 146, + 64, + 146, + 110, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC13testBasicPostyyF", + "count": 1, + "regions": [ + [ + 150, + 26, + 205, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC13testBasicPostyyFyAC4UserV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 151, + 31, + 154, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC13testBasicPostyyFyAC4UserV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 155, + 37, + 158, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC13testBasicPostyyFyAC4UserV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 159, + 41, + 162, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC13testBasicPostyyFyAC4UserV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU2_", + "count": 4, + "regions": [ + [ + 163, + 36, + 166, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testBasicPostIdentifieryyF", + "count": 1, + "regions": [ + [ + 207, + 36, + 239, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testBasicPostIdentifieryyFyAC4UserV_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 208, + 31, + 211, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testBasicPostIdentifieryyFyAC4UserV_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 212, + 37, + 215, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testBasicPostIdentifieryyFyAC4UserV_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 216, + 41, + 219, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicGetSingletonyyF", + "count": 1, + "regions": [ + [ + 241, + 34, + 271, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicGetSingletonyyFyyAC6StatusVSg_0A9Contracts12RequestErrorVSgtXEcfU_", + "count": 2, + "regions": [ + [ + 242, + 31, + 245, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicGetSingletonyyFyyAC6StatusVSg_0A9Contracts12RequestErrorVSgtXEcfU0_", + "count": 2, + "regions": [ + [ + 246, + 37, + 249, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicGetSingletonyyFyyAC6StatusVSg_0A9Contracts12RequestErrorVSgtXEcfU1_", + "count": 2, + "regions": [ + [ + 250, + 41, + 253, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC17testBasicGetArrayyyF", + "count": 1, + "regions": [ + [ + 273, + 30, + 303, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC17testBasicGetArrayyyFyySayAC4UserVGSg_0A9Contracts12RequestErrorVSgtXEcfU_", + "count": 2, + "regions": [ + [ + 274, + 30, + 277, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC17testBasicGetArrayyyFyySayAC4UserVGSg_0A9Contracts12RequestErrorVSgtXEcfU0_", + "count": 2, + "regions": [ + [ + 278, + 36, + 281, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC17testBasicGetArrayyyFyySayAC4UserVGSg_0A9Contracts12RequestErrorVSgtXEcfU1_", + "count": 2, + "regions": [ + [ + 282, + 40, + 285, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyF", + "count": 1, + "regions": [ + [ + 305, + 41, + 355, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyFSDySSAC4UserVGSi_AFtXEfU_", + "count": 3, + "regions": [ + [ + 308, + 62, + 308, + 80, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyFSDySSAC4UserVGSS_AFtXEfU0_", + "count": 3, + "regions": [ + [ + 312, + 68, + 312, + 86, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyFyySaySi_AC4UserVtGSg_0A9Contracts12RequestErrorVSgtXEcfU1_", + "count": 2, + "regions": [ + [ + 314, + 34, + 317, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyFyySaySi_AC4UserVtGSg_0A9Contracts12RequestErrorVSgtXEcfU2_", + "count": 2, + "regions": [ + [ + 319, + 43, + 322, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyFyySaySS_AC4UserVtGSg_0A9Contracts12RequestErrorVSgtXEcfU3_", + "count": 2, + "regions": [ + [ + 324, + 37, + 327, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC28testBasicGetIdentifiersArrayyyFyySaySS_AC4UserVtGSg_0A9Contracts12RequestErrorVSgtXEcfU4_", + "count": 2, + "regions": [ + [ + 329, + 36, + 332, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC18testBasicGetSingleyyF", + "count": 1, + "regions": [ + [ + 357, + 31, + 396, + 6, + 1, + 0, + 0, + 0 + ], + [ + 376, + 49, + 379, + 10, + 0, + 0, + 0, + 0 + ], + [ + 379, + 10, + 396, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC18testBasicGetSingleyyFySi_yAC4UserVSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 358, + 30, + 366, + 10, + 2, + 0, + 0, + 0 + ], + [ + 360, + 54, + 364, + 14, + 0, + 0, + 0, + 0 + ], + [ + 364, + 14, + 366, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC18testBasicGetSingleyyFySi_yAC4UserVSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 367, + 36, + 370, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC18testBasicGetSingleyyFySi_yAC4UserVSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 371, + 40, + 374, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyF", + "count": 1, + "regions": [ + [ + 398, + 28, + 429, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyFyy0A9Contracts12RequestErrorVSgXEcfU_", + "count": 2, + "regions": [ + [ + 399, + 33, + 403, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyFyy0A9Contracts12RequestErrorVSgXEcfU0_", + "count": 2, + "regions": [ + [ + 404, + 39, + 407, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyFyy0A9Contracts12RequestErrorVSgXEcfU1_", + "count": 2, + "regions": [ + [ + 408, + 43, + 411, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyFy0A3Net14ClientResponseCcfU2_", + "count": 2, + "regions": [ + [ + 417, + 18, + 417, + 66, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 417, + 40, + 417, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC15testBasicDeleteyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 417, + 62, + 417, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicDeleteSingleyyF", + "count": 1, + "regions": [ + [ + 431, + 34, + 465, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicDeleteSingleyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 432, + 33, + 439, + 10, + 2, + 0, + 0, + 0 + ], + [ + 434, + 71, + 437, + 14, + 0, + 0, + 0, + 0 + ], + [ + 437, + 14, + 439, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicDeleteSingleyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU0_", + "count": 2, + "regions": [ + [ + 440, + 39, + 443, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicDeleteSingleyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU1_", + "count": 2, + "regions": [ + [ + 444, + 43, + 447, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicDeleteSingleyyFy0A3Net14ClientResponseCcfU2_", + "count": 2, + "regions": [ + [ + 453, + 18, + 453, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC21testBasicDeleteSingleyyFy0A3Net14ClientResponseCcfU2_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 453, + 38, + 453, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyF", + "count": 1, + "regions": [ + [ + 467, + 25, + 502, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFySi_AC4UserVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 468, + 30, + 472, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFySi_AC4UserVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 473, + 36, + 476, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFySi_AC4UserVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 477, + 40, + 480, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 482, + 24, + 482, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 482, + 49, + 482, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFy0A3Net14ClientResponseCcfU2_", + "count": 2, + "regions": [ + [ + 490, + 18, + 490, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFy0A3Net14ClientResponseCcfU2_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 490, + 40, + 490, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testBasicPutyyFy0A3Net14ClientResponseCcfU2_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 490, + 65, + 490, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testNoDataCustomStatusyyF", + "count": 1, + "regions": [ + [ + 505, + 35, + 528, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testNoDataCustomStatusyyFySi_AC4UserVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 506, + 31, + 509, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testNoDataCustomStatusyyFyAC4UserV_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 510, + 32, + 513, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testNoDataDefaultStatusyyF", + "count": 1, + "regions": [ + [ + 532, + 36, + 555, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testNoDataDefaultStatusyyFySi_AC4UserVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 533, + 31, + 536, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC23testNoDataDefaultStatusyyFyAC4UserV_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 537, + 32, + 540, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyF", + "count": 1, + "regions": [ + [ + 557, + 27, + 601, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFySi_AC12OptionalUserVyAC0J0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 558, + 32, + 571, + 10, + 2, + 0, + 0, + 0 + ], + [ + 560, + 62, + 563, + 14, + 0, + 0, + 0, + 0 + ], + [ + 563, + 14, + 571, + 10, + 2, + 0, + 0, + 0 + ], + [ + 564, + 51, + 568, + 14, + 2, + 0, + 0, + 0 + ], + [ + 568, + 14, + 571, + 10, + 2, + 0, + 0, + 0 + ], + [ + 568, + 20, + 570, + 14, + 0, + 0, + 0, + 0 + ], + [ + 570, + 14, + 571, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFySi_AC12OptionalUserVyAC0J0VSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 572, + 38, + 575, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFySi_AC12OptionalUserVyAC0J0VSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 576, + 42, + 579, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 581, + 24, + 581, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 581, + 49, + 581, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFy0A3Net14ClientResponseCcfU2_", + "count": 2, + "regions": [ + [ + 589, + 18, + 589, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFy0A3Net14ClientResponseCcfU2_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 589, + 40, + 589, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC14testBasicPatchyyFy0A3Net14ClientResponseCcfU2_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 589, + 65, + 589, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyF", + "count": 1, + "regions": [ + [ + 603, + 25, + 609, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 605, + 24, + 605, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 605, + 59, + 605, + 64, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu1_", + "count": 1, + "regions": [ + [ + 606, + 24, + 606, + 59, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu2_", + "count": 1, + "regions": [ + [ + 606, + 61, + 606, + 66, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 607, + 24, + 607, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu4_", + "count": 1, + "regions": [ + [ + 607, + 60, + 607, + 65, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu5_", + "count": 1, + "regions": [ + [ + 608, + 24, + 608, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC12testJoinPathyyFSSyKXEfu6_", + "count": 1, + "regions": [ + [ + 608, + 60, + 608, + 65, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC26testRouteWithTrailingSlashyyF", + "count": 1, + "regions": [ + [ + 612, + 39, + 625, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC26testRouteWithTrailingSlashyyFySi_yAC6StatusVSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 614, + 32, + 614, + 120, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC26testRouteWithTrailingSlashyyFySi_AC6StatusVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 615, + 32, + 615, + 136, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC26testRouteWithTrailingSlashyyFySi_AC6StatusVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 616, + 34, + 616, + 138, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC26testRouteWithTrailingSlashyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU2_", + "count": 2, + "regions": [ + [ + 617, + 35, + 617, + 106, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyF", + "count": 1, + "regions": [ + [ + 627, + 35, + 679, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFySi_yAC6StatusVSg_0A9Contracts07RequestG0VSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 629, + 31, + 629, + 125, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFyAC6StatusV_yAFSg_0A9Contracts07RequestG0VSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 630, + 32, + 630, + 133, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFySi_AC6StatusVyAFSg_0A9Contracts07RequestG0VSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 631, + 31, + 631, + 141, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFySi_AC6StatusVyAFSg_0A9Contracts07RequestG0VSgtXEtcfU2_", + "count": 2, + "regions": [ + [ + 632, + 33, + 632, + 143, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFySi_yAC6StatusVSg_0A9Contracts07RequestG0VSgtXEtcfU3_", + "count": 2, + "regions": [ + [ + 636, + 41, + 636, + 135, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFyAC6StatusV_yAFSg_0A9Contracts07RequestG0VSgtXEtcfU4_", + "count": 2, + "regions": [ + [ + 637, + 42, + 637, + 143, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFySi_AC6StatusVyAFSg_0A9Contracts07RequestG0VSgtXEtcfU5_", + "count": 2, + "regions": [ + [ + 638, + 41, + 638, + 151, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC22testErrorOverridesBodyyyFySi_AC6StatusVyAFSg_0A9Contracts07RequestG0VSgtXEtcfU6_", + "count": 2, + "regions": [ + [ + 639, + 43, + 639, + 153, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC19testRouteParametersyyF", + "count": 1, + "regions": [ + [ + 681, + 32, + 694, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC19testRouteParametersyyFySi_yAC6StatusVSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 0, + "regions": [ + [ + 684, + 35, + 687, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD25RoutesWithBodyParsingFailyyF", + "count": 1, + "regions": [ + [ + 697, + 49, + 711, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD25RoutesWithBodyParsingFailyyFySi_AC6StatusVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 0, + "regions": [ + [ + 702, + 31, + 702, + 135, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD25RoutesWithBodyParsingFailyyFySi_AC6StatusVyAFSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 0, + "regions": [ + [ + 703, + 33, + 703, + 145, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD25RoutesWithBodyParsingFailyyFyAC6StatusV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 0, + "regions": [ + [ + 704, + 32, + 704, + 135, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyF", + "count": 1, + "regions": [ + [ + 713, + 48, + 761, + 6, + 1, + 0, + 0, + 0 + ], + [ + 718, + 85, + 721, + 10, + 0, + 0, + 0, + 0 + ], + [ + 721, + 10, + 761, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyFyAC02MyI0V_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 723, + 30, + 726, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyFyAC02MyI0V_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 724, + 28, + 724, + 33, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyFyAC02MyI0V_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 724, + 35, + 724, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyFyAC02MyI0VSg_yAG_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 4, + "regions": [ + [ + 728, + 38, + 735, + 10, + 4, + 0, + 0, + 0 + ], + [ + 729, + 34, + 732, + 14, + 2, + 0, + 0, + 0 + ], + [ + 732, + 14, + 735, + 10, + 4, + 0, + 0, + 0 + ], + [ + 732, + 20, + 734, + 14, + 2, + 0, + 0, + 0 + ], + [ + 734, + 14, + 735, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyFyAC02MyI0VSg_yAG_0A9Contracts12RequestErrorVSgtXEtcfU0_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 730, + 32, + 730, + 37, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD24GetSingleQueryParametersyyFyAC02MyI0VSg_yAG_0A9Contracts12RequestErrorVSgtXEtcfU0_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 730, + 39, + 730, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyF", + "count": 1, + "regions": [ + [ + 763, + 47, + 813, + 6, + 1, + 0, + 0, + 0 + ], + [ + 770, + 85, + 773, + 10, + 0, + 0, + 0, + 0 + ], + [ + 773, + 10, + 813, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyFyAC02MyI0V_ySayAFGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 775, + 30, + 778, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyFyAC02MyI0V_ySayAFGSg_0A9Contracts12RequestErrorVSgtXEtcfU_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 776, + 28, + 776, + 33, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyFyAC02MyI0V_ySayAFGSg_0A9Contracts12RequestErrorVSgtXEtcfU_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 776, + 35, + 776, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyFyAC02MyI0VSg_ySayAFGSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 4, + "regions": [ + [ + 780, + 38, + 787, + 10, + 4, + 0, + 0, + 0 + ], + [ + 781, + 34, + 784, + 14, + 2, + 0, + 0, + 0 + ], + [ + 784, + 14, + 787, + 10, + 4, + 0, + 0, + 0 + ], + [ + 784, + 20, + 786, + 14, + 2, + 0, + 0, + 0 + ], + [ + 786, + 14, + 787, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyFyAC02MyI0VSg_ySayAFGSg_0A9Contracts12RequestErrorVSgtXEtcfU0_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 782, + 32, + 782, + 37, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD23GetArrayQueryParametersyyFyAC02MyI0VSg_ySayAFGSg_0A9Contracts12RequestErrorVSgtXEtcfU0_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 782, + 39, + 782, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyF", + "count": 1, + "regions": [ + [ + 815, + 45, + 861, + 6, + 1, + 0, + 0, + 0 + ], + [ + 822, + 85, + 825, + 10, + 0, + 0, + 0, + 0 + ], + [ + 825, + 10, + 861, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyFyAC02MyH0V_y0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 827, + 33, + 830, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyFyAC02MyH0V_y0A9Contracts12RequestErrorVSgXEtcfU_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 828, + 28, + 828, + 33, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyFyAC02MyH0V_y0A9Contracts12RequestErrorVSgXEtcfU_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 828, + 35, + 828, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyFyAC02MyH0VSg_y0A9Contracts12RequestErrorVSgXEtcfU0_", + "count": 4, + "regions": [ + [ + 832, + 41, + 837, + 10, + 4, + 0, + 0, + 0 + ], + [ + 833, + 34, + 835, + 14, + 2, + 0, + 0, + 0 + ], + [ + 835, + 14, + 837, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyFyAC02MyH0VSg_y0A9Contracts12RequestErrorVSgXEtcfU0_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 834, + 32, + 834, + 37, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD21DeleteQueryParametersyyFyAC02MyH0VSg_y0A9Contracts12RequestErrorVSgXEtcfU0_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 834, + 39, + 834, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD19PostSuccessStatusesyyF", + "count": 1, + "regions": [ + [ + 863, + 43, + 897, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD19PostSuccessStatusesyyFyAC4UserV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 865, + 28, + 868, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD19PostSuccessStatusesyyFyAC4UserV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 869, + 40, + 872, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC04testD19PostSuccessStatusesyyFyAC4UserV_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 873, + 30, + 876, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC29testInvalidIdentifierSuppliedyyF", + "count": 1, + "regions": [ + [ + 899, + 42, + 911, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC29testInvalidIdentifierSuppliedyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 0, + "regions": [ + [ + 901, + 40, + 904, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC25testIdentifierNotExpectedyyF", + "count": 1, + "regions": [ + [ + 913, + 38, + 925, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC25testIdentifierNotExpectedyyFyy0A9Contracts12RequestErrorVSgXEcfU_", + "count": 0, + "regions": [ + [ + 915, + 37, + 918, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC29testPartialIdentifierSuppliedyyF", + "count": 1, + "regions": [ + [ + 927, + 42, + 939, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC29testPartialIdentifierSuppliedyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 0, + "regions": [ + [ + 929, + 36, + 932, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC25testIdentifierNotSuppliedyyF", + "count": 1, + "regions": [ + [ + 941, + 38, + 952, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests17TestCodableRouterC25testIdentifierNotSuppliedyyFySi_y0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 942, + 35, + 945, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCodableRouter.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 24, + 77, + 30, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyF", + "count": 1, + "regions": [ + [ + 34, + 27, + 50, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 38, + 24, + 38, + 31, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 38, + 33, + 38, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 39, + 27, + 39, + 34, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 39, + 36, + 39, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 43, + 24, + 43, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 43, + 34, + 43, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu5_", + "count": 1, + "regions": [ + [ + 44, + 27, + 44, + 34, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu6_", + "count": 1, + "regions": [ + [ + 44, + 36, + 44, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu7_", + "count": 1, + "regions": [ + [ + 48, + 24, + 48, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC14testInitializeyyFSSSgyKXEfu8_", + "count": 1, + "regions": [ + [ + 48, + 32, + 48, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyF", + "count": 1, + "regions": [ + [ + 52, + 25, + 74, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 55, + 24, + 55, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 55, + 32, + 55, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 58, + 24, + 58, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 58, + 32, + 58, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 61, + 24, + 61, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 61, + 32, + 61, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu5_", + "count": 1, + "regions": [ + [ + 64, + 24, + 64, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu6_", + "count": 1, + "regions": [ + [ + 64, + 32, + 64, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu7_", + "count": 1, + "regions": [ + [ + 67, + 24, + 67, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu8_", + "count": 1, + "regions": [ + [ + 67, + 32, + 67, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu9_", + "count": 1, + "regions": [ + [ + 70, + 24, + 70, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu10_", + "count": 1, + "regions": [ + [ + 70, + 32, + 70, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu11_", + "count": 1, + "regions": [ + [ + 73, + 24, + 73, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC12testFilenameyyFSSSgyKXEfu12_", + "count": 1, + "regions": [ + [ + 73, + 32, + 73, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC06testIsdE0yyF", + "count": 1, + "regions": [ + [ + 76, + 30, + 92, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC06testIsdE0yyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 78, + 23, + 78, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC06testIsdE0yyFSbyKXEfu0_", + "count": 1, + "regions": [ + [ + 81, + 23, + 81, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC06testIsdE0yyFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 84, + 24, + 84, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC06testIsdE0yyFSbyKXEfu2_", + "count": 1, + "regions": [ + [ + 87, + 23, + 87, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests15TestContentTypeC06testIsdE0yyFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 90, + 23, + 90, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestContentType.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 36, + 73, + 44, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC40testCookieToServerWithSemiColonSeparatoryyF", + "count": 1, + "regions": [ + [ + 48, + 53, + 50, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC45testCookieToServerWithSemiColonSpaceSeparatoryyF", + "count": 1, + "regions": [ + [ + 52, + 58, + 54, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC51testCookieToServerWithSemiColonWhitespacesSeparatoryyF", + "count": 1, + "regions": [ + [ + 56, + 64, + 58, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtF", + "count": 3, + "regions": [ + [ + 60, + 70, + 101, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_", + "count": 6, + "regions": [ + [ + 61, + 47, + 100, + 10, + 6, + 0, + 0, + 0 + ], + [ + 71, + 44, + 80, + 14, + 42, + 0, + 0, + 0 + ], + [ + 73, + 31, + 76, + 18, + 28, + 0, + 0, + 0 + ], + [ + 76, + 18, + 80, + 14, + 42, + 0, + 0, + 0 + ], + [ + 76, + 24, + 79, + 18, + 14, + 0, + 0, + 0 + ], + [ + 79, + 18, + 80, + 14, + 42, + 0, + 0, + 0 + ], + [ + 80, + 14, + 100, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 6, + "regions": [ + [ + 82, + 73, + 99, + 14, + 6, + 0, + 0, + 0 + ], + [ + 84, + 20, + 95, + 18, + 6, + 0, + 0, + 0 + ], + [ + 89, + 57, + 92, + 22, + 6, + 0, + 0, + 0 + ], + [ + 92, + 22, + 95, + 18, + 6, + 0, + 0, + 0 + ], + [ + 92, + 28, + 94, + 22, + 0, + 0, + 0, + 0 + ], + [ + 94, + 22, + 95, + 18, + 6, + 0, + 0, + 0 + ], + [ + 95, + 25, + 97, + 18, + 0, + 0, + 0, + 0 + ], + [ + 97, + 18, + 99, + 14, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AJ14HTTPStatusCodeOSgyKXEfu_", + "count": 6, + "regions": [ + [ + 83, + 32, + 83, + 52, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AJ14HTTPStatusCodeOSgyKXEfu0_", + "count": 6, + "regions": [ + [ + 83, + 54, + 83, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 83, + 73, + 83, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SaySSGyKXEfu2_", + "count": 6, + "regions": [ + [ + 90, + 40, + 90, + 108, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC14cookieToServer33_B913F07598153E6350191DA7137BB27FLL9separator10quoteValueySS_SbtFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SaySSGyKXEfu3_", + "count": 6, + "regions": [ + [ + 91, + 40, + 91, + 62, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyF", + "count": 1, + "regions": [ + [ + 103, + 33, + 146, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 104, + 47, + 130, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 105, + 73, + 129, + 14, + 2, + 0, + 0, + 0 + ], + [ + 110, + 42, + 116, + 18, + 2, + 0, + 0, + 0 + ], + [ + 116, + 18, + 129, + 14, + 2, + 0, + 0, + 0 + ], + [ + 120, + 42, + 127, + 18, + 2, + 0, + 0, + 0 + ], + [ + 127, + 18, + 129, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 106, + 32, + 106, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 106, + 54, + 106, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 106, + 73, + 106, + 128, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 109, + 33, + 109, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 109, + 42, + 109, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu4_", + "count": 2, + "regions": [ + [ + 111, + 36, + 111, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu5_", + "count": 2, + "regions": [ + [ + 111, + 51, + 111, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 111, + 75, + 111, + 152, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu7_", + "count": 2, + "regions": [ + [ + 112, + 36, + 112, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu8_", + "count": 2, + "regions": [ + [ + 112, + 50, + 112, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 112, + 55, + 112, + 118, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu10_", + "count": 2, + "regions": [ + [ + 113, + 36, + 113, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu11_", + "count": 2, + "regions": [ + [ + 113, + 52, + 113, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu12_", + "count": 0, + "regions": [ + [ + 113, + 74, + 113, + 151, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SbyKXEfu13_", + "count": 2, + "regions": [ + [ + 114, + 36, + 114, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu14_", + "count": 0, + "regions": [ + [ + 114, + 54, + 114, + 124, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu15_", + "count": 2, + "regions": [ + [ + 115, + 34, + 115, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu16_", + "count": 0, + "regions": [ + [ + 115, + 49, + 115, + 115, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu17_", + "count": 2, + "regions": [ + [ + 119, + 33, + 119, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu18_", + "count": 0, + "regions": [ + [ + 119, + 42, + 119, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu19_", + "count": 2, + "regions": [ + [ + 121, + 36, + 121, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu20_", + "count": 2, + "regions": [ + [ + 121, + 51, + 121, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu21_", + "count": 0, + "regions": [ + [ + 121, + 75, + 121, + 152, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu22_", + "count": 2, + "regions": [ + [ + 122, + 36, + 122, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu23_", + "count": 2, + "regions": [ + [ + 122, + 50, + 122, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu24_", + "count": 0, + "regions": [ + [ + 122, + 55, + 122, + 118, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu25_", + "count": 2, + "regions": [ + [ + 123, + 36, + 123, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu26_", + "count": 2, + "regions": [ + [ + 123, + 52, + 123, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu27_", + "count": 0, + "regions": [ + [ + 123, + 74, + 123, + 151, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SbyKXEfu28_", + "count": 2, + "regions": [ + [ + 124, + 36, + 124, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu29_", + "count": 0, + "regions": [ + [ + 124, + 54, + 124, + 124, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu30_", + "count": 2, + "regions": [ + [ + 125, + 37, + 125, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu31_", + "count": 0, + "regions": [ + [ + 125, + 52, + 125, + 115, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu32_", + "count": 2, + "regions": [ + [ + 126, + 36, + 126, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu33_", + "count": 2, + "regions": [ + [ + 126, + 51, + 126, + 91, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 130, + 12, + 145, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 131, + 73, + 144, + 14, + 2, + 0, + 0, + 0 + ], + [ + 136, + 40, + 142, + 18, + 2, + 0, + 0, + 0 + ], + [ + 142, + 18, + 144, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 132, + 32, + 132, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 132, + 54, + 132, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 132, + 73, + 132, + 128, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 135, + 33, + 135, + 39, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 135, + 41, + 135, + 94, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu4_", + "count": 2, + "regions": [ + [ + 137, + 36, + 137, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu5_", + "count": 2, + "regions": [ + [ + 137, + 50, + 137, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 137, + 74, + 137, + 150, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu7_", + "count": 2, + "regions": [ + [ + 138, + 36, + 138, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu8_", + "count": 2, + "regions": [ + [ + 138, + 49, + 138, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 138, + 54, + 138, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu10_", + "count": 2, + "regions": [ + [ + 139, + 36, + 139, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu11_", + "count": 2, + "regions": [ + [ + 139, + 51, + 139, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu12_", + "count": 0, + "regions": [ + [ + 139, + 73, + 139, + 149, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SbyKXEfu13_", + "count": 2, + "regions": [ + [ + 140, + 35, + 140, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu14_", + "count": 0, + "regions": [ + [ + 140, + 52, + 140, + 124, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu15_", + "count": 2, + "regions": [ + [ + 141, + 34, + 141, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC20testCookieFromServeryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu16_", + "count": 0, + "regions": [ + [ + 141, + 48, + 141, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC10cookieFrom8response5namedSo12NSHTTPCookieCSg_SSSgt0A3Net14ClientResponseCSg_SStF", + "count": 6, + "regions": [ + [ + 148, + 89, + 197, + 6, + 6, + 0, + 0, + 0 + ], + [ + 149, + 44, + 151, + 10, + 0, + 0, + 0, + 0 + ], + [ + 151, + 10, + 197, + 6, + 6, + 0, + 0, + 0 + ], + [ + 154, + 59, + 194, + 10, + 24, + 0, + 0, + 0 + ], + [ + 156, + 54, + 193, + 14, + 6, + 0, + 0, + 0 + ], + [ + 157, + 49, + 192, + 18, + 8, + 0, + 0, + 0 + ], + [ + 162, + 47, + 191, + 22, + 6, + 0, + 0, + 0 + ], + [ + 169, + 61, + 187, + 26, + 18, + 0, + 0, + 0 + ], + [ + 173, + 29, + 175, + 87, + 4, + 0, + 0, + 0 + ], + [ + 176, + 29, + 178, + 78, + 6, + 0, + 0, + 0 + ], + [ + 179, + 28, + 181, + 82, + 6, + 0, + 0, + 0 + ], + [ + 182, + 29, + 183, + 57, + 2, + 0, + 0, + 0 + ], + [ + 184, + 29, + 185, + 86, + 0, + 0, + 0, + 0 + ], + [ + 186, + 30, + 187, + 26, + 18, + 0, + 0, + 0 + ], + [ + 187, + 26, + 190, + 30, + 6, + 0, + 0, + 0 + ], + [ + 191, + 22, + 192, + 18, + 2, + 0, + 0, + 0 + ], + [ + 192, + 18, + 193, + 14, + 6, + 0, + 0, + 0 + ], + [ + 193, + 14, + 194, + 10, + 24, + 0, + 0, + 0 + ], + [ + 194, + 10, + 196, + 44, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC10cookieFrom8response5namedSo12NSHTTPCookieCSg_SSSgt0A3Net14ClientResponseCSg_SStFSiyKXEfu_", + "count": 8, + "regions": [ + [ + 160, + 36, + 160, + 51, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC10cookieFrom8response5namedSo12NSHTTPCookieCSg_SSSgt0A3Net14ClientResponseCSg_SStFSiyKXEfu0_", + "count": 8, + "regions": [ + [ + 160, + 53, + 160, + 54, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC10cookieFrom8response5namedSo12NSHTTPCookieCSg_SSSgt0A3Net14ClientResponseCSg_SStFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 160, + 56, + 160, + 100, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC10cookieFrom8response5namedSo12NSHTTPCookieCSg_SSSgt0A3Net14ClientResponseCSg_SStFypSgyKXEfu2_", + "count": 6, + "regions": [ + [ + 188, + 41, + 188, + 81, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC10cookieFrom8response5namedSo12NSHTTPCookieCSg_SSSgt0A3Net14ClientResponseCSg_SStFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 188, + 83, + 188, + 127, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyF", + "count": 1, + "regions": [ + [ + 199, + 26, + 237, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 200, + 47, + 218, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 201, + 73, + 217, + 14, + 2, + 0, + 0, + 0 + ], + [ + 203, + 20, + 213, + 18, + 2, + 0, + 0, + 0 + ], + [ + 208, + 57, + 210, + 22, + 2, + 0, + 0, + 0 + ], + [ + 210, + 22, + 213, + 18, + 2, + 0, + 0, + 0 + ], + [ + 210, + 28, + 212, + 22, + 0, + 0, + 0, + 0 + ], + [ + 212, + 22, + 213, + 18, + 2, + 0, + 0, + 0 + ], + [ + 213, + 25, + 215, + 18, + 0, + 0, + 0, + 0 + ], + [ + 215, + 18, + 217, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 202, + 32, + 202, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 202, + 54, + 202, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 202, + 73, + 202, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu2_", + "count": 2, + "regions": [ + [ + 209, + 40, + 209, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyKXEfu3_", + "count": 2, + "regions": [ + [ + 209, + 54, + 209, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 218, + 12, + 236, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 219, + 73, + 235, + 14, + 2, + 0, + 0, + 0 + ], + [ + 221, + 20, + 231, + 18, + 2, + 0, + 0, + 0 + ], + [ + 226, + 57, + 228, + 22, + 2, + 0, + 0, + 0 + ], + [ + 228, + 22, + 231, + 18, + 2, + 0, + 0, + 0 + ], + [ + 228, + 28, + 230, + 22, + 0, + 0, + 0, + 0 + ], + [ + 230, + 22, + 231, + 18, + 2, + 0, + 0, + 0 + ], + [ + 231, + 25, + 233, + 18, + 0, + 0, + 0, + 0 + ], + [ + 233, + 18, + 235, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 220, + 32, + 220, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 220, + 54, + 220, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 220, + 73, + 220, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu2_", + "count": 2, + "regions": [ + [ + 227, + 40, + 227, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC06testNoD0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyKXEfu3_", + "count": 2, + "regions": [ + [ + 227, + 54, + 227, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_", + "count": 10, + "regions": [ + [ + 242, + 37, + 251, + 10, + 10, + 0, + 0, + 0 + ], + [ + 244, + 51, + 246, + 14, + 42, + 0, + 0, + 0 + ], + [ + 246, + 14, + 251, + 10, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 253, + 37, + 269, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests11TestCookiesC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 271, + 37, + 282, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCookies.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 24, + 78, + 30, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "__ntd_CodableDate_line:32:5", + "count": 14, + "regions": [ + [ + 34, + 26, + 36, + 10, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC11CodableDateV2eeoiySbAE_AEtFZ", + "count": 6, + "regions": [ + [ + 37, + 76, + 39, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyF", + "count": 1, + "regions": [ + [ + 44, + 28, + 84, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyF0A9Contracts11BodyEncoder_pycfU_", + "count": 6, + "regions": [ + [ + 45, + 46, + 49, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyF0A9Contracts11BodyDecoder_pycfU0_", + "count": 6, + "regions": [ + [ + 50, + 46, + 54, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyFyyAC11CodableDateVSg_0A9Contracts12RequestErrorVSgtXEcfU1_", + "count": 2, + "regions": [ + [ + 62, + 42, + 65, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyFyAC11CodableDateV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU2_", + "count": 2, + "regions": [ + [ + 66, + 43, + 70, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyFyAC11CodableDateV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU2_AFyKXEfu_", + "count": 2, + "regions": [ + [ + 68, + 28, + 68, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD5CoderyyFyAC11CodableDateV_yAFSg_0A9Contracts12RequestErrorVSgtXEtcfU2_AFyKXEfu0_", + "count": 2, + "regions": [ + [ + 68, + 36, + 68, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyF", + "count": 1, + "regions": [ + [ + 86, + 31, + 133, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyF0A9Contracts11BodyDecoder_pycfU_", + "count": 0, + "regions": [ + [ + 89, + 46, + 93, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyF0A9Contracts11BodyEncoder_pycfU0_", + "count": 2, + "regions": [ + [ + 94, + 46, + 98, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 104, + 37, + 109, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFy0A013RouterRequestC_AE0I8ResponseCyyctKcfU2_", + "count": 2, + "regions": [ + [ + 111, + 39, + 115, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFy0A013RouterRequestC_AE0I8ResponseCyyctKcfU2_AC11CodableDateVyKXEfu_", + "count": 0, + "regions": [ + [ + 113, + 28, + 113, + 39, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFy0A013RouterRequestC_AE0I8ResponseCyyctKcfU2_AC11CodableDateVyKXEfu0_", + "count": 0, + "regions": [ + [ + 113, + 41, + 113, + 52, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 117, + 41, + 126, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 118, + 67, + 125, + 14, + 2, + 0, + 0, + 0 + ], + [ + 119, + 93, + 121, + 18, + 2, + 0, + 0, + 0 + ], + [ + 121, + 18, + 125, + 14, + 2, + 0, + 0, + 0 + ], + [ + 121, + 24, + 123, + 18, + 0, + 0, + 0, + 0 + ], + [ + 123, + 18, + 125, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 120, + 36, + 120, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 120, + 52, + 120, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 128, + 41, + 132, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC07testRawD5CoderyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 129, + 69, + 131, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyF", + "count": 1, + "regions": [ + [ + 136, + 35, + 230, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyF0A9Contracts04BodyH0_pycfU_", + "count": 4, + "regions": [ + [ + 139, + 47, + 139, + 72, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU0_", + "count": 6, + "regions": [ + [ + 141, + 37, + 146, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU1_", + "count": 4, + "regions": [ + [ + 148, + 39, + 153, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 155, + 41, + 170, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 156, + 67, + 169, + 14, + 2, + 0, + 0, + 0 + ], + [ + 160, + 17, + 165, + 18, + 2, + 0, + 0, + 0 + ], + [ + 165, + 18, + 169, + 14, + 2, + 0, + 0, + 0 + ], + [ + 165, + 24, + 167, + 18, + 0, + 0, + 0, + 0 + ], + [ + 167, + 18, + 169, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_10Foundation4DateVSgyKXEfu_", + "count": 2, + "regions": [ + [ + 164, + 36, + 164, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_10Foundation4DateVSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 164, + 50, + 164, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 172, + 41, + 181, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 173, + 67, + 180, + 14, + 2, + 0, + 0, + 0 + ], + [ + 174, + 93, + 176, + 18, + 2, + 0, + 0, + 0 + ], + [ + 176, + 18, + 180, + 14, + 2, + 0, + 0, + 0 + ], + [ + 176, + 24, + 178, + 18, + 0, + 0, + 0, + 0 + ], + [ + 178, + 18, + 180, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 175, + 36, + 175, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 175, + 52, + 175, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 185, + 41, + 200, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 186, + 67, + 199, + 14, + 2, + 0, + 0, + 0 + ], + [ + 190, + 17, + 195, + 18, + 2, + 0, + 0, + 0 + ], + [ + 195, + 18, + 199, + 14, + 2, + 0, + 0, + 0 + ], + [ + 195, + 24, + 197, + 18, + 0, + 0, + 0, + 0 + ], + [ + 197, + 18, + 199, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_10Foundation4DateVSgyKXEfu_", + "count": 2, + "regions": [ + [ + 194, + 36, + 194, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_10Foundation4DateVSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 194, + 50, + 194, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 202, + 41, + 211, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 203, + 69, + 210, + 14, + 2, + 0, + 0, + 0 + ], + [ + 204, + 93, + 206, + 18, + 2, + 0, + 0, + 0 + ], + [ + 206, + 18, + 210, + 14, + 2, + 0, + 0, + 0 + ], + [ + 206, + 24, + 208, + 18, + 0, + 0, + 0, + 0 + ], + [ + 208, + 18, + 210, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 205, + 36, + 205, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 205, + 52, + 205, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyF0A9Contracts04BodyH0_pycfU6_", + "count": 2, + "regions": [ + [ + 213, + 46, + 217, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU7_", + "count": 2, + "regions": [ + [ + 220, + 41, + 229, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 221, + 69, + 228, + 14, + 2, + 0, + 0, + 0 + ], + [ + 222, + 93, + 224, + 18, + 2, + 0, + 0, + 0 + ], + [ + 224, + 18, + 228, + 14, + 2, + 0, + 0, + 0 + ], + [ + 224, + 24, + 226, + 18, + 0, + 0, + 0, + 0 + ], + [ + 226, + 18, + 228, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 223, + 36, + 223, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests16TestCustomCodersC04testD12QueryEncoderyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 223, + 52, + 223, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestCustomCoders.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 21, + 88, + 29, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC17testMalformedJsonyyF", + "count": 1, + "regions": [ + [ + 31, + 30, + 58, + 6, + 1, + 0, + 0, + 0 + ], + [ + 45, + 12, + 48, + 10, + 1, + 0, + 0, + 0 + ], + [ + 48, + 18, + 57, + 10, + 1, + 0, + 0, + 0 + ], + [ + 49, + 60, + 51, + 14, + 1, + 0, + 0, + 0 + ], + [ + 51, + 14, + 57, + 10, + 1, + 0, + 0, + 0 + ], + [ + 51, + 20, + 56, + 14, + 0, + 0, + 0, + 0 + ], + [ + 56, + 14, + 57, + 10, + 1, + 0, + 0, + 0 + ], + [ + 57, + 10, + 58, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC17testMalformedJsonyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 50, + 27, + 50, + 111, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC17testMalformedJsonyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 50, + 113, + 50, + 175, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC22testMissingRequiredKeyyyF", + "count": 1, + "regions": [ + [ + 59, + 35, + 82, + 6, + 1, + 0, + 0, + 0 + ], + [ + 72, + 12, + 75, + 10, + 1, + 0, + 0, + 0 + ], + [ + 75, + 18, + 81, + 10, + 1, + 0, + 0, + 0 + ], + [ + 76, + 60, + 78, + 14, + 1, + 0, + 0, + 0 + ], + [ + 78, + 14, + 81, + 10, + 1, + 0, + 0, + 0 + ], + [ + 78, + 20, + 80, + 14, + 0, + 0, + 0, + 0 + ], + [ + 80, + 14, + 81, + 10, + 1, + 0, + 0, + 0 + ], + [ + 81, + 10, + 82, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC22testMissingRequiredKeyyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 77, + 27, + 77, + 119, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC22testMissingRequiredKeyyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 77, + 121, + 77, + 183, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC13testWrongTypeyyF", + "count": 1, + "regions": [ + [ + 83, + 26, + 105, + 6, + 1, + 0, + 0, + 0 + ], + [ + 95, + 12, + 98, + 10, + 1, + 0, + 0, + 0 + ], + [ + 98, + 18, + 104, + 10, + 1, + 0, + 0, + 0 + ], + [ + 99, + 60, + 101, + 14, + 1, + 0, + 0, + 0 + ], + [ + 101, + 14, + 104, + 10, + 1, + 0, + 0, + 0 + ], + [ + 101, + 20, + 103, + 14, + 0, + 0, + 0, + 0 + ], + [ + 103, + 14, + 104, + 10, + 1, + 0, + 0, + 0 + ], + [ + 104, + 10, + 105, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC13testWrongTypeyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 100, + 27, + 100, + 109, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC13testWrongTypeyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 100, + 111, + 100, + 173, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC16testMissingValueyyF", + "count": 1, + "regions": [ + [ + 107, + 29, + 131, + 6, + 1, + 0, + 0, + 0 + ], + [ + 120, + 12, + 123, + 10, + 1, + 0, + 0, + 0 + ], + [ + 123, + 18, + 129, + 10, + 1, + 0, + 0, + 0 + ], + [ + 124, + 60, + 126, + 14, + 1, + 0, + 0, + 0 + ], + [ + 126, + 14, + 129, + 10, + 1, + 0, + 0, + 0 + ], + [ + 126, + 20, + 128, + 14, + 0, + 0, + 0, + 0 + ], + [ + 128, + 14, + 129, + 10, + 1, + 0, + 0, + 0 + ], + [ + 129, + 10, + 131, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC16testMissingValueyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 125, + 27, + 125, + 126, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests26TestDecodingErrorExtensionC16testMissingValueyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 125, + 128, + 125, + 190, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestDecodingErrorExtension.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 32, + 72, + 38, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyF", + "count": 1, + "regions": [ + [ + 42, + 30, + 54, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 43, + 47, + 49, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 44, + 69, + 48, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 45, + 33, + 45, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 45, + 43, + 45, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 46, + 32, + 46, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 46, + 54, + 46, + 79, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 46, + 81, + 46, + 147, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 49, + 12, + 53, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU0_0A006RouterG0OyKXEfu_", + "count": 2, + "regions": [ + [ + 51, + 28, + 51, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU0_0A006RouterG0OyKXEfu0_", + "count": 2, + "regions": [ + [ + 51, + 36, + 51, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidMethodyyFySo17XCTestExpectationCcfU0_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 51, + 46, + 51, + 98, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyF", + "count": 1, + "regions": [ + [ + 56, + 32, + 64, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 57, + 35, + 63, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 58, + 68, + 62, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 59, + 33, + 59, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 59, + 43, + 59, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 60, + 32, + 60, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 60, + 54, + 60, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC19testInvalidEndpointyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 60, + 79, + 60, + 145, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidHeaderyyF", + "count": 1, + "regions": [ + [ + 66, + 30, + 76, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidHeaderyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 67, + 35, + 75, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidHeaderyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 68, + 65, + 72, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidHeaderyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 69, + 33, + 69, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidHeaderyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 69, + 43, + 69, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests10TestErrorsC17testInvalidHeaderyyFySo17XCTestExpectationCcfU_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 72, + 16, + 74, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestErrors.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 25, + 75, + 37, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyF", + "count": 1, + "regions": [ + [ + 39, + 40, + 44, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 41, + 24, + 41, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 41, + 52, + 41, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyF0A00dE0V08TopLevelE0OSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 42, + 24, + 42, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyF0A00dE0V08TopLevelE0OSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 42, + 53, + 42, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 43, + 24, + 43, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testAllTextdE7BuilderyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 43, + 48, + 43, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyF", + "count": 1, + "regions": [ + [ + 46, + 45, + 51, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 48, + 24, + 48, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 48, + 52, + 48, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyF0A00dE0V08TopLevelE0OSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 49, + 24, + 49, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyF0A00dE0V08TopLevelE0OSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 49, + 53, + 49, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 50, + 24, + 50, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testAllTextSlashdE7BuilderyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 50, + 48, + 50, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyF", + "count": 1, + "regions": [ + [ + 53, + 37, + 58, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 55, + 24, + 55, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 55, + 52, + 55, + 63, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyF0A00dE0V08TopLevelE0OSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 56, + 24, + 56, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyF0A00dE0V08TopLevelE0OSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 56, + 53, + 56, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 57, + 24, + 57, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC013testHTMLMediaE7BuilderyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 57, + 48, + 57, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyF", + "count": 1, + "regions": [ + [ + 60, + 37, + 65, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 62, + 24, + 62, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 62, + 52, + 62, + 63, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyF0A00dE0V08TopLevelE0OSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 63, + 24, + 63, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyF0A00dE0V08TopLevelE0OSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 63, + 53, + 63, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 64, + 24, + 64, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC04testD15CaseInsensitiveyyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 64, + 48, + 64, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC021testIncorrectTopLevelE0yyF", + "count": 1, + "regions": [ + [ + 67, + 38, + 69, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC021testIncorrectTopLevelE0yyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 68, + 22, + 68, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyF", + "count": 1, + "regions": [ + [ + 71, + 45, + 76, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 73, + 24, + 73, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 73, + 51, + 73, + 59, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyF0A00dE0V08TopLevelE0OyKXEfu1_", + "count": 1, + "regions": [ + [ + 74, + 24, + 74, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyF0A00dE0V08TopLevelE0OyKXEfu2_", + "count": 1, + "regions": [ + [ + 74, + 52, + 74, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 75, + 24, + 75, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC016testPartsAllTextdE7BuilderyyFSSyKXEfu4_", + "count": 1, + "regions": [ + [ + 75, + 47, + 75, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyF", + "count": 1, + "regions": [ + [ + 78, + 42, + 83, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 80, + 24, + 80, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 80, + 51, + 80, + 62, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyF0A00dE0V08TopLevelE0OyKXEfu1_", + "count": 1, + "regions": [ + [ + 81, + 24, + 81, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyF0A00dE0V08TopLevelE0OyKXEfu2_", + "count": 1, + "regions": [ + [ + 81, + 52, + 81, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 82, + 24, + 82, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC018testPartsHTMLMediaE7BuilderyyFSSyKXEfu4_", + "count": 1, + "regions": [ + [ + 82, + 47, + 82, + 53, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyF", + "count": 1, + "regions": [ + [ + 85, + 42, + 90, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 87, + 24, + 87, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 87, + 51, + 87, + 62, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyF0A00dE0V08TopLevelE0OyKXEfu1_", + "count": 1, + "regions": [ + [ + 88, + 24, + 88, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyF0A00dE0V08TopLevelE0OyKXEfu2_", + "count": 1, + "regions": [ + [ + 88, + 52, + 88, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 89, + 24, + 89, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testPartsD15CaseInsensitiveyyFSSyKXEfu4_", + "count": 1, + "regions": [ + [ + 89, + 47, + 89, + 53, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyF", + "count": 1, + "regions": [ + [ + 92, + 31, + 97, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 94, + 24, + 94, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 94, + 52, + 94, + 63, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyF0A00dE0V08TopLevelE0OSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 95, + 24, + 95, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyF0A00dE0V08TopLevelE0OSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 95, + 53, + 95, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyFSSSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 96, + 24, + 96, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC09testValiddE0yyFSSSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 96, + 48, + 96, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testInvaliddE0yyF", + "count": 1, + "regions": [ + [ + 99, + 33, + 101, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests13TestMediaTypeC011testInvaliddE0yyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 100, + 22, + 100, + 84, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMediaType.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 24, + 78, + 31, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyF", + "count": 1, + "regions": [ + [ + 35, + 21, + 52, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 36, + 47, + 41, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 37, + 67, + 40, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 38, + 32, + 38, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 38, + 54, + 38, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 38, + 73, + 38, + 119, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 41, + 12, + 46, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 42, + 72, + 45, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 43, + 36, + 43, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 43, + 58, + 43, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 43, + 77, + 43, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 46, + 12, + 51, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 47, + 62, + 50, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 48, + 36, + 48, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 48, + 58, + 48, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testPlusyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 48, + 83, + 48, + 127, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyF", + "count": 1, + "regions": [ + [ + 54, + 21, + 71, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 55, + 47, + 60, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 56, + 67, + 59, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 57, + 36, + 57, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 57, + 58, + 57, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 57, + 77, + 57, + 123, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 60, + 12, + 65, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 61, + 72, + 64, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 62, + 36, + 62, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 62, + 58, + 62, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 62, + 77, + 62, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 65, + 12, + 70, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 66, + 62, + 69, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 67, + 36, + 67, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 67, + 58, + 67, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC8testStaryyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 67, + 77, + 67, + 122, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyF", + "count": 1, + "regions": [ + [ + 73, + 25, + 90, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 74, + 47, + 79, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 75, + 71, + 78, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 76, + 36, + 76, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 76, + 58, + 76, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 76, + 77, + 76, + 127, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 79, + 12, + 84, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 80, + 80, + 83, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 81, + 36, + 81, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 81, + 58, + 81, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 81, + 83, + 81, + 134, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 84, + 12, + 89, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 85, + 62, + 88, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 86, + 36, + 86, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 86, + 58, + 86, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testQuestionyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 86, + 77, + 86, + 126, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyF", + "count": 1, + "regions": [ + [ + 92, + 25, + 109, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 93, + 47, + 98, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 94, + 76, + 97, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 95, + 36, + 95, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 95, + 58, + 95, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 95, + 77, + 95, + 126, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 98, + 12, + 103, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 99, + 77, + 102, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 100, + 36, + 100, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 100, + 58, + 100, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 100, + 77, + 100, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 103, + 12, + 108, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 104, + 103, + 107, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 105, + 36, + 105, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 105, + 58, + 105, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC12testCombinedyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 105, + 77, + 105, + 153, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 114, + 34, + 120, + 10, + 4, + 0, + 0, + 0 + ], + [ + 115, + 16, + 117, + 14, + 4, + 0, + 0, + 0 + ], + [ + 117, + 21, + 117, + 23, + 0, + 0, + 0, + 0 + ], + [ + 117, + 23, + 120, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU0_", + "count": 6, + "regions": [ + [ + 122, + 34, + 127, + 10, + 6, + 0, + 0, + 0 + ], + [ + 123, + 16, + 125, + 14, + 6, + 0, + 0, + 0 + ], + [ + 125, + 21, + 125, + 23, + 0, + 0, + 0, + 0 + ], + [ + 125, + 23, + 127, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU1_", + "count": 4, + "regions": [ + [ + 129, + 38, + 135, + 10, + 4, + 0, + 0, + 0 + ], + [ + 130, + 16, + 132, + 14, + 4, + 0, + 0, + 0 + ], + [ + 132, + 21, + 132, + 23, + 0, + 0, + 0, + 0 + ], + [ + 132, + 23, + 135, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests16TestMultiplicityC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU2_", + "count": 6, + "regions": [ + [ + 137, + 56, + 143, + 10, + 6, + 0, + 0, + 0 + ], + [ + 138, + 16, + 140, + 14, + 6, + 0, + 0, + 0 + ], + [ + 140, + 21, + 140, + 23, + 0, + 0, + 0, + 0 + ], + [ + 140, + 23, + 143, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestMultiplicity.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 23, + 83, + 43, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC5parse__7combine0A00dE0VSgs6UInt64V_SSSbtF", + "count": 13, + "regions": [ + [ + 48, + 94, + 50, + 6, + 13, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC16assertParseError__5error7combine4file4lineys6UInt64V_SS0A00dE0V0I0OSbs12StaticStringVSutF", + "count": 7, + "regions": [ + [ + 52, + 164, + 61, + 6, + 7, + 0, + 0, + 0 + ], + [ + 53, + 12, + 56, + 10, + 7, + 0, + 0, + 0 + ], + [ + 56, + 46, + 58, + 10, + 7, + 0, + 0, + 0 + ], + [ + 58, + 25, + 60, + 10, + 0, + 0, + 0, + 0 + ], + [ + 60, + 10, + 61, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC16assertParseError__5error7combine4file4lineys6UInt64V_SS0A00dE0V0I0OSbs12StaticStringVSutFAOyKXEfu_", + "count": 7, + "regions": [ + [ + 57, + 28, + 57, + 29, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC16assertParseError__5error7combine4file4lineys6UInt64V_SS0A00dE0V0I0OSbs12StaticStringVSutFAOyKXEfu0_", + "count": 7, + "regions": [ + [ + 57, + 31, + 57, + 36, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC011testIsBytesdE0yyF", + "count": 1, + "regions": [ + [ + 63, + 35, + 69, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC011testIsBytesdE0yyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 64, + 23, + 64, + 66, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC011testIsBytesdE0yyFSbyKXEfu0_", + "count": 1, + "regions": [ + [ + 65, + 23, + 65, + 65, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC011testIsBytesdE0yyFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 66, + 23, + 66, + 65, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC011testIsBytesdE0yyFSbyKXEfu2_", + "count": 1, + "regions": [ + [ + 67, + 24, + 67, + 63, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC011testIsBytesdE0yyFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 68, + 24, + 68, + 69, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC024testReturnNilOnMalformedE0yyF", + "count": 1, + "regions": [ + [ + 71, + 43, + 73, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC28testReturnNilOnInvalidRangesyyF", + "count": 1, + "regions": [ + [ + 75, + 41, + 79, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC37testReturnNilOnInvalidNonDigitsRangesyyF", + "count": 1, + "regions": [ + [ + 81, + 50, + 85, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyF", + "count": 1, + "regions": [ + [ + 87, + 28, + 92, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 89, + 24, + 89, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 89, + 37, + 89, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 90, + 24, + 90, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 90, + 45, + 90, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 91, + 24, + 91, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC15testParseStringyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 91, + 42, + 91, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyF", + "count": 1, + "regions": [ + [ + 94, + 35, + 99, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 96, + 24, + 96, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 96, + 37, + 96, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 97, + 24, + 97, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 97, + 45, + 97, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 98, + 24, + 98, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC22testShouldCapEndAtSizeyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 98, + 42, + 98, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyF", + "count": 1, + "regions": [ + [ + 101, + 40, + 106, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 103, + 24, + 103, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 103, + 37, + 103, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 104, + 24, + 104, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 104, + 45, + 104, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 105, + 24, + 105, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC27testShouldParseNormalStringyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 105, + 42, + 105, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyF", + "count": 1, + "regions": [ + [ + 108, + 45, + 113, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 110, + 24, + 110, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 110, + 37, + 110, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 111, + 24, + 111, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 111, + 45, + 111, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 112, + 24, + 112, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC32testShouldParseStringWithOnlyEndyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 112, + 42, + 112, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyF", + "count": 1, + "regions": [ + [ + 115, + 47, + 120, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 117, + 24, + 117, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 117, + 37, + 117, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 118, + 24, + 118, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 118, + 45, + 118, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 119, + 24, + 119, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldParseStringWithOnlyStartyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 119, + 42, + 119, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyF", + "count": 1, + "regions": [ + [ + 122, + 54, + 127, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 124, + 24, + 124, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 124, + 37, + 124, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 125, + 24, + 125, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 125, + 45, + 125, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 126, + 24, + 126, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC41testShouldParseWithStartBytesEqualtToZeroyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 126, + 42, + 126, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyF", + "count": 1, + "regions": [ + [ + 129, + 56, + 134, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 131, + 24, + 131, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 131, + 37, + 131, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 132, + 24, + 132, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 132, + 45, + 132, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 133, + 24, + 133, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC039testShouldParseStringWithBytesEqualZeroN0yyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 133, + 42, + 133, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyF", + "count": 1, + "regions": [ + [ + 136, + 51, + 141, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 138, + 24, + 138, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 138, + 37, + 138, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 139, + 24, + 139, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 139, + 45, + 139, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 140, + 24, + 140, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC38testShouldParseStringAskingForLastByteyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 140, + 42, + 140, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyF", + "count": 1, + "regions": [ + [ + 143, + 52, + 150, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 145, + 24, + 145, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 145, + 37, + 145, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 146, + 24, + 146, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 146, + 45, + 146, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 147, + 24, + 147, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 147, + 42, + 147, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSnys6UInt64VGSgyKXEfu5_", + "count": 1, + "regions": [ + [ + 148, + 24, + 148, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSnys6UInt64VGSgyKXEfu6_", + "count": 1, + "regions": [ + [ + 148, + 42, + 148, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSnys6UInt64VGSgyKXEfu7_", + "count": 1, + "regions": [ + [ + 149, + 24, + 149, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC39testShouldParseStringWithMultipleRangesyyFSnys6UInt64VGSgyKXEfu8_", + "count": 1, + "regions": [ + [ + 149, + 42, + 149, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyF", + "count": 1, + "regions": [ + [ + 152, + 55, + 157, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 154, + 24, + 154, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 154, + 37, + 154, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 155, + 24, + 155, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 155, + 45, + 155, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 156, + 24, + 156, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC42testShouldParseStringWithSomeInvalidRangesyyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 156, + 42, + 156, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyF", + "count": 1, + "regions": [ + [ + 159, + 41, + 164, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyFSSSgyKXEfu_", + "count": 1, + "regions": [ + [ + 161, + 24, + 161, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyFSSSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 161, + 37, + 161, + 44, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 162, + 24, + 162, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyFSiSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 162, + 45, + 162, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyFSnys6UInt64VGSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 163, + 24, + 163, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC023testShouldParseNonBytesD0yyFSnys6UInt64VGSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 163, + 42, + 163, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyF", + "count": 1, + "regions": [ + [ + 166, + 47, + 172, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 168, + 24, + 168, + 34, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 168, + 36, + 168, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSiyKXEfu1_", + "count": 1, + "regions": [ + [ + 169, + 24, + 169, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSiyKXEfu2_", + "count": 1, + "regions": [ + [ + 169, + 44, + 169, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSnys6UInt64VGyKXEfu3_", + "count": 1, + "regions": [ + [ + 170, + 24, + 170, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSnys6UInt64VGyKXEfu4_", + "count": 1, + "regions": [ + [ + 170, + 41, + 170, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSnys6UInt64VGyKXEfu5_", + "count": 1, + "regions": [ + [ + 171, + 24, + 171, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC34testShouldCombineOverlappingRangesyyFSnys6UInt64VGyKXEfu6_", + "count": 1, + "regions": [ + [ + 171, + 41, + 171, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyF", + "count": 1, + "regions": [ + [ + 174, + 69, + 181, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 176, + 24, + 176, + 34, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 176, + 36, + 176, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSiyKXEfu1_", + "count": 1, + "regions": [ + [ + 177, + 24, + 177, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSiyKXEfu2_", + "count": 1, + "regions": [ + [ + 177, + 44, + 177, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSnys6UInt64VGyKXEfu3_", + "count": 1, + "regions": [ + [ + 178, + 24, + 178, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSnys6UInt64VGyKXEfu4_", + "count": 1, + "regions": [ + [ + 178, + 41, + 178, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSnys6UInt64VGyKXEfu5_", + "count": 1, + "regions": [ + [ + 179, + 24, + 179, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSnys6UInt64VGyKXEfu6_", + "count": 1, + "regions": [ + [ + 179, + 41, + 179, + 49, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSnys6UInt64VGyKXEfu7_", + "count": 1, + "regions": [ + [ + 180, + 24, + 180, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests21TestRangeHeaderParserC56testShouldCombineOverlappingRangesAndRetainOriginalOrderyyFSnys6UInt64VGyKXEfu8_", + "count": 1, + "regions": [ + [ + 180, + 41, + 180, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeader.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC5setUpyyF", + "count": 3, + "regions": [ + [ + 28, + 27, + 37, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC5setUpyyFSbSJXEfU_", + "count": 187, + "regions": [ + [ + 31, + 56, + 33, + 10, + 187, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC5setUpyyFSbSJXEfU_SbyKXEfu_", + "count": 175, + "regions": [ + [ + 32, + 35, + 32, + 46, + 175, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC8tearDownyyF", + "count": 3, + "regions": [ + [ + 39, + 30, + 45, + 6, + 3, + 0, + 0, + 0 + ], + [ + 42, + 65, + 44, + 10, + 3, + 0, + 0, + 0 + ], + [ + 44, + 10, + 45, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC16assertFileExists4file4lineys12StaticStringV_SutF", + "count": 2, + "regions": [ + [ + 47, + 75, + 50, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC16assertFileExists4file4lineys12StaticStringV_SutFSbyKXEfu_", + "count": 2, + "regions": [ + [ + 49, + 23, + 49, + 29, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC16assertFileExists4file4lineys12StaticStringV_SutFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 49, + 31, + 49, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF25ReadWithErrorFileNotFoundyyF", + "count": 1, + "regions": [ + [ + 52, + 53, + 55, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF25ReadWithErrorFileNotFoundyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 54, + 22, + 54, + 26, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF4ReadyyF", + "count": 1, + "regions": [ + [ + 57, + 32, + 62, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF4ReadyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 60, + 25, + 60, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF4ReadyyFSiSgyKXEfu0_", + "count": 1, + "regions": [ + [ + 61, + 24, + 61, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF4ReadyyFSiSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 61, + 37, + 61, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyF", + "count": 1, + "regions": [ + [ + 64, + 42, + 72, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 67, + 25, + 67, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyFSiyKXEfu0_", + "count": 0, + "regions": [ + [ + 69, + 63, + 69, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 70, + 23, + 70, + 36, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 70, + 38, + 70, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyFSiSgyKXEfu3_", + "count": 1, + "regions": [ + [ + 71, + 24, + 71, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests29TestRangeHeaderDataExtensionsC011testPartialF14ReadEntireFileyyFSiSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 71, + 37, + 71, + 46, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRangeHeaderDataExtensions.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 26, + 74, + 35, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyF", + "count": 1, + "regions": [ + [ + 39, + 32, + 67, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 43, + 33, + 50, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 45, + 29, + 45, + 38, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 45, + 40, + 45, + 66, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyKXEfu1_", + "count": 2, + "regions": [ + [ + 46, + 28, + 46, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyKXEfu2_", + "count": 2, + "regions": [ + [ + 46, + 46, + 46, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 46, + 59, + 46, + 128, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SiyKXEfu4_", + "count": 2, + "regions": [ + [ + 47, + 28, + 47, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SiyKXEfu5_", + "count": 2, + "regions": [ + [ + 47, + 42, + 47, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 47, + 53, + 47, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SbyKXEfu7_", + "count": 2, + "regions": [ + [ + 48, + 27, + 48, + 97, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SbyKXEfu7_SbyKXEfu8_", + "count": 0, + "regions": [ + [ + 48, + 67, + 48, + 97, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 48, + 99, + 48, + 191, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 51, + 35, + 55, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 53, + 26, + 53, + 35, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 53, + 37, + 53, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 56, + 20, + 59, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 61, + 35, + 66, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 62, + 71, + 65, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 63, + 33, + 63, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testRouteParametersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 63, + 43, + 63, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyF", + "count": 1, + "regions": [ + [ + 69, + 32, + 155, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 80, + 28, + 96, + 10, + 2, + 0, + 0, + 0 + ], + [ + 82, + 87, + 85, + 14, + 0, + 0, + 0, + 0 + ], + [ + 85, + 14, + 96, + 10, + 2, + 0, + 0, + 0 + ], + [ + 88, + 53, + 94, + 14, + 6, + 0, + 0, + 0 + ], + [ + 89, + 65, + 92, + 18, + 0, + 0, + 0, + 0 + ], + [ + 92, + 18, + 94, + 14, + 6, + 0, + 0, + 0 + ], + [ + 94, + 14, + 96, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 86, + 23, + 86, + 118, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SbyKXEfu_SbyKXEfu0_", + "count": 2, + "regions": [ + [ + 86, + 56, + 86, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SbyKXEfu_SbyKXEfu1_", + "count": 2, + "regions": [ + [ + 86, + 89, + 86, + 118, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SiyKXEfu2_", + "count": 2, + "regions": [ + [ + 87, + 28, + 87, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SiyKXEfu3_", + "count": 2, + "regions": [ + [ + 87, + 55, + 87, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 87, + 86, + 87, + 126, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyKXEfu5_", + "count": 6, + "regions": [ + [ + 93, + 32, + 93, + 33, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU_SSyKXEfu6_", + "count": 6, + "regions": [ + [ + 93, + 35, + 93, + 40, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 105, + 28, + 121, + 10, + 2, + 0, + 0, + 0 + ], + [ + 107, + 88, + 110, + 14, + 0, + 0, + 0, + 0 + ], + [ + 110, + 14, + 121, + 10, + 2, + 0, + 0, + 0 + ], + [ + 113, + 53, + 119, + 14, + 6, + 0, + 0, + 0 + ], + [ + 114, + 65, + 117, + 18, + 0, + 0, + 0, + 0 + ], + [ + 117, + 18, + 119, + 14, + 6, + 0, + 0, + 0 + ], + [ + 119, + 14, + 121, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 111, + 23, + 111, + 144, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SbyKXEfu_SbyKXEfu0_", + "count": 2, + "regions": [ + [ + 111, + 56, + 111, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SbyKXEfu_SbyKXEfu1_", + "count": 2, + "regions": [ + [ + 111, + 89, + 111, + 144, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SiyKXEfu2_", + "count": 2, + "regions": [ + [ + 112, + 28, + 112, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SiyKXEfu3_", + "count": 2, + "regions": [ + [ + 112, + 55, + 112, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 112, + 86, + 112, + 126, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SSyKXEfu5_", + "count": 6, + "regions": [ + [ + 118, + 32, + 118, + 33, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_SSyKXEfu6_", + "count": 6, + "regions": [ + [ + 118, + 35, + 118, + 40, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 125, + 28, + 136, + 10, + 2, + 0, + 0, + 0 + ], + [ + 128, + 53, + 134, + 14, + 6, + 0, + 0, + 0 + ], + [ + 129, + 76, + 132, + 18, + 0, + 0, + 0, + 0 + ], + [ + 132, + 18, + 134, + 14, + 6, + 0, + 0, + 0 + ], + [ + 134, + 14, + 136, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 127, + 28, + 127, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 127, + 55, + 127, + 95, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 127, + 97, + 127, + 137, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_SaySSGyKXEfu2_", + "count": 6, + "regions": [ + [ + 133, + 32, + 133, + 33, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU1_SaySSGyKXEfu3_", + "count": 6, + "regions": [ + [ + 133, + 35, + 133, + 40, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU2_", + "count": 4, + "regions": [ + [ + 138, + 20, + 141, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 143, + 47, + 148, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 144, + 130, + 147, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 145, + 33, + 145, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 145, + 43, + 145, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 149, + 9, + 154, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 150, + 100, + 153, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 151, + 33, + 151, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC19testQueryParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 151, + 43, + 151, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF", + "count": 2, + "regions": [ + [ + 157, + 50, + 187, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFy0A013RouterRequestC_AG0O8ResponseCyyctcfU_", + "count": 4, + "regions": [ + [ + 173, + 33, + 179, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFy0A013RouterRequestC_AG0O8ResponseCyyctcfU_ypSgyKXEfu_", + "count": 4, + "regions": [ + [ + 175, + 29, + 175, + 31, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFy0A013RouterRequestC_AG0O8ResponseCyyctcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 175, + 33, + 175, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFy0A013RouterRequestC_AG0O8ResponseCyyctcfU_SSSgyKXEfu1_", + "count": 4, + "regions": [ + [ + 176, + 28, + 176, + 42, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFy0A013RouterRequestC_AG0O8ResponseCyyctcfU_SSSgyKXEfu2_", + "count": 4, + "regions": [ + [ + 176, + 44, + 176, + 46, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFy0A013RouterRequestC_AG0O8ResponseCyyctcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 176, + 48, + 176, + 100, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFySo17XCTestExpectationCcfU0_", + "count": 4, + "regions": [ + [ + 181, + 35, + 186, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 4, + "regions": [ + [ + 182, + 62, + 185, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 4, + "regions": [ + [ + 183, + 33, + 183, + 41, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 183, + 43, + 183, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testCustomMiddlewareURLParameteryyF", + "count": 1, + "regions": [ + [ + 189, + 45, + 191, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC46testCustomMiddlewareURLParameterWithQueryParamyyF", + "count": 1, + "regions": [ + [ + 193, + 59, + 195, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_", + "count": 0, + "regions": [ + [ + 200, + 33, + 209, + 10, + 0, + 0, + 0, + 0 + ], + [ + 205, + 16, + 207, + 14, + 0, + 0, + 0, + 0 + ], + [ + 207, + 21, + 207, + 23, + 0, + 0, + 0, + 0 + ], + [ + 207, + 23, + 209, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_SSyKXEfu_", + "count": 0, + "regions": [ + [ + 202, + 50, + 202, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_SSyKXEfu0_", + "count": 0, + "regions": [ + [ + 203, + 53, + 203, + 60, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_So8NSStringCyKXEfu1_", + "count": 0, + "regions": [ + [ + 204, + 61, + 204, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyF", + "count": 1, + "regions": [ + [ + 214, + 27, + 288, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU_", + "count": 2, + "regions": [ + [ + 217, + 34, + 225, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 218, + 29, + 218, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 219, + 28, + 219, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 219, + 56, + 219, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 220, + 26, + 220, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU0_", + "count": 4, + "regions": [ + [ + 227, + 34, + 235, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU0_ypSgyKXEfu_", + "count": 4, + "regions": [ + [ + 228, + 29, + 228, + 34, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU0_SSSgyKXEfu0_", + "count": 4, + "regions": [ + [ + 229, + 28, + 229, + 52, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU0_SSSgyKXEfu1_", + "count": 4, + "regions": [ + [ + 229, + 54, + 229, + 59, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCSSyyctcfU0_ypSgyKXEfu2_", + "count": 4, + "regions": [ + [ + 230, + 26, + 230, + 53, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 238, + 39, + 243, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU1_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 239, + 29, + 239, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU1_ypSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 240, + 29, + 240, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU2_", + "count": 2, + "regions": [ + [ + 248, + 37, + 253, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU2_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 249, + 29, + 249, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU2_ypSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 250, + 29, + 250, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU3_", + "count": 2, + "regions": [ + [ + 255, + 38, + 259, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU3_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 256, + 29, + 256, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 261, + 47, + 270, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 262, + 77, + 269, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 263, + 33, + 263, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 263, + 43, + 263, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 264, + 33, + 264, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 265, + 33, + 265, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 266, + 32, + 266, + 64, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 266, + 66, + 266, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 267, + 32, + 267, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 267, + 69, + 267, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 270, + 12, + 287, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 271, + 78, + 286, + 14, + 2, + 0, + 0, + 0 + ], + [ + 277, + 20, + 281, + 18, + 2, + 0, + 0, + 0 + ], + [ + 281, + 25, + 283, + 18, + 0, + 0, + 0, + 0 + ], + [ + 283, + 18, + 286, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 272, + 33, + 272, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 272, + 43, + 272, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 273, + 30, + 273, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 274, + 33, + 274, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 275, + 32, + 275, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 275, + 69, + 275, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 279, + 37, + 279, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 280, + 36, + 280, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC14testParametersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 280, + 42, + 280, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyF", + "count": 1, + "regions": [ + [ + 290, + 45, + 315, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCSSyyctcfU_", + "count": 2, + "regions": [ + [ + 294, + 13, + 297, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCSSyyctcfU0_", + "count": 2, + "regions": [ + [ + 298, + 13, + 301, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 303, + 33, + 308, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCyyctcfU1_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 305, + 27, + 305, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCyyctcfU1_SbyKXEfu_SbyKXEfu0_", + "count": 0, + "regions": [ + [ + 305, + 68, + 305, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCyyctcfU1_SbyKXEfu1_", + "count": 2, + "regions": [ + [ + 306, + 27, + 306, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFy0A013RouterRequestC_AE0J8ResponseCyyctcfU1_SbyKXEfu1_SbyKXEfu2_", + "count": 0, + "regions": [ + [ + 306, + 68, + 306, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 310, + 35, + 314, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC32testOneParameterMultipleHandlersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 311, + 69, + 313, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyF", + "count": 1, + "regions": [ + [ + 317, + 51, + 367, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCSSyyctcfU_", + "count": 2, + "regions": [ + [ + 321, + 13, + 324, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCSSyyctcfU0_", + "count": 2, + "regions": [ + [ + 325, + 13, + 328, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCSSyyctcfU1_", + "count": 2, + "regions": [ + [ + 331, + 13, + 334, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCSSyyctcfU2_", + "count": 2, + "regions": [ + [ + 335, + 13, + 338, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_", + "count": 2, + "regions": [ + [ + 340, + 33, + 347, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 342, + 27, + 342, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_SbyKXEfu_SbyKXEfu0_", + "count": 0, + "regions": [ + [ + 342, + 68, + 342, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_SbyKXEfu1_", + "count": 2, + "regions": [ + [ + 343, + 27, + 343, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_SbyKXEfu1_SbyKXEfu2_", + "count": 0, + "regions": [ + [ + 343, + 68, + 343, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_ypSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 344, + 26, + 344, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU3_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 345, + 26, + 345, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_", + "count": 2, + "regions": [ + [ + 349, + 35, + 356, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 351, + 27, + 351, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_SbyKXEfu_SbyKXEfu0_", + "count": 0, + "regions": [ + [ + 351, + 68, + 351, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_SbyKXEfu1_", + "count": 2, + "regions": [ + [ + 352, + 27, + 352, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_SbyKXEfu1_SbyKXEfu2_", + "count": 0, + "regions": [ + [ + 352, + 68, + 352, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_ypSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 353, + 26, + 353, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFy0A013RouterRequestC_AE0I8ResponseCyyctcfU4_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 354, + 26, + 354, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 358, + 47, + 362, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 359, + 69, + 361, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFySo17XCTestExpectationCcfU6_", + "count": 2, + "regions": [ + [ + 362, + 13, + 366, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC022testMultipleParametersF8HandlersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 363, + 68, + 365, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyF", + "count": 1, + "regions": [ + [ + 369, + 30, + 426, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFy0A013RouterRequestC_AE0H8ResponseCSSyyctKcfU_", + "count": 4, + "regions": [ + [ + 372, + 32, + 383, + 10, + 4, + 0, + 0, + 0 + ], + [ + 376, + 42, + 379, + 14, + 2, + 0, + 0, + 0 + ], + [ + 379, + 14, + 383, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFy0A013RouterRequestC_AE0H8ResponseCSSyyctKcfU_ypSgyKXEfu_", + "count": 4, + "regions": [ + [ + 373, + 29, + 373, + 34, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFy0A013RouterRequestC_AE0H8ResponseCSSyyctKcfU_SSSgyKXEfu0_", + "count": 4, + "regions": [ + [ + 374, + 28, + 374, + 52, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFy0A013RouterRequestC_AE0H8ResponseCSSyyctKcfU_SSSgyKXEfu1_", + "count": 4, + "regions": [ + [ + 374, + 54, + 374, + 59, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 386, + 39, + 392, + 10, + 2, + 0, + 0, + 0 + ], + [ + 388, + 50, + 390, + 14, + 2, + 0, + 0, + 0 + ], + [ + 390, + 14, + 392, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFy0A013RouterRequestC_AE0H8ResponseCyyctcfU0_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 387, + 29, + 387, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 394, + 47, + 410, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 395, + 77, + 409, + 14, + 2, + 0, + 0, + 0 + ], + [ + 400, + 20, + 404, + 18, + 2, + 0, + 0, + 0 + ], + [ + 404, + 25, + 406, + 18, + 0, + 0, + 0, + 0 + ], + [ + 406, + 18, + 409, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 396, + 33, + 396, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 396, + 43, + 396, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 397, + 33, + 397, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 398, + 32, + 398, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 398, + 69, + 398, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 402, + 37, + 402, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 403, + 36, + 403, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 403, + 42, + 403, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 410, + 12, + 425, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 411, + 76, + 424, + 14, + 2, + 0, + 0, + 0 + ], + [ + 416, + 20, + 419, + 18, + 2, + 0, + 0, + 0 + ], + [ + 419, + 25, + 421, + 18, + 0, + 0, + 0, + 0 + ], + [ + 421, + 18, + 424, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 412, + 33, + 412, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 412, + 43, + 412, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 413, + 30, + 413, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 414, + 32, + 414, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 414, + 54, + 414, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC17testParameterExityyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 418, + 34, + 418, + 38, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF06CustomF0L_C6handle7request8response4nexty0A013RouterRequestC_AM0T8ResponseCyyctF", + "count": 4, + "regions": [ + [ + 161, + 103, + 167, + 14, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF06CustomF0L_C6handle7request8response4nexty0A013RouterRequestC_AM0T8ResponseCyyctFypSgyKXEfu_", + "count": 4, + "regions": [ + [ + 163, + 33, + 163, + 35, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF06CustomF0L_C6handle7request8response4nexty0A013RouterRequestC_AM0T8ResponseCyyctFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 163, + 37, + 163, + 86, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF06CustomF0L_C6handle7request8response4nexty0A013RouterRequestC_AM0T8ResponseCyyctFSSSgyKXEfu1_", + "count": 4, + "regions": [ + [ + 164, + 32, + 164, + 46, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF06CustomF0L_C6handle7request8response4nexty0A013RouterRequestC_AM0T8ResponseCyyctFSSSgyKXEfu2_", + "count": 4, + "regions": [ + [ + 164, + 48, + 164, + 50, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestRequestsC013runMiddlewareC033_684E82422F692C8738E06A184A5AE988LL4pathySS_tF06CustomF0L_C6handle7request8response4nexty0A013RouterRequestC_AM0T8ResponseCyyctFSSyXEfu3_", + "count": 0, + "regions": [ + [ + 164, + 52, + 164, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRequests.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 31, + 74, + 69, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "__ntd_SomeJSON_line:71:5", + "count": 29, + "regions": [ + [ + 74, + 38, + 76, + 10, + 29, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8SomeJSONC2eeoiySbAE_AEtFZ", + "count": 10, + "regions": [ + [ + 78, + 62, + 80, + 10, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyF", + "count": 1, + "regions": [ + [ + 89, + 31, + 105, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 90, + 32, + 104, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 91, + 64, + 103, + 14, + 2, + 0, + 0, + 0 + ], + [ + 96, + 20, + 99, + 18, + 2, + 0, + 0, + 0 + ], + [ + 99, + 25, + 101, + 18, + 0, + 0, + 0, + 0 + ], + [ + 101, + 18, + 103, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 92, + 33, + 92, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 92, + 43, + 92, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 93, + 32, + 93, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 93, + 54, + 93, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 93, + 73, + 93, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 94, + 33, + 94, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 94, + 60, + 94, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 98, + 36, + 98, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC010testSimpleD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 98, + 42, + 98, + 104, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyF", + "count": 1, + "regions": [ + [ + 107, + 42, + 122, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 108, + 35, + 121, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 109, + 74, + 120, + 14, + 2, + 0, + 0, + 0 + ], + [ + 112, + 20, + 116, + 18, + 2, + 0, + 0, + 0 + ], + [ + 116, + 25, + 118, + 18, + 0, + 0, + 0, + 0 + ], + [ + 118, + 18, + 120, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 110, + 32, + 110, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 110, + 54, + 110, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 110, + 73, + 110, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SiSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 115, + 36, + 115, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SiSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 115, + 42, + 115, + 43, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC021testOptionalStringNilD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 115, + 45, + 115, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyF", + "count": 1, + "regions": [ + [ + 124, + 39, + 138, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 125, + 35, + 137, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 126, + 77, + 136, + 14, + 2, + 0, + 0, + 0 + ], + [ + 129, + 20, + 132, + 18, + 2, + 0, + 0, + 0 + ], + [ + 132, + 25, + 134, + 18, + 0, + 0, + 0, + 0 + ], + [ + 134, + 18, + 136, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 127, + 32, + 127, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 127, + 54, + 127, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 127, + 73, + 127, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 131, + 36, + 131, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC018testOptionalStringD0yyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 131, + 42, + 131, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyF", + "count": 1, + "regions": [ + [ + 140, + 25, + 161, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 141, + 48, + 160, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 145, + 98, + 159, + 14, + 2, + 0, + 0, + 0 + ], + [ + 149, + 20, + 154, + 18, + 2, + 0, + 0, + 0 + ], + [ + 154, + 25, + 156, + 18, + 0, + 0, + 0, + 0 + ], + [ + 156, + 18, + 159, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 146, + 33, + 146, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 146, + 43, + 146, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 147, + 32, + 147, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 147, + 54, + 147, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 147, + 73, + 147, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SiSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 152, + 36, + 152, + 42, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SiSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 152, + 44, + 152, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 152, + 51, + 152, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_10Foundation4DataVyKXEfu7_", + "count": 2, + "regions": [ + [ + 153, + 36, + 153, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_10Foundation4DataVyKXEfu8_", + "count": 2, + "regions": [ + [ + 153, + 42, + 153, + 78, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testLargeGetyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 153, + 80, + 153, + 124, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyF", + "count": 1, + "regions": [ + [ + 163, + 26, + 186, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 164, + 48, + 185, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 168, + 71, + 182, + 14, + 2, + 0, + 0, + 0 + ], + [ + 172, + 20, + 177, + 18, + 2, + 0, + 0, + 0 + ], + [ + 177, + 25, + 179, + 18, + 0, + 0, + 0, + 0 + ], + [ + 179, + 18, + 182, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 169, + 33, + 169, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 169, + 43, + 169, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 170, + 32, + 170, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 170, + 54, + 170, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 170, + 73, + 170, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SiSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 175, + 36, + 175, + 42, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SiSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 175, + 44, + 175, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 175, + 51, + 175, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_10Foundation4DataVyKXEfu7_", + "count": 2, + "regions": [ + [ + 176, + 36, + 176, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_10Foundation4DataVyKXEfu8_", + "count": 2, + "regions": [ + [ + 176, + 42, + 176, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 176, + 52, + 176, + 94, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLargePostyyFySo17XCTestExpectationCcfU_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 182, + 33, + 184, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyF", + "count": 1, + "regions": [ + [ + 188, + 36, + 202, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 189, + 35, + 201, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 190, + 71, + 200, + 14, + 2, + 0, + 0, + 0 + ], + [ + 193, + 20, + 196, + 18, + 2, + 0, + 0, + 0 + ], + [ + 196, + 25, + 198, + 18, + 0, + 0, + 0, + 0 + ], + [ + 198, + 18, + 200, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 191, + 32, + 191, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 191, + 54, + 191, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 191, + 73, + 191, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 192, + 33, + 192, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 192, + 60, + 192, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 195, + 36, + 195, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC04testD11NoEndOrNextyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 195, + 42, + 195, + 107, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyF", + "count": 1, + "regions": [ + [ + 204, + 29, + 218, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 205, + 35, + 217, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 206, + 72, + 216, + 14, + 2, + 0, + 0, + 0 + ], + [ + 209, + 20, + 212, + 18, + 2, + 0, + 0, + 0 + ], + [ + 212, + 25, + 214, + 18, + 0, + 0, + 0, + 0 + ], + [ + 214, + 18, + 216, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 207, + 32, + 207, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 207, + 54, + 207, + 87, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 207, + 89, + 207, + 155, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 208, + 33, + 208, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 208, + 60, + 208, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 211, + 34, + 211, + 38, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testEmptyHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 211, + 40, + 211, + 88, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyF", + "count": 1, + "regions": [ + [ + 220, + 28, + 238, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 221, + 32, + 237, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 222, + 70, + 233, + 14, + 2, + 0, + 0, + 0 + ], + [ + 226, + 20, + 229, + 18, + 2, + 0, + 0, + 0 + ], + [ + 229, + 25, + 231, + 18, + 0, + 0, + 0, + 0 + ], + [ + 231, + 18, + 233, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 223, + 33, + 223, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 223, + 43, + 223, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 225, + 33, + 225, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu2_", + "count": 0, + "regions": [ + [ + 225, + 60, + 225, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 228, + 36, + 228, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 228, + 42, + 228, + 131, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testPostRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientG0CcfU0_", + "count": 2, + "regions": [ + [ + 233, + 16, + 236, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyF", + "count": 1, + "regions": [ + [ + 240, + 38, + 256, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 241, + 35, + 255, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 242, + 77, + 251, + 14, + 2, + 0, + 0, + 0 + ], + [ + 244, + 20, + 247, + 18, + 2, + 0, + 0, + 0 + ], + [ + 247, + 25, + 249, + 18, + 0, + 0, + 0, + 0 + ], + [ + 249, + 18, + 251, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 243, + 33, + 243, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 243, + 43, + 243, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 246, + 36, + 246, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 246, + 42, + 246, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestTheHardWayyyFySo17XCTestExpectationCcfU_y0A3Net06ClientG0CcfU0_", + "count": 2, + "regions": [ + [ + 251, + 16, + 254, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyF", + "count": 1, + "regions": [ + [ + 258, + 32, + 292, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 261, + 35, + 291, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 262, + 70, + 282, + 14, + 2, + 0, + 0, + 0 + ], + [ + 263, + 52, + 267, + 18, + 0, + 0, + 0, + 0 + ], + [ + 267, + 18, + 282, + 14, + 2, + 0, + 0, + 0 + ], + [ + 269, + 20, + 278, + 18, + 2, + 0, + 0, + 0 + ], + [ + 271, + 68, + 275, + 22, + 0, + 0, + 0, + 0 + ], + [ + 275, + 22, + 278, + 18, + 2, + 0, + 0, + 0 + ], + [ + 278, + 25, + 280, + 18, + 0, + 0, + 0, + 0 + ], + [ + 280, + 18, + 282, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 268, + 33, + 268, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 268, + 59, + 268, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AC8SomeJSONCyKXEfu1_", + "count": 2, + "regions": [ + [ + 277, + 36, + 277, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AC8SomeJSONCyKXEfu2_", + "count": 2, + "regions": [ + [ + 277, + 50, + 277, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testPostJSONRequestyyFySo17XCTestExpectationCcfU_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 282, + 63, + 290, + 14, + 2, + 0, + 0, + 0 + ], + [ + 283, + 20, + 287, + 18, + 2, + 0, + 0, + 0 + ], + [ + 287, + 25, + 289, + 18, + 0, + 0, + 0, + 0 + ], + [ + 289, + 18, + 290, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyF", + "count": 1, + "regions": [ + [ + 294, + 48, + 312, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 295, + 35, + 311, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 296, + 76, + 307, + 14, + 2, + 0, + 0, + 0 + ], + [ + 300, + 20, + 303, + 18, + 2, + 0, + 0, + 0 + ], + [ + 303, + 25, + 305, + 18, + 0, + 0, + 0, + 0 + ], + [ + 305, + 18, + 307, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 297, + 33, + 297, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 297, + 43, + 297, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 299, + 33, + 299, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu2_", + "count": 0, + "regions": [ + [ + 299, + 60, + 299, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 302, + 36, + 302, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 302, + 42, + 302, + 131, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC35testPostRequestWithDoubleBodyParseryyFySo17XCTestExpectationCcfU_y0A3Net06ClientG0CcfU0_", + "count": 2, + "regions": [ + [ + 307, + 16, + 310, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyF", + "count": 1, + "regions": [ + [ + 314, + 38, + 366, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 315, + 35, + 330, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 316, + 70, + 326, + 14, + 2, + 0, + 0, + 0 + ], + [ + 319, + 20, + 322, + 18, + 2, + 0, + 0, + 0 + ], + [ + 322, + 25, + 324, + 18, + 0, + 0, + 0, + 0 + ], + [ + 324, + 18, + 326, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 317, + 33, + 317, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 317, + 43, + 317, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 318, + 33, + 318, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu2_", + "count": 0, + "regions": [ + [ + 318, + 60, + 318, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 321, + 36, + 321, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 321, + 42, + 321, + 149, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU_y0A3Net06ClientG0CcfU0_", + "count": 2, + "regions": [ + [ + 326, + 16, + 329, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 332, + 35, + 347, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 333, + 70, + 343, + 14, + 2, + 0, + 0, + 0 + ], + [ + 336, + 20, + 339, + 18, + 2, + 0, + 0, + 0 + ], + [ + 339, + 25, + 341, + 18, + 0, + 0, + 0, + 0 + ], + [ + 341, + 18, + 343, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 334, + 33, + 334, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 334, + 43, + 334, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 335, + 33, + 335, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu2_", + "count": 0, + "regions": [ + [ + 335, + 60, + 335, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 338, + 36, + 338, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 338, + 42, + 338, + 149, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientG0CcfU0_", + "count": 2, + "regions": [ + [ + 343, + 16, + 346, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 349, + 35, + 364, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 350, + 80, + 360, + 14, + 2, + 0, + 0, + 0 + ], + [ + 353, + 20, + 356, + 18, + 2, + 0, + 0, + 0 + ], + [ + 356, + 25, + 358, + 18, + 0, + 0, + 0, + 0 + ], + [ + 358, + 18, + 360, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 351, + 33, + 351, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 351, + 43, + 351, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 352, + 33, + 352, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu2_", + "count": 0, + "regions": [ + [ + 352, + 60, + 352, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 355, + 36, + 355, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 355, + 42, + 355, + 162, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testPostRequestUrlEncodedyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientG0CcfU0_", + "count": 2, + "regions": [ + [ + 360, + 16, + 363, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC014dataComponentsC0_9separatorySS_SStF", + "count": 5, + "regions": [ + [ + 368, + 72, + 388, + 6, + 5, + 0, + 0, + 0 + ], + [ + 373, + 52, + 375, + 10, + 5, + 0, + 0, + 0 + ], + [ + 375, + 10, + 388, + 6, + 5, + 0, + 0, + 0 + ], + [ + 377, + 55, + 379, + 10, + 5, + 0, + 0, + 0 + ], + [ + 379, + 10, + 388, + 6, + 5, + 0, + 0, + 0 + ], + [ + 384, + 41, + 387, + 10, + 20, + 0, + 0, + 0 + ], + [ + 387, + 10, + 388, + 6, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC014dataComponentsC0_9separatorySS_SStFSbyKXEfu_", + "count": 5, + "regions": [ + [ + 382, + 19, + 382, + 53, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC014dataComponentsC0_9separatorySS_SStFSSSgyKXEfu0_", + "count": 20, + "regions": [ + [ + 386, + 28, + 386, + 41, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC014dataComponentsC0_9separatorySS_SStFSSSgyKXEfu1_", + "count": 20, + "regions": [ + [ + 386, + 43, + 386, + 53, + 20, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyF", + "count": 1, + "regions": [ + [ + 390, + 37, + 493, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 399, + 35, + 424, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 400, + 75, + 409, + 14, + 2, + 0, + 0, + 0 + ], + [ + 402, + 20, + 405, + 18, + 2, + 0, + 0, + 0 + ], + [ + 405, + 25, + 407, + 18, + 0, + 0, + 0, + 0 + ], + [ + 407, + 18, + 409, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 401, + 33, + 401, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 401, + 43, + 401, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 404, + 36, + 404, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 404, + 42, + 404, + 185, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 409, + 16, + 423, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 426, + 35, + 454, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 427, + 75, + 436, + 14, + 2, + 0, + 0, + 0 + ], + [ + 429, + 20, + 432, + 18, + 2, + 0, + 0, + 0 + ], + [ + 432, + 25, + 434, + 18, + 0, + 0, + 0, + 0 + ], + [ + 434, + 18, + 436, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 428, + 33, + 428, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 428, + 43, + 428, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 431, + 36, + 431, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 431, + 42, + 431, + 181, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU0_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 436, + 16, + 453, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 456, + 35, + 474, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 457, + 75, + 466, + 14, + 2, + 0, + 0, + 0 + ], + [ + 459, + 20, + 462, + 18, + 2, + 0, + 0, + 0 + ], + [ + 462, + 25, + 464, + 18, + 0, + 0, + 0, + 0 + ], + [ + 464, + 18, + 466, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 458, + 33, + 458, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 458, + 43, + 458, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 461, + 36, + 461, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 461, + 42, + 461, + 69, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU1_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 466, + 16, + 473, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 477, + 35, + 491, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 478, + 75, + 487, + 14, + 2, + 0, + 0, + 0 + ], + [ + 480, + 20, + 483, + 18, + 2, + 0, + 0, + 0 + ], + [ + 483, + 25, + 485, + 18, + 0, + 0, + 0, + 0 + ], + [ + 485, + 18, + 487, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 479, + 33, + 479, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 479, + 43, + 479, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 482, + 36, + 482, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 482, + 42, + 482, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testMultipartFormParsingyyFySo17XCTestExpectationCcfU2_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 487, + 16, + 490, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyF", + "count": 1, + "regions": [ + [ + 495, + 28, + 523, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 496, + 35, + 522, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 499, + 43, + 514, + 34, + 2, + 0, + 0, + 0 + ], + [ + 500, + 72, + 504, + 38, + 0, + 0, + 0, + 0 + ], + [ + 504, + 38, + 514, + 34, + 2, + 0, + 0, + 0 + ], + [ + 507, + 40, + 510, + 38, + 2, + 0, + 0, + 0 + ], + [ + 510, + 45, + 512, + 38, + 0, + 0, + 0, + 0 + ], + [ + 512, + 38, + 514, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 506, + 53, + 506, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 506, + 79, + 506, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 509, + 56, + 509, + 70, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 509, + 72, + 509, + 86, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 516, + 50, + 521, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testRawDataPostyyFySo17XCTestExpectationCcfU_y0A3Net13ClientRequestCcfU0_Sis6UInt32VXEfU_", + "count": 4096, + "regions": [ + [ + 518, + 91, + 518, + 101, + 4096, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtF", + "count": 6, + "regions": [ + [ + 527, + 83, + 551, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtFSSyKXEfu_", + "count": 3, + "regions": [ + [ + 528, + 78, + 528, + 91, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtFSSyKXEfu0_", + "count": 3, + "regions": [ + [ + 529, + 80, + 529, + 94, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtFySo17XCTestExpectationCcfU_", + "count": 12, + "regions": [ + [ + 530, + 35, + 550, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 12, + "regions": [ + [ + 532, + 27, + 549, + 14, + 12, + 0, + 0, + 0 + ], + [ + 533, + 52, + 537, + 18, + 0, + 0, + 0, + 0 + ], + [ + 537, + 18, + 549, + 14, + 12, + 0, + 0, + 0 + ], + [ + 539, + 20, + 545, + 18, + 12, + 0, + 0, + 0 + ], + [ + 545, + 25, + 547, + 18, + 0, + 0, + 0, + 0 + ], + [ + 547, + 18, + 549, + 14, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AJyKXEfu_", + "count": 12, + "regions": [ + [ + 541, + 36, + 541, + 40, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC03runC10Parameters33_57E7F06AA42A5F59A425B8F414C9D58ALL13pathParameter05queryR0020expectedReturnedPathR00tu5QueryR0ySS_S2SSgAJtFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AJyKXEfu0_", + "count": 12, + "regions": [ + [ + 541, + 42, + 544, + 63, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testParametersyyF", + "count": 1, + "regions": [ + [ + 553, + 27, + 555, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC29testParametersPercent20InPathyyF", + "count": 1, + "regions": [ + [ + 557, + 42, + 560, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC24testParametersPlusInPathyyF", + "count": 1, + "regions": [ + [ + 562, + 37, + 565, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC30testParametersPercent20InQueryyyF", + "count": 1, + "regions": [ + [ + 567, + 43, + 570, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC25testParametersPlusInQueryyyF", + "count": 1, + "regions": [ + [ + 572, + 38, + 575, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC32testParametersPercentageEncodingyyF", + "count": 1, + "regions": [ + [ + 577, + 45, + 581, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyF", + "count": 1, + "regions": [ + [ + 583, + 25, + 596, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 584, + 35, + 595, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 585, + 69, + 594, + 14, + 2, + 0, + 0, + 0 + ], + [ + 587, + 20, + 590, + 18, + 2, + 0, + 0, + 0 + ], + [ + 590, + 25, + 592, + 18, + 0, + 0, + 0, + 0 + ], + [ + 592, + 18, + 594, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 586, + 33, + 586, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 586, + 43, + 586, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 589, + 36, + 589, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testRedirectyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 589, + 42, + 589, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyF", + "count": 1, + "regions": [ + [ + 598, + 29, + 612, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 599, + 35, + 611, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 600, + 66, + 610, + 14, + 2, + 0, + 0, + 0 + ], + [ + 602, + 20, + 606, + 18, + 2, + 0, + 0, + 0 + ], + [ + 606, + 25, + 608, + 18, + 0, + 0, + 0, + 0 + ], + [ + 608, + 18, + 610, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 601, + 33, + 601, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 601, + 43, + 601, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 605, + 36, + 605, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testErrorHandleryyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 605, + 42, + 605, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyF", + "count": 1, + "regions": [ + [ + 614, + 26, + 640, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 615, + 47, + 627, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 616, + 66, + 626, + 14, + 2, + 0, + 0, + 0 + ], + [ + 619, + 20, + 622, + 18, + 2, + 0, + 0, + 0 + ], + [ + 622, + 25, + 624, + 18, + 0, + 0, + 0, + 0 + ], + [ + 624, + 18, + 626, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 617, + 33, + 617, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 617, + 43, + 617, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 618, + 32, + 618, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 618, + 54, + 618, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 618, + 73, + 618, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 621, + 36, + 621, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 621, + 42, + 621, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 627, + 12, + 639, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 628, + 67, + 638, + 14, + 2, + 0, + 0, + 0 + ], + [ + 631, + 20, + 634, + 18, + 2, + 0, + 0, + 0 + ], + [ + 634, + 25, + 636, + 18, + 0, + 0, + 0, + 0 + ], + [ + 636, + 18, + 638, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 629, + 33, + 629, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 629, + 43, + 629, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 630, + 32, + 630, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 630, + 54, + 630, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 630, + 73, + 630, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 633, + 36, + 633, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testRouteFuncyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 633, + 42, + 633, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyF", + "count": 1, + "regions": [ + [ + 642, + 32, + 685, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_", + "count": 2, + "regions": [ + [ + 644, + 35, + 676, + 10, + 2, + 0, + 0, + 0 + ], + [ + 672, + 16, + 674, + 14, + 2, + 0, + 0, + 0 + ], + [ + 674, + 21, + 674, + 23, + 0, + 0, + 0, + 0 + ], + [ + 674, + 23, + 676, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 647, + 28, + 647, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 647, + 62, + 647, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 650, + 28, + 650, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 650, + 62, + 650, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_ypSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 653, + 26, + 653, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 656, + 28, + 656, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 656, + 62, + 656, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 659, + 28, + 659, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 659, + 62, + 659, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 662, + 28, + 662, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 662, + 62, + 662, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 667, + 28, + 667, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 667, + 62, + 667, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu12_", + "count": 2, + "regions": [ + [ + 670, + 28, + 670, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu13_", + "count": 2, + "regions": [ + [ + 670, + 62, + 670, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 678, + 35, + 683, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 679, + 71, + 682, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 680, + 33, + 680, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC19testHeaderModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 680, + 43, + 680, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyF", + "count": 1, + "regions": [ + [ + 687, + 28, + 741, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_", + "count": 2, + "regions": [ + [ + 689, + 35, + 710, + 10, + 2, + 0, + 0, + 0 + ], + [ + 706, + 16, + 708, + 14, + 2, + 0, + 0, + 0 + ], + [ + 708, + 21, + 708, + 23, + 0, + 0, + 0, + 0 + ], + [ + 708, + 23, + 710, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 691, + 28, + 691, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 691, + 59, + 691, + 65, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 691, + 67, + 691, + 106, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 692, + 28, + 692, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 692, + 65, + 692, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 692, + 78, + 692, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 693, + 28, + 693, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 693, + 70, + 693, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu7_", + "count": 0, + "regions": [ + [ + 693, + 78, + 693, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 694, + 28, + 694, + 70, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 694, + 72, + 694, + 90, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu10_", + "count": 0, + "regions": [ + [ + 694, + 92, + 694, + 131, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 697, + 28, + 697, + 69, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu12_", + "count": 2, + "regions": [ + [ + 697, + 71, + 697, + 88, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu13_", + "count": 0, + "regions": [ + [ + 697, + 90, + 697, + 129, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu14_", + "count": 2, + "regions": [ + [ + 698, + 28, + 698, + 65, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu15_", + "count": 2, + "regions": [ + [ + 698, + 67, + 698, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu16_", + "count": 0, + "regions": [ + [ + 698, + 75, + 698, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu17_", + "count": 2, + "regions": [ + [ + 699, + 28, + 699, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSSgyKXEfu18_", + "count": 2, + "regions": [ + [ + 699, + 74, + 699, + 80, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu19_", + "count": 0, + "regions": [ + [ + 699, + 82, + 699, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_ypSgyKXEfu20_", + "count": 2, + "regions": [ + [ + 702, + 26, + 702, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu21_", + "count": 0, + "regions": [ + [ + 702, + 63, + 702, + 108, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_ypSgyKXEfu22_", + "count": 2, + "regions": [ + [ + 703, + 26, + 703, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu23_", + "count": 0, + "regions": [ + [ + 703, + 57, + 703, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_ypSgyKXEfu24_", + "count": 2, + "regions": [ + [ + 704, + 26, + 704, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU_SSyXEfu25_", + "count": 0, + "regions": [ + [ + 704, + 60, + 704, + 93, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_", + "count": 2, + "regions": [ + [ + 712, + 36, + 724, + 10, + 2, + 0, + 0, + 0 + ], + [ + 720, + 16, + 722, + 14, + 2, + 0, + 0, + 0 + ], + [ + 722, + 21, + 722, + 23, + 0, + 0, + 0, + 0 + ], + [ + 722, + 23, + 724, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 714, + 28, + 714, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 714, + 65, + 714, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 714, + 78, + 714, + 123, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 715, + 28, + 715, + 64, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 715, + 66, + 715, + 78, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 715, + 80, + 715, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 716, + 28, + 716, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 716, + 76, + 716, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSyXEfu7_", + "count": 0, + "regions": [ + [ + 716, + 84, + 716, + 123, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 717, + 28, + 717, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 717, + 69, + 717, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSyXEfu10_", + "count": 0, + "regions": [ + [ + 717, + 77, + 717, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 718, + 28, + 718, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSSgyKXEfu12_", + "count": 2, + "regions": [ + [ + 718, + 79, + 718, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFy0A013RouterRequestC_AE0hD0CyyctcfU0_SSyXEfu13_", + "count": 0, + "regions": [ + [ + 718, + 87, + 718, + 126, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 726, + 47, + 733, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 727, + 71, + 730, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 728, + 33, + 728, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 728, + 43, + 728, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU1_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 730, + 16, + 732, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 733, + 12, + 740, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 734, + 71, + 737, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 735, + 33, + 735, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 735, + 43, + 735, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC15testAcceptTypesyyFySo17XCTestExpectationCcfU2_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 737, + 16, + 739, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyF", + "count": 1, + "regions": [ + [ + 743, + 36, + 791, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_", + "count": 2, + "regions": [ + [ + 744, + 35, + 756, + 10, + 2, + 0, + 0, + 0 + ], + [ + 752, + 16, + 754, + 14, + 2, + 0, + 0, + 0 + ], + [ + 754, + 21, + 754, + 23, + 0, + 0, + 0, + 0 + ], + [ + 754, + 23, + 756, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 745, + 28, + 745, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 745, + 86, + 745, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 745, + 94, + 745, + 133, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 746, + 28, + 746, + 89, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 746, + 91, + 746, + 101, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 746, + 103, + 746, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 747, + 28, + 747, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 747, + 101, + 747, + 107, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSyXEfu7_", + "count": 0, + "regions": [ + [ + 747, + 109, + 747, + 148, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_ypSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 750, + 26, + 750, + 86, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 750, + 88, + 750, + 133, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_", + "count": 2, + "regions": [ + [ + 758, + 36, + 774, + 10, + 2, + 0, + 0, + 0 + ], + [ + 770, + 16, + 772, + 14, + 2, + 0, + 0, + 0 + ], + [ + 772, + 21, + 772, + 23, + 0, + 0, + 0, + 0 + ], + [ + 772, + 23, + 774, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu_", + "count": 2, + "regions": [ + [ + 759, + 28, + 759, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 759, + 86, + 759, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 759, + 94, + 759, + 133, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 760, + 28, + 760, + 89, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 760, + 91, + 760, + 101, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 760, + 103, + 760, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 762, + 28, + 762, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 762, + 101, + 762, + 111, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSyXEfu7_", + "count": 0, + "regions": [ + [ + 762, + 113, + 762, + 152, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 765, + 28, + 765, + 88, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 765, + 90, + 765, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSyXEfu10_", + "count": 0, + "regions": [ + [ + 765, + 101, + 765, + 140, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_ypSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 768, + 26, + 768, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFy0A013RouterRequestC_AE0iD0CyyctcfU0_SSyXEfu12_", + "count": 0, + "regions": [ + [ + 768, + 87, + 768, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 776, + 47, + 783, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 777, + 71, + 780, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 778, + 33, + 778, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 778, + 43, + 778, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU1_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 780, + 16, + 782, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 783, + 12, + 790, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 784, + 71, + 787, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 785, + 33, + 785, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 785, + 43, + 785, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC23testAcceptEncodingTypesyyFySo17XCTestExpectationCcfU2_y0A3Net13ClientRequestCcfU0_", + "count": 2, + "regions": [ + [ + 787, + 16, + 789, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyF", + "count": 1, + "regions": [ + [ + 793, + 23, + 838, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 794, + 35, + 807, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 795, + 66, + 806, + 18, + 2, + 0, + 0, + 0 + ], + [ + 799, + 20, + 802, + 18, + 2, + 0, + 0, + 0 + ], + [ + 802, + 25, + 804, + 18, + 0, + 0, + 0, + 0 + ], + [ + 804, + 18, + 806, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 796, + 33, + 796, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 796, + 43, + 796, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 797, + 32, + 797, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 797, + 54, + 797, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 797, + 73, + 797, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 798, + 32, + 798, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 798, + 74, + 798, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 801, + 36, + 801, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 801, + 42, + 801, + 104, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 809, + 35, + 822, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 810, + 66, + 821, + 18, + 2, + 0, + 0, + 0 + ], + [ + 814, + 20, + 817, + 18, + 2, + 0, + 0, + 0 + ], + [ + 817, + 25, + 819, + 18, + 0, + 0, + 0, + 0 + ], + [ + 819, + 18, + 821, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 811, + 33, + 811, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 811, + 43, + 811, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 812, + 32, + 812, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 812, + 54, + 812, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 812, + 73, + 812, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 813, + 32, + 813, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 813, + 74, + 813, + 86, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 816, + 36, + 816, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 816, + 42, + 816, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 824, + 35, + 836, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 825, + 66, + 835, + 18, + 2, + 0, + 0, + 0 + ], + [ + 828, + 20, + 831, + 18, + 2, + 0, + 0, + 0 + ], + [ + 831, + 25, + 833, + 18, + 0, + 0, + 0, + 0 + ], + [ + 833, + 18, + 835, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 826, + 33, + 826, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 826, + 43, + 826, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 827, + 32, + 827, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 827, + 54, + 827, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 827, + 73, + 827, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 830, + 36, + 830, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC10testFormatyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 830, + 42, + 830, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyF", + "count": 1, + "regions": [ + [ + 840, + 21, + 865, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 841, + 35, + 850, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 842, + 72, + 849, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 843, + 33, + 843, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 843, + 43, + 843, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 844, + 32, + 844, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 844, + 54, + 844, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 844, + 73, + 844, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 846, + 33, + 846, + 39, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 846, + 41, + 846, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 847, + 32, + 847, + 38, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 847, + 40, + 847, + 89, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 852, + 35, + 864, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 853, + 75, + 863, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 854, + 33, + 854, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 854, + 43, + 854, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 855, + 32, + 855, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 855, + 54, + 855, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 855, + 73, + 855, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 859, + 33, + 859, + 39, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 859, + 41, + 859, + 72, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 860, + 33, + 860, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu7_", + "count": 0, + "regions": [ + [ + 860, + 63, + 860, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 861, + 33, + 861, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testLinkyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 861, + 64, + 861, + 104, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyF", + "count": 1, + "regions": [ + [ + 867, + 22, + 934, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 868, + 35, + 883, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 869, + 82, + 882, + 14, + 2, + 0, + 0, + 0 + ], + [ + 872, + 20, + 878, + 18, + 2, + 0, + 0, + 0 + ], + [ + 878, + 25, + 880, + 18, + 0, + 0, + 0, + 0 + ], + [ + 880, + 18, + 882, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 870, + 33, + 870, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 870, + 43, + 870, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 871, + 32, + 871, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 871, + 54, + 871, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 871, + 73, + 871, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 876, + 36, + 876, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 876, + 42, + 876, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 877, + 36, + 877, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 877, + 78, + 877, + 102, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 885, + 35, + 891, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 886, + 83, + 890, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 887, + 33, + 887, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 887, + 43, + 887, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 888, + 32, + 888, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 888, + 54, + 888, + 79, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 888, + 81, + 888, + 147, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 893, + 35, + 899, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 894, + 66, + 898, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 895, + 33, + 895, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 895, + 43, + 895, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 896, + 32, + 896, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 896, + 54, + 896, + 79, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 896, + 81, + 896, + 147, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 901, + 35, + 916, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 902, + 79, + 915, + 14, + 2, + 0, + 0, + 0 + ], + [ + 905, + 20, + 911, + 18, + 2, + 0, + 0, + 0 + ], + [ + 911, + 25, + 913, + 18, + 0, + 0, + 0, + 0 + ], + [ + 913, + 18, + 915, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 903, + 33, + 903, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 903, + 43, + 903, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 904, + 32, + 904, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 904, + 54, + 904, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 904, + 73, + 904, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 909, + 36, + 909, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 909, + 42, + 909, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 910, + 36, + 910, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 910, + 78, + 910, + 102, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 918, + 35, + 933, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 919, + 90, + 932, + 14, + 2, + 0, + 0, + 0 + ], + [ + 922, + 20, + 928, + 18, + 2, + 0, + 0, + 0 + ], + [ + 928, + 25, + 930, + 18, + 0, + 0, + 0, + 0 + ], + [ + 930, + 18, + 932, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 920, + 33, + 920, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 920, + 43, + 920, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 921, + 32, + 921, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 921, + 54, + 921, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 921, + 73, + 921, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 926, + 36, + 926, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 926, + 42, + 926, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 927, + 36, + 927, + 76, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC9testJsonpyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 927, + 78, + 927, + 102, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyF", + "count": 1, + "regions": [ + [ + 936, + 27, + 981, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 937, + 35, + 950, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 938, + 71, + 949, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 939, + 33, + 939, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 939, + 43, + 939, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 940, + 32, + 940, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 940, + 54, + 940, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 940, + 73, + 940, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 945, + 32, + 945, + 42, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 945, + 44, + 945, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 945, + 57, + 945, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 946, + 32, + 946, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 946, + 46, + 946, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 946, + 59, + 946, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 947, + 32, + 947, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 947, + 50, + 947, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu12_", + "count": 0, + "regions": [ + [ + 947, + 54, + 947, + 86, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 952, + 35, + 965, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 953, + 71, + 964, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 954, + 33, + 954, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 954, + 43, + 954, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 955, + 32, + 955, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 955, + 54, + 955, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 955, + 73, + 955, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 960, + 32, + 960, + 42, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 960, + 44, + 960, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 960, + 65, + 960, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 961, + 32, + 961, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 961, + 46, + 961, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 961, + 61, + 961, + 89, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 962, + 32, + 962, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 962, + 50, + 962, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu12_", + "count": 0, + "regions": [ + [ + 962, + 61, + 962, + 93, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 967, + 35, + 980, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 968, + 71, + 979, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 969, + 33, + 969, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 969, + 43, + 969, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 970, + 32, + 970, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 970, + 54, + 970, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 970, + 73, + 970, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 975, + 32, + 975, + 42, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 975, + 44, + 975, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 975, + 69, + 975, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 976, + 32, + 976, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 976, + 46, + 976, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu9_", + "count": 0, + "regions": [ + [ + 976, + 63, + 976, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 977, + 32, + 977, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 977, + 50, + 977, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC14testSubdomainsyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu12_", + "count": 0, + "regions": [ + [ + 977, + 64, + 977, + 96, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyF", + "count": 1, + "regions": [ + [ + 983, + 26, + 998, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 984, + 35, + 997, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 985, + 70, + 996, + 14, + 2, + 0, + 0, + 0 + ], + [ + 989, + 20, + 992, + 18, + 2, + 0, + 0, + 0 + ], + [ + 992, + 25, + 994, + 18, + 0, + 0, + 0, + 0 + ], + [ + 994, + 18, + 996, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 986, + 33, + 986, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 986, + 43, + 986, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 987, + 32, + 987, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 987, + 54, + 987, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 987, + 73, + 987, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 988, + 32, + 988, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 988, + 73, + 988, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 988, + 83, + 988, + 107, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 991, + 36, + 991, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC13testLifecycleyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 991, + 42, + 991, + 104, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyF", + "count": 1, + "regions": [ + [ + 1000, + 21, + 1109, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 1001, + 35, + 1014, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1002, + 65, + 1013, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1005, + 20, + 1009, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1009, + 25, + 1011, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1011, + 18, + 1013, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1003, + 33, + 1003, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1003, + 43, + 1003, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1004, + 32, + 1004, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1004, + 54, + 1004, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1004, + 73, + 1004, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_10Foundation4DataVyKXEfu4_", + "count": 2, + "regions": [ + [ + 1008, + 36, + 1008, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_10Foundation4DataVyKXEfu5_", + "count": 2, + "regions": [ + [ + 1008, + 42, + 1008, + 124, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 1016, + 47, + 1031, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1017, + 65, + 1030, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1021, + 20, + 1026, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1026, + 25, + 1028, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1028, + 18, + 1030, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1018, + 33, + 1018, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1018, + 43, + 1018, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1019, + 32, + 1019, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1019, + 54, + 1019, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1019, + 73, + 1019, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1020, + 32, + 1020, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1020, + 74, + 1020, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 1020, + 94, + 1020, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AC8SomeJSONCyKXEfu7_", + "count": 2, + "regions": [ + [ + 1025, + 36, + 1025, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AC8SomeJSONCyKXEfu8_", + "count": 2, + "regions": [ + [ + 1025, + 48, + 1025, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 1032, + 9, + 1045, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1033, + 75, + 1044, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1037, + 20, + 1040, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1040, + 25, + 1042, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1042, + 18, + 1044, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1034, + 33, + 1034, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1034, + 43, + 1034, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1035, + 32, + 1035, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1035, + 54, + 1035, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1035, + 73, + 1035, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1036, + 32, + 1036, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1036, + 74, + 1036, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 1036, + 94, + 1036, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 1039, + 36, + 1039, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU1_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 1039, + 59, + 1039, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 1046, + 9, + 1061, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1047, + 82, + 1060, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1051, + 20, + 1056, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1056, + 25, + 1058, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1058, + 18, + 1060, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1048, + 33, + 1048, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1048, + 43, + 1048, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1049, + 32, + 1049, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1049, + 54, + 1049, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1049, + 73, + 1049, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1050, + 32, + 1050, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1050, + 74, + 1050, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 1050, + 94, + 1050, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SDySSAC8SomeJSONCGyKXEfu7_", + "count": 2, + "regions": [ + [ + 1055, + 36, + 1055, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU2_y0A3Net06ClientD0CSgcfU_SDySSAC8SomeJSONCGyKXEfu8_", + "count": 2, + "regions": [ + [ + 1055, + 58, + 1055, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 1062, + 9, + 1075, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1063, + 70, + 1074, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1067, + 20, + 1070, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1070, + 25, + 1072, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1072, + 18, + 1074, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1064, + 33, + 1064, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1064, + 43, + 1064, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1065, + 32, + 1065, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1065, + 54, + 1065, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1065, + 73, + 1065, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1066, + 32, + 1066, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1066, + 74, + 1066, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 1066, + 94, + 1066, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 1069, + 36, + 1069, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU3_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 1069, + 76, + 1069, + 80, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 1076, + 9, + 1091, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1077, + 77, + 1090, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1081, + 20, + 1086, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1086, + 25, + 1088, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1088, + 18, + 1090, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1078, + 33, + 1078, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1078, + 43, + 1078, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1079, + 32, + 1079, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1079, + 54, + 1079, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1079, + 73, + 1079, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1080, + 32, + 1080, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1080, + 74, + 1080, + 92, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 1080, + 94, + 1080, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SayAC8SomeJSONCGyKXEfu7_", + "count": 2, + "regions": [ + [ + 1085, + 36, + 1085, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU4_y0A3Net06ClientD0CSgcfU_SayAC8SomeJSONCGyKXEfu8_", + "count": 2, + "regions": [ + [ + 1085, + 62, + 1085, + 66, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 1093, + 35, + 1107, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1094, + 69, + 1106, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1098, + 20, + 1101, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1101, + 25, + 1103, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1103, + 18, + 1106, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1095, + 33, + 1095, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1095, + 43, + 1095, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1096, + 32, + 1096, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1096, + 54, + 1096, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1096, + 73, + 1096, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1097, + 32, + 1097, + 72, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1097, + 74, + 1097, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSyXEfu6_", + "count": 0, + "regions": [ + [ + 1097, + 87, + 1097, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 1100, + 36, + 1100, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC8testSendyyFySo17XCTestExpectationCcfU5_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 1100, + 42, + 1100, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyF", + "count": 1, + "regions": [ + [ + 1111, + 29, + 1125, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 1112, + 35, + 1124, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1113, + 75, + 1123, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1116, + 20, + 1119, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1119, + 25, + 1121, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1121, + 18, + 1123, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1114, + 33, + 1114, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1114, + 43, + 1114, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1115, + 32, + 1115, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1115, + 54, + 1115, + 78, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1115, + 80, + 1115, + 146, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1118, + 36, + 1118, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC16testSendAfterEndyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1118, + 56, + 1118, + 141, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyF", + "count": 1, + "regions": [ + [ + 1127, + 46, + 1142, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 1128, + 47, + 1134, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1129, + 79, + 1133, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1130, + 33, + 1130, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1130, + 43, + 1130, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG010HTTPStatusH0OSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1131, + 32, + 1131, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG010HTTPStatusH0OSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1131, + 54, + 1131, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1131, + 59, + 1131, + 125, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 1135, + 9, + 1141, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1136, + 84, + 1140, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1137, + 33, + 1137, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1137, + 43, + 1137, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG010HTTPStatusH0OSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1138, + 32, + 1138, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_AG010HTTPStatusH0OSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1138, + 54, + 1138, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC33testChangeStatusCodeOnInvokedSendyyFySo17XCTestExpectationCcfU0_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1138, + 65, + 1138, + 131, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyF", + "count": 1, + "regions": [ + [ + 1144, + 25, + 1158, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 1145, + 35, + 1157, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_", + "count": 2, + "regions": [ + [ + 1146, + 70, + 1156, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1149, + 20, + 1152, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1152, + 25, + 1154, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1154, + 18, + 1156, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1147, + 33, + 1147, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 1147, + 43, + 1147, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1148, + 32, + 1148, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1148, + 54, + 1148, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 1148, + 73, + 1148, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 1151, + 36, + 1151, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC12testUserInfoyyFySo17XCTestExpectationCcfU_y0A3Net06ClientD0CSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 1151, + 42, + 1151, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU_", + "count": 6, + "regions": [ + [ + 1164, + 34, + 1174, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU0_", + "count": 12, + "regions": [ + [ + 1177, + 33, + 1180, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU1_", + "count": 2, + "regions": [ + [ + 1182, + 29, + 1190, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1184, + 16, + 1186, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1186, + 21, + 1188, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1188, + 14, + 1190, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU2_", + "count": 2, + "regions": [ + [ + 1192, + 33, + 1203, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1193, + 16, + 1200, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1196, + 57, + 1198, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1198, + 18, + 1200, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1200, + 21, + 1202, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1202, + 14, + 1203, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU2_SSyKXEfu_", + "count": 0, + "regions": [ + [ + 1194, + 71, + 1194, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU2_SSyKXEfu0_", + "count": 0, + "regions": [ + [ + 1195, + 69, + 1195, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU3_", + "count": 2, + "regions": [ + [ + 1205, + 35, + 1213, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1206, + 16, + 1210, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1210, + 21, + 1212, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1212, + 14, + 1213, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU4_", + "count": 2, + "regions": [ + [ + 1215, + 39, + 1222, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1216, + 16, + 1219, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1219, + 21, + 1221, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1221, + 14, + 1222, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU5_", + "count": 2, + "regions": [ + [ + 1224, + 42, + 1231, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1225, + 16, + 1228, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1228, + 21, + 1230, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1230, + 14, + 1231, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU6_", + "count": 2, + "regions": [ + [ + 1233, + 36, + 1236, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU7_", + "count": 2, + "regions": [ + [ + 1238, + 37, + 1239, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU8_", + "count": 12, + "regions": [ + [ + 1241, + 33, + 1252, + 10, + 12, + 0, + 0, + 0 + ], + [ + 1246, + 16, + 1248, + 14, + 12, + 0, + 0, + 0 + ], + [ + 1248, + 21, + 1250, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1250, + 14, + 1252, + 10, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU8_SSyKXEfu_", + "count": 0, + "regions": [ + [ + 1243, + 50, + 1243, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU8_SSyKXEfu0_", + "count": 0, + "regions": [ + [ + 1244, + 53, + 1244, + 60, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU8_SSyKXEfu1_", + "count": 0, + "regions": [ + [ + 1245, + 59, + 1245, + 66, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU9_", + "count": 2, + "regions": [ + [ + 1254, + 33, + 1262, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1255, + 16, + 1257, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1257, + 21, + 1259, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1259, + 14, + 1262, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU10_", + "count": 2, + "regions": [ + [ + 1264, + 35, + 1271, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1265, + 16, + 1267, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1267, + 21, + 1270, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1270, + 14, + 1271, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU11_", + "count": 2, + "regions": [ + [ + 1274, + 30, + 1278, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU12_", + "count": 2, + "regions": [ + [ + 1281, + 14, + 1284, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU13_", + "count": 2, + "regions": [ + [ + 1285, + 15, + 1288, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU14_", + "count": 2, + "regions": [ + [ + 1289, + 14, + 1292, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU15_", + "count": 14, + "regions": [ + [ + 1294, + 46, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1295, + 55, + 1298, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1298, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1300, + 58, + 1307, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1301, + 20, + 1304, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1304, + 25, + 1306, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1306, + 18, + 1307, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1307, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1307, + 75, + 1314, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1308, + 20, + 1311, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1311, + 25, + 1313, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1313, + 18, + 1314, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1314, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1314, + 53, + 1321, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1315, + 20, + 1318, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1318, + 25, + 1320, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1320, + 18, + 1321, + 14, + 4, + 0, + 0, + 0 + ], + [ + 1321, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1321, + 53, + 1328, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1322, + 20, + 1325, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1325, + 25, + 1327, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1327, + 18, + 1328, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1328, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1328, + 52, + 1333, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1333, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ], + [ + 1333, + 20, + 1335, + 14, + 12, + 0, + 0, + 0 + ], + [ + 1335, + 14, + 1338, + 10, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU15_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1329, + 33, + 1329, + 37, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctKcfU16_", + "count": 2, + "regions": [ + [ + 1346, + 41, + 1350, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctKcfU16_SiyKXEfu_", + "count": 0, + "regions": [ + [ + 1348, + 62, + 1348, + 63, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU17_", + "count": 8, + "regions": [ + [ + 1359, + 39, + 1374, + 10, + 8, + 0, + 0, + 0 + ], + [ + 1360, + 48, + 1363, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1363, + 14, + 1374, + 10, + 6, + 0, + 0, + 0 + ], + [ + 1364, + 53, + 1368, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1368, + 14, + 1374, + 10, + 6, + 0, + 0, + 0 + ], + [ + 1369, + 31, + 1371, + 14, + 14, + 0, + 0, + 0 + ], + [ + 1371, + 14, + 1374, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZ12callbackTextL_7request8responseyAE0F7RequestC_AE0fD0CtF", + "count": 2, + "regions": [ + [ + 1376, + 77, + 1381, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1377, + 16, + 1379, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1379, + 21, + 1379, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1379, + 23, + 1381, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZ12callbackHtmlL_7request8responseyAE0F7RequestC_AE0fD0CtF", + "count": 2, + "regions": [ + [ + 1383, + 77, + 1388, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1384, + 16, + 1386, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1386, + 21, + 1386, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1386, + 23, + 1388, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZ15callbackDefaultL_7request8responseyAE0F7RequestC_AE0fD0CtF", + "count": 2, + "regions": [ + [ + 1390, + 80, + 1396, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1391, + 16, + 1394, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1394, + 21, + 1394, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1394, + 23, + 1396, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU18_", + "count": 6, + "regions": [ + [ + 1398, + 31, + 1405, + 10, + 6, + 0, + 0, + 0 + ], + [ + 1399, + 16, + 1404, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1404, + 21, + 1404, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1404, + 23, + 1405, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU19_", + "count": 2, + "regions": [ + [ + 1407, + 36, + 1413, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1408, + 16, + 1412, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1412, + 21, + 1412, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1412, + 23, + 1413, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU20_", + "count": 2, + "regions": [ + [ + 1415, + 39, + 1423, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1416, + 16, + 1422, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1422, + 21, + 1422, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1422, + 23, + 1423, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU21_", + "count": 6, + "regions": [ + [ + 1425, + 30, + 1435, + 10, + 6, + 0, + 0, + 0 + ], + [ + 1428, + 16, + 1434, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1429, + 20, + 1431, + 18, + 6, + 0, + 0, + 0 + ], + [ + 1431, + 56, + 1433, + 18, + 4, + 0, + 0, + 0 + ], + [ + 1433, + 18, + 1434, + 14, + 6, + 0, + 0, + 0 + ], + [ + 1434, + 21, + 1434, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1434, + 23, + 1435, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU22_", + "count": 2, + "regions": [ + [ + 1437, + 33, + 1447, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1440, + 16, + 1446, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1441, + 20, + 1443, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1443, + 56, + 1445, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1445, + 18, + 1446, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1446, + 21, + 1446, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1446, + 23, + 1447, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU23_", + "count": 2, + "regions": [ + [ + 1449, + 38, + 1462, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1455, + 16, + 1461, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1456, + 20, + 1458, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1458, + 56, + 1460, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1460, + 18, + 1461, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1461, + 21, + 1461, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1461, + 23, + 1462, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU24_", + "count": 2, + "regions": [ + [ + 1464, + 34, + 1484, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1480, + 16, + 1482, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1482, + 21, + 1482, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1482, + 23, + 1484, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU24_yycfU_", + "count": 2, + "regions": [ + [ + 1466, + 32, + 1469, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU24_10Foundation4DataVANcfU0_", + "count": 2, + "regions": [ + [ + 1473, + 56, + 1476, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU25_", + "count": 2, + "regions": [ + [ + 1486, + 29, + 1491, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1487, + 16, + 1489, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1489, + 21, + 1489, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1489, + 23, + 1491, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU26_", + "count": 2, + "regions": [ + [ + 1493, + 29, + 1501, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1495, + 16, + 1497, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1497, + 21, + 1499, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1499, + 14, + 1501, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU27_", + "count": 2, + "regions": [ + [ + 1503, + 39, + 1511, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1505, + 16, + 1507, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1507, + 21, + 1509, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1509, + 14, + 1511, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU28_", + "count": 2, + "regions": [ + [ + 1513, + 34, + 1521, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1515, + 16, + 1517, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1517, + 21, + 1519, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1519, + 14, + 1521, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU29_", + "count": 2, + "regions": [ + [ + 1523, + 46, + 1531, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1525, + 16, + 1527, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1527, + 21, + 1529, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1529, + 14, + 1531, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU30_", + "count": 2, + "regions": [ + [ + 1533, + 41, + 1541, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1535, + 16, + 1537, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1537, + 21, + 1539, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1539, + 14, + 1541, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU31_", + "count": 2, + "regions": [ + [ + 1543, + 33, + 1550, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1544, + 16, + 1546, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1546, + 21, + 1548, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1548, + 14, + 1550, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU32_", + "count": 2, + "regions": [ + [ + 1552, + 39, + 1573, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1553, + 16, + 1571, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1571, + 21, + 1571, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1571, + 23, + 1573, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU33_", + "count": 2, + "regions": [ + [ + 1575, + 43, + 1581, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU33_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 1576, + 23, + 1576, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU33_SbyKXEfu0_", + "count": 2, + "regions": [ + [ + 1580, + 23, + 1580, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU34_", + "count": 2, + "regions": [ + [ + 1583, + 48, + 1591, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU34_SbyKXEfu_", + "count": 2, + "regions": [ + [ + 1586, + 23, + 1586, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU34_SbyKXEfu0_", + "count": 2, + "regions": [ + [ + 1590, + 23, + 1590, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU35_", + "count": 2, + "regions": [ + [ + 1594, + 42, + 1599, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU36_", + "count": 2, + "regions": [ + [ + 1599, + 12, + 1607, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1602, + 80, + 1604, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1604, + 14, + 1607, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU37_", + "count": 2, + "regions": [ + [ + 1609, + 22, + 1621, + 10, + 2, + 0, + 0, + 0 + ], + [ + 1611, + 16, + 1619, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1613, + 47, + 1615, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1615, + 18, + 1619, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1615, + 24, + 1617, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1617, + 18, + 1619, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1619, + 21, + 1619, + 23, + 0, + 0, + 0, + 0 + ], + [ + 1619, + 23, + 1621, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0fD0CyyctcfU38_", + "count": 2, + "regions": [ + [ + 1623, + 24, + 1626, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests12TestResponseC20DummyErrorMiddlewareC6handle7request8response4nexty0A013RouterRequestC_AJ0lD0CyyctKF", + "count": 4, + "regions": [ + [ + 1636, + 106, + 1638, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestResponse.swift" + ] + }, + { + "name": "$s11KituraTests11makeHandler33_0FD63CFD9B0141825FF895F95FFAA3F6LLyy0A013RouterRequestC_AD0L8ResponseCyyXEtKcSScvpfiyAF_AHyyXEtKcSScfU_", + "count": 4, + "regions": [ + [ + 29, + 31, + 40, + 2, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests11makeHandler33_0FD63CFD9B0141825FF895F95FFAA3F6LLyy0A013RouterRequestC_AD0L8ResponseCyyXEtKcSScvpfiyAF_AHyyXEtKcSScfU_yAF_AHyyXEtKcfU_", + "count": 82, + "regions": [ + [ + 30, + 12, + 39, + 6, + 82, + 0, + 0, + 0 + ], + [ + 34, + 31, + 36, + 10, + 32, + 0, + 0, + 0 + ], + [ + 36, + 10, + 39, + 6, + 82, + 0, + 0, + 0 + ], + [ + 36, + 16, + 38, + 10, + 50, + 0, + 0, + 0 + ], + [ + 38, + 10, + 39, + 6, + 82, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests9subrouter33_0FD63CFD9B0141825FF895F95FFAA3F6LL0A06RouterCvpfiAFyXEfU_", + "count": 1, + "regions": [ + [ + 44, + 29, + 49, + 2, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 52, + 76, + 62, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyF", + "count": 1, + "regions": [ + [ + 67, + 38, + 141, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 78, + 22, + 78, + 27, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu0_", + "count": 1, + "regions": [ + [ + 79, + 19, + 79, + 33, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu1_", + "count": 1, + "regions": [ + [ + 80, + 22, + 80, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu2_", + "count": 1, + "regions": [ + [ + 85, + 22, + 85, + 27, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 86, + 19, + 86, + 33, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu4_", + "count": 1, + "regions": [ + [ + 87, + 22, + 87, + 29, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu5_", + "count": 1, + "regions": [ + [ + 91, + 25, + 91, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu6_", + "count": 1, + "regions": [ + [ + 94, + 24, + 94, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu7_", + "count": 1, + "regions": [ + [ + 94, + 40, + 94, + 79, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu8_", + "count": 1, + "regions": [ + [ + 95, + 24, + 95, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu9_", + "count": 1, + "regions": [ + [ + 96, + 25, + 96, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu10_", + "count": 1, + "regions": [ + [ + 97, + 24, + 97, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu11_", + "count": 1, + "regions": [ + [ + 98, + 24, + 98, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu12_", + "count": 1, + "regions": [ + [ + 98, + 37, + 98, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSiyKXEfu13_", + "count": 1, + "regions": [ + [ + 99, + 24, + 99, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSiyKXEfu14_", + "count": 1, + "regions": [ + [ + 99, + 40, + 99, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSiyKXEfu15_", + "count": 1, + "regions": [ + [ + 100, + 24, + 100, + 36, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSiyKXEfu16_", + "count": 1, + "regions": [ + [ + 100, + 38, + 100, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu17_", + "count": 1, + "regions": [ + [ + 103, + 25, + 103, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu18_", + "count": 1, + "regions": [ + [ + 104, + 24, + 104, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu19_", + "count": 1, + "regions": [ + [ + 104, + 40, + 104, + 81, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu20_", + "count": 1, + "regions": [ + [ + 105, + 24, + 105, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu21_", + "count": 1, + "regions": [ + [ + 106, + 25, + 106, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu22_", + "count": 1, + "regions": [ + [ + 107, + 24, + 107, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu23_", + "count": 1, + "regions": [ + [ + 108, + 24, + 108, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu24_", + "count": 1, + "regions": [ + [ + 108, + 37, + 108, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu25_", + "count": 1, + "regions": [ + [ + 111, + 25, + 111, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu26_", + "count": 1, + "regions": [ + [ + 112, + 24, + 112, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu27_", + "count": 1, + "regions": [ + [ + 112, + 40, + 112, + 86, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu28_", + "count": 1, + "regions": [ + [ + 113, + 24, + 113, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu29_", + "count": 1, + "regions": [ + [ + 114, + 25, + 114, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu30_", + "count": 1, + "regions": [ + [ + 115, + 24, + 115, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu31_", + "count": 1, + "regions": [ + [ + 116, + 24, + 116, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu32_", + "count": 1, + "regions": [ + [ + 116, + 37, + 116, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu33_", + "count": 1, + "regions": [ + [ + 119, + 25, + 119, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu34_", + "count": 1, + "regions": [ + [ + 120, + 24, + 120, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu35_", + "count": 1, + "regions": [ + [ + 120, + 40, + 120, + 71, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu36_", + "count": 1, + "regions": [ + [ + 121, + 24, + 121, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu37_", + "count": 1, + "regions": [ + [ + 122, + 25, + 122, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu38_", + "count": 1, + "regions": [ + [ + 123, + 24, + 123, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu39_", + "count": 1, + "regions": [ + [ + 124, + 24, + 124, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu40_", + "count": 1, + "regions": [ + [ + 124, + 37, + 124, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu41_", + "count": 1, + "regions": [ + [ + 127, + 25, + 127, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu42_", + "count": 1, + "regions": [ + [ + 128, + 24, + 128, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu43_", + "count": 1, + "regions": [ + [ + 128, + 40, + 128, + 77, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu44_", + "count": 1, + "regions": [ + [ + 129, + 24, + 129, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu45_", + "count": 1, + "regions": [ + [ + 130, + 25, + 130, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu46_", + "count": 1, + "regions": [ + [ + 131, + 24, + 131, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu47_", + "count": 1, + "regions": [ + [ + 132, + 24, + 132, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu48_", + "count": 1, + "regions": [ + [ + 132, + 37, + 132, + 41, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu49_", + "count": 1, + "regions": [ + [ + 135, + 25, + 135, + 30, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu50_", + "count": 1, + "regions": [ + [ + 136, + 24, + 136, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu51_", + "count": 1, + "regions": [ + [ + 136, + 40, + 136, + 77, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu52_", + "count": 1, + "regions": [ + [ + 137, + 24, + 137, + 38, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFypSgyKXEfu53_", + "count": 1, + "regions": [ + [ + 138, + 25, + 138, + 32, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSbyKXEfu54_", + "count": 1, + "regions": [ + [ + 139, + 24, + 139, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu55_", + "count": 1, + "regions": [ + [ + 140, + 24, + 140, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC09testBuildE11FromPatternyyFSSyKXEfu56_", + "count": 1, + "regions": [ + [ + 140, + 37, + 140, + 40, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyF", + "count": 1, + "regions": [ + [ + 147, + 28, + 274, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 152, + 47, + 165, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 153, + 60, + 164, + 14, + 2, + 0, + 0, + 0 + ], + [ + 156, + 20, + 159, + 18, + 2, + 0, + 0, + 0 + ], + [ + 159, + 25, + 161, + 18, + 0, + 0, + 0, + 0 + ], + [ + 161, + 18, + 164, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 154, + 32, + 154, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 154, + 54, + 154, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 158, + 36, + 158, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 158, + 42, + 158, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 171, + 47, + 184, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 172, + 71, + 183, + 14, + 2, + 0, + 0, + 0 + ], + [ + 175, + 20, + 178, + 18, + 2, + 0, + 0, + 0 + ], + [ + 178, + 25, + 180, + 18, + 0, + 0, + 0, + 0 + ], + [ + 180, + 18, + 183, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 173, + 32, + 173, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 173, + 54, + 173, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 177, + 36, + 177, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 177, + 42, + 177, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 190, + 47, + 198, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 191, + 60, + 197, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 198, + 12, + 204, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 199, + 71, + 203, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 200, + 32, + 200, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 200, + 54, + 200, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 210, + 47, + 223, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 211, + 60, + 222, + 14, + 2, + 0, + 0, + 0 + ], + [ + 214, + 20, + 217, + 18, + 2, + 0, + 0, + 0 + ], + [ + 217, + 25, + 219, + 18, + 0, + 0, + 0, + 0 + ], + [ + 219, + 18, + 222, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 212, + 32, + 212, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 212, + 54, + 212, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 216, + 36, + 216, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 216, + 42, + 216, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 229, + 47, + 242, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 230, + 67, + 241, + 14, + 2, + 0, + 0, + 0 + ], + [ + 233, + 20, + 236, + 18, + 2, + 0, + 0, + 0 + ], + [ + 236, + 25, + 238, + 18, + 0, + 0, + 0, + 0 + ], + [ + 238, + 18, + 241, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 231, + 32, + 231, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 231, + 54, + 231, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 235, + 36, + 235, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 235, + 42, + 235, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 248, + 47, + 261, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 249, + 76, + 260, + 14, + 2, + 0, + 0, + 0 + ], + [ + 252, + 20, + 255, + 18, + 2, + 0, + 0, + 0 + ], + [ + 255, + 25, + 257, + 18, + 0, + 0, + 0, + 0 + ], + [ + 257, + 18, + 260, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 250, + 32, + 250, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 250, + 54, + 250, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 254, + 36, + 254, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 254, + 42, + 254, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU6_", + "count": 2, + "regions": [ + [ + 267, + 47, + 273, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 268, + 67, + 272, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 269, + 32, + 269, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC15testSimplePathsyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 269, + 54, + 269, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyF", + "count": 1, + "regions": [ + [ + 279, + 30, + 386, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 284, + 47, + 297, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 285, + 65, + 296, + 14, + 2, + 0, + 0, + 0 + ], + [ + 288, + 20, + 291, + 18, + 2, + 0, + 0, + 0 + ], + [ + 291, + 25, + 293, + 18, + 0, + 0, + 0, + 0 + ], + [ + 293, + 18, + 296, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 286, + 32, + 286, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 286, + 54, + 286, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 290, + 36, + 290, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 290, + 42, + 290, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 303, + 47, + 316, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 304, + 77, + 315, + 14, + 2, + 0, + 0, + 0 + ], + [ + 307, + 20, + 310, + 18, + 2, + 0, + 0, + 0 + ], + [ + 310, + 25, + 312, + 18, + 0, + 0, + 0, + 0 + ], + [ + 312, + 18, + 315, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 305, + 32, + 305, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 305, + 54, + 305, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 309, + 36, + 309, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 309, + 42, + 309, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 322, + 47, + 339, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 323, + 66, + 338, + 14, + 2, + 0, + 0, + 0 + ], + [ + 328, + 20, + 333, + 18, + 2, + 0, + 0, + 0 + ], + [ + 333, + 25, + 335, + 18, + 0, + 0, + 0, + 0 + ], + [ + 335, + 18, + 338, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 324, + 32, + 324, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 324, + 54, + 324, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 331, + 36, + 331, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 331, + 48, + 331, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 345, + 47, + 362, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 346, + 78, + 361, + 14, + 2, + 0, + 0, + 0 + ], + [ + 351, + 20, + 356, + 18, + 2, + 0, + 0, + 0 + ], + [ + 356, + 25, + 358, + 18, + 0, + 0, + 0, + 0 + ], + [ + 358, + 18, + 361, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 347, + 32, + 347, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 347, + 54, + 347, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 354, + 36, + 354, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 354, + 48, + 354, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 368, + 47, + 385, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 369, + 67, + 384, + 14, + 2, + 0, + 0, + 0 + ], + [ + 374, + 20, + 379, + 18, + 2, + 0, + 0, + 0 + ], + [ + 379, + 25, + 381, + 18, + 0, + 0, + 0, + 0 + ], + [ + 381, + 18, + 384, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 370, + 32, + 370, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 370, + 54, + 370, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 377, + 36, + 377, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC17testSimpleMatchesyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 377, + 48, + 377, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyF", + "count": 1, + "regions": [ + [ + 392, + 32, + 664, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 397, + 47, + 410, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 398, + 60, + 409, + 14, + 2, + 0, + 0, + 0 + ], + [ + 401, + 20, + 404, + 18, + 2, + 0, + 0, + 0 + ], + [ + 404, + 25, + 406, + 18, + 0, + 0, + 0, + 0 + ], + [ + 406, + 18, + 409, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 399, + 32, + 399, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 399, + 54, + 399, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 403, + 36, + 403, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 403, + 42, + 403, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 410, + 12, + 427, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 411, + 66, + 426, + 14, + 2, + 0, + 0, + 0 + ], + [ + 416, + 20, + 421, + 18, + 2, + 0, + 0, + 0 + ], + [ + 421, + 25, + 423, + 18, + 0, + 0, + 0, + 0 + ], + [ + 423, + 18, + 426, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 412, + 32, + 412, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 412, + 54, + 412, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 419, + 36, + 419, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 419, + 48, + 419, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 433, + 47, + 446, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 434, + 67, + 445, + 14, + 2, + 0, + 0, + 0 + ], + [ + 437, + 20, + 440, + 18, + 2, + 0, + 0, + 0 + ], + [ + 440, + 25, + 442, + 18, + 0, + 0, + 0, + 0 + ], + [ + 442, + 18, + 445, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 435, + 32, + 435, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 435, + 54, + 435, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 439, + 36, + 439, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 439, + 42, + 439, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 446, + 12, + 463, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 447, + 78, + 462, + 14, + 2, + 0, + 0, + 0 + ], + [ + 452, + 20, + 457, + 18, + 2, + 0, + 0, + 0 + ], + [ + 457, + 25, + 459, + 18, + 0, + 0, + 0, + 0 + ], + [ + 459, + 18, + 462, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 448, + 32, + 448, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 448, + 54, + 448, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 455, + 36, + 455, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 455, + 48, + 455, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 469, + 47, + 482, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 470, + 60, + 481, + 14, + 2, + 0, + 0, + 0 + ], + [ + 473, + 20, + 476, + 18, + 2, + 0, + 0, + 0 + ], + [ + 476, + 25, + 478, + 18, + 0, + 0, + 0, + 0 + ], + [ + 478, + 18, + 481, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 471, + 32, + 471, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 471, + 54, + 471, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 475, + 36, + 475, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 475, + 42, + 475, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 482, + 12, + 499, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 483, + 66, + 498, + 14, + 2, + 0, + 0, + 0 + ], + [ + 488, + 20, + 493, + 18, + 2, + 0, + 0, + 0 + ], + [ + 493, + 25, + 495, + 18, + 0, + 0, + 0, + 0 + ], + [ + 495, + 18, + 498, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 484, + 32, + 484, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 484, + 54, + 484, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 491, + 36, + 491, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 491, + 48, + 491, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 499, + 12, + 516, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 500, + 72, + 515, + 14, + 2, + 0, + 0, + 0 + ], + [ + 505, + 20, + 510, + 18, + 2, + 0, + 0, + 0 + ], + [ + 510, + 25, + 512, + 18, + 0, + 0, + 0, + 0 + ], + [ + 512, + 18, + 515, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 501, + 32, + 501, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 501, + 54, + 501, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 508, + 36, + 508, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 508, + 48, + 508, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU6_", + "count": 2, + "regions": [ + [ + 522, + 47, + 535, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 523, + 67, + 534, + 14, + 2, + 0, + 0, + 0 + ], + [ + 526, + 20, + 529, + 18, + 2, + 0, + 0, + 0 + ], + [ + 529, + 25, + 531, + 18, + 0, + 0, + 0, + 0 + ], + [ + 531, + 18, + 534, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 524, + 32, + 524, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 524, + 54, + 524, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 528, + 36, + 528, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 528, + 42, + 528, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU7_", + "count": 2, + "regions": [ + [ + 535, + 12, + 552, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 536, + 78, + 551, + 14, + 2, + 0, + 0, + 0 + ], + [ + 541, + 20, + 546, + 18, + 2, + 0, + 0, + 0 + ], + [ + 546, + 25, + 548, + 18, + 0, + 0, + 0, + 0 + ], + [ + 548, + 18, + 551, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 537, + 32, + 537, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 537, + 54, + 537, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 544, + 36, + 544, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 544, + 48, + 544, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU8_", + "count": 2, + "regions": [ + [ + 552, + 12, + 569, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 553, + 84, + 568, + 14, + 2, + 0, + 0, + 0 + ], + [ + 558, + 20, + 563, + 18, + 2, + 0, + 0, + 0 + ], + [ + 563, + 25, + 565, + 18, + 0, + 0, + 0, + 0 + ], + [ + 565, + 18, + 568, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 554, + 32, + 554, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 554, + 54, + 554, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 561, + 36, + 561, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 561, + 48, + 561, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU9_", + "count": 2, + "regions": [ + [ + 575, + 47, + 583, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU9_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 576, + 60, + 582, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU10_", + "count": 2, + "regions": [ + [ + 583, + 12, + 600, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 584, + 66, + 599, + 14, + 2, + 0, + 0, + 0 + ], + [ + 589, + 20, + 594, + 18, + 2, + 0, + 0, + 0 + ], + [ + 594, + 25, + 596, + 18, + 0, + 0, + 0, + 0 + ], + [ + 596, + 18, + 599, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 585, + 32, + 585, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 585, + 54, + 585, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 592, + 36, + 592, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 592, + 48, + 592, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU11_", + "count": 2, + "regions": [ + [ + 600, + 12, + 617, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 601, + 72, + 616, + 14, + 2, + 0, + 0, + 0 + ], + [ + 606, + 20, + 611, + 18, + 2, + 0, + 0, + 0 + ], + [ + 611, + 25, + 613, + 18, + 0, + 0, + 0, + 0 + ], + [ + 613, + 18, + 616, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 602, + 32, + 602, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 602, + 54, + 602, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 609, + 36, + 609, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 609, + 48, + 609, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU12_", + "count": 2, + "regions": [ + [ + 623, + 47, + 629, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU12_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 624, + 67, + 628, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU12_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 625, + 32, + 625, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU12_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 625, + 54, + 625, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU13_", + "count": 2, + "regions": [ + [ + 629, + 12, + 646, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU13_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 630, + 78, + 645, + 14, + 2, + 0, + 0, + 0 + ], + [ + 635, + 20, + 640, + 18, + 2, + 0, + 0, + 0 + ], + [ + 640, + 25, + 642, + 18, + 0, + 0, + 0, + 0 + ], + [ + 642, + 18, + 645, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU13_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 631, + 32, + 631, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU13_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 631, + 54, + 631, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU13_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 638, + 36, + 638, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU13_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 638, + 48, + 638, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU14_", + "count": 2, + "regions": [ + [ + 646, + 12, + 663, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 647, + 84, + 662, + 14, + 2, + 0, + 0, + 0 + ], + [ + 652, + 20, + 657, + 18, + 2, + 0, + 0, + 0 + ], + [ + 657, + 25, + 659, + 18, + 0, + 0, + 0, + 0 + ], + [ + 659, + 18, + 662, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 648, + 32, + 648, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 648, + 54, + 648, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 655, + 36, + 655, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC19testSimpleModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 655, + 48, + 655, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyF", + "count": 1, + "regions": [ + [ + 668, + 36, + 726, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 673, + 47, + 690, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 674, + 66, + 689, + 14, + 2, + 0, + 0, + 0 + ], + [ + 679, + 20, + 684, + 18, + 2, + 0, + 0, + 0 + ], + [ + 684, + 25, + 686, + 18, + 0, + 0, + 0, + 0 + ], + [ + 686, + 18, + 689, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 675, + 32, + 675, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 675, + 54, + 675, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 682, + 36, + 682, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 682, + 48, + 682, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 690, + 12, + 696, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 691, + 64, + 695, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 692, + 32, + 692, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 692, + 54, + 692, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 702, + 47, + 719, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 703, + 78, + 718, + 14, + 2, + 0, + 0, + 0 + ], + [ + 708, + 20, + 713, + 18, + 2, + 0, + 0, + 0 + ], + [ + 713, + 25, + 715, + 18, + 0, + 0, + 0, + 0 + ], + [ + 715, + 18, + 718, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 704, + 32, + 704, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 704, + 54, + 704, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 711, + 36, + 711, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 711, + 48, + 711, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 719, + 12, + 725, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 720, + 76, + 724, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 721, + 32, + 721, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC23testSimpleCustomMatchesyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 721, + 54, + 721, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyF", + "count": 1, + "regions": [ + [ + 732, + 43, + 1040, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 737, + 47, + 750, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 738, + 60, + 749, + 14, + 2, + 0, + 0, + 0 + ], + [ + 741, + 20, + 744, + 18, + 2, + 0, + 0, + 0 + ], + [ + 744, + 25, + 746, + 18, + 0, + 0, + 0, + 0 + ], + [ + 746, + 18, + 749, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 739, + 32, + 739, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 739, + 54, + 739, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 743, + 36, + 743, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 743, + 42, + 743, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 750, + 12, + 767, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 751, + 66, + 766, + 14, + 2, + 0, + 0, + 0 + ], + [ + 756, + 20, + 761, + 18, + 2, + 0, + 0, + 0 + ], + [ + 761, + 25, + 763, + 18, + 0, + 0, + 0, + 0 + ], + [ + 763, + 18, + 766, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 752, + 32, + 752, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 752, + 54, + 752, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 759, + 36, + 759, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 759, + 48, + 759, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 767, + 12, + 773, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 768, + 64, + 772, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 769, + 32, + 769, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 769, + 54, + 769, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 779, + 47, + 792, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 780, + 67, + 791, + 14, + 2, + 0, + 0, + 0 + ], + [ + 783, + 20, + 786, + 18, + 2, + 0, + 0, + 0 + ], + [ + 786, + 25, + 788, + 18, + 0, + 0, + 0, + 0 + ], + [ + 788, + 18, + 791, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 781, + 32, + 781, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 781, + 54, + 781, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 785, + 36, + 785, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 785, + 42, + 785, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 792, + 12, + 809, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 793, + 78, + 808, + 14, + 2, + 0, + 0, + 0 + ], + [ + 798, + 20, + 803, + 18, + 2, + 0, + 0, + 0 + ], + [ + 803, + 25, + 805, + 18, + 0, + 0, + 0, + 0 + ], + [ + 805, + 18, + 808, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 794, + 32, + 794, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 794, + 54, + 794, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 801, + 36, + 801, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 801, + 48, + 801, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 809, + 12, + 815, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 810, + 76, + 814, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 811, + 32, + 811, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 811, + 54, + 811, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 821, + 47, + 834, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 822, + 60, + 833, + 14, + 2, + 0, + 0, + 0 + ], + [ + 825, + 20, + 828, + 18, + 2, + 0, + 0, + 0 + ], + [ + 828, + 25, + 830, + 18, + 0, + 0, + 0, + 0 + ], + [ + 830, + 18, + 833, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 823, + 32, + 823, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 823, + 54, + 823, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 827, + 36, + 827, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 827, + 42, + 827, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU6_", + "count": 2, + "regions": [ + [ + 834, + 12, + 851, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 835, + 66, + 850, + 14, + 2, + 0, + 0, + 0 + ], + [ + 840, + 20, + 845, + 18, + 2, + 0, + 0, + 0 + ], + [ + 845, + 25, + 847, + 18, + 0, + 0, + 0, + 0 + ], + [ + 847, + 18, + 850, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 836, + 32, + 836, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 836, + 54, + 836, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 843, + 36, + 843, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 843, + 48, + 843, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU7_", + "count": 2, + "regions": [ + [ + 851, + 12, + 868, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 852, + 72, + 867, + 14, + 2, + 0, + 0, + 0 + ], + [ + 857, + 20, + 862, + 18, + 2, + 0, + 0, + 0 + ], + [ + 862, + 25, + 864, + 18, + 0, + 0, + 0, + 0 + ], + [ + 864, + 18, + 867, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 853, + 32, + 853, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 853, + 54, + 853, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 860, + 36, + 860, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 860, + 48, + 860, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU8_", + "count": 2, + "regions": [ + [ + 868, + 12, + 874, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 869, + 72, + 873, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 870, + 32, + 870, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU8_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 870, + 54, + 870, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU9_", + "count": 2, + "regions": [ + [ + 880, + 47, + 893, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU9_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 881, + 67, + 892, + 14, + 2, + 0, + 0, + 0 + ], + [ + 884, + 20, + 887, + 18, + 2, + 0, + 0, + 0 + ], + [ + 887, + 25, + 889, + 18, + 0, + 0, + 0, + 0 + ], + [ + 889, + 18, + 892, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU9_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 882, + 32, + 882, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU9_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 882, + 54, + 882, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU9_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 886, + 36, + 886, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU9_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 886, + 42, + 886, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU10_", + "count": 2, + "regions": [ + [ + 893, + 12, + 910, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 894, + 78, + 909, + 14, + 2, + 0, + 0, + 0 + ], + [ + 899, + 20, + 904, + 18, + 2, + 0, + 0, + 0 + ], + [ + 904, + 25, + 906, + 18, + 0, + 0, + 0, + 0 + ], + [ + 906, + 18, + 909, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 895, + 32, + 895, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 895, + 54, + 895, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 902, + 36, + 902, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU10_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 902, + 48, + 902, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU11_", + "count": 2, + "regions": [ + [ + 910, + 12, + 927, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 911, + 84, + 926, + 14, + 2, + 0, + 0, + 0 + ], + [ + 916, + 20, + 921, + 18, + 2, + 0, + 0, + 0 + ], + [ + 921, + 25, + 923, + 18, + 0, + 0, + 0, + 0 + ], + [ + 923, + 18, + 926, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 912, + 32, + 912, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 912, + 54, + 912, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 919, + 36, + 919, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU11_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 919, + 48, + 919, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU12_", + "count": 2, + "regions": [ + [ + 927, + 12, + 933, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU12_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 928, + 84, + 932, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU12_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 929, + 32, + 929, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU12_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 929, + 54, + 929, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU13_", + "count": 2, + "regions": [ + [ + 939, + 47, + 947, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU13_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 940, + 60, + 946, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU14_", + "count": 2, + "regions": [ + [ + 947, + 12, + 964, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 948, + 66, + 963, + 14, + 2, + 0, + 0, + 0 + ], + [ + 953, + 20, + 958, + 18, + 2, + 0, + 0, + 0 + ], + [ + 958, + 25, + 960, + 18, + 0, + 0, + 0, + 0 + ], + [ + 960, + 18, + 963, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 949, + 32, + 949, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 949, + 54, + 949, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 956, + 36, + 956, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU14_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 956, + 48, + 956, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU15_", + "count": 2, + "regions": [ + [ + 964, + 12, + 981, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU15_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 965, + 72, + 980, + 14, + 2, + 0, + 0, + 0 + ], + [ + 970, + 20, + 975, + 18, + 2, + 0, + 0, + 0 + ], + [ + 975, + 25, + 977, + 18, + 0, + 0, + 0, + 0 + ], + [ + 977, + 18, + 980, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU15_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 966, + 32, + 966, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU15_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 966, + 54, + 966, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU15_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 973, + 36, + 973, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU15_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 973, + 48, + 973, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU16_", + "count": 2, + "regions": [ + [ + 981, + 12, + 987, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU16_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 982, + 72, + 986, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU16_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 983, + 32, + 983, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU16_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 983, + 54, + 983, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU17_", + "count": 2, + "regions": [ + [ + 993, + 47, + 999, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU17_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 994, + 67, + 998, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU17_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 995, + 33, + 995, + 53, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU17_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 995, + 55, + 995, + 64, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU18_", + "count": 2, + "regions": [ + [ + 999, + 12, + 1016, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU18_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 1000, + 78, + 1015, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1005, + 20, + 1010, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1010, + 25, + 1012, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1012, + 18, + 1015, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU18_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1001, + 32, + 1001, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU18_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 1001, + 54, + 1001, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU18_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1008, + 36, + 1008, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU18_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1008, + 48, + 1008, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU19_", + "count": 2, + "regions": [ + [ + 1016, + 12, + 1033, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU19_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 1017, + 84, + 1032, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1022, + 20, + 1027, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1027, + 25, + 1029, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1029, + 18, + 1032, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU19_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1018, + 32, + 1018, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU19_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 1018, + 54, + 1018, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU19_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1025, + 36, + 1025, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU19_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1025, + 48, + 1025, + 61, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU20_", + "count": 2, + "regions": [ + [ + 1033, + 12, + 1039, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU20_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 1034, + 84, + 1038, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU20_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 1035, + 32, + 1035, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC30testCustomMatchesWithModifiersyyFySo17XCTestExpectationCcfU20_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 1035, + 54, + 1035, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyF", + "count": 1, + "regions": [ + [ + 1042, + 41, + 1068, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 1048, + 47, + 1067, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 1049, + 72, + 1066, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1050, + 52, + 1054, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1054, + 18, + 1066, + 14, + 2, + 0, + 0, + 0 + ], + [ + 1058, + 20, + 1061, + 18, + 2, + 0, + 0, + 0 + ], + [ + 1061, + 25, + 1063, + 18, + 0, + 0, + 0, + 0 + ], + [ + 1063, + 18, + 1066, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOyKXEfu_", + "count": 2, + "regions": [ + [ + 1056, + 32, + 1056, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOyKXEfu0_", + "count": 2, + "regions": [ + [ + 1056, + 53, + 1056, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 1060, + 36, + 1060, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests14TestRouteRegexC04testD19WithPercentEncodingyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 1060, + 42, + 1060, + 66, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouteRegex.swift" + ] + }, + { + "name": "$s11KituraTests28TestRouterHTTPVerbsGeneratedC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 31, + 90, + 38, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s11KituraTests28TestRouterHTTPVerbsGeneratedC04bodyC7Handleryy0A00D7RequestC_AE0D8ResponseCyyctKcvpfiyAG_AIyyctcfU_", + "count": 0, + "regions": [ + [ + 40, + 42, + 46, + 6, + 0, + 0, + 0, + 0 + ], + [ + 41, + 51, + 44, + 10, + 0, + 0, + 0, + 0 + ], + [ + 44, + 10, + 46, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s11KituraTests28TestRouterHTTPVerbsGeneratedC23testFirstTypeVerbsAddedyyF", + "count": 1, + "regions": [ + [ + 49, + 36, + 120, + 6, + 1, + 0, + 0, + 0 + ], + [ + 109, + 45, + 112, + 14, + 0, + 0, + 0, + 0 + ], + [ + 112, + 14, + 120, + 6, + 1, + 0, + 0, + 0 + ], + [ + 114, + 49, + 119, + 14, + 27, + 0, + 0, + 0 + ], + [ + 115, + 84, + 118, + 18, + 0, + 0, + 0, + 0 + ], + [ + 118, + 18, + 119, + 14, + 27, + 0, + 0, + 0 + ], + [ + 119, + 14, + 120, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s11KituraTests28TestRouterHTTPVerbsGeneratedC24testSecondTypeVerbsAddedyyF", + "count": 1, + "regions": [ + [ + 122, + 37, + 193, + 6, + 1, + 0, + 0, + 0 + ], + [ + 182, + 45, + 185, + 14, + 0, + 0, + 0, + 0 + ], + [ + 185, + 14, + 193, + 6, + 1, + 0, + 0, + 0 + ], + [ + 187, + 49, + 192, + 14, + 27, + 0, + 0, + 0 + ], + [ + 188, + 84, + 191, + 18, + 0, + 0, + 0, + 0 + ], + [ + 191, + 18, + 192, + 14, + 27, + 0, + 0, + 0 + ], + [ + 192, + 14, + 193, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s11KituraTests28TestRouterHTTPVerbsGeneratedC23testThirdTypeVerbsAddedyyF", + "count": 1, + "regions": [ + [ + 195, + 36, + 267, + 6, + 1, + 0, + 0, + 0 + ], + [ + 256, + 45, + 259, + 14, + 0, + 0, + 0, + 0 + ], + [ + 259, + 14, + 267, + 6, + 1, + 0, + 0, + 0 + ], + [ + 261, + 49, + 266, + 14, + 27, + 0, + 0, + 0 + ], + [ + 262, + 84, + 265, + 18, + 0, + 0, + 0, + 0 + ], + [ + 265, + 18, + 266, + 14, + 27, + 0, + 0, + 0 + ], + [ + 266, + 14, + 267, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s11KituraTests28TestRouterHTTPVerbsGeneratedC24testFourthTypeVerbsAddedyyF", + "count": 1, + "regions": [ + [ + 269, + 37, + 341, + 6, + 1, + 0, + 0, + 0 + ], + [ + 330, + 45, + 333, + 14, + 0, + 0, + 0, + 0 + ], + [ + 333, + 14, + 341, + 6, + 1, + 0, + 0, + 0 + ], + [ + 335, + 49, + 340, + 14, + 27, + 0, + 0, + 0 + ], + [ + 336, + 84, + 339, + 18, + 0, + 0, + 0, + 0 + ], + [ + 339, + 18, + 340, + 14, + 27, + 0, + 0, + 0 + ], + [ + 340, + 14, + 341, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestRouterHTTPVerbs_generated.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 25, + 72, + 32, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC5setUpyyF", + "count": 4, + "regions": [ + [ + 38, + 27, + 41, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtF", + "count": 3, + "regions": [ + [ + 43, + 143, + 120, + 6, + 3, + 0, + 0, + 0 + ], + [ + 46, + 38, + 46, + 53, + 0, + 0, + 0, + 0 + ], + [ + 46, + 56, + 46, + 134, + 3, + 0, + 0, + 0 + ], + [ + 48, + 24, + 64, + 10, + 2, + 0, + 0, + 0 + ], + [ + 56, + 23, + 58, + 14, + 0, + 0, + 0, + 0 + ], + [ + 58, + 14, + 64, + 10, + 2, + 0, + 0, + 0 + ], + [ + 58, + 20, + 62, + 14, + 2, + 0, + 0, + 0 + ], + [ + 62, + 14, + 64, + 10, + 2, + 0, + 0, + 0 + ], + [ + 64, + 10, + 120, + 6, + 3, + 0, + 0, + 0 + ], + [ + 64, + 16, + 74, + 10, + 1, + 0, + 0, + 0 + ], + [ + 69, + 24, + 73, + 14, + 1, + 0, + 0, + 0 + ], + [ + 73, + 14, + 74, + 10, + 1, + 0, + 0, + 0 + ], + [ + 74, + 10, + 120, + 6, + 3, + 0, + 0, + 0 + ], + [ + 76, + 23, + 91, + 10, + 1, + 0, + 0, + 0 + ], + [ + 84, + 23, + 86, + 14, + 0, + 0, + 0, + 0 + ], + [ + 86, + 14, + 91, + 10, + 1, + 0, + 0, + 0 + ], + [ + 86, + 20, + 90, + 14, + 1, + 0, + 0, + 0 + ], + [ + 90, + 14, + 91, + 10, + 1, + 0, + 0, + 0 + ], + [ + 91, + 10, + 120, + 6, + 3, + 0, + 0, + 0 + ], + [ + 93, + 23, + 109, + 10, + 1, + 0, + 0, + 0 + ], + [ + 101, + 23, + 103, + 14, + 0, + 0, + 0, + 0 + ], + [ + 103, + 14, + 109, + 10, + 1, + 0, + 0, + 0 + ], + [ + 103, + 20, + 107, + 14, + 1, + 0, + 0, + 0 + ], + [ + 107, + 14, + 109, + 10, + 1, + 0, + 0, + 0 + ], + [ + 109, + 10, + 120, + 6, + 3, + 0, + 0, + 0 + ], + [ + 109, + 16, + 119, + 10, + 2, + 0, + 0, + 0 + ], + [ + 114, + 24, + 118, + 14, + 2, + 0, + 0, + 0 + ], + [ + 118, + 14, + 119, + 10, + 2, + 0, + 0, + 0 + ], + [ + 119, + 10, + 120, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFSiyKXEfu_", + "count": 2, + "regions": [ + [ + 45, + 67, + 45, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFSiyKXEfu0_", + "count": 2, + "regions": [ + [ + 46, + 103, + 46, + 119, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFyycfU_", + "count": 2, + "regions": [ + [ + 52, + 32, + 54, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFyycfU0_", + "count": 0, + "regions": [ + [ + 59, + 39, + 61, + 18, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFyycfU1_", + "count": 0, + "regions": [ + [ + 65, + 32, + 67, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFyycfU2_", + "count": 0, + "regions": [ + [ + 70, + 39, + 72, + 18, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFyycfU3_", + "count": 1, + "regions": [ + [ + 80, + 32, + 82, + 14, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFyycfU4_", + "count": 0, + "regions": [ + [ + 87, + 39, + 89, + 18, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFys5Error_pcfU5_", + "count": 1, + "regions": [ + [ + 97, + 31, + 99, + 14, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFys5Error_pcfU6_", + "count": 1, + "regions": [ + [ + 104, + 38, + 106, + 18, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFys5Error_pcfU7_", + "count": 0, + "regions": [ + [ + 110, + 31, + 112, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC05setupD15AndExpectations33_E07C78AA73483AB59D8B3F525FD1C960LL11expectStart0Q4Stop0Q4Fail8httpPort07fastCgiV0ySb_S2bSiSgAKtFys5Error_pcfU8_", + "count": 2, + "regions": [ + [ + 115, + 38, + 117, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD9StartStopyyF", + "count": 1, + "regions": [ + [ + 122, + 32, + 134, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD9StartStopyyFyycfU_", + "count": 1, + "regions": [ + [ + 126, + 30, + 129, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD9StartStopyyFys5Error_pSgcfU0_", + "count": 1, + "regions": [ + [ + 131, + 42, + 133, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD9StartStopyyFys5Error_pSgcfU0_ypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 132, + 26, + 132, + 31, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD3RunyyF", + "count": 1, + "regions": [ + [ + 136, + 26, + 148, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD3RunyyFyycfU_", + "count": 1, + "regions": [ + [ + 140, + 30, + 142, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD3RunyyFys5Error_pSgcfU0_", + "count": 1, + "regions": [ + [ + 144, + 42, + 147, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD3RunyyFys5Error_pSgcfU0_ypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 146, + 26, + 146, + 31, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD4FailyyF", + "count": 1, + "regions": [ + [ + 150, + 27, + 164, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD4FailyyFyycfU_", + "count": 1, + "regions": [ + [ + 156, + 30, + 158, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD4FailyyFys5Error_pSgcfU0_", + "count": 1, + "regions": [ + [ + 160, + 42, + 163, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD4FailyyFys5Error_pSgcfU0_ypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 162, + 26, + 162, + 31, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyF", + "count": 1, + "regions": [ + [ + 166, + 30, + 200, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFy0A013RouterRequestC_AE0G8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 172, + 26, + 175, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFSiyKXEfu_", + "count": 1, + "regions": [ + [ + 191, + 24, + 191, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFSiyKXEfu0_", + "count": 1, + "regions": [ + [ + 191, + 58, + 191, + 59, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 191, + 61, + 191, + 147, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFSiyKXEfu2_", + "count": 1, + "regions": [ + [ + 199, + 24, + 199, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFSiyKXEfu3_", + "count": 1, + "regions": [ + [ + 199, + 58, + 199, + 59, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC04testD7RestartyyFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 199, + 61, + 199, + 147, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtF", + "count": 3, + "regions": [ + [ + 202, + 156, + 214, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_", + "count": 3, + "regions": [ + [ + 204, + 80, + 213, + 10, + 3, + 0, + 0, + 0 + ], + [ + 207, + 16, + 210, + 14, + 3, + 0, + 0, + 0 + ], + [ + 210, + 21, + 212, + 14, + 0, + 0, + 0, + 0 + ], + [ + 212, + 14, + 213, + 10, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_AOyKXEfu_", + "count": 3, + "regions": [ + [ + 206, + 28, + 206, + 34, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_AOyKXEfu0_", + "count": 3, + "regions": [ + [ + 206, + 36, + 206, + 50, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 206, + 52, + 206, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_AKyKXEfu2_", + "count": 3, + "regions": [ + [ + 209, + 32, + 209, + 36, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_AKyKXEfu3_", + "count": 3, + "regions": [ + [ + 209, + 38, + 209, + 50, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests10TestServerC12testResponse33_E07C78AA73483AB59D8B3F525FD1C960LL4port6method4path12expectedBody0S6StatusySi_S3SSg0A3Net14HTTPStatusCodeOSgtFyAL06ClientF0CSgcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 209, + 52, + 209, + 140, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 23, + 71, + 28, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC9testEmptyyyF", + "count": 1, + "regions": [ + [ + 30, + 22, + 33, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC9testEmptyyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 32, + 22, + 32, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC13assertTopItem33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxG_xtSQRzlF", + "count": 7, + "regions": [ + [ + 35, + 92, + 41, + 6, + 7, + 0, + 0, + 0 + ], + [ + 36, + 48, + 39, + 10, + 0, + 0, + 0, + 0 + ], + [ + 39, + 10, + 41, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC13assertTopItem33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxG_xtSQRzlFxyKXEfu_", + "count": 7, + "regions": [ + [ + 40, + 24, + 40, + 28, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC13assertTopItem33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxG_xtSQRzlFxyKXEfu0_", + "count": 7, + "regions": [ + [ + 40, + 30, + 40, + 37, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC13assertTopItem33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxG_xtSQRzlFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 40, + 39, + 40, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC12popAndAssert33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxGz_xtSQRzlF", + "count": 4, + "regions": [ + [ + 43, + 97, + 46, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC12popAndAssert33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxGz_xtSQRzlFxyKXEfu_", + "count": 4, + "regions": [ + [ + 45, + 24, + 45, + 28, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC12popAndAssert33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxGz_xtSQRzlFxyKXEfu0_", + "count": 4, + "regions": [ + [ + 45, + 30, + 45, + 36, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC12popAndAssert33_391134856AB831D3CCB200F73592685BLL_4itemy0A00D0VyxGz_xtSQRzlFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 45, + 38, + 45, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC11testPushPopyyF", + "count": 1, + "regions": [ + [ + 48, + 24, + 74, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests9TestStackC11testPushPopyyFypSgyKXEfu_", + "count": 1, + "regions": [ + [ + 73, + 22, + 73, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStack.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 31, + 82, + 64, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyF", + "count": 1, + "regions": [ + [ + 69, + 27, + 168, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 70, + 47, + 87, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 71, + 64, + 86, + 14, + 2, + 0, + 0, + 0 + ], + [ + 74, + 20, + 77, + 18, + 2, + 0, + 0, + 0 + ], + [ + 77, + 25, + 79, + 18, + 0, + 0, + 0, + 0 + ], + [ + 79, + 18, + 86, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 72, + 33, + 72, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 72, + 43, + 72, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 73, + 32, + 73, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 73, + 54, + 73, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 73, + 73, + 73, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 76, + 36, + 76, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 76, + 42, + 76, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 81, + 32, + 81, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 81, + 77, + 81, + 85, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 82, + 33, + 82, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 83, + 33, + 83, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 84, + 32, + 84, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 84, + 75, + 84, + 86, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 87, + 12, + 99, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 88, + 75, + 98, + 14, + 2, + 0, + 0, + 0 + ], + [ + 91, + 20, + 94, + 18, + 2, + 0, + 0, + 0 + ], + [ + 94, + 25, + 96, + 18, + 0, + 0, + 0, + 0 + ], + [ + 96, + 18, + 98, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 89, + 33, + 89, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 89, + 43, + 89, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 90, + 32, + 90, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 90, + 54, + 90, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 90, + 73, + 90, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 93, + 36, + 93, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 93, + 42, + 93, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_", + "count": 2, + "regions": [ + [ + 99, + 12, + 111, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 100, + 70, + 110, + 14, + 2, + 0, + 0, + 0 + ], + [ + 103, + 20, + 106, + 18, + 2, + 0, + 0, + 0 + ], + [ + 106, + 25, + 108, + 18, + 0, + 0, + 0, + 0 + ], + [ + 108, + 18, + 110, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 101, + 33, + 101, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 101, + 43, + 101, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 102, + 32, + 102, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 102, + 54, + 102, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 102, + 73, + 102, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 105, + 36, + 105, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU1_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 105, + 42, + 105, + 99, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 111, + 16, + 127, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 112, + 79, + 126, + 18, + 2, + 0, + 0, + 0 + ], + [ + 115, + 24, + 118, + 22, + 2, + 0, + 0, + 0 + ], + [ + 118, + 29, + 120, + 22, + 0, + 0, + 0, + 0 + ], + [ + 120, + 22, + 126, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 113, + 37, + 113, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 113, + 47, + 113, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 114, + 36, + 114, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 114, + 58, + 114, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 114, + 77, + 114, + 143, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 117, + 40, + 117, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 117, + 46, + 117, + 103, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 121, + 34, + 121, + 70, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 122, + 34, + 122, + 68, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 123, + 34, + 123, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 124, + 36, + 124, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 124, + 79, + 124, + 90, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 127, + 16, + 133, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 128, + 68, + 132, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 129, + 37, + 129, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 129, + 47, + 129, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 130, + 36, + 130, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 130, + 58, + 130, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 130, + 83, + 130, + 149, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 133, + 16, + 139, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 134, + 74, + 138, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 135, + 37, + 135, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 135, + 47, + 135, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 136, + 36, + 136, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 136, + 58, + 136, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 136, + 83, + 136, + 149, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_", + "count": 2, + "regions": [ + [ + 139, + 16, + 145, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 140, + 68, + 144, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 141, + 37, + 141, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 141, + 47, + 141, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 142, + 36, + 142, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 142, + 58, + 142, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU5_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 142, + 83, + 142, + 149, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_", + "count": 2, + "regions": [ + [ + 145, + 16, + 151, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 146, + 68, + 150, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 147, + 37, + 147, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 147, + 47, + 147, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 148, + 36, + 148, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 148, + 58, + 148, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU6_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 148, + 83, + 148, + 148, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_", + "count": 2, + "regions": [ + [ + 151, + 16, + 167, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 152, + 69, + 166, + 18, + 2, + 0, + 0, + 0 + ], + [ + 155, + 24, + 158, + 22, + 2, + 0, + 0, + 0 + ], + [ + 158, + 29, + 160, + 22, + 0, + 0, + 0, + 0 + ], + [ + 160, + 22, + 166, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 153, + 37, + 153, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 153, + 47, + 153, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 154, + 36, + 154, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 154, + 58, + 154, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 154, + 77, + 154, + 143, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 157, + 40, + 157, + 44, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 157, + 46, + 157, + 103, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 161, + 34, + 161, + 70, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 162, + 37, + 162, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu8_", + "count": 2, + "regions": [ + [ + 163, + 37, + 163, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 164, + 36, + 164, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC04testeF0yyFySo17XCTestExpectationCcfU7_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 164, + 79, + 164, + 90, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC12HeaderSetterC24setCustomResponseHeaders8response8filePath0N10Attributesy0A006RouterK0C_SSSDySo18NSFileAttributeKeyaypGtF", + "count": 44, + "regions": [ + [ + 201, + 125, + 203, + 10, + 44, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtF", + "count": 15, + "regions": [ + [ + 210, + 64, + 231, + 6, + 15, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFARyKXEfu_", + "count": 14, + "regions": [ + [ + 211, + 41, + 211, + 47, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_", + "count": 30, + "regions": [ + [ + 211, + 49, + 230, + 10, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_", + "count": 30, + "regions": [ + [ + 212, + 62, + 229, + 14, + 30, + 0, + 0, + 0 + ], + [ + 213, + 52, + 217, + 18, + 0, + 0, + 0, + 0 + ], + [ + 217, + 18, + 229, + 14, + 30, + 0, + 0, + 0 + ], + [ + 220, + 91, + 225, + 18, + 30, + 0, + 0, + 0 + ], + [ + 221, + 72, + 223, + 22, + 18, + 0, + 0, + 0 + ], + [ + 223, + 22, + 225, + 18, + 30, + 0, + 0, + 0 + ], + [ + 225, + 18, + 229, + 14, + 30, + 0, + 0, + 0 + ], + [ + 225, + 24, + 227, + 18, + 0, + 0, + 0, + 0 + ], + [ + 227, + 18, + 229, + 14, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_ANyKXEfu_", + "count": 30, + "regions": [ + [ + 218, + 32, + 218, + 51, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_ANyKXEfu0_", + "count": 30, + "regions": [ + [ + 218, + 53, + 218, + 71, + 30, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 219, + 32, + 219, + 65, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_SSyKXEfu2_", + "count": 18, + "regions": [ + [ + 222, + 40, + 222, + 44, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_SSyKXEfu3_", + "count": 18, + "regions": [ + [ + 222, + 46, + 222, + 66, + 18, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014runGetResponseC033_3BA6306331EF623BF700E2444A5A111ELL4path08expectedI4Text0Q10StatusCode11bodyChecker10withRouterySS_SSSg0A3Net010HTTPStatusT0OySScSg0A00X0CSgtFySo17XCTestExpectationCcfU_yAL06ClientI0CSgcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 222, + 68, + 222, + 86, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testGetWithWhiteSpacesyyF", + "count": 1, + "regions": [ + [ + 233, + 35, + 235, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC28testGetWithSpecialCharactersyyF", + "count": 1, + "regions": [ + [ + 237, + 41, + 239, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testGetWithSpecialCharactersEncodedyyF", + "count": 1, + "regions": [ + [ + 241, + 48, + 243, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC28testWelcomePageCanBeDisabledyyF", + "count": 1, + "regions": [ + [ + 245, + 41, + 247, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC07testGetA8ResourceyyF", + "count": 1, + "regions": [ + [ + 249, + 34, + 251, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testGetDefaultResponseyyF", + "count": 1, + "regions": [ + [ + 253, + 35, + 255, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC014testGetMissingA8ResourceyyF", + "count": 1, + "regions": [ + [ + 257, + 41, + 259, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC016testGetTraversedeA8ResourceyyF", + "count": 1, + "regions": [ + [ + 261, + 47, + 263, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC016testGetTraversedE0yyF", + "count": 1, + "regions": [ + [ + 265, + 33, + 267, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC24testAbsolutePathFunctionyyF", + "count": 1, + "regions": [ + [ + 269, + 37, + 271, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC24testAbsolutePathFunctionyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 270, + 24, + 270, + 86, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC24testAbsolutePathFunctionyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 270, + 88, + 270, + 91, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC24testAbsolutePathFunctionyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 270, + 93, + 270, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC20testAbsoluteRootPathyyF", + "count": 1, + "regions": [ + [ + 273, + 33, + 275, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC20testAbsoluteRootPathyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 274, + 24, + 274, + 68, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC20testAbsoluteRootPathyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 274, + 70, + 274, + 73, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC20testAbsoluteRootPathyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 274, + 75, + 274, + 126, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC013testSubRouterdeF0yyF", + "count": 1, + "regions": [ + [ + 281, + 42, + 283, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC013testSubRouterh6FolderdeF0yyF", + "count": 1, + "regions": [ + [ + 285, + 51, + 287, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC013testSubRouterdeF8RedirectyyF", + "count": 1, + "regions": [ + [ + 289, + 50, + 291, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC013testSubRouterh6FolderdeF8RedirectyyF", + "count": 1, + "regions": [ + [ + 293, + 59, + 295, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC026testParameterizedSubRouteri6FolderdeF0yyF", + "count": 1, + "regions": [ + [ + 297, + 64, + 299, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC026testParameterizedSubRouteri6FolderdeF8RedirectyyF", + "count": 1, + "regions": [ + [ + 301, + 72, + 303, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyF", + "count": 1, + "regions": [ + [ + 305, + 30, + 320, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 307, + 35, + 319, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 308, + 76, + 318, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 309, + 33, + 309, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 310, + 32, + 310, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 310, + 54, + 310, + 83, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 311, + 32, + 311, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 311, + 75, + 311, + 126, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 312, + 32, + 312, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 312, + 75, + 312, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 313, + 32, + 313, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 313, + 76, + 313, + 80, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu8_", + "count": 2, + "regions": [ + [ + 316, + 32, + 316, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC17testRangeRequestsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu9_", + "count": 2, + "regions": [ + [ + 316, + 48, + 316, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyF", + "count": 1, + "regions": [ + [ + 322, + 50, + 336, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 323, + 35, + 335, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 324, + 76, + 334, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 325, + 33, + 325, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 326, + 32, + 326, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 326, + 54, + 326, + 83, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 327, + 32, + 327, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 327, + 75, + 327, + 90, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 328, + 32, + 328, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 328, + 75, + 328, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 329, + 32, + 329, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 329, + 76, + 329, + 80, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu8_", + "count": 2, + "regions": [ + [ + 332, + 32, + 332, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC37testRangeRequestsWithLargeLastBytePosyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu9_", + "count": 2, + "regions": [ + [ + 332, + 48, + 332, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyF", + "count": 1, + "regions": [ + [ + 338, + 49, + 351, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 339, + 35, + 350, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 341, + 76, + 349, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 342, + 33, + 342, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 343, + 32, + 343, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 343, + 54, + 343, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu2_", + "count": 2, + "regions": [ + [ + 346, + 32, + 346, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu3_", + "count": 2, + "regions": [ + [ + 346, + 48, + 346, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 347, + 32, + 347, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC36testRangeRequestIsIgnoredOnOptionOffyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 347, + 75, + 347, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyF", + "count": 1, + "regions": [ + [ + 353, + 52, + 367, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 354, + 35, + 366, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 355, + 77, + 365, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 356, + 33, + 356, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 357, + 32, + 357, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 357, + 75, + 357, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 360, + 32, + 360, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 360, + 54, + 360, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 361, + 30, + 361, + 64, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC39testRangeRequestIsIgnoredOnNonGetMethodyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 363, + 30, + 363, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyF", + "count": 1, + "regions": [ + [ + 369, + 35, + 412, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 372, + 35, + 411, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 373, + 76, + 410, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 374, + 33, + 374, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 375, + 32, + 375, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 375, + 54, + 375, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 376, + 30, + 376, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_", + "count": 2, + "regions": [ + [ + 381, + 80, + 408, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 382, + 37, + 382, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 383, + 36, + 383, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 383, + 58, + 383, + 87, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 384, + 36, + 384, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 384, + 79, + 384, + 114, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_", + "count": 2, + "regions": [ + [ + 389, + 84, + 407, + 22, + 2, + 0, + 0, + 0 + ], + [ + 402, + 66, + 406, + 26, + 2, + 0, + 0, + 0 + ], + [ + 403, + 57, + 405, + 30, + 108, + 0, + 0, + 0 + ], + [ + 405, + 30, + 406, + 26, + 2, + 0, + 0, + 0 + ], + [ + 406, + 26, + 407, + 22, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 390, + 41, + 390, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 391, + 40, + 391, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 391, + 62, + 391, + 91, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 392, + 40, + 392, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 392, + 83, + 392, + 141, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_SiyKXEfu4_", + "count": 2, + "regions": [ + [ + 401, + 40, + 401, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_SiyKXEfu5_", + "count": 2, + "regions": [ + [ + 401, + 61, + 401, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_s5UInt8VyKXEfu6_", + "count": 108, + "regions": [ + [ + 404, + 48, + 404, + 64, + 108, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC22testDataIsNotCorruptedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_yAJcfU_s5UInt8VyKXEfu7_", + "count": 108, + "regions": [ + [ + 404, + 66, + 404, + 77, + 108, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC11assertMatch__13matchedGroups4file4lineySSSg_SSSaySSGzs0D6StringVSutF", + "count": 2, + "regions": [ + [ + 419, + 139, + 443, + 6, + 2, + 0, + 0, + 0 + ], + [ + 420, + 87, + 422, + 10, + 0, + 0, + 0, + 0 + ], + [ + 422, + 10, + 443, + 6, + 2, + 0, + 0, + 0 + ], + [ + 423, + 40, + 425, + 10, + 0, + 0, + 0, + 0 + ], + [ + 425, + 10, + 443, + 6, + 2, + 0, + 0, + 0 + ], + [ + 427, + 28, + 429, + 10, + 0, + 0, + 0, + 0 + ], + [ + 429, + 10, + 443, + 6, + 2, + 0, + 0, + 0 + ], + [ + 429, + 16, + 442, + 10, + 2, + 0, + 0, + 0 + ], + [ + 432, + 51, + 441, + 14, + 4, + 0, + 0, + 0 + ], + [ + 438, + 76, + 440, + 18, + 4, + 0, + 0, + 0 + ], + [ + 440, + 18, + 441, + 14, + 4, + 0, + 0, + 0 + ], + [ + 441, + 14, + 442, + 10, + 2, + 0, + 0, + 0 + ], + [ + 442, + 10, + 443, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC11assertMatch__13matchedGroups4file4lineySSSg_SSSaySSGzs0D6StringVSutFSbyKXEfu_", + "count": 4, + "regions": [ + [ + 438, + 55, + 438, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyF", + "count": 1, + "regions": [ + [ + 445, + 48, + 494, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 446, + 35, + 493, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 447, + 76, + 492, + 14, + 2, + 0, + 0, + 0 + ], + [ + 458, + 53, + 461, + 18, + 0, + 0, + 0, + 0 + ], + [ + 461, + 18, + 492, + 14, + 2, + 0, + 0, + 0 + ], + [ + 473, + 72, + 476, + 18, + 0, + 0, + 0, + 0 + ], + [ + 476, + 18, + 492, + 14, + 2, + 0, + 0, + 0 + ], + [ + 478, + 17, + 488, + 53, + 2, + 0, + 0, + 0 + ], + [ + 489, + 17, + 490, + 73, + 0, + 0, + 0, + 0 + ], + [ + 491, + 18, + 492, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 451, + 32, + 451, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 451, + 54, + 451, + 83, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 455, + 32, + 455, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 455, + 75, + 455, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SbyKXEfu3_", + "count": 2, + "regions": [ + [ + 457, + 32, + 457, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu4_", + "count": 0, + "regions": [ + [ + 457, + 56, + 457, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 464, + 30, + 464, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SbyKXEfu6_", + "count": 2, + "regions": [ + [ + 469, + 31, + 469, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu7_", + "count": 2, + "regions": [ + [ + 480, + 36, + 480, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiyKXEfu8_", + "count": 2, + "regions": [ + [ + 480, + 49, + 480, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu9_", + "count": 2, + "regions": [ + [ + 481, + 36, + 481, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu10_", + "count": 2, + "regions": [ + [ + 481, + 69, + 481, + 119, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu11_", + "count": 2, + "regions": [ + [ + 482, + 36, + 482, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu12_", + "count": 2, + "regions": [ + [ + 482, + 61, + 482, + 86, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiSgyKXEfu13_", + "count": 2, + "regions": [ + [ + 484, + 36, + 484, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiSgyKXEfu14_", + "count": 2, + "regions": [ + [ + 484, + 50, + 484, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu15_", + "count": 2, + "regions": [ + [ + 485, + 36, + 485, + 67, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu16_", + "count": 2, + "regions": [ + [ + 485, + 69, + 485, + 120, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu17_", + "count": 2, + "regions": [ + [ + 486, + 36, + 486, + 59, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu18_", + "count": 2, + "regions": [ + [ + 486, + 61, + 486, + 86, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiSgyKXEfu19_", + "count": 2, + "regions": [ + [ + 488, + 36, + 488, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC35testRangeRequestsWithMultipleRangesyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SiSgyKXEfu20_", + "count": 2, + "regions": [ + [ + 488, + 50, + 488, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyF", + "count": 1, + "regions": [ + [ + 496, + 52, + 507, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 498, + 35, + 506, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 499, + 76, + 505, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 500, + 33, + 500, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 501, + 32, + 501, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 501, + 75, + 501, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 502, + 32, + 502, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 502, + 54, + 502, + 97, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 503, + 32, + 503, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC034testRangeRequestWithNotSatisfiableH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 503, + 75, + 503, + 87, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyF", + "count": 1, + "regions": [ + [ + 509, + 58, + 519, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 510, + 35, + 518, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 511, + 76, + 517, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 512, + 33, + 512, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 513, + 32, + 513, + 73, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 513, + 75, + 513, + 82, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 514, + 32, + 514, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 514, + 54, + 514, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC040testRangeRequestWithSintacticallyInvalidH0yyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 515, + 30, + 515, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyF", + "count": 1, + "regions": [ + [ + 521, + 54, + 542, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 522, + 35, + 541, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 523, + 76, + 540, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 524, + 33, + 524, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 525, + 32, + 525, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 525, + 54, + 525, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 526, + 33, + 526, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 527, + 33, + 527, + 65, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_", + "count": 2, + "regions": [ + [ + 531, + 80, + 538, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 532, + 37, + 532, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 533, + 36, + 533, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 533, + 58, + 533, + 87, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 534, + 36, + 534, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 534, + 79, + 534, + 114, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SiyKXEfu4_", + "count": 2, + "regions": [ + [ + 537, + 36, + 537, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ4ETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SiyKXEfu5_", + "count": 2, + "regions": [ + [ + 537, + 48, + 537, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyF", + "count": 1, + "regions": [ + [ + 544, + 57, + 555, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 545, + 35, + 554, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 547, + 76, + 552, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 548, + 33, + 548, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 549, + 32, + 549, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 549, + 54, + 549, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfh6HeaderJ7OldETagyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 550, + 30, + 550, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyF", + "count": 1, + "regions": [ + [ + 557, + 60, + 578, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 558, + 35, + 577, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 559, + 76, + 576, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 560, + 33, + 560, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 561, + 32, + 561, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 561, + 54, + 561, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 562, + 33, + 562, + 74, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 563, + 33, + 563, + 65, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_", + "count": 2, + "regions": [ + [ + 567, + 80, + 574, + 18, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 568, + 37, + 568, + 45, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 569, + 36, + 569, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 569, + 58, + 569, + 87, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 570, + 36, + 570, + 77, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 570, + 79, + 570, + 114, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SiyKXEfu4_", + "count": 2, + "regions": [ + [ + 573, + 36, + 573, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH20HeaderAsLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_yAJcfU_SiyKXEfu5_", + "count": 2, + "regions": [ + [ + 573, + 48, + 573, + 50, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyF", + "count": 1, + "regions": [ + [ + 580, + 63, + 591, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 582, + 35, + 590, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 584, + 76, + 588, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 585, + 33, + 585, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 586, + 32, + 586, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 586, + 54, + 586, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests20TestStaticFileServerC022testRangeRequestWithIfH23HeaderAsOldLastModifiedyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 587, + 30, + 587, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestStaticFileServer.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 32, + 75, + 40, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyF", + "count": 1, + "regions": [ + [ + 47, + 26, + 74, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 48, + 47, + 62, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 49, + 63, + 61, + 14, + 2, + 0, + 0, + 0 + ], + [ + 54, + 20, + 57, + 18, + 2, + 0, + 0, + 0 + ], + [ + 57, + 25, + 59, + 18, + 0, + 0, + 0, + 0 + ], + [ + 59, + 18, + 61, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 50, + 33, + 50, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 50, + 43, + 50, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 51, + 32, + 51, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 51, + 54, + 51, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 51, + 73, + 51, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 52, + 33, + 52, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 52, + 60, + 52, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 56, + 36, + 56, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 56, + 42, + 56, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 62, + 12, + 73, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 63, + 65, + 72, + 14, + 2, + 0, + 0, + 0 + ], + [ + 65, + 20, + 68, + 18, + 2, + 0, + 0, + 0 + ], + [ + 68, + 25, + 70, + 18, + 0, + 0, + 0, + 0 + ], + [ + 70, + 18, + 72, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 64, + 33, + 64, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 64, + 43, + 64, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 67, + 36, + 67, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testSimpleSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 67, + 42, + 67, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyF", + "count": 1, + "regions": [ + [ + 76, + 26, + 105, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 79, + 47, + 93, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 80, + 66, + 92, + 14, + 2, + 0, + 0, + 0 + ], + [ + 85, + 20, + 88, + 18, + 2, + 0, + 0, + 0 + ], + [ + 88, + 25, + 90, + 18, + 0, + 0, + 0, + 0 + ], + [ + 90, + 18, + 92, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 81, + 33, + 81, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 81, + 43, + 81, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 82, + 32, + 82, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 82, + 54, + 82, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 82, + 73, + 82, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 83, + 33, + 83, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 83, + 60, + 83, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 87, + 36, + 87, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 87, + 42, + 87, + 62, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 93, + 12, + 104, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 94, + 71, + 103, + 14, + 2, + 0, + 0, + 0 + ], + [ + 96, + 20, + 99, + 18, + 2, + 0, + 0, + 0 + ], + [ + 99, + 25, + 101, + 18, + 0, + 0, + 0, + 0 + ], + [ + 101, + 18, + 103, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 95, + 33, + 95, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 95, + 43, + 95, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 98, + 36, + 98, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC13testExternSubyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 98, + 42, + 98, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyF", + "count": 1, + "regions": [ + [ + 107, + 24, + 134, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 108, + 47, + 122, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 109, + 68, + 121, + 14, + 2, + 0, + 0, + 0 + ], + [ + 114, + 20, + 117, + 18, + 2, + 0, + 0, + 0 + ], + [ + 117, + 25, + 119, + 18, + 0, + 0, + 0, + 0 + ], + [ + 119, + 18, + 121, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 110, + 33, + 110, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 110, + 43, + 110, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 111, + 32, + 111, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 111, + 54, + 111, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 111, + 73, + 111, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 112, + 33, + 112, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 112, + 60, + 112, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 116, + 36, + 116, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 116, + 42, + 116, + 66, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU0_", + "count": 2, + "regions": [ + [ + 122, + 12, + 133, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 123, + 73, + 132, + 14, + 2, + 0, + 0, + 0 + ], + [ + 125, + 20, + 128, + 18, + 2, + 0, + 0, + 0 + ], + [ + 128, + 25, + 130, + 18, + 0, + 0, + 0, + 0 + ], + [ + 130, + 18, + 132, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 124, + 33, + 124, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 124, + 43, + 124, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 127, + 36, + 127, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11testSubSubsyyFySo17XCTestExpectationCcfU0_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 127, + 42, + 127, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyF", + "count": 1, + "regions": [ + [ + 136, + 35, + 152, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_", + "count": 2, + "regions": [ + [ + 137, + 35, + 151, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 138, + 71, + 150, + 14, + 2, + 0, + 0, + 0 + ], + [ + 143, + 20, + 146, + 18, + 2, + 0, + 0, + 0 + ], + [ + 146, + 25, + 148, + 18, + 0, + 0, + 0, + 0 + ], + [ + 148, + 18, + 150, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 139, + 33, + 139, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu0_", + "count": 0, + "regions": [ + [ + 139, + 43, + 139, + 91, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 140, + 32, + 140, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 140, + 54, + 140, + 71, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu3_", + "count": 0, + "regions": [ + [ + 140, + 73, + 140, + 139, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_ypSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 141, + 33, + 141, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu5_", + "count": 0, + "regions": [ + [ + 141, + 60, + 141, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 145, + 36, + 145, + 40, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC22testMultipleMiddlewareyyFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu7_", + "count": 2, + "regions": [ + [ + 145, + 42, + 145, + 75, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyF", + "count": 1, + "regions": [ + [ + 154, + 28, + 230, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFy0A013RouterRequestC_AE0H8ResponseCyyXEtKcfU_", + "count": 2, + "regions": [ + [ + 155, + 29, + 157, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_", + "count": 2, + "regions": [ + [ + 174, + 47, + 193, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 175, + 91, + 192, + 14, + 2, + 0, + 0, + 0 + ], + [ + 180, + 20, + 187, + 18, + 2, + 0, + 0, + 0 + ], + [ + 187, + 25, + 189, + 18, + 0, + 0, + 0, + 0 + ], + [ + 189, + 18, + 192, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 176, + 32, + 176, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 176, + 54, + 176, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 183, + 36, + 183, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 183, + 51, + 183, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 184, + 36, + 184, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 184, + 50, + 184, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 185, + 36, + 185, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU2_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 185, + 53, + 185, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_", + "count": 2, + "regions": [ + [ + 193, + 12, + 212, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 194, + 99, + 211, + 14, + 2, + 0, + 0, + 0 + ], + [ + 199, + 20, + 206, + 18, + 2, + 0, + 0, + 0 + ], + [ + 206, + 25, + 208, + 18, + 0, + 0, + 0, + 0 + ], + [ + 208, + 18, + 211, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 195, + 32, + 195, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 195, + 54, + 195, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 202, + 36, + 202, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 202, + 51, + 202, + 54, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 2, + "regions": [ + [ + 203, + 36, + 203, + 48, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu4_", + "count": 2, + "regions": [ + [ + 203, + 50, + 203, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu5_", + "count": 2, + "regions": [ + [ + 204, + 36, + 204, + 51, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU3_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu6_", + "count": 2, + "regions": [ + [ + 204, + 53, + 204, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU4_", + "count": 2, + "regions": [ + [ + 212, + 12, + 229, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_", + "count": 2, + "regions": [ + [ + 213, + 70, + 228, + 14, + 2, + 0, + 0, + 0 + ], + [ + 218, + 20, + 223, + 18, + 2, + 0, + 0, + 0 + ], + [ + 223, + 25, + 225, + 18, + 0, + 0, + 0, + 0 + ], + [ + 225, + 18, + 228, + 14, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu_", + "count": 2, + "regions": [ + [ + 214, + 32, + 214, + 52, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_AG14HTTPStatusCodeOSgyKXEfu0_", + "count": 2, + "regions": [ + [ + 214, + 54, + 214, + 57, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu1_", + "count": 2, + "regions": [ + [ + 221, + 36, + 221, + 49, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC15testMergeParamsyyFySo17XCTestExpectationCcfU4_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 2, + "regions": [ + [ + 221, + 51, + 221, + 56, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU_", + "count": 2, + "regions": [ + [ + 234, + 31, + 237, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 238, + 35, + 241, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU1_", + "count": 2, + "regions": [ + [ + 244, + 28, + 247, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU2_", + "count": 4, + "regions": [ + [ + 248, + 32, + 251, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU3_", + "count": 2, + "regions": [ + [ + 256, + 52, + 259, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$s11KituraTests13TestSubrouterC11setupRouter0A00F0CyFZyAE0F7RequestC_AE0F8ResponseCyyctcfU4_", + "count": 2, + "regions": [ + [ + 260, + 53, + 263, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSubrouter.swift" + ] + }, + { + "name": "$sSS11KituraTestsE8contains4findSbSS_tF", + "count": 0, + "regions": [ + [ + 25, + 41, + 27, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getQueryUglifruitHandler15query10completionyAA0D11StringParamV_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 53, + 115, + 56, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getQueryUglifruitHandler25query10completionyAA0D13IntFieldParamV_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 58, + 117, + 61, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getQueryUglifruitHandler35query10completionyAA0D21IntFieldOptionalParamV_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 63, + 125, + 66, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getQueryUglifruitHandler45query10completionyAA0D18IntFieldArrayParamV_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 68, + 122, + 71, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getQueryUglifruitHandler55query10completionyAA0D11ThreeParamsV_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 73, + 115, + 76, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getQueryUglifruitHandler65query10completionyAA0D11ThreeParamsVSg_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 78, + 116, + 81, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests28deleteQueryUglifruitHandler15query10completionyAA0D13IntFieldParamV_y0A9Contracts12RequestErrorVSgXEtF", + "count": 0, + "regions": [ + [ + 83, + 99, + 85, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests28deleteQueryUglifruitHandler25query10completionyAA0D13IntFieldParamVSg_y0A9Contracts12RequestErrorVSgXEtF", + "count": 0, + "regions": [ + [ + 87, + 100, + 89, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests28deleteQueryUglifruitHandler35query10completionyAA0D11ThreeParamsVSg_y0A9Contracts12RequestErrorVSgXEtF", + "count": 0, + "regions": [ + [ + 91, + 98, + 93, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests13deleteHandler10completionyy0A9Contracts12RequestErrorVSgXE_tF", + "count": 0, + "regions": [ + [ + 95, + 66, + 97, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests14getPearHandler10completionyyAA0D0VSg_0A9Contracts12RequestErrorVSgtXE_tF", + "count": 0, + "regions": [ + [ + 99, + 74, + 101, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests15getAppleHandler10completionyyAA0D0VSg_0A9Contracts12RequestErrorVSgtXE_tF", + "count": 0, + "regions": [ + [ + 103, + 76, + 105, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests20getArrayAppleHandler10completionyySayAA0E0VGSg_0A9Contracts12RequestErrorVSgtXE_tF", + "count": 0, + "regions": [ + [ + 107, + 83, + 109, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21getSingleAppleHandler2id10completionySi_yAA0E0VSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 111, + 90, + 113, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests25getTupleArrayAppleHandler10completionyySaySi_AA0F0VtGSg_0A9Contracts12RequestErrorVSgtXE_tF", + "count": 0, + "regions": [ + [ + 115, + 94, + 117, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests16postAppleHandler6posted10completionyAA0D0V_yAFSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 119, + 92, + 121, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests22postSingleAppleHandler6posted10completionyAA0E0V_ySiSg_AFSg0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 123, + 104, + 125, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests29putSingleAppleHandlerStringId2id6posted10completionySS_AA0E0VyAGSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 127, + 117, + 129, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests26putSingleAppleHandlerIntId2id6posted10completionySi_AA0E0VyAGSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 131, + 111, + 133, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests23patchSingleAppleHandler2id6posted10completionySi_AA0E0VyAGSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 135, + 108, + 137, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests17postBananaHandler6posted10completionyAA0D0V_yAA5AppleVSg_0A9Contracts12RequestErrorVSgtXEtF", + "count": 0, + "regions": [ + [ + 140, + 93, + 142, + 2, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 146, + 83, + 161, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC5setUpyyF", + "count": 9, + "regions": [ + [ + 165, + 27, + 192, + 6, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 194, + 47, + 207, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 196, + 23, + 196, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 196, + 49, + 196, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 200, + 23, + 200, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 200, + 53, + 200, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 201, + 23, + 201, + 48, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 201, + 50, + 201, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 202, + 23, + 202, + 53, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 202, + 55, + 202, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 203, + 23, + 203, + 53, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 203, + 55, + 203, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 204, + 23, + 204, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 204, + 49, + 204, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu11_", + "count": 1, + "regions": [ + [ + 205, + 23, + 205, + 52, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu12_", + "count": 0, + "regions": [ + [ + 205, + 54, + 205, + 85, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSbyKXEfu13_", + "count": 1, + "regions": [ + [ + 206, + 23, + 206, + 52, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC14pathAssertions5pathsySDySSypG_tFSSyXEfu14_", + "count": 0, + "regions": [ + [ + 206, + 54, + 206, + 85, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 209, + 64, + 260, + 6, + 1, + 0, + 0, + 0 + ], + [ + 210, + 62, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 211, + 52, + 213, + 14, + 1, + 0, + 0, + 0 + ], + [ + 213, + 14, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 213, + 20, + 215, + 14, + 0, + 0, + 0, + 0 + ], + [ + 215, + 14, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 217, + 62, + 223, + 14, + 1, + 0, + 0, + 0 + ], + [ + 223, + 14, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 223, + 20, + 225, + 14, + 0, + 0, + 0, + 0 + ], + [ + 225, + 14, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 227, + 71, + 256, + 14, + 1, + 0, + 0, + 0 + ], + [ + 228, + 64, + 234, + 18, + 1, + 0, + 0, + 0 + ], + [ + 229, + 57, + 231, + 22, + 1, + 0, + 0, + 0 + ], + [ + 231, + 22, + 234, + 18, + 1, + 0, + 0, + 0 + ], + [ + 231, + 28, + 233, + 22, + 0, + 0, + 0, + 0 + ], + [ + 233, + 22, + 234, + 18, + 1, + 0, + 0, + 0 + ], + [ + 234, + 18, + 256, + 14, + 1, + 0, + 0, + 0 + ], + [ + 234, + 24, + 236, + 18, + 0, + 0, + 0, + 0 + ], + [ + 236, + 18, + 256, + 14, + 1, + 0, + 0, + 0 + ], + [ + 238, + 78, + 253, + 18, + 1, + 0, + 0, + 0 + ], + [ + 239, + 64, + 241, + 22, + 1, + 0, + 0, + 0 + ], + [ + 241, + 22, + 253, + 18, + 1, + 0, + 0, + 0 + ], + [ + 241, + 28, + 243, + 22, + 0, + 0, + 0, + 0 + ], + [ + 243, + 22, + 253, + 18, + 1, + 0, + 0, + 0 + ], + [ + 244, + 93, + 250, + 22, + 1, + 0, + 0, + 0 + ], + [ + 245, + 69, + 247, + 26, + 1, + 0, + 0, + 0 + ], + [ + 247, + 26, + 250, + 22, + 1, + 0, + 0, + 0 + ], + [ + 247, + 32, + 249, + 26, + 0, + 0, + 0, + 0 + ], + [ + 249, + 26, + 250, + 22, + 1, + 0, + 0, + 0 + ], + [ + 250, + 22, + 253, + 18, + 1, + 0, + 0, + 0 + ], + [ + 250, + 28, + 252, + 22, + 0, + 0, + 0, + 0 + ], + [ + 252, + 22, + 253, + 18, + 1, + 0, + 0, + 0 + ], + [ + 253, + 18, + 256, + 14, + 1, + 0, + 0, + 0 + ], + [ + 253, + 24, + 255, + 18, + 0, + 0, + 0, + 0 + ], + [ + 255, + 18, + 256, + 14, + 1, + 0, + 0, + 0 + ], + [ + 256, + 14, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 256, + 20, + 258, + 14, + 0, + 0, + 0, + 0 + ], + [ + 258, + 14, + 259, + 10, + 1, + 0, + 0, + 0 + ], + [ + 259, + 10, + 260, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 212, + 31, + 212, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 212, + 49, + 212, + 80, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 218, + 31, + 218, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 218, + 56, + 218, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 219, + 31, + 219, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 219, + 62, + 219, + 107, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 220, + 31, + 220, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 220, + 58, + 220, + 99, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 221, + 31, + 221, + 65, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 221, + 67, + 221, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 222, + 31, + 222, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 222, + 52, + 222, + 93, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu11_", + "count": 1, + "regions": [ + [ + 230, + 39, + 230, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu12_", + "count": 0, + "regions": [ + [ + 230, + 57, + 230, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu13_", + "count": 1, + "regions": [ + [ + 240, + 39, + 240, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu14_", + "count": 0, + "regions": [ + [ + 240, + 57, + 240, + 108, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu15_", + "count": 1, + "regions": [ + [ + 246, + 43, + 246, + 59, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC25pearDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu16_", + "count": 0, + "regions": [ + [ + 246, + 61, + 246, + 123, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 262, + 65, + 316, + 6, + 1, + 0, + 0, + 0 + ], + [ + 263, + 63, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 264, + 52, + 266, + 14, + 1, + 0, + 0, + 0 + ], + [ + 266, + 14, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 266, + 20, + 268, + 14, + 0, + 0, + 0, + 0 + ], + [ + 268, + 14, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 270, + 62, + 273, + 14, + 1, + 0, + 0, + 0 + ], + [ + 273, + 14, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 273, + 20, + 275, + 14, + 0, + 0, + 0, + 0 + ], + [ + 275, + 14, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 277, + 71, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 278, + 64, + 284, + 18, + 1, + 0, + 0, + 0 + ], + [ + 279, + 57, + 281, + 22, + 1, + 0, + 0, + 0 + ], + [ + 281, + 22, + 284, + 18, + 1, + 0, + 0, + 0 + ], + [ + 281, + 28, + 283, + 22, + 0, + 0, + 0, + 0 + ], + [ + 283, + 22, + 284, + 18, + 1, + 0, + 0, + 0 + ], + [ + 284, + 18, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 284, + 24, + 286, + 18, + 0, + 0, + 0, + 0 + ], + [ + 286, + 18, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 288, + 70, + 299, + 18, + 1, + 0, + 0, + 0 + ], + [ + 289, + 60, + 291, + 22, + 1, + 0, + 0, + 0 + ], + [ + 291, + 22, + 299, + 18, + 1, + 0, + 0, + 0 + ], + [ + 291, + 28, + 293, + 22, + 0, + 0, + 0, + 0 + ], + [ + 293, + 22, + 299, + 18, + 1, + 0, + 0, + 0 + ], + [ + 294, + 64, + 296, + 22, + 1, + 0, + 0, + 0 + ], + [ + 296, + 22, + 299, + 18, + 1, + 0, + 0, + 0 + ], + [ + 296, + 28, + 298, + 22, + 0, + 0, + 0, + 0 + ], + [ + 298, + 22, + 299, + 18, + 1, + 0, + 0, + 0 + ], + [ + 299, + 18, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 299, + 24, + 301, + 18, + 0, + 0, + 0, + 0 + ], + [ + 301, + 18, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 303, + 68, + 309, + 18, + 1, + 0, + 0, + 0 + ], + [ + 304, + 58, + 306, + 22, + 1, + 0, + 0, + 0 + ], + [ + 306, + 22, + 309, + 18, + 1, + 0, + 0, + 0 + ], + [ + 306, + 28, + 308, + 22, + 0, + 0, + 0, + 0 + ], + [ + 308, + 22, + 309, + 18, + 1, + 0, + 0, + 0 + ], + [ + 309, + 18, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 309, + 24, + 311, + 18, + 0, + 0, + 0, + 0 + ], + [ + 311, + 18, + 312, + 14, + 1, + 0, + 0, + 0 + ], + [ + 312, + 14, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 312, + 20, + 314, + 14, + 0, + 0, + 0, + 0 + ], + [ + 314, + 14, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 315, + 10, + 316, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 265, + 31, + 265, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 265, + 49, + 265, + 81, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 271, + 31, + 271, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 271, + 60, + 271, + 96, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 272, + 31, + 272, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 272, + 52, + 272, + 94, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 280, + 39, + 280, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 280, + 57, + 280, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 290, + 39, + 290, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 290, + 58, + 290, + 106, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 295, + 39, + 295, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 295, + 59, + 295, + 109, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu11_", + "count": 1, + "regions": [ + [ + 305, + 39, + 305, + 71, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC26appleDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu12_", + "count": 0, + "regions": [ + [ + 305, + 73, + 305, + 120, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 319, + 66, + 336, + 6, + 1, + 0, + 0, + 0 + ], + [ + 320, + 72, + 322, + 10, + 0, + 0, + 0, + 0 + ], + [ + 322, + 10, + 336, + 6, + 1, + 0, + 0, + 0 + ], + [ + 323, + 48, + 325, + 10, + 1, + 0, + 0, + 0 + ], + [ + 325, + 10, + 336, + 6, + 1, + 0, + 0, + 0 + ], + [ + 325, + 16, + 327, + 10, + 0, + 0, + 0, + 0 + ], + [ + 327, + 10, + 336, + 6, + 1, + 0, + 0, + 0 + ], + [ + 329, + 58, + 333, + 10, + 1, + 0, + 0, + 0 + ], + [ + 333, + 10, + 336, + 6, + 1, + 0, + 0, + 0 + ], + [ + 333, + 16, + 335, + 10, + 0, + 0, + 0, + 0 + ], + [ + 335, + 10, + 336, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 324, + 27, + 324, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 324, + 45, + 324, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 330, + 27, + 330, + 52, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 330, + 54, + 330, + 102, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 331, + 27, + 331, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 331, + 56, + 331, + 106, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSiyKXEfu5_", + "count": 1, + "regions": [ + [ + 332, + 28, + 332, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSiyKXEfu6_", + "count": 1, + "regions": [ + [ + 332, + 44, + 332, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC27bananaDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu7_", + "count": 0, + "regions": [ + [ + 332, + 47, + 332, + 89, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 339, + 71, + 363, + 6, + 1, + 0, + 0, + 0 + ], + [ + 340, + 73, + 342, + 10, + 0, + 0, + 0, + 0 + ], + [ + 342, + 10, + 363, + 6, + 1, + 0, + 0, + 0 + ], + [ + 343, + 68, + 353, + 10, + 1, + 0, + 0, + 0 + ], + [ + 344, + 68, + 350, + 14, + 1, + 0, + 0, + 0 + ], + [ + 345, + 60, + 347, + 18, + 1, + 0, + 0, + 0 + ], + [ + 347, + 18, + 350, + 14, + 1, + 0, + 0, + 0 + ], + [ + 347, + 24, + 349, + 18, + 0, + 0, + 0, + 0 + ], + [ + 349, + 18, + 350, + 14, + 1, + 0, + 0, + 0 + ], + [ + 350, + 14, + 353, + 10, + 1, + 0, + 0, + 0 + ], + [ + 350, + 20, + 352, + 14, + 0, + 0, + 0, + 0 + ], + [ + 352, + 14, + 353, + 10, + 1, + 0, + 0, + 0 + ], + [ + 353, + 10, + 363, + 6, + 1, + 0, + 0, + 0 + ], + [ + 354, + 83, + 356, + 10, + 0, + 0, + 0, + 0 + ], + [ + 356, + 10, + 363, + 6, + 1, + 0, + 0, + 0 + ], + [ + 357, + 64, + 360, + 10, + 1, + 0, + 0, + 0 + ], + [ + 360, + 10, + 363, + 6, + 1, + 0, + 0, + 0 + ], + [ + 360, + 16, + 362, + 10, + 0, + 0, + 0, + 0 + ], + [ + 362, + 10, + 363, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 346, + 35, + 346, + 73, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 346, + 75, + 346, + 137, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 358, + 27, + 358, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 358, + 56, + 358, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSiyKXEfu3_", + "count": 1, + "regions": [ + [ + 359, + 28, + 359, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSiyKXEfu4_", + "count": 1, + "regions": [ + [ + 359, + 44, + 359, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC32nestedModelDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu5_", + "count": 0, + "regions": [ + [ + 359, + 47, + 359, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC30uglifruitDefinitionsAssertions11definitionsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 365, + 69, + 375, + 6, + 1, + 0, + 0, + 0 + ], + [ + 366, + 67, + 374, + 10, + 1, + 0, + 0, + 0 + ], + [ + 367, + 52, + 369, + 14, + 1, + 0, + 0, + 0 + ], + [ + 369, + 14, + 374, + 10, + 1, + 0, + 0, + 0 + ], + [ + 369, + 20, + 371, + 14, + 0, + 0, + 0, + 0 + ], + [ + 371, + 14, + 374, + 10, + 1, + 0, + 0, + 0 + ], + [ + 374, + 10, + 375, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC30uglifruitDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 368, + 31, + 368, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC30uglifruitDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 368, + 49, + 368, + 85, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC30uglifruitDefinitionsAssertions11definitionsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 373, + 27, + 373, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC30uglifruitDefinitionsAssertions11definitionsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 373, + 53, + 373, + 99, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 377, + 55, + 443, + 6, + 1, + 0, + 0, + 0 + ], + [ + 379, + 64, + 440, + 10, + 1, + 0, + 0, + 0 + ], + [ + 381, + 56, + 437, + 14, + 1, + 0, + 0, + 0 + ], + [ + 383, + 75, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 387, + 60, + 389, + 22, + 1, + 0, + 0, + 0 + ], + [ + 389, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 389, + 28, + 391, + 22, + 0, + 0, + 0, + 0 + ], + [ + 391, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 392, + 61, + 394, + 22, + 1, + 0, + 0, + 0 + ], + [ + 394, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 394, + 28, + 396, + 22, + 0, + 0, + 0, + 0 + ], + [ + 396, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 397, + 67, + 399, + 22, + 1, + 0, + 0, + 0 + ], + [ + 399, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 399, + 28, + 401, + 22, + 0, + 0, + 0, + 0 + ], + [ + 401, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 402, + 61, + 404, + 22, + 1, + 0, + 0, + 0 + ], + [ + 404, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 404, + 28, + 406, + 22, + 0, + 0, + 0, + 0 + ], + [ + 406, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 410, + 60, + 412, + 22, + 1, + 0, + 0, + 0 + ], + [ + 412, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 412, + 28, + 414, + 22, + 0, + 0, + 0, + 0 + ], + [ + 414, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 415, + 61, + 417, + 22, + 1, + 0, + 0, + 0 + ], + [ + 417, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 417, + 28, + 419, + 22, + 0, + 0, + 0, + 0 + ], + [ + 419, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 420, + 67, + 422, + 22, + 1, + 0, + 0, + 0 + ], + [ + 422, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 422, + 28, + 424, + 22, + 0, + 0, + 0, + 0 + ], + [ + 424, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 425, + 75, + 431, + 22, + 1, + 0, + 0, + 0 + ], + [ + 426, + 53, + 428, + 26, + 1, + 0, + 0, + 0 + ], + [ + 428, + 26, + 431, + 22, + 1, + 0, + 0, + 0 + ], + [ + 428, + 32, + 430, + 26, + 0, + 0, + 0, + 0 + ], + [ + 430, + 26, + 431, + 22, + 1, + 0, + 0, + 0 + ], + [ + 431, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 431, + 28, + 433, + 22, + 0, + 0, + 0, + 0 + ], + [ + 433, + 22, + 434, + 18, + 1, + 0, + 0, + 0 + ], + [ + 434, + 18, + 437, + 14, + 1, + 0, + 0, + 0 + ], + [ + 434, + 24, + 436, + 18, + 0, + 0, + 0, + 0 + ], + [ + 436, + 18, + 437, + 14, + 1, + 0, + 0, + 0 + ], + [ + 437, + 14, + 440, + 10, + 1, + 0, + 0, + 0 + ], + [ + 437, + 20, + 439, + 14, + 0, + 0, + 0, + 0 + ], + [ + 439, + 14, + 440, + 10, + 1, + 0, + 0, + 0 + ], + [ + 440, + 10, + 443, + 6, + 1, + 0, + 0, + 0 + ], + [ + 440, + 16, + 442, + 10, + 0, + 0, + 0, + 0 + ], + [ + 442, + 10, + 443, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 384, + 35, + 384, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 384, + 58, + 384, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 388, + 39, + 388, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 388, + 56, + 388, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 393, + 39, + 393, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 393, + 53, + 393, + 113, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 398, + 39, + 398, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 398, + 57, + 398, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 403, + 39, + 403, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 403, + 57, + 403, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 411, + 39, + 411, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 411, + 56, + 411, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu11_", + "count": 1, + "regions": [ + [ + 416, + 39, + 416, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu12_", + "count": 0, + "regions": [ + [ + 416, + 56, + 416, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu13_", + "count": 1, + "regions": [ + [ + 421, + 39, + 421, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu14_", + "count": 0, + "regions": [ + [ + 421, + 57, + 421, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSbyKXEfu15_", + "count": 1, + "regions": [ + [ + 427, + 43, + 427, + 71, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions15pathsySDySSypG_tFSSyXEfu16_", + "count": 0, + "regions": [ + [ + 427, + 73, + 427, + 133, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 445, + 55, + 494, + 6, + 1, + 0, + 0, + 0 + ], + [ + 447, + 64, + 491, + 10, + 1, + 0, + 0, + 0 + ], + [ + 449, + 56, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 451, + 64, + 454, + 18, + 1, + 0, + 0, + 0 + ], + [ + 454, + 18, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 454, + 24, + 456, + 18, + 0, + 0, + 0, + 0 + ], + [ + 456, + 18, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 458, + 64, + 461, + 18, + 1, + 0, + 0, + 0 + ], + [ + 461, + 18, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 461, + 24, + 463, + 18, + 0, + 0, + 0, + 0 + ], + [ + 463, + 18, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 465, + 71, + 485, + 18, + 1, + 0, + 0, + 0 + ], + [ + 466, + 76, + 481, + 22, + 1, + 0, + 0, + 0 + ], + [ + 467, + 83, + 469, + 26, + 1, + 0, + 0, + 0 + ], + [ + 469, + 26, + 481, + 22, + 1, + 0, + 0, + 0 + ], + [ + 469, + 32, + 471, + 26, + 0, + 0, + 0, + 0 + ], + [ + 471, + 26, + 481, + 22, + 1, + 0, + 0, + 0 + ], + [ + 472, + 80, + 478, + 26, + 1, + 0, + 0, + 0 + ], + [ + 473, + 68, + 475, + 30, + 1, + 0, + 0, + 0 + ], + [ + 475, + 30, + 478, + 26, + 1, + 0, + 0, + 0 + ], + [ + 475, + 36, + 477, + 30, + 0, + 0, + 0, + 0 + ], + [ + 477, + 30, + 478, + 26, + 1, + 0, + 0, + 0 + ], + [ + 478, + 26, + 481, + 22, + 1, + 0, + 0, + 0 + ], + [ + 478, + 32, + 480, + 26, + 0, + 0, + 0, + 0 + ], + [ + 480, + 26, + 481, + 22, + 1, + 0, + 0, + 0 + ], + [ + 481, + 22, + 485, + 18, + 1, + 0, + 0, + 0 + ], + [ + 481, + 28, + 483, + 22, + 0, + 0, + 0, + 0 + ], + [ + 483, + 22, + 485, + 18, + 1, + 0, + 0, + 0 + ], + [ + 485, + 18, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 485, + 24, + 487, + 18, + 0, + 0, + 0, + 0 + ], + [ + 487, + 18, + 488, + 14, + 1, + 0, + 0, + 0 + ], + [ + 488, + 14, + 491, + 10, + 1, + 0, + 0, + 0 + ], + [ + 488, + 20, + 490, + 14, + 0, + 0, + 0, + 0 + ], + [ + 490, + 14, + 491, + 10, + 1, + 0, + 0, + 0 + ], + [ + 491, + 10, + 494, + 6, + 1, + 0, + 0, + 0 + ], + [ + 491, + 16, + 493, + 10, + 0, + 0, + 0, + 0 + ], + [ + 493, + 10, + 494, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 452, + 35, + 452, + 72, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 452, + 74, + 452, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 453, + 35, + 453, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 453, + 56, + 453, + 109, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 459, + 35, + 459, + 72, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 459, + 74, + 459, + 142, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 460, + 35, + 460, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 460, + 56, + 460, + 109, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 468, + 43, + 468, + 79, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 468, + 81, + 468, + 145, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 474, + 47, + 474, + 75, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 474, + 77, + 474, + 136, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSbyKXEfu11_", + "count": 1, + "regions": [ + [ + 484, + 35, + 484, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions25pathsySDySSypG_tFSSyXEfu12_", + "count": 0, + "regions": [ + [ + 484, + 57, + 484, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 496, + 55, + 528, + 6, + 1, + 0, + 0, + 0 + ], + [ + 497, + 59, + 507, + 10, + 1, + 0, + 0, + 0 + ], + [ + 498, + 58, + 504, + 14, + 1, + 0, + 0, + 0 + ], + [ + 499, + 76, + 501, + 18, + 1, + 0, + 0, + 0 + ], + [ + 501, + 18, + 504, + 14, + 1, + 0, + 0, + 0 + ], + [ + 501, + 24, + 503, + 18, + 0, + 0, + 0, + 0 + ], + [ + 503, + 18, + 504, + 14, + 1, + 0, + 0, + 0 + ], + [ + 504, + 14, + 507, + 10, + 1, + 0, + 0, + 0 + ], + [ + 504, + 20, + 506, + 14, + 0, + 0, + 0, + 0 + ], + [ + 506, + 14, + 507, + 10, + 1, + 0, + 0, + 0 + ], + [ + 507, + 10, + 528, + 6, + 1, + 0, + 0, + 0 + ], + [ + 507, + 16, + 509, + 10, + 0, + 0, + 0, + 0 + ], + [ + 509, + 10, + 528, + 6, + 1, + 0, + 0, + 0 + ], + [ + 512, + 59, + 525, + 10, + 1, + 0, + 0, + 0 + ], + [ + 514, + 62, + 516, + 14, + 1, + 0, + 0, + 0 + ], + [ + 516, + 14, + 525, + 10, + 1, + 0, + 0, + 0 + ], + [ + 516, + 20, + 518, + 14, + 0, + 0, + 0, + 0 + ], + [ + 518, + 14, + 525, + 10, + 1, + 0, + 0, + 0 + ], + [ + 520, + 56, + 522, + 14, + 1, + 0, + 0, + 0 + ], + [ + 522, + 14, + 525, + 10, + 1, + 0, + 0, + 0 + ], + [ + 522, + 20, + 524, + 14, + 0, + 0, + 0, + 0 + ], + [ + 524, + 14, + 525, + 10, + 1, + 0, + 0, + 0 + ], + [ + 525, + 10, + 528, + 6, + 1, + 0, + 0, + 0 + ], + [ + 525, + 16, + 527, + 10, + 0, + 0, + 0, + 0 + ], + [ + 527, + 10, + 528, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 500, + 35, + 500, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 500, + 58, + 500, + 109, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 515, + 31, + 515, + 58, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 515, + 60, + 515, + 127, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 521, + 31, + 521, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions35pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 521, + 57, + 521, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 530, + 55, + 569, + 6, + 1, + 0, + 0, + 0 + ], + [ + 532, + 64, + 566, + 10, + 1, + 0, + 0, + 0 + ], + [ + 534, + 56, + 563, + 14, + 1, + 0, + 0, + 0 + ], + [ + 536, + 75, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 540, + 59, + 542, + 22, + 1, + 0, + 0, + 0 + ], + [ + 542, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 542, + 28, + 544, + 22, + 0, + 0, + 0, + 0 + ], + [ + 544, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 545, + 60, + 547, + 22, + 1, + 0, + 0, + 0 + ], + [ + 547, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 547, + 28, + 549, + 22, + 0, + 0, + 0, + 0 + ], + [ + 549, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 550, + 66, + 552, + 22, + 1, + 0, + 0, + 0 + ], + [ + 552, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 552, + 28, + 554, + 22, + 0, + 0, + 0, + 0 + ], + [ + 554, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 555, + 60, + 557, + 22, + 1, + 0, + 0, + 0 + ], + [ + 557, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 557, + 28, + 559, + 22, + 0, + 0, + 0, + 0 + ], + [ + 559, + 22, + 560, + 18, + 1, + 0, + 0, + 0 + ], + [ + 560, + 18, + 563, + 14, + 1, + 0, + 0, + 0 + ], + [ + 560, + 24, + 562, + 18, + 0, + 0, + 0, + 0 + ], + [ + 562, + 18, + 563, + 14, + 1, + 0, + 0, + 0 + ], + [ + 563, + 14, + 566, + 10, + 1, + 0, + 0, + 0 + ], + [ + 563, + 20, + 565, + 14, + 0, + 0, + 0, + 0 + ], + [ + 565, + 14, + 566, + 10, + 1, + 0, + 0, + 0 + ], + [ + 566, + 10, + 569, + 6, + 1, + 0, + 0, + 0 + ], + [ + 566, + 16, + 568, + 10, + 0, + 0, + 0, + 0 + ], + [ + 568, + 10, + 569, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 537, + 35, + 537, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 537, + 58, + 537, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 541, + 39, + 541, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 541, + 56, + 541, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 546, + 39, + 546, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 546, + 53, + 546, + 113, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 551, + 39, + 551, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 551, + 57, + 551, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 556, + 39, + 556, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22pathContentAssertions45pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 556, + 58, + 556, + 118, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 571, + 52, + 610, + 6, + 1, + 0, + 0, + 0 + ], + [ + 573, + 63, + 607, + 10, + 1, + 0, + 0, + 0 + ], + [ + 575, + 56, + 604, + 14, + 1, + 0, + 0, + 0 + ], + [ + 577, + 75, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 581, + 59, + 583, + 22, + 1, + 0, + 0, + 0 + ], + [ + 583, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 583, + 28, + 585, + 22, + 0, + 0, + 0, + 0 + ], + [ + 585, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 586, + 60, + 588, + 22, + 1, + 0, + 0, + 0 + ], + [ + 588, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 588, + 28, + 590, + 22, + 0, + 0, + 0, + 0 + ], + [ + 590, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 591, + 66, + 593, + 22, + 1, + 0, + 0, + 0 + ], + [ + 593, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 593, + 28, + 595, + 22, + 0, + 0, + 0, + 0 + ], + [ + 595, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 596, + 60, + 598, + 22, + 1, + 0, + 0, + 0 + ], + [ + 598, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 598, + 28, + 600, + 22, + 0, + 0, + 0, + 0 + ], + [ + 600, + 22, + 601, + 18, + 1, + 0, + 0, + 0 + ], + [ + 601, + 18, + 604, + 14, + 1, + 0, + 0, + 0 + ], + [ + 601, + 24, + 603, + 18, + 0, + 0, + 0, + 0 + ], + [ + 603, + 18, + 604, + 14, + 1, + 0, + 0, + 0 + ], + [ + 604, + 14, + 607, + 10, + 1, + 0, + 0, + 0 + ], + [ + 604, + 20, + 606, + 14, + 0, + 0, + 0, + 0 + ], + [ + 606, + 14, + 607, + 10, + 1, + 0, + 0, + 0 + ], + [ + 607, + 10, + 610, + 6, + 1, + 0, + 0, + 0 + ], + [ + 607, + 16, + 609, + 10, + 0, + 0, + 0, + 0 + ], + [ + 609, + 10, + 610, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 578, + 35, + 578, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 578, + 58, + 578, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 582, + 39, + 582, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 582, + 57, + 582, + 113, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 587, + 39, + 587, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 587, + 62, + 587, + 120, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 592, + 39, + 592, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 592, + 49, + 592, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 597, + 39, + 597, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams15pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 597, + 57, + 597, + 115, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 612, + 52, + 656, + 6, + 1, + 0, + 0, + 0 + ], + [ + 614, + 63, + 653, + 10, + 1, + 0, + 0, + 0 + ], + [ + 616, + 56, + 650, + 14, + 1, + 0, + 0, + 0 + ], + [ + 618, + 75, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 622, + 59, + 624, + 22, + 1, + 0, + 0, + 0 + ], + [ + 624, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 624, + 28, + 626, + 22, + 0, + 0, + 0, + 0 + ], + [ + 626, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 627, + 60, + 629, + 22, + 1, + 0, + 0, + 0 + ], + [ + 629, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 629, + 28, + 631, + 22, + 0, + 0, + 0, + 0 + ], + [ + 631, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 632, + 64, + 634, + 22, + 1, + 0, + 0, + 0 + ], + [ + 634, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 634, + 28, + 636, + 22, + 0, + 0, + 0, + 0 + ], + [ + 636, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 637, + 66, + 639, + 22, + 1, + 0, + 0, + 0 + ], + [ + 639, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 639, + 28, + 641, + 22, + 0, + 0, + 0, + 0 + ], + [ + 641, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 642, + 60, + 644, + 22, + 1, + 0, + 0, + 0 + ], + [ + 644, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 644, + 28, + 646, + 22, + 0, + 0, + 0, + 0 + ], + [ + 646, + 22, + 647, + 18, + 1, + 0, + 0, + 0 + ], + [ + 647, + 18, + 650, + 14, + 1, + 0, + 0, + 0 + ], + [ + 647, + 24, + 649, + 18, + 0, + 0, + 0, + 0 + ], + [ + 649, + 18, + 650, + 14, + 1, + 0, + 0, + 0 + ], + [ + 650, + 14, + 653, + 10, + 1, + 0, + 0, + 0 + ], + [ + 650, + 20, + 652, + 14, + 0, + 0, + 0, + 0 + ], + [ + 652, + 14, + 653, + 10, + 1, + 0, + 0, + 0 + ], + [ + 653, + 10, + 656, + 6, + 1, + 0, + 0, + 0 + ], + [ + 653, + 16, + 655, + 10, + 0, + 0, + 0, + 0 + ], + [ + 655, + 10, + 656, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 619, + 35, + 619, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 619, + 58, + 619, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 623, + 39, + 623, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 623, + 57, + 623, + 113, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 628, + 39, + 628, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 628, + 59, + 628, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 633, + 39, + 633, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 633, + 58, + 633, + 118, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 638, + 39, + 638, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 638, + 49, + 638, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 643, + 39, + 643, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams25pathsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 643, + 58, + 643, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 658, + 52, + 698, + 6, + 1, + 0, + 0, + 0 + ], + [ + 660, + 63, + 695, + 10, + 1, + 0, + 0, + 0 + ], + [ + 662, + 56, + 692, + 14, + 1, + 0, + 0, + 0 + ], + [ + 664, + 75, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 668, + 59, + 670, + 22, + 1, + 0, + 0, + 0 + ], + [ + 670, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 670, + 28, + 672, + 22, + 0, + 0, + 0, + 0 + ], + [ + 672, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 673, + 60, + 675, + 22, + 1, + 0, + 0, + 0 + ], + [ + 675, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 675, + 28, + 677, + 22, + 0, + 0, + 0, + 0 + ], + [ + 677, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 678, + 66, + 680, + 22, + 1, + 0, + 0, + 0 + ], + [ + 680, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 680, + 28, + 682, + 22, + 0, + 0, + 0, + 0 + ], + [ + 682, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 683, + 60, + 685, + 22, + 1, + 0, + 0, + 0 + ], + [ + 685, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 685, + 28, + 687, + 22, + 0, + 0, + 0, + 0 + ], + [ + 687, + 22, + 689, + 18, + 1, + 0, + 0, + 0 + ], + [ + 689, + 18, + 692, + 14, + 1, + 0, + 0, + 0 + ], + [ + 689, + 24, + 691, + 18, + 0, + 0, + 0, + 0 + ], + [ + 691, + 18, + 692, + 14, + 1, + 0, + 0, + 0 + ], + [ + 692, + 14, + 695, + 10, + 1, + 0, + 0, + 0 + ], + [ + 692, + 20, + 694, + 14, + 0, + 0, + 0, + 0 + ], + [ + 694, + 14, + 695, + 10, + 1, + 0, + 0, + 0 + ], + [ + 695, + 10, + 698, + 6, + 1, + 0, + 0, + 0 + ], + [ + 695, + 16, + 697, + 10, + 0, + 0, + 0, + 0 + ], + [ + 697, + 10, + 698, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 665, + 35, + 665, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 665, + 58, + 665, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 669, + 39, + 669, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 669, + 57, + 669, + 113, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 674, + 39, + 674, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 674, + 59, + 674, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 679, + 40, + 679, + 48, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 679, + 50, + 679, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 684, + 39, + 684, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 684, + 58, + 684, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 688, + 35, + 688, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams35pathsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 688, + 59, + 688, + 145, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 700, + 52, + 758, + 6, + 1, + 0, + 0, + 0 + ], + [ + 702, + 63, + 755, + 10, + 1, + 0, + 0, + 0 + ], + [ + 704, + 56, + 752, + 14, + 1, + 0, + 0, + 0 + ], + [ + 706, + 75, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 710, + 59, + 712, + 22, + 1, + 0, + 0, + 0 + ], + [ + 712, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 712, + 28, + 714, + 22, + 0, + 0, + 0, + 0 + ], + [ + 714, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 715, + 60, + 717, + 22, + 1, + 0, + 0, + 0 + ], + [ + 717, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 717, + 28, + 719, + 22, + 0, + 0, + 0, + 0 + ], + [ + 719, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 720, + 69, + 731, + 22, + 1, + 0, + 0, + 0 + ], + [ + 721, + 64, + 723, + 26, + 1, + 0, + 0, + 0 + ], + [ + 723, + 26, + 731, + 22, + 1, + 0, + 0, + 0 + ], + [ + 723, + 32, + 725, + 26, + 0, + 0, + 0, + 0 + ], + [ + 725, + 26, + 731, + 22, + 1, + 0, + 0, + 0 + ], + [ + 726, + 68, + 728, + 26, + 1, + 0, + 0, + 0 + ], + [ + 728, + 26, + 731, + 22, + 1, + 0, + 0, + 0 + ], + [ + 728, + 32, + 730, + 26, + 0, + 0, + 0, + 0 + ], + [ + 730, + 26, + 731, + 22, + 1, + 0, + 0, + 0 + ], + [ + 731, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 731, + 28, + 733, + 22, + 0, + 0, + 0, + 0 + ], + [ + 733, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 734, + 84, + 736, + 22, + 1, + 0, + 0, + 0 + ], + [ + 736, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 736, + 28, + 738, + 22, + 0, + 0, + 0, + 0 + ], + [ + 738, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 739, + 66, + 741, + 22, + 1, + 0, + 0, + 0 + ], + [ + 741, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 741, + 28, + 743, + 22, + 0, + 0, + 0, + 0 + ], + [ + 743, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 744, + 60, + 746, + 22, + 1, + 0, + 0, + 0 + ], + [ + 746, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 746, + 28, + 748, + 22, + 0, + 0, + 0, + 0 + ], + [ + 748, + 22, + 749, + 18, + 1, + 0, + 0, + 0 + ], + [ + 749, + 18, + 752, + 14, + 1, + 0, + 0, + 0 + ], + [ + 749, + 24, + 751, + 18, + 0, + 0, + 0, + 0 + ], + [ + 751, + 18, + 752, + 14, + 1, + 0, + 0, + 0 + ], + [ + 752, + 14, + 755, + 10, + 1, + 0, + 0, + 0 + ], + [ + 752, + 20, + 754, + 14, + 0, + 0, + 0, + 0 + ], + [ + 754, + 14, + 755, + 10, + 1, + 0, + 0, + 0 + ], + [ + 755, + 10, + 758, + 6, + 1, + 0, + 0, + 0 + ], + [ + 755, + 16, + 757, + 10, + 0, + 0, + 0, + 0 + ], + [ + 757, + 10, + 758, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 707, + 35, + 707, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 707, + 58, + 707, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 711, + 39, + 711, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 711, + 57, + 711, + 113, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 716, + 39, + 716, + 57, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 716, + 59, + 716, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 722, + 43, + 722, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 722, + 62, + 722, + 127, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu7_", + "count": 1, + "regions": [ + [ + 727, + 43, + 727, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu8_", + "count": 0, + "regions": [ + [ + 727, + 62, + 727, + 129, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu9_", + "count": 1, + "regions": [ + [ + 735, + 39, + 735, + 64, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu10_", + "count": 0, + "regions": [ + [ + 735, + 66, + 735, + 136, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu11_", + "count": 1, + "regions": [ + [ + 740, + 39, + 740, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu12_", + "count": 0, + "regions": [ + [ + 740, + 49, + 740, + 111, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSbyKXEfu13_", + "count": 1, + "regions": [ + [ + 745, + 39, + 745, + 54, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams45pathsySDySSypG_tFSSyXEfu14_", + "count": 0, + "regions": [ + [ + 745, + 56, + 745, + 114, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams55pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 760, + 52, + 783, + 6, + 1, + 0, + 0, + 0 + ], + [ + 761, + 63, + 780, + 10, + 1, + 0, + 0, + 0 + ], + [ + 763, + 56, + 777, + 14, + 1, + 0, + 0, + 0 + ], + [ + 765, + 75, + 774, + 18, + 1, + 0, + 0, + 0 + ], + [ + 769, + 59, + 771, + 22, + 1, + 0, + 0, + 0 + ], + [ + 771, + 22, + 774, + 18, + 1, + 0, + 0, + 0 + ], + [ + 771, + 28, + 773, + 22, + 0, + 0, + 0, + 0 + ], + [ + 773, + 22, + 774, + 18, + 1, + 0, + 0, + 0 + ], + [ + 774, + 18, + 777, + 14, + 1, + 0, + 0, + 0 + ], + [ + 774, + 24, + 776, + 18, + 0, + 0, + 0, + 0 + ], + [ + 776, + 18, + 777, + 14, + 1, + 0, + 0, + 0 + ], + [ + 777, + 14, + 780, + 10, + 1, + 0, + 0, + 0 + ], + [ + 777, + 20, + 779, + 14, + 0, + 0, + 0, + 0 + ], + [ + 779, + 14, + 780, + 10, + 1, + 0, + 0, + 0 + ], + [ + 780, + 10, + 783, + 6, + 1, + 0, + 0, + 0 + ], + [ + 780, + 16, + 782, + 10, + 0, + 0, + 0, + 0 + ], + [ + 782, + 10, + 783, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams55pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 766, + 35, + 766, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams55pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 766, + 58, + 766, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams55pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 770, + 39, + 770, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC19pathGetQueryParams55pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 770, + 57, + 770, + 116, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 785, + 54, + 832, + 6, + 1, + 0, + 0, + 0 + ], + [ + 787, + 63, + 806, + 10, + 1, + 0, + 0, + 0 + ], + [ + 789, + 62, + 803, + 14, + 1, + 0, + 0, + 0 + ], + [ + 791, + 78, + 800, + 18, + 1, + 0, + 0, + 0 + ], + [ + 795, + 59, + 797, + 22, + 1, + 0, + 0, + 0 + ], + [ + 797, + 22, + 800, + 18, + 1, + 0, + 0, + 0 + ], + [ + 797, + 28, + 799, + 22, + 0, + 0, + 0, + 0 + ], + [ + 799, + 22, + 800, + 18, + 1, + 0, + 0, + 0 + ], + [ + 800, + 18, + 803, + 14, + 1, + 0, + 0, + 0 + ], + [ + 800, + 24, + 802, + 18, + 0, + 0, + 0, + 0 + ], + [ + 802, + 18, + 803, + 14, + 1, + 0, + 0, + 0 + ], + [ + 803, + 14, + 806, + 10, + 1, + 0, + 0, + 0 + ], + [ + 803, + 20, + 805, + 14, + 0, + 0, + 0, + 0 + ], + [ + 805, + 14, + 806, + 10, + 1, + 0, + 0, + 0 + ], + [ + 806, + 10, + 832, + 6, + 1, + 0, + 0, + 0 + ], + [ + 806, + 16, + 808, + 10, + 0, + 0, + 0, + 0 + ], + [ + 808, + 10, + 832, + 6, + 1, + 0, + 0, + 0 + ], + [ + 810, + 63, + 829, + 10, + 1, + 0, + 0, + 0 + ], + [ + 812, + 62, + 826, + 14, + 1, + 0, + 0, + 0 + ], + [ + 814, + 78, + 823, + 18, + 1, + 0, + 0, + 0 + ], + [ + 818, + 59, + 820, + 22, + 1, + 0, + 0, + 0 + ], + [ + 820, + 22, + 823, + 18, + 1, + 0, + 0, + 0 + ], + [ + 820, + 28, + 822, + 22, + 0, + 0, + 0, + 0 + ], + [ + 822, + 22, + 823, + 18, + 1, + 0, + 0, + 0 + ], + [ + 823, + 18, + 826, + 14, + 1, + 0, + 0, + 0 + ], + [ + 823, + 24, + 825, + 18, + 0, + 0, + 0, + 0 + ], + [ + 825, + 18, + 826, + 14, + 1, + 0, + 0, + 0 + ], + [ + 826, + 14, + 829, + 10, + 1, + 0, + 0, + 0 + ], + [ + 826, + 20, + 828, + 14, + 0, + 0, + 0, + 0 + ], + [ + 828, + 14, + 829, + 10, + 1, + 0, + 0, + 0 + ], + [ + 829, + 10, + 832, + 6, + 1, + 0, + 0, + 0 + ], + [ + 829, + 16, + 831, + 10, + 0, + 0, + 0, + 0 + ], + [ + 831, + 10, + 832, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 792, + 35, + 792, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 792, + 58, + 792, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 796, + 39, + 796, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 796, + 57, + 796, + 119, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 815, + 35, + 815, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 815, + 58, + 815, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSbyKXEfu5_", + "count": 1, + "regions": [ + [ + 819, + 39, + 819, + 55, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC21pathDeleteQueryParams5pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 819, + 57, + 819, + 119, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tF", + "count": 1, + "regions": [ + [ + 834, + 56, + 886, + 6, + 1, + 0, + 0, + 0 + ], + [ + 837, + 63, + 858, + 10, + 1, + 0, + 0, + 0 + ], + [ + 839, + 56, + 855, + 14, + 1, + 0, + 0, + 0 + ], + [ + 841, + 75, + 852, + 18, + 1, + 0, + 0, + 0 + ], + [ + 844, + 38, + 851, + 22, + 3, + 0, + 0, + 0 + ], + [ + 846, + 70, + 848, + 26, + 3, + 0, + 0, + 0 + ], + [ + 848, + 26, + 851, + 22, + 3, + 0, + 0, + 0 + ], + [ + 848, + 32, + 850, + 26, + 0, + 0, + 0, + 0 + ], + [ + 850, + 26, + 851, + 22, + 3, + 0, + 0, + 0 + ], + [ + 851, + 22, + 852, + 18, + 1, + 0, + 0, + 0 + ], + [ + 852, + 18, + 855, + 14, + 1, + 0, + 0, + 0 + ], + [ + 852, + 24, + 854, + 18, + 0, + 0, + 0, + 0 + ], + [ + 854, + 18, + 855, + 14, + 1, + 0, + 0, + 0 + ], + [ + 855, + 14, + 858, + 10, + 1, + 0, + 0, + 0 + ], + [ + 855, + 20, + 857, + 14, + 0, + 0, + 0, + 0 + ], + [ + 857, + 14, + 858, + 10, + 1, + 0, + 0, + 0 + ], + [ + 858, + 10, + 886, + 6, + 1, + 0, + 0, + 0 + ], + [ + 858, + 16, + 860, + 10, + 0, + 0, + 0, + 0 + ], + [ + 860, + 10, + 886, + 6, + 1, + 0, + 0, + 0 + ], + [ + 862, + 63, + 883, + 10, + 1, + 0, + 0, + 0 + ], + [ + 864, + 59, + 880, + 14, + 1, + 0, + 0, + 0 + ], + [ + 866, + 75, + 877, + 18, + 1, + 0, + 0, + 0 + ], + [ + 869, + 38, + 876, + 22, + 3, + 0, + 0, + 0 + ], + [ + 871, + 70, + 873, + 26, + 3, + 0, + 0, + 0 + ], + [ + 873, + 26, + 876, + 22, + 3, + 0, + 0, + 0 + ], + [ + 873, + 32, + 875, + 26, + 0, + 0, + 0, + 0 + ], + [ + 875, + 26, + 876, + 22, + 3, + 0, + 0, + 0 + ], + [ + 876, + 22, + 877, + 18, + 1, + 0, + 0, + 0 + ], + [ + 877, + 18, + 880, + 14, + 1, + 0, + 0, + 0 + ], + [ + 877, + 24, + 879, + 18, + 0, + 0, + 0, + 0 + ], + [ + 879, + 18, + 880, + 14, + 1, + 0, + 0, + 0 + ], + [ + 880, + 14, + 883, + 10, + 1, + 0, + 0, + 0 + ], + [ + 880, + 20, + 882, + 14, + 0, + 0, + 0, + 0 + ], + [ + 882, + 14, + 883, + 10, + 1, + 0, + 0, + 0 + ], + [ + 883, + 10, + 886, + 6, + 1, + 0, + 0, + 0 + ], + [ + 883, + 16, + 885, + 10, + 0, + 0, + 0, + 0 + ], + [ + 885, + 10, + 886, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 842, + 35, + 842, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 842, + 58, + 842, + 112, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSbyKXEfu1_", + "count": 3, + "regions": [ + [ + 847, + 43, + 847, + 60, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 847, + 62, + 847, + 131, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 867, + 35, + 867, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 867, + 58, + 867, + 115, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSbyKXEfu5_", + "count": 3, + "regions": [ + [ + 872, + 43, + 872, + 60, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23pathOptionalQueryParams5pathsySDySSypG_tFSSyXEfu6_", + "count": 0, + "regions": [ + [ + 872, + 62, + 872, + 134, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC03getD10Dictionary33_4FB3D0E62550538BEFAF444308B1C8A6LLSDySSypGSgyF", + "count": 9, + "regions": [ + [ + 891, + 59, + 909, + 6, + 9, + 0, + 0, + 0 + ], + [ + 892, + 56, + 895, + 10, + 0, + 0, + 0, + 0 + ], + [ + 895, + 10, + 909, + 6, + 9, + 0, + 0, + 0 + ], + [ + 896, + 105, + 899, + 10, + 0, + 0, + 0, + 0 + ], + [ + 899, + 10, + 909, + 6, + 9, + 0, + 0, + 0 + ], + [ + 900, + 90, + 903, + 10, + 0, + 0, + 0, + 0 + ], + [ + 903, + 10, + 909, + 6, + 9, + 0, + 0, + 0 + ], + [ + 904, + 54, + 907, + 10, + 0, + 0, + 0, + 0 + ], + [ + 907, + 10, + 908, + 20, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC04testD7VersionyyF", + "count": 1, + "regions": [ + [ + 914, + 31, + 923, + 6, + 1, + 0, + 0, + 0 + ], + [ + 915, + 54, + 917, + 10, + 0, + 0, + 0, + 0 + ], + [ + 917, + 10, + 923, + 6, + 1, + 0, + 0, + 0 + ], + [ + 918, + 53, + 920, + 10, + 1, + 0, + 0, + 0 + ], + [ + 920, + 10, + 923, + 6, + 1, + 0, + 0, + 0 + ], + [ + 920, + 16, + 922, + 10, + 0, + 0, + 0, + 0 + ], + [ + 922, + 10, + 923, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC04testD7VersionyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 919, + 27, + 919, + 43, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC04testD7VersionyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 919, + 45, + 919, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC12testBasePathyyF", + "count": 1, + "regions": [ + [ + 928, + 25, + 937, + 6, + 1, + 0, + 0, + 0 + ], + [ + 929, + 54, + 931, + 10, + 0, + 0, + 0, + 0 + ], + [ + 931, + 10, + 937, + 6, + 1, + 0, + 0, + 0 + ], + [ + 932, + 55, + 934, + 10, + 1, + 0, + 0, + 0 + ], + [ + 934, + 10, + 937, + 6, + 1, + 0, + 0, + 0 + ], + [ + 934, + 16, + 936, + 10, + 0, + 0, + 0, + 0 + ], + [ + 936, + 10, + 937, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC12testBasePathyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 933, + 27, + 933, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC12testBasePathyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 933, + 44, + 933, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyF", + "count": 1, + "regions": [ + [ + 942, + 21, + 965, + 6, + 1, + 0, + 0, + 0 + ], + [ + 943, + 54, + 945, + 10, + 0, + 0, + 0, + 0 + ], + [ + 945, + 10, + 965, + 6, + 1, + 0, + 0, + 0 + ], + [ + 946, + 57, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 947, + 42, + 949, + 14, + 1, + 0, + 0, + 0 + ], + [ + 949, + 14, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 949, + 20, + 951, + 14, + 0, + 0, + 0, + 0 + ], + [ + 951, + 14, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 953, + 47, + 955, + 14, + 1, + 0, + 0, + 0 + ], + [ + 955, + 14, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 955, + 20, + 957, + 14, + 0, + 0, + 0, + 0 + ], + [ + 957, + 14, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 959, + 46, + 961, + 14, + 1, + 0, + 0, + 0 + ], + [ + 961, + 14, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 961, + 20, + 963, + 14, + 0, + 0, + 0, + 0 + ], + [ + 963, + 14, + 964, + 10, + 1, + 0, + 0, + 0 + ], + [ + 964, + 10, + 965, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyFSbyKXEfu_", + "count": 1, + "regions": [ + [ + 948, + 31, + 948, + 56, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyFSSyXEfu0_", + "count": 0, + "regions": [ + [ + 948, + 58, + 948, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyFSbyKXEfu1_", + "count": 1, + "regions": [ + [ + 954, + 31, + 954, + 60, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyFSSyXEfu2_", + "count": 0, + "regions": [ + [ + 954, + 62, + 954, + 88, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyFSbyKXEfu3_", + "count": 1, + "regions": [ + [ + 960, + 31, + 960, + 47, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC8testInfoyyFSSyXEfu4_", + "count": 0, + "regions": [ + [ + 960, + 49, + 960, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC04testD7ContentyyF", + "count": 1, + "regions": [ + [ + 971, + 31, + 984, + 6, + 1, + 0, + 0, + 0 + ], + [ + 972, + 54, + 974, + 10, + 0, + 0, + 0, + 0 + ], + [ + 974, + 10, + 984, + 6, + 1, + 0, + 0, + 0 + ], + [ + 975, + 56, + 981, + 10, + 1, + 0, + 0, + 0 + ], + [ + 981, + 10, + 984, + 6, + 1, + 0, + 0, + 0 + ], + [ + 981, + 16, + 983, + 10, + 0, + 0, + 0, + 0 + ], + [ + 983, + 10, + 984, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC04testD11QueryParamsyyF", + "count": 1, + "regions": [ + [ + 989, + 35, + 1004, + 6, + 1, + 0, + 0, + 0 + ], + [ + 990, + 54, + 992, + 10, + 0, + 0, + 0, + 0 + ], + [ + 992, + 10, + 1004, + 6, + 1, + 0, + 0, + 0 + ], + [ + 993, + 56, + 1001, + 10, + 1, + 0, + 0, + 0 + ], + [ + 1001, + 10, + 1004, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1001, + 16, + 1003, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1003, + 10, + 1004, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC04testD11DefinitionsyyF", + "count": 1, + "regions": [ + [ + 1009, + 35, + 1020, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1010, + 54, + 1012, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1012, + 10, + 1020, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1013, + 68, + 1017, + 10, + 1, + 0, + 0, + 0 + ], + [ + 1017, + 10, + 1020, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1017, + 16, + 1019, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1019, + 10, + 1020, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC20testArrayReturnTypesyyF", + "count": 1, + "regions": [ + [ + 1025, + 33, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1026, + 54, + 1028, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1028, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1029, + 64, + 1031, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1031, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1033, + 66, + 1035, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1035, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1036, + 60, + 1038, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1038, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1039, + 71, + 1041, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1041, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1042, + 72, + 1044, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1044, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1045, + 74, + 1047, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1047, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1048, + 67, + 1050, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1050, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1052, + 74, + 1054, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1054, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1055, + 61, + 1057, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1057, + 10, + 1059, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC20testArrayReturnTypesyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 1051, + 24, + 1051, + 36, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC20testArrayReturnTypesyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 1051, + 38, + 1051, + 45, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC20testArrayReturnTypesyyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 1051, + 47, + 1051, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC20testArrayReturnTypesyyFSSyKXEfu2_", + "count": 1, + "regions": [ + [ + 1058, + 24, + 1058, + 27, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC20testArrayReturnTypesyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 1058, + 29, + 1058, + 50, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC22testInputTypesModelledyyF", + "count": 1, + "regions": [ + [ + 1112, + 35, + 1120, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1113, + 54, + 1115, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1115, + 10, + 1120, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1116, + 76, + 1118, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1118, + 10, + 1120, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests21TestSwaggerGenerationC23testNestedTypesModelledyyF", + "count": 1, + "regions": [ + [ + 1126, + 36, + 1134, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1127, + 54, + 1129, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1129, + 10, + 1134, + 6, + 1, + 0, + 0, + 0 + ], + [ + 1130, + 76, + 1132, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1132, + 10, + 1134, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestSwaggerGeneration.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 33, + 80, + 50, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC09testEmptyD4NameyyF", + "count": 1, + "regions": [ + [ + 61, + 34, + 72, + 6, + 1, + 0, + 0, + 0 + ], + [ + 65, + 12, + 67, + 10, + 1, + 0, + 0, + 0 + ], + [ + 67, + 62, + 69, + 10, + 1, + 0, + 0, + 0 + ], + [ + 69, + 17, + 71, + 10, + 0, + 0, + 0, + 0 + ], + [ + 71, + 10, + 72, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC20testMissingExtensionyyF", + "count": 1, + "regions": [ + [ + 74, + 33, + 85, + 6, + 1, + 0, + 0, + 0 + ], + [ + 78, + 12, + 80, + 10, + 1, + 0, + 0, + 0 + ], + [ + 80, + 62, + 82, + 10, + 1, + 0, + 0, + 0 + ], + [ + 82, + 17, + 84, + 10, + 0, + 0, + 0, + 0 + ], + [ + 84, + 10, + 85, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC013testNoDefaultE0yyF", + "count": 1, + "regions": [ + [ + 87, + 32, + 97, + 6, + 1, + 0, + 0, + 0 + ], + [ + 90, + 12, + 92, + 10, + 1, + 0, + 0, + 0 + ], + [ + 92, + 80, + 94, + 10, + 1, + 0, + 0, + 0 + ], + [ + 94, + 17, + 96, + 10, + 0, + 0, + 0, + 0 + ], + [ + 96, + 10, + 97, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC10testRenderyyF", + "count": 1, + "regions": [ + [ + 99, + 23, + 109, + 6, + 1, + 0, + 0, + 0 + ], + [ + 103, + 12, + 106, + 10, + 1, + 0, + 0, + 0 + ], + [ + 106, + 17, + 108, + 10, + 0, + 0, + 0, + 0 + ], + [ + 108, + 10, + 109, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC10testRenderyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 105, + 28, + 105, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC10testRenderyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 105, + 37, + 105, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC20testRenderWithServeryyF", + "count": 1, + "regions": [ + [ + 111, + 33, + 115, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC021testRenderWithOptionsH6ServeryyF", + "count": 1, + "regions": [ + [ + 117, + 44, + 121, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testRenderWithServerAndSubRouteryyF", + "count": 1, + "regions": [ + [ + 123, + 45, + 130, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC23setupRouterForRendering33_290F69F3DE606F72578FBC7ADD99B3B2LL_7optionsy0A00G0C_0adE00I7Options_pSgtF", + "count": 3, + "regions": [ + [ + 132, + 94, + 148, + 6, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC23setupRouterForRendering33_290F69F3DE606F72578FBC7ADD99B3B2LL_7optionsy0A00G0C_0adE00I7Options_pSgtFyAG0G7RequestC_AG0G8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 135, + 31, + 147, + 10, + 6, + 0, + 0, + 0 + ], + [ + 136, + 16, + 143, + 14, + 6, + 0, + 0, + 0 + ], + [ + 137, + 41, + 139, + 17, + 2, + 0, + 0, + 0 + ], + [ + 139, + 17, + 143, + 14, + 6, + 0, + 0, + 0 + ], + [ + 139, + 23, + 141, + 17, + 4, + 0, + 0, + 0 + ], + [ + 141, + 17, + 143, + 14, + 6, + 0, + 0, + 0 + ], + [ + 143, + 21, + 146, + 14, + 0, + 0, + 0, + 0 + ], + [ + 146, + 14, + 147, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC30setupRouterForCodableRendering33_290F69F3DE606F72578FBC7ADD99B3B2LL_7optionsy0A00G0C_0adE00J7Options_pSgtF", + "count": 4, + "regions": [ + [ + 150, + 101, + 181, + 6, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC30setupRouterForCodableRendering33_290F69F3DE606F72578FBC7ADD99B3B2LL_7optionsy0A00G0C_0adE00J7Options_pSgtFyAG0G7RequestC_AG0G8ResponseCyyctcfU_", + "count": 6, + "regions": [ + [ + 153, + 31, + 165, + 10, + 6, + 0, + 0, + 0 + ], + [ + 154, + 16, + 161, + 14, + 6, + 0, + 0, + 0 + ], + [ + 155, + 42, + 157, + 18, + 2, + 0, + 0, + 0 + ], + [ + 157, + 18, + 161, + 14, + 6, + 0, + 0, + 0 + ], + [ + 157, + 24, + 159, + 18, + 4, + 0, + 0, + 0 + ], + [ + 159, + 18, + 161, + 14, + 6, + 0, + 0, + 0 + ], + [ + 161, + 21, + 164, + 14, + 0, + 0, + 0, + 0 + ], + [ + 164, + 14, + 165, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC30setupRouterForCodableRendering33_290F69F3DE606F72578FBC7ADD99B3B2LL_7optionsy0A00G0C_0adE00J7Options_pSgtFyAG0G7RequestC_AG0G8ResponseCyyctcfU0_", + "count": 2, + "regions": [ + [ + 167, + 37, + 180, + 10, + 2, + 0, + 0, + 0 + ], + [ + 168, + 16, + 175, + 14, + 2, + 0, + 0, + 0 + ], + [ + 169, + 42, + 171, + 18, + 2, + 0, + 0, + 0 + ], + [ + 171, + 18, + 175, + 14, + 2, + 0, + 0, + 0 + ], + [ + 171, + 24, + 173, + 18, + 0, + 0, + 0, + 0 + ], + [ + 173, + 18, + 175, + 14, + 2, + 0, + 0, + 0 + ], + [ + 175, + 21, + 178, + 14, + 0, + 0, + 0, + 0 + ], + [ + 178, + 14, + 180, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStF", + "count": 7, + "regions": [ + [ + 183, + 90, + 202, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_", + "count": 14, + "regions": [ + [ + 184, + 35, + 201, + 10, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_", + "count": 14, + "regions": [ + [ + 185, + 62, + 200, + 14, + 14, + 0, + 0, + 0 + ], + [ + 186, + 52, + 190, + 18, + 0, + 0, + 0, + 0 + ], + [ + 190, + 18, + 200, + 14, + 14, + 0, + 0, + 0 + ], + [ + 193, + 20, + 196, + 18, + 14, + 0, + 0, + 0 + ], + [ + 196, + 25, + 198, + 18, + 0, + 0, + 0, + 0 + ], + [ + 198, + 18, + 200, + 14, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AM14HTTPStatusCodeOyKXEfu_", + "count": 14, + "regions": [ + [ + 191, + 32, + 191, + 51, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_AM14HTTPStatusCodeOyKXEfu0_", + "count": 14, + "regions": [ + [ + 191, + 53, + 191, + 70, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSyXEfu1_", + "count": 0, + "regions": [ + [ + 191, + 72, + 191, + 117, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu2_", + "count": 14, + "regions": [ + [ + 195, + 36, + 195, + 40, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC019performRenderServerC033_290F69F3DE606F72578FBC7ADD99B3B2LL10withRouter6onPathy0A00R0C_SStFySo17XCTestExpectationCcfU_y0A3Net14ClientResponseCSgcfU_SSSgyKXEfu3_", + "count": 14, + "regions": [ + [ + 195, + 42, + 195, + 56, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC040testRenderWithExtensionAndWithoutDefaultdE0yyF", + "count": 1, + "regions": [ + [ + 204, + 67, + 214, + 6, + 1, + 0, + 0, + 0 + ], + [ + 208, + 12, + 211, + 10, + 1, + 0, + 0, + 0 + ], + [ + 211, + 17, + 213, + 10, + 0, + 0, + 0, + 0 + ], + [ + 213, + 10, + 214, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC040testRenderWithExtensionAndWithoutDefaultdE0yyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 210, + 28, + 210, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC040testRenderWithExtensionAndWithoutDefaultdE0yyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 210, + 37, + 210, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC040testRenderWithExtensionAndWithoutDefaultdE21AfterSettingViewsPathyyF", + "count": 1, + "regions": [ + [ + 216, + 88, + 227, + 6, + 1, + 0, + 0, + 0 + ], + [ + 221, + 12, + 224, + 10, + 1, + 0, + 0, + 0 + ], + [ + 224, + 17, + 226, + 10, + 0, + 0, + 0, + 0 + ], + [ + 226, + 10, + 227, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC040testRenderWithExtensionAndWithoutDefaultdE21AfterSettingViewsPathyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 223, + 28, + 223, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC040testRenderWithExtensionAndWithoutDefaultdE21AfterSettingViewsPathyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 223, + 37, + 223, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyF", + "count": 1, + "regions": [ + [ + 229, + 38, + 253, + 6, + 1, + 0, + 0, + 0 + ], + [ + 233, + 12, + 236, + 10, + 1, + 0, + 0, + 0 + ], + [ + 236, + 17, + 238, + 10, + 0, + 0, + 0, + 0 + ], + [ + 238, + 10, + 253, + 6, + 1, + 0, + 0, + 0 + ], + [ + 240, + 12, + 243, + 10, + 1, + 0, + 0, + 0 + ], + [ + 243, + 17, + 245, + 10, + 0, + 0, + 0, + 0 + ], + [ + 245, + 10, + 253, + 6, + 1, + 0, + 0, + 0 + ], + [ + 247, + 12, + 250, + 10, + 1, + 0, + 0, + 0 + ], + [ + 250, + 17, + 252, + 10, + 0, + 0, + 0, + 0 + ], + [ + 252, + 10, + 253, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 235, + 28, + 235, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 235, + 37, + 235, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyFSSyKXEfu1_", + "count": 1, + "regions": [ + [ + 242, + 28, + 242, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyFSSyKXEfu2_", + "count": 1, + "regions": [ + [ + 242, + 37, + 242, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 249, + 28, + 249, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC25testAddWithFileExtensionsyyFSSyKXEfu4_", + "count": 1, + "regions": [ + [ + 249, + 37, + 249, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC45testAddWithFileExtensionsWithoutTheDefaultOneyyF", + "count": 1, + "regions": [ + [ + 255, + 58, + 281, + 6, + 1, + 0, + 0, + 0 + ], + [ + 260, + 12, + 262, + 10, + 1, + 0, + 0, + 0 + ], + [ + 262, + 62, + 264, + 10, + 1, + 0, + 0, + 0 + ], + [ + 264, + 17, + 266, + 10, + 0, + 0, + 0, + 0 + ], + [ + 266, + 10, + 281, + 6, + 1, + 0, + 0, + 0 + ], + [ + 268, + 12, + 271, + 10, + 1, + 0, + 0, + 0 + ], + [ + 271, + 17, + 273, + 10, + 0, + 0, + 0, + 0 + ], + [ + 273, + 10, + 281, + 6, + 1, + 0, + 0, + 0 + ], + [ + 275, + 12, + 278, + 10, + 1, + 0, + 0, + 0 + ], + [ + 278, + 17, + 280, + 10, + 0, + 0, + 0, + 0 + ], + [ + 280, + 10, + 281, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC45testAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 270, + 28, + 270, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC45testAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 270, + 37, + 270, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC45testAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu1_", + "count": 1, + "regions": [ + [ + 277, + 28, + 277, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC45testAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu2_", + "count": 1, + "regions": [ + [ + 277, + 37, + 277, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC09testEmptyD11NameCodableyyF", + "count": 1, + "regions": [ + [ + 284, + 41, + 295, + 6, + 1, + 0, + 0, + 0 + ], + [ + 288, + 12, + 290, + 10, + 1, + 0, + 0, + 0 + ], + [ + 290, + 62, + 292, + 10, + 1, + 0, + 0, + 0 + ], + [ + 292, + 17, + 294, + 10, + 0, + 0, + 0, + 0 + ], + [ + 294, + 10, + 295, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC27testMissingExtensionCodableyyF", + "count": 1, + "regions": [ + [ + 297, + 40, + 308, + 6, + 1, + 0, + 0, + 0 + ], + [ + 301, + 12, + 303, + 10, + 1, + 0, + 0, + 0 + ], + [ + 303, + 62, + 305, + 10, + 1, + 0, + 0, + 0 + ], + [ + 305, + 17, + 307, + 10, + 0, + 0, + 0, + 0 + ], + [ + 307, + 10, + 308, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC013testNoDefaultE7CodableyyF", + "count": 1, + "regions": [ + [ + 310, + 39, + 320, + 6, + 1, + 0, + 0, + 0 + ], + [ + 313, + 12, + 315, + 10, + 1, + 0, + 0, + 0 + ], + [ + 315, + 80, + 317, + 10, + 1, + 0, + 0, + 0 + ], + [ + 317, + 17, + 319, + 10, + 0, + 0, + 0, + 0 + ], + [ + 319, + 10, + 320, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC17testCodableRenderyyF", + "count": 1, + "regions": [ + [ + 322, + 30, + 332, + 6, + 1, + 0, + 0, + 0 + ], + [ + 326, + 12, + 329, + 10, + 1, + 0, + 0, + 0 + ], + [ + 329, + 17, + 331, + 10, + 0, + 0, + 0, + 0 + ], + [ + 331, + 10, + 332, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC17testCodableRenderyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 328, + 28, + 328, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC17testCodableRenderyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 328, + 37, + 328, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC27testCodableRenderWithServeryyF", + "count": 1, + "regions": [ + [ + 334, + 40, + 338, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC028testCodableRenderWithOptionsI6ServeryyF", + "count": 1, + "regions": [ + [ + 340, + 51, + 344, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC39testCodableRenderWithServerAndSubRouteryyF", + "count": 1, + "regions": [ + [ + 346, + 52, + 353, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC047testCodableRenderWithExtensionAndWithoutDefaultdE0yyF", + "count": 1, + "regions": [ + [ + 355, + 74, + 365, + 6, + 1, + 0, + 0, + 0 + ], + [ + 359, + 12, + 362, + 10, + 1, + 0, + 0, + 0 + ], + [ + 362, + 17, + 364, + 10, + 0, + 0, + 0, + 0 + ], + [ + 364, + 10, + 365, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC047testCodableRenderWithExtensionAndWithoutDefaultdE0yyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 361, + 28, + 361, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC047testCodableRenderWithExtensionAndWithoutDefaultdE0yyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 361, + 37, + 361, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC047testCodableRenderWithExtensionAndWithoutDefaultdE21AfterSettingViewsPathyyF", + "count": 1, + "regions": [ + [ + 367, + 95, + 378, + 6, + 1, + 0, + 0, + 0 + ], + [ + 372, + 12, + 375, + 10, + 1, + 0, + 0, + 0 + ], + [ + 375, + 17, + 377, + 10, + 0, + 0, + 0, + 0 + ], + [ + 377, + 10, + 378, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC047testCodableRenderWithExtensionAndWithoutDefaultdE21AfterSettingViewsPathyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 374, + 28, + 374, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC047testCodableRenderWithExtensionAndWithoutDefaultdE21AfterSettingViewsPathyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 374, + 37, + 374, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyF", + "count": 1, + "regions": [ + [ + 380, + 45, + 404, + 6, + 1, + 0, + 0, + 0 + ], + [ + 384, + 12, + 387, + 10, + 1, + 0, + 0, + 0 + ], + [ + 387, + 17, + 389, + 10, + 0, + 0, + 0, + 0 + ], + [ + 389, + 10, + 404, + 6, + 1, + 0, + 0, + 0 + ], + [ + 391, + 12, + 394, + 10, + 1, + 0, + 0, + 0 + ], + [ + 394, + 17, + 396, + 10, + 0, + 0, + 0, + 0 + ], + [ + 396, + 10, + 404, + 6, + 1, + 0, + 0, + 0 + ], + [ + 398, + 12, + 401, + 10, + 1, + 0, + 0, + 0 + ], + [ + 401, + 17, + 403, + 10, + 0, + 0, + 0, + 0 + ], + [ + 403, + 10, + 404, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 386, + 28, + 386, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 386, + 37, + 386, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyFSSyKXEfu1_", + "count": 1, + "regions": [ + [ + 393, + 28, + 393, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyFSSyKXEfu2_", + "count": 1, + "regions": [ + [ + 393, + 37, + 393, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyFSSyKXEfu3_", + "count": 1, + "regions": [ + [ + 400, + 28, + 400, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC32testCodableAddWithFileExtensionsyyFSSyKXEfu4_", + "count": 1, + "regions": [ + [ + 400, + 37, + 400, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC52testCodableAddWithFileExtensionsWithoutTheDefaultOneyyF", + "count": 1, + "regions": [ + [ + 406, + 65, + 432, + 6, + 1, + 0, + 0, + 0 + ], + [ + 411, + 12, + 413, + 10, + 1, + 0, + 0, + 0 + ], + [ + 413, + 62, + 415, + 10, + 1, + 0, + 0, + 0 + ], + [ + 415, + 17, + 417, + 10, + 0, + 0, + 0, + 0 + ], + [ + 417, + 10, + 432, + 6, + 1, + 0, + 0, + 0 + ], + [ + 419, + 12, + 422, + 10, + 1, + 0, + 0, + 0 + ], + [ + 422, + 17, + 424, + 10, + 0, + 0, + 0, + 0 + ], + [ + 424, + 10, + 432, + 6, + 1, + 0, + 0, + 0 + ], + [ + 426, + 12, + 429, + 10, + 1, + 0, + 0, + 0 + ], + [ + 429, + 17, + 431, + 10, + 0, + 0, + 0, + 0 + ], + [ + 431, + 10, + 432, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC52testCodableAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu_", + "count": 1, + "regions": [ + [ + 421, + 28, + 421, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC52testCodableAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu0_", + "count": 1, + "regions": [ + [ + 421, + 37, + 421, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC52testCodableAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu1_", + "count": 1, + "regions": [ + [ + 428, + 28, + 428, + 35, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC52testCodableAddWithFileExtensionsWithoutTheDefaultOneyyFSSyKXEfu2_", + "count": 1, + "regions": [ + [ + 428, + 37, + 428, + 51, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18TestTemplateEngineC26testCodableRenderWithTupleyyF", + "count": 1, + "regions": [ + [ + 434, + 39, + 438, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18MockTemplateEngineC13fileExtensionSSvg", + "count": 31, + "regions": [ + [ + 443, + 38, + 443, + 55, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18MockTemplateEngineC6render8filePath4with6forKey7options12templateNameS2S_xSSSg0adE016RenderingOptions_pSStKSERzlF", + "count": 16, + "regions": [ + [ + 445, + 141, + 447, + 6, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests18MockTemplateEngineC6render8filePath7contextS2S_SDySSypGtKF", + "count": 14, + "regions": [ + [ + 448, + 83, + 450, + 6, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTemplateEngine.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC03allB0SaySS_yyKcACctGvgZ", + "count": 0, + "regions": [ + [ + 24, + 84, + 60, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC5setUpyyF", + "count": 66, + "regions": [ + [ + 67, + 27, + 70, + 6, + 66, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "__ntd_User_line:72:5", + "count": 246, + "regions": [ + [ + 76, + 37, + 79, + 10, + 246, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC4UserV2eeoiySbAE_AEtFZ", + "count": 72, + "regions": [ + [ + 81, + 55, + 83, + 10, + 72, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC4UserV2eeoiySbAE_AEtFZSbyKXEfu_", + "count": 72, + "regions": [ + [ + 82, + 40, + 82, + 60, + 72, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "__ntd_CodableDate_line:86:5", + "count": 2, + "regions": [ + [ + 89, + 26, + 91, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC11CodableDateV2eeoiySbAE_AEtFZ", + "count": 26, + "regions": [ + [ + 92, + 69, + 94, + 10, + 26, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "__ntd_MyQuery_line:97:5", + "count": 0, + "regions": [ + [ + 100, + 23, + 102, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC7MyQueryV2eeoiySbAE_AEtFZ", + "count": 0, + "regions": [ + [ + 104, + 61, + 106, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF12GetSingletonyyF", + "count": 1, + "regions": [ + [ + 124, + 45, + 143, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF12GetSingletonyyFyAC04UserF0V_yAC0K0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 127, + 39, + 130, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF12GetSingletonyyF", + "count": 1, + "regions": [ + [ + 145, + 47, + 175, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF12GetSingletonyyFyAC04UserF0V_AC0K11Middleware2VAC0K11Middleware3VyAC0K0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 148, + 44, + 151, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF8GetArrayyyF", + "count": 1, + "regions": [ + [ + 177, + 41, + 196, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF8GetArrayyyFyAC04UserF0V_ySayAC0K0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 180, + 39, + 183, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF8GetArrayyyF", + "count": 1, + "regions": [ + [ + 198, + 43, + 228, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF8GetArrayyyFyAC04UserF0V_AC0K11Middleware2VAC0K11Middleware3VySayAC0K0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 201, + 44, + 204, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF13GetIdentifieryyF", + "count": 1, + "regions": [ + [ + 230, + 46, + 254, + 6, + 1, + 0, + 0, + 0 + ], + [ + 232, + 44, + 235, + 10, + 0, + 0, + 0, + 0 + ], + [ + 235, + 10, + 254, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF13GetIdentifieryyFyAC04UserF0V_SiyAC0K0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 237, + 39, + 241, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF13GetIdentifieryyF", + "count": 1, + "regions": [ + [ + 256, + 48, + 290, + 6, + 1, + 0, + 0, + 0 + ], + [ + 258, + 44, + 261, + 10, + 0, + 0, + 0, + 0 + ], + [ + 261, + 10, + 290, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF13GetIdentifieryyFyAC04UserF0V_AC0K11Middleware2VAC0K11Middleware3VSiyAC0K0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 263, + 44, + 266, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF25GetIdentifierCodableArrayyyF", + "count": 1, + "regions": [ + [ + 292, + 58, + 313, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF25GetIdentifierCodableArrayyyFSDySSAC4UserVGSi_AFtXEfU_", + "count": 3, + "regions": [ + [ + 295, + 62, + 295, + 80, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF25GetIdentifierCodableArrayyyFyAC04UserF0V_ySaySi_AC0M0VtGSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 297, + 39, + 300, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF25GetIdentifierCodableArrayyyF", + "count": 1, + "regions": [ + [ + 315, + 60, + 347, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF25GetIdentifierCodableArrayyyFSDySSAC4UserVGSi_AFtXEfU_", + "count": 3, + "regions": [ + [ + 318, + 62, + 318, + 80, + 3, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF25GetIdentifierCodableArrayyyFyAC04UserF0V_AC0M11Middleware2VAC0M11Middleware3VySaySi_AC0M0VtGSg_0A9Contracts12RequestErrorVSgtXEtcfU0_", + "count": 2, + "regions": [ + [ + 320, + 44, + 323, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF22GetSingletonParametersyyF", + "count": 1, + "regions": [ + [ + 349, + 55, + 373, + 6, + 1, + 0, + 0, + 0 + ], + [ + 351, + 44, + 354, + 10, + 0, + 0, + 0, + 0 + ], + [ + 354, + 10, + 373, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF22GetSingletonParametersyyFyAC04UserF0V_AC7MyQueryVyAC0L0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 356, + 39, + 360, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF22GetSingletonParametersyyF", + "count": 1, + "regions": [ + [ + 375, + 57, + 409, + 6, + 1, + 0, + 0, + 0 + ], + [ + 377, + 44, + 380, + 10, + 0, + 0, + 0, + 0 + ], + [ + 380, + 10, + 409, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF22GetSingletonParametersyyFyAC04UserF0V_AC0L11Middleware2VAC0L11Middleware3VAC7MyQueryVyAC0L0VSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 382, + 44, + 385, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF18GetArrayParametersyyF", + "count": 1, + "regions": [ + [ + 411, + 51, + 432, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF18GetArrayParametersyyFyAC04UserF0V_AC7MyQueryVySayAC0L0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 415, + 39, + 419, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF18GetArrayParametersyyFyAC04UserF0V_AC7MyQueryVySayAC0L0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_SbAJXEfU_", + "count": 6, + "regions": [ + [ + 417, + 49, + 417, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF26GetArrayOptionalParametersyyF", + "count": 1, + "regions": [ + [ + 434, + 59, + 464, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF26GetArrayOptionalParametersyyFyAC04UserF0V_AC7MyQueryVSgySayAC0M0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 4, + "regions": [ + [ + 438, + 39, + 446, + 10, + 4, + 0, + 0, + 0 + ], + [ + 440, + 34, + 443, + 14, + 2, + 0, + 0, + 0 + ], + [ + 443, + 14, + 446, + 10, + 4, + 0, + 0, + 0 + ], + [ + 443, + 20, + 445, + 14, + 2, + 0, + 0, + 0 + ], + [ + 445, + 14, + 446, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF26GetArrayOptionalParametersyyFyAC04UserF0V_AC7MyQueryVSgySayAC0M0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_SbAKXEfU_", + "count": 6, + "regions": [ + [ + 441, + 53, + 441, + 74, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF18GetArrayParametersyyF", + "count": 1, + "regions": [ + [ + 466, + 53, + 498, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF18GetArrayParametersyyFyAC04UserF0V_AC0L11Middleware2VAC0L11Middleware3VAC7MyQueryVySayAC0L0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 470, + 44, + 474, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF18GetArrayParametersyyFyAC04UserF0V_AC0L11Middleware2VAC0L11Middleware3VAC7MyQueryVySayAC0L0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_SbANXEfU_", + "count": 6, + "regions": [ + [ + 472, + 49, + 472, + 71, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF26GetArrayOptionalParametersyyF", + "count": 1, + "regions": [ + [ + 500, + 61, + 532, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF26GetArrayOptionalParametersyyFyAC04UserF0V_AC0M11Middleware2VAC0M11Middleware3VAC7MyQueryVSgySayAC0M0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 4, + "regions": [ + [ + 504, + 44, + 512, + 10, + 4, + 0, + 0, + 0 + ], + [ + 506, + 34, + 509, + 14, + 2, + 0, + 0, + 0 + ], + [ + 509, + 14, + 512, + 10, + 4, + 0, + 0, + 0 + ], + [ + 509, + 20, + 511, + 14, + 2, + 0, + 0, + 0 + ], + [ + 511, + 14, + 512, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF26GetArrayOptionalParametersyyFyAC04UserF0V_AC0M11Middleware2VAC0M11Middleware3VAC7MyQueryVSgySayAC0M0VGSg_0A9Contracts12RequestErrorVSgtXEtcfU_SbAOXEfU_", + "count": 6, + "regions": [ + [ + 507, + 53, + 507, + 74, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF6DeleteyyF", + "count": 1, + "regions": [ + [ + 534, + 39, + 553, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF6DeleteyyFyAC04UserF0V_y0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 536, + 42, + 540, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF6DeleteyyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 546, + 18, + 546, + 66, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF6DeleteyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 546, + 40, + 546, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF6DeleteyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 546, + 62, + 546, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF6DeleteyyF", + "count": 1, + "regions": [ + [ + 555, + 41, + 585, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF6DeleteyyFyAC04UserF0V_AC0J11Middleware2VAC0J11Middleware3Vy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 557, + 47, + 561, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF6DeleteyyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 572, + 18, + 572, + 66, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF6DeleteyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 572, + 40, + 572, + 60, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF6DeleteyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 572, + 62, + 572, + 63, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteIdentifieryyF", + "count": 1, + "regions": [ + [ + 587, + 49, + 609, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteIdentifieryyFyAC04UserF0V_Siy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 589, + 42, + 596, + 10, + 2, + 0, + 0, + 0 + ], + [ + 591, + 70, + 594, + 14, + 0, + 0, + 0, + 0 + ], + [ + 594, + 14, + 596, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteIdentifieryyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 602, + 18, + 602, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteIdentifieryyFy0A3Net14ClientResponseCcfU0_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 602, + 38, + 602, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteIdentifieryyF", + "count": 1, + "regions": [ + [ + 611, + 51, + 644, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteIdentifieryyFyAC04UserF0V_AC0K11Middleware2VAC0K11Middleware3VSiy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 613, + 47, + 620, + 10, + 2, + 0, + 0, + 0 + ], + [ + 615, + 70, + 618, + 14, + 0, + 0, + 0, + 0 + ], + [ + 618, + 14, + 620, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteIdentifieryyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 631, + 18, + 631, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteIdentifieryyFy0A3Net14ClientResponseCcfU0_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 631, + 38, + 631, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteParametersyyF", + "count": 1, + "regions": [ + [ + 646, + 49, + 668, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteParametersyyFyAC04UserF0V_AC7MyQueryVy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 648, + 42, + 655, + 10, + 2, + 0, + 0, + 0 + ], + [ + 650, + 76, + 653, + 14, + 0, + 0, + 0, + 0 + ], + [ + 653, + 14, + 655, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteParametersyyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 661, + 18, + 661, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF16DeleteParametersyyFy0A3Net14ClientResponseCcfU0_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 661, + 38, + 661, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyF", + "count": 1, + "regions": [ + [ + 670, + 57, + 700, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFyAC04UserF0V_AC7MyQueryVSgy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 4, + "regions": [ + [ + 674, + 42, + 683, + 10, + 4, + 0, + 0, + 0 + ], + [ + 676, + 34, + 679, + 14, + 2, + 0, + 0, + 0 + ], + [ + 679, + 14, + 683, + 10, + 4, + 0, + 0, + 0 + ], + [ + 679, + 20, + 682, + 14, + 2, + 0, + 0, + 0 + ], + [ + 682, + 14, + 683, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFyAC04UserF0V_AC7MyQueryVSgy0A9Contracts12RequestErrorVSgXEtcfU_SbAC0L0VXEfU_", + "count": 5, + "regions": [ + [ + 677, + 48, + 677, + 69, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 689, + 18, + 689, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 689, + 40, + 689, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 689, + 43, + 689, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 4, + "regions": [ + [ + 689, + 61, + 689, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_", + "count": 2, + "regions": [ + [ + 690, + 18, + 690, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 690, + 40, + 690, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 690, + 43, + 690, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 4, + "regions": [ + [ + 690, + 61, + 690, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_", + "count": 2, + "regions": [ + [ + 691, + 18, + 691, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 691, + 40, + 691, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 691, + 43, + 691, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 4, + "regions": [ + [ + 691, + 61, + 691, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_", + "count": 2, + "regions": [ + [ + 696, + 18, + 696, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 696, + 40, + 696, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 696, + 43, + 696, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 0, + "regions": [ + [ + 696, + 61, + 696, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_", + "count": 2, + "regions": [ + [ + 697, + 18, + 697, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 697, + 40, + 697, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 697, + 43, + 697, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 0, + "regions": [ + [ + 697, + 61, + 697, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteParametersyyF", + "count": 1, + "regions": [ + [ + 702, + 51, + 735, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteParametersyyFyAC04UserF0V_AC0K11Middleware2VAC0K11Middleware3VAC7MyQueryVy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 2, + "regions": [ + [ + 704, + 47, + 711, + 10, + 2, + 0, + 0, + 0 + ], + [ + 706, + 76, + 709, + 14, + 0, + 0, + 0, + 0 + ], + [ + 709, + 14, + 711, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteParametersyyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 722, + 18, + 722, + 58, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF16DeleteParametersyyFy0A3Net14ClientResponseCcfU0_ypSgyKXEfu_", + "count": 2, + "regions": [ + [ + 722, + 38, + 722, + 55, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyF", + "count": 1, + "regions": [ + [ + 737, + 59, + 770, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFyAC04UserF0V_AC0L11Middleware2VAC0L11Middleware3VAC7MyQueryVSgy0A9Contracts12RequestErrorVSgXEtcfU_", + "count": 4, + "regions": [ + [ + 741, + 47, + 750, + 10, + 4, + 0, + 0, + 0 + ], + [ + 743, + 34, + 746, + 14, + 2, + 0, + 0, + 0 + ], + [ + 746, + 14, + 750, + 10, + 4, + 0, + 0, + 0 + ], + [ + 746, + 20, + 749, + 14, + 2, + 0, + 0, + 0 + ], + [ + 749, + 14, + 750, + 10, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFyAC04UserF0V_AC0L11Middleware2VAC0L11Middleware3VAC7MyQueryVSgy0A9Contracts12RequestErrorVSgXEtcfU_SbAC0L0VXEfU_", + "count": 5, + "regions": [ + [ + 744, + 48, + 744, + 69, + 5, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_", + "count": 2, + "regions": [ + [ + 759, + 18, + 759, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 759, + 40, + 759, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 759, + 43, + 759, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU0_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 4, + "regions": [ + [ + 759, + 61, + 759, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_", + "count": 2, + "regions": [ + [ + 760, + 18, + 760, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 760, + 40, + 760, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 760, + 43, + 760, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU1_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 4, + "regions": [ + [ + 760, + 61, + 760, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_", + "count": 2, + "regions": [ + [ + 761, + 18, + 761, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 761, + 40, + 761, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 761, + 43, + 761, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU2_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 4, + "regions": [ + [ + 761, + 61, + 761, + 75, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_", + "count": 2, + "regions": [ + [ + 766, + 18, + 766, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 766, + 40, + 766, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 766, + 43, + 766, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU3_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 0, + "regions": [ + [ + 766, + 61, + 766, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_", + "count": 2, + "regions": [ + [ + 767, + 18, + 767, + 84, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_SiyKXEfu_", + "count": 2, + "regions": [ + [ + 767, + 40, + 767, + 41, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_SiyKXEfu0_", + "count": 2, + "regions": [ + [ + 767, + 43, + 767, + 81, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF24DeleteOptionalParametersyyFy0A3Net14ClientResponseCcfU4_SiyKXEfu0_SbAC4UserVXEfU_", + "count": 0, + "regions": [ + [ + 767, + 61, + 767, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF4PostyyF", + "count": 1, + "regions": [ + [ + 772, + 37, + 792, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF4PostyyFyAC04UserF0V_AC0J0VyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 773, + 40, + 777, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF4PostyyF", + "count": 1, + "regions": [ + [ + 794, + 39, + 824, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF4PostyyFyAC04UserF0V_AC0J11Middleware2VAC0J11Middleware3VAC0J0VyALSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 795, + 45, + 799, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF14PostIdentifieryyF", + "count": 1, + "regions": [ + [ + 826, + 47, + 851, + 6, + 1, + 0, + 0, + 0 + ], + [ + 828, + 44, + 831, + 10, + 0, + 0, + 0, + 0 + ], + [ + 831, + 10, + 851, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF14PostIdentifieryyFyAC04UserF0V_AC0K0VySiSg_AHSg0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 833, + 40, + 838, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF14PostIdentifieryyF", + "count": 1, + "regions": [ + [ + 853, + 49, + 889, + 6, + 1, + 0, + 0, + 0 + ], + [ + 855, + 44, + 858, + 10, + 0, + 0, + 0, + 0 + ], + [ + 858, + 10, + 889, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF14PostIdentifieryyFyAC04UserF0V_AC0K11Middleware2VAC0K11Middleware3VAC0K0VySiSg_ALSg0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 860, + 45, + 865, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF3PutyyF", + "count": 1, + "regions": [ + [ + 891, + 36, + 911, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF3PutyyFyAC04UserF0V_SiAC0J0VyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 894, + 39, + 898, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF3PutyyF", + "count": 1, + "regions": [ + [ + 913, + 38, + 944, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF3PutyyFyAC04UserF0V_AC0J11Middleware2VAC0J11Middleware3VSiAC0J0VyALSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 916, + 44, + 920, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF5PatchyyF", + "count": 1, + "regions": [ + [ + 946, + 38, + 966, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC010testSingleF5PatchyyFyAC04UserF0V_SiAC0J0VyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 949, + 41, + 953, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF5PatchyyF", + "count": 1, + "regions": [ + [ + 968, + 40, + 999, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC012testMultipleF5PatchyyFyAC04UserF0V_AC0J11Middleware2VAC0J11Middleware3VSiAC0J0VyALSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 2, + "regions": [ + [ + 971, + 46, + 975, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyF", + "count": 1, + "regions": [ + [ + 1001, + 31, + 1072, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyF0A9Contracts11BodyEncoder_pycfU_", + "count": 10, + "regions": [ + [ + 1005, + 46, + 1009, + 10, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyF0A9Contracts11BodyDecoder_pycfU0_", + "count": 10, + "regions": [ + [ + 1010, + 46, + 1014, + 10, + 10, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyFyAC04UserF0V_AFyAC11CodableDateVSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 1022, + 43, + 1025, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyFyAC04UserF0V_AFySayAC11CodableDateVGSg_0A9Contracts12RequestErrorVSgtXEtcfU2_", + "count": 2, + "regions": [ + [ + 1026, + 48, + 1029, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyFyAC04UserF0V_AFySaySi_AC11CodableDateVtGSg_0A9Contracts12RequestErrorVSgtXEtcfU3_", + "count": 2, + "regions": [ + [ + 1030, + 48, + 1033, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyFyAC04UserF0V_AfcDyyF11SimpleQueryL_VyAC11CodableDateVSg_0A9Contracts12RequestErrorVSgtXEtcfU4_", + "count": 2, + "regions": [ + [ + 1034, + 48, + 1037, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC18testCustomCoderGetyyFyAC04UserF0V_AfcDyyF11SimpleQueryL_VySayAC11CodableDateVGSg_0A9Contracts12RequestErrorVSgtXEtcfU5_", + "count": 2, + "regions": [ + [ + 1038, + 53, + 1041, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyF", + "count": 1, + "regions": [ + [ + 1074, + 28, + 1139, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyF0A9Contracts11BodyEncoder_pycfU_", + "count": 16, + "regions": [ + [ + 1078, + 46, + 1082, + 10, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyF0A9Contracts11BodyDecoder_pycfU0_", + "count": 16, + "regions": [ + [ + 1083, + 46, + 1087, + 10, + 16, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AfC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU1_", + "count": 2, + "regions": [ + [ + 1095, + 44, + 1099, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AfC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU1_AHyKXEfu_", + "count": 2, + "regions": [ + [ + 1097, + 28, + 1097, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AfC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU1_AHyKXEfu0_", + "count": 2, + "regions": [ + [ + 1097, + 36, + 1097, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AfC11CodableDateVySiSg_AHSg0A9Contracts12RequestErrorVSgtXEtcfU2_", + "count": 2, + "regions": [ + [ + 1100, + 46, + 1104, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AfC11CodableDateVySiSg_AHSg0A9Contracts12RequestErrorVSgtXEtcfU2_AHyKXEfu_", + "count": 2, + "regions": [ + [ + 1102, + 28, + 1102, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AfC11CodableDateVySiSg_AHSg0A9Contracts12RequestErrorVSgtXEtcfU2_AHyKXEfu0_", + "count": 2, + "regions": [ + [ + 1102, + 36, + 1102, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AFSiAC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU3_", + "count": 2, + "regions": [ + [ + 1105, + 43, + 1109, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AFSiAC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU3_AHyKXEfu_", + "count": 2, + "regions": [ + [ + 1107, + 28, + 1107, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AFSiAC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU3_AHyKXEfu0_", + "count": 2, + "regions": [ + [ + 1107, + 36, + 1107, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AFSiAC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU4_", + "count": 2, + "regions": [ + [ + 1110, + 45, + 1114, + 10, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AFSiAC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU4_AHyKXEfu_", + "count": 2, + "regions": [ + [ + 1112, + 28, + 1112, + 34, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC15testCustomCoderyyFyAC04UserF0V_AFSiAC11CodableDateVyAHSg_0A9Contracts12RequestErrorVSgtXEtcfU4_AHyKXEfu0_", + "count": 2, + "regions": [ + [ + 1112, + 36, + 1112, + 47, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC04testF7LoggingyyF", + "count": 1, + "regions": [ + [ + 1141, + 34, + 1153, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests22TestTypeSafeMiddlewareC04testF7LoggingyyFyAA0hF0V_AC7MyQueryVyAC4UserVSg_0A9Contracts12RequestErrorVSgtXEtcfU_", + "count": 0, + "regions": [ + [ + 1142, + 32, + 1145, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s11KituraTests17LoggingMiddlewareV6handle7request8response10completiony0A013RouterRequestC_AH0I8ResponseCyACSg_0A9Contracts0J5ErrorVSgtctFZ", + "count": 2, + "regions": [ + [ + 1157, + 141, + 1162, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestTypeSafeMiddleware.swift" + ] + }, + { + "name": "$s9LoggerAPI0A11MessageTypeO11descriptionSSvg", + "count": 4412, + "regions": [ + [ + 20, + 36, + 37, + 6, + 4412, + 0, + 0, + 0 + ], + [ + 22, + 9, + 23, + 27, + 0, + 0, + 0, + 0 + ], + [ + 24, + 9, + 25, + 26, + 0, + 0, + 0, + 0 + ], + [ + 26, + 9, + 27, + 27, + 2192, + 0, + 0, + 0 + ], + [ + 28, + 9, + 29, + 29, + 2053, + 0, + 0, + 0 + ], + [ + 30, + 9, + 31, + 26, + 87, + 0, + 0, + 0 + ], + [ + 32, + 9, + 33, + 29, + 34, + 0, + 0, + 0 + ], + [ + 34, + 9, + 35, + 27, + 46, + 0, + 0, + 0 + ], + [ + 36, + 10, + 37, + 6, + 4412, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC7verbose_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 2409, + "regions": [ + [ + 87, + 58, + 92, + 6, + 2409, + 0, + 0, + 0 + ], + [ + 88, + 64, + 91, + 14, + 2053, + 0, + 0, + 0 + ], + [ + 91, + 14, + 92, + 6, + 2409, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC4info_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 87, + "regions": [ + [ + 107, + 57, + 112, + 6, + 87, + 0, + 0, + 0 + ], + [ + 108, + 61, + 111, + 14, + 87, + 0, + 0, + 0 + ], + [ + 111, + 14, + 112, + 6, + 87, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC7warning_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 34, + "regions": [ + [ + 127, + 57, + 132, + 6, + 34, + 0, + 0, + 0 + ], + [ + 128, + 64, + 131, + 14, + 34, + 0, + 0, + 0 + ], + [ + 131, + 14, + 132, + 6, + 34, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC5error_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 46, + "regions": [ + [ + 147, + 57, + 152, + 6, + 46, + 0, + 0, + 0 + ], + [ + 148, + 62, + 151, + 14, + 46, + 0, + 0, + 0 + ], + [ + 151, + 14, + 152, + 6, + 46, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC5debug_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 2194, + "regions": [ + [ + 167, + 57, + 172, + 6, + 2194, + 0, + 0, + 0 + ], + [ + 168, + 62, + 171, + 14, + 2192, + 0, + 0, + 0 + ], + [ + 171, + 14, + 172, + 6, + 2194, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC5entry_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 0, + "regions": [ + [ + 187, + 57, + 192, + 6, + 0, + 0, + 0, + 0 + ], + [ + 188, + 62, + 191, + 14, + 0, + 0, + 0, + 0 + ], + [ + 191, + 14, + 192, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC4exit_12functionName7lineNum04fileF0ySSyXK_SSSiSStFZ", + "count": 0, + "regions": [ + [ + 207, + 57, + 212, + 6, + 0, + 0, + 0, + 0 + ], + [ + 208, + 61, + 211, + 14, + 0, + 0, + 0, + 0 + ], + [ + 211, + 14, + 212, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$s9LoggerAPI3LogC9isLoggingySbAA0A11MessageTypeOFZ", + "count": 774, + "regions": [ + [ + 221, + 69, + 226, + 6, + 774, + 0, + 0, + 0 + ], + [ + 222, + 40, + 224, + 10, + 0, + 0, + 0, + 0 + ], + [ + 224, + 10, + 225, + 39, + 774, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/LoggerAPI/Sources/LoggerAPI/Logger.swift" + ] + }, + { + "name": "$sSP10SSLServiceEySPyxGABcfC", + "count": 0, + "regions": [ + [ + 46, + 41, + 48, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSP10SSLServiceE4make8optionalSPyxGSgAE_tFZ", + "count": 0, + "regions": [ + [ + 50, + 88, + 52, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSP10SSLServiceE4make8optionalSPyxGSgs13OpaquePointerVSg_tFZ", + "count": 0, + "regions": [ + [ + 54, + 79, + 56, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSp10SSLServiceEySpyxGSvcfC", + "count": 0, + "regions": [ + [ + 60, + 42, + 63, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSp10SSLServiceE4make8optionalSpyxGSgAE_tFZ", + "count": 0, + "regions": [ + [ + 65, + 102, + 67, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSp10SSLServiceE4make8optionalSpyxGSgSvSg_tFZ", + "count": 0, + "regions": [ + [ + 69, + 96, + 71, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSp10SSLServiceE4make8optionalSpyxGSgs13OpaquePointerVSg_tFZ", + "count": 0, + "regions": [ + [ + 73, + 86, + 75, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$sSv10SSLServiceE4make8optionalSvSgs13OpaquePointerVSg_tFZ", + "count": 0, + "regions": [ + [ + 79, + 80, + 81, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$ss13OpaquePointerV10SSLServiceEyA2BcfC", + "count": 0, + "regions": [ + [ + 85, + 32, + 87, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$ss13OpaquePointerV10SSLServiceE4make8optionalABSgAF_tFZ", + "count": 0, + "regions": [ + [ + 89, + 70, + 91, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$ss13OpaquePointerV10SSLServiceE4make8optionalABSgSvSg_tFZ", + "count": 0, + "regions": [ + [ + 93, + 80, + 95, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "$ss13OpaquePointerV10SSLServiceE4make8optionalABSgSpyxGSg_tlFZ", + "count": 0, + "regions": [ + [ + 97, + 95, + 99, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLPointerTricks.swift" + ] + }, + { + "name": "__ntd_SSLService_line:35:8", + "count": 4, + "regions": [ + [ + 376, + 64, + 383, + 3, + 4, + 0, + 0, + 0 + ], + [ + 392, + 48, + 401, + 3, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC22SSLReadWriteDispatcherV4sync7executexxyKXE_tKlF", + "count": 1426, + "regions": [ + [ + 108, + 55, + 117, + 4, + 1426, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "__ntd_Configuration_line:125:9", + "count": 0, + "regions": [ + [ + 190, + 108, + 197, + 4, + 0, + 0, + 0, + 0 + ], + [ + 194, + 26, + 196, + 5, + 0, + 0, + 0, + 0 + ], + [ + 196, + 5, + 197, + 4, + 0, + 0, + 0, + 0 + ], + [ + 213, + 238, + 222, + 4, + 0, + 0, + 0, + 0 + ], + [ + 219, + 26, + 221, + 5, + 0, + 0, + 0, + 0 + ], + [ + 221, + 5, + 222, + 4, + 0, + 0, + 0, + 0 + ], + [ + 240, + 238, + 249, + 4, + 0, + 0, + 0, + 0 + ], + [ + 246, + 26, + 248, + 5, + 0, + 0, + 0, + 0 + ], + [ + 248, + 5, + 249, + 4, + 0, + 0, + 0, + 0 + ], + [ + 265, + 225, + 274, + 4, + 1, + 0, + 0, + 0 + ], + [ + 271, + 26, + 273, + 5, + 0, + 0, + 0, + 0 + ], + [ + 273, + 5, + 274, + 4, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC13ConfigurationV25withCACertificateFilePath016usingCertificateE00c3KeyE00G15SelfSignedCerts11cipherSuiteADSSSg_A2JSbAJtcfcAJyKXEfu_", + "count": 0, + "regions": [ + [ + 216, + 38, + 216, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC13ConfigurationV26withCACertificateDirectory20usingCertificateFile0c3KeyH00F15SelfSignedCerts11cipherSuiteADSSSg_A2JSbAJtcfcAJyKXEfu_", + "count": 0, + "regions": [ + [ + 243, + 38, + 243, + 57, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC10initialize8asServerySb_tKF", + "count": 393, + "regions": [ + [ + 411, + 48, + 439, + 3, + 393, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC12deinitializeyyF", + "count": 392, + "regions": [ + [ + 444, + 29, + 486, + 3, + 392, + 0, + 0, + 0 + ], + [ + 474, + 27, + 476, + 5, + 392, + 0, + 0, + 0 + ], + [ + 476, + 5, + 486, + 3, + 392, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC8onAccept6sockety6SocketAEC_tKF", + "count": 778, + "regions": [ + [ + 493, + 46, + 533, + 3, + 778, + 0, + 0, + 0 + ], + [ + 496, + 29, + 502, + 4, + 389, + 0, + 0, + 0 + ], + [ + 502, + 4, + 533, + 3, + 778, + 0, + 0, + 0 + ], + [ + 502, + 10, + 532, + 4, + 389, + 0, + 0, + 0 + ], + [ + 532, + 4, + 533, + 3, + 778, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC9onConnect6sockety6SocketAEC_tKF", + "count": 0, + "regions": [ + [ + 540, + 47, + 564, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC4send6buffer7bufSizeSiSV_SitKF", + "count": 408, + "regions": [ + [ + 575, + 73, + 631, + 3, + 408, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC4send6buffer7bufSizeSiSV_SitKFSiyKXEfU0_", + "count": 408, + "regions": [ + [ + 607, + 54, + 626, + 5, + 408, + 0, + 0, + 0 + ], + [ + 609, + 46, + 613, + 6, + 0, + 0, + 0, + 0 + ], + [ + 613, + 6, + 626, + 5, + 408, + 0, + 0, + 0 + ], + [ + 617, + 35, + 621, + 6, + 12, + 0, + 0, + 0 + ], + [ + 621, + 6, + 626, + 5, + 396, + 0, + 0, + 0 + ], + [ + 621, + 39, + 624, + 6, + 2, + 0, + 0, + 0 + ], + [ + 624, + 6, + 625, + 21, + 396, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC4recv6buffer7bufSizeSiSv_SitKF", + "count": 1018, + "regions": [ + [ + 643, + 80, + 704, + 3, + 1018, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC4recv6buffer7bufSizeSiSv_SitKFSiyKXEfU0_", + "count": 1018, + "regions": [ + [ + 676, + 54, + 699, + 5, + 1018, + 0, + 0, + 0 + ], + [ + 678, + 46, + 682, + 6, + 0, + 0, + 0, + 0 + ], + [ + 682, + 6, + 699, + 5, + 1018, + 0, + 0, + 0 + ], + [ + 686, + 96, + 689, + 6, + 0, + 0, + 0, + 0 + ], + [ + 689, + 6, + 699, + 5, + 1018, + 0, + 0, + 0 + ], + [ + 691, + 35, + 695, + 6, + 485, + 0, + 0, + 0 + ], + [ + 695, + 6, + 697, + 58, + 533, + 0, + 0, + 0 + ], + [ + 697, + 45, + 697, + 46, + 9, + 0, + 0, + 0 + ], + [ + 697, + 49, + 697, + 58, + 524, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC4recv6buffer7bufSizeSiSv_SitKFSiyKXEfU0_SbyKXEfu_", + "count": 494, + "regions": [ + [ + 686, + 35, + 686, + 61, + 494, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC4recv6buffer7bufSizeSiSv_SitKFSiyKXEfU0_SbyKXEfu0_", + "count": 9, + "regions": [ + [ + 686, + 65, + 686, + 95, + 9, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC8validate33_270229C7DF150C42968499619D67C6D7LL13configurationyAB13ConfigurationV_tKF", + "count": 393, + "regions": [ + [ + 713, + 61, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 716, + 42, + 718, + 4, + 0, + 0, + 0, + 0 + ], + [ + 718, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 721, + 55, + 731, + 4, + 0, + 0, + 0, + 0 + ], + [ + 726, + 36, + 729, + 6, + 0, + 0, + 0, + 0 + ], + [ + 729, + 6, + 730, + 10, + 0, + 0, + 0, + 0 + ], + [ + 731, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 766, + 53, + 769, + 5, + 0, + 0, + 0, + 0 + ], + [ + 769, + 5, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 776, + 55, + 782, + 4, + 0, + 0, + 0, + 0 + ], + [ + 778, + 55, + 781, + 5, + 0, + 0, + 0, + 0 + ], + [ + 781, + 5, + 782, + 4, + 0, + 0, + 0, + 0 + ], + [ + 782, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 784, + 54, + 802, + 4, + 0, + 0, + 0, + 0 + ], + [ + 787, + 76, + 790, + 5, + 0, + 0, + 0, + 0 + ], + [ + 790, + 5, + 802, + 4, + 0, + 0, + 0, + 0 + ], + [ + 792, + 25, + 795, + 6, + 0, + 0, + 0, + 0 + ], + [ + 795, + 6, + 802, + 4, + 0, + 0, + 0, + 0 + ], + [ + 802, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 805, + 59, + 811, + 4, + 0, + 0, + 0, + 0 + ], + [ + 807, + 61, + 810, + 5, + 0, + 0, + 0, + 0 + ], + [ + 810, + 5, + 811, + 4, + 0, + 0, + 0, + 0 + ], + [ + 811, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 814, + 50, + 820, + 4, + 0, + 0, + 0, + 0 + ], + [ + 816, + 60, + 819, + 5, + 0, + 0, + 0, + 0 + ], + [ + 819, + 5, + 820, + 4, + 0, + 0, + 0, + 0 + ], + [ + 820, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ], + [ + 823, + 61, + 829, + 4, + 393, + 0, + 0, + 0 + ], + [ + 825, + 58, + 828, + 5, + 0, + 0, + 0, + 0 + ], + [ + 828, + 5, + 829, + 4, + 393, + 0, + 0, + 0 + ], + [ + 829, + 4, + 830, + 3, + 393, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC8validate33_270229C7DF150C42968499619D67C6D7LL13configurationyAB13ConfigurationV_tKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 725, + 5, + 725, + 52, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC8validate33_270229C7DF150C42968499619D67C6D7LL13configurationyAB13ConfigurationV_tKFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 726, + 5, + 726, + 30, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC14prepareContext33_270229C7DF150C42968499619D67C6D7LLyyKF", + "count": 393, + "regions": [ + [ + 835, + 39, + 1132, + 3, + 393, + 0, + 0, + 0 + ], + [ + 1022, + 56, + 1022, + 67, + 393, + 0, + 0, + 0 + ], + [ + 1022, + 70, + 1022, + 81, + 0, + 0, + 0, + 0 + ], + [ + 1024, + 45, + 1028, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1028, + 5, + 1132, + 3, + 393, + 0, + 0, + 0 + ], + [ + 1036, + 52, + 1108, + 5, + 393, + 0, + 0, + 0 + ], + [ + 1039, + 46, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1042, + 71, + 1046, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1046, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1049, + 64, + 1053, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1053, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1056, + 66, + 1060, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1060, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1068, + 33, + 1071, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1071, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1075, + 29, + 1078, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1078, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1084, + 50, + 1088, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1088, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1093, + 34, + 1096, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1096, + 7, + 1100, + 6, + 4, + 0, + 0, + 0 + ], + [ + 1100, + 6, + 1108, + 5, + 393, + 0, + 0, + 0 + ], + [ + 1103, + 32, + 1106, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1106, + 6, + 1108, + 5, + 393, + 0, + 0, + 0 + ], + [ + 1108, + 5, + 1132, + 3, + 393, + 0, + 0, + 0 + ], + [ + 1111, + 39, + 1113, + 5, + 393, + 0, + 0, + 0 + ], + [ + 1113, + 5, + 1132, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1119, + 34, + 1122, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1122, + 5, + 1132, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1126, + 31, + 1129, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1129, + 5, + 1132, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC17prepareConnection33_270229C7DF150C42968499619D67C6D7LL6sockety6SocketAFC_tKF", + "count": 389, + "regions": [ + [ + 1200, + 56, + 1243, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1203, + 44, + 1207, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1207, + 4, + 1243, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1213, + 30, + 1216, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1216, + 4, + 1243, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1219, + 90, + 1221, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1221, + 10, + 1243, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1225, + 10, + 1237, + 4, + 389, + 0, + 0, + 0 + ], + [ + 1228, + 122, + 1235, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1235, + 5, + 1237, + 4, + 389, + 0, + 0, + 0 + ], + [ + 1237, + 4, + 1243, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1237, + 11, + 1237, + 37, + 389, + 0, + 0, + 0 + ], + [ + 1239, + 30, + 1242, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1242, + 4, + 1243, + 3, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC17prepareConnection33_270229C7DF150C42968499619D67C6D7LL6sockety6SocketAFC_tKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 1219, + 33, + 1219, + 89, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC17prepareConnection33_270229C7DF150C42968499619D67C6D7LL6sockety6SocketAFC_tKFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 1228, + 44, + 1228, + 61, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC17prepareConnection33_270229C7DF150C42968499619D67C6D7LL6sockety6SocketAFC_tKFSbyKXEfu1_", + "count": 0, + "regions": [ + [ + 1228, + 65, + 1228, + 121, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC16verifyConnection33_270229C7DF150C42968499619D67C6D7LLyyKF", + "count": 389, + "regions": [ + [ + 1250, + 41, + 1322, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1254, + 90, + 1307, + 4, + 389, + 0, + 0, + 0 + ], + [ + 1257, + 62, + 1259, + 5, + 389, + 0, + 0, + 0 + ], + [ + 1259, + 5, + 1307, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1307, + 4, + 1322, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1312, + 41, + 1321, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1315, + 14, + 1317, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1317, + 5, + 1320, + 56, + 0, + 0, + 0, + 0 + ], + [ + 1321, + 4, + 1322, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC16verifyConnection33_270229C7DF150C42968499619D67C6D7LLyyKFSbyKXEfu_", + "count": 389, + "regions": [ + [ + 1254, + 40, + 1254, + 89, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC16verifyConnection33_270229C7DF150C42968499619D67C6D7LLyyKFSbyKXEfu0_", + "count": 389, + "regions": [ + [ + 1257, + 48, + 1257, + 61, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC16verifyConnection33_270229C7DF150C42968499619D67C6D7LLyyKFSSyKXEfu1_", + "count": 0, + "regions": [ + [ + 1319, + 31, + 1319, + 61, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s10SSLServiceAAC14throwLastError33_270229C7DF150C42968499619D67C6D7LL6source3errySS_s5Int32VtKF", + "count": 2, + "regions": [ + [ + 1333, + 72, + 1379, + 3, + 2, + 0, + 0, + 0 + ], + [ + 1365, + 34, + 1367, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1367, + 5, + 1379, + 3, + 2, + 0, + 0, + 0 + ], + [ + 1369, + 50, + 1371, + 5, + 2, + 0, + 0, + 0 + ], + [ + 1371, + 5, + 1379, + 3, + 2, + 0, + 0, + 0 + ], + [ + 1371, + 11, + 1373, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1373, + 5, + 1378, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSSLService/Sources/SSLService/SSLService.swift" + ] + }, + { + "name": "$s6SocketAAC14ProtocolFamilyO5values5Int32Vvg", + "count": 812, + "regions": [ + [ + 142, + 20, + 155, + 4, + 812, + 0, + 0, + 0 + ], + [ + 146, + 4, + 147, + 26, + 812, + 0, + 0, + 0 + ], + [ + 149, + 4, + 150, + 27, + 0, + 0, + 0, + 0 + ], + [ + 152, + 4, + 153, + 26, + 0, + 0, + 0, + 0 + ], + [ + 154, + 5, + 155, + 4, + 812, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC14ProtocolFamilyO03getC08forValueADSgs5Int32V_tFZ", + "count": 788, + "regions": [ + [ + 163, + 61, + 176, + 4, + 788, + 0, + 0, + 0 + ], + [ + 167, + 4, + 168, + 17, + 788, + 0, + 0, + 0 + ], + [ + 169, + 4, + 170, + 18, + 0, + 0, + 0, + 0 + ], + [ + 171, + 4, + 172, + 17, + 0, + 0, + 0, + 0 + ], + [ + 173, + 4, + 174, + 15, + 0, + 0, + 0, + 0 + ], + [ + 175, + 5, + 176, + 4, + 788, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC0A4TypeO5values5Int32Vvg", + "count": 36, + "regions": [ + [ + 200, + 20, + 217, + 4, + 36, + 0, + 0, + 0 + ], + [ + 204, + 4, + 209, + 11, + 36, + 0, + 0, + 0 + ], + [ + 210, + 4, + 215, + 11, + 0, + 0, + 0, + 0 + ], + [ + 216, + 5, + 217, + 4, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC0A4TypeO03getB08forValueADSgs5Int32V_tFZ", + "count": 788, + "regions": [ + [ + 226, + 55, + 249, + 4, + 788, + 0, + 0, + 0 + ], + [ + 241, + 5, + 242, + 20, + 788, + 0, + 0, + 0 + ], + [ + 243, + 5, + 244, + 22, + 0, + 0, + 0, + 0 + ], + [ + 245, + 5, + 246, + 16, + 0, + 0, + 0, + 0 + ], + [ + 247, + 6, + 249, + 4, + 788, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC0A8ProtocolO5values5Int32Vvg", + "count": 24, + "regions": [ + [ + 276, + 20, + 287, + 4, + 24, + 0, + 0, + 0 + ], + [ + 280, + 4, + 281, + 30, + 24, + 0, + 0, + 0 + ], + [ + 282, + 4, + 283, + 30, + 0, + 0, + 0, + 0 + ], + [ + 284, + 4, + 285, + 20, + 0, + 0, + 0, + 0 + ], + [ + 286, + 5, + 287, + 4, + 24, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC0A8ProtocolO03getB08forValueADSgs5Int32V_tFZ", + "count": 788, + "regions": [ + [ + 296, + 63, + 309, + 4, + 788, + 0, + 0, + 0 + ], + [ + 300, + 4, + 301, + 16, + 788, + 0, + 0, + 0 + ], + [ + 302, + 4, + 303, + 16, + 0, + 0, + 0, + 0 + ], + [ + 304, + 4, + 305, + 17, + 0, + 0, + 0, + 0 + ], + [ + 306, + 4, + 307, + 15, + 0, + 0, + 0, + 0 + ], + [ + 308, + 5, + 309, + 4, + 788, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO4sizeSivg", + "count": 0, + "regions": [ + [ + 331, + 24, + 342, + 4, + 0, + 0, + 0, + 0 + ], + [ + 335, + 4, + 336, + 44, + 0, + 0, + 0, + 0 + ], + [ + 337, + 4, + 338, + 45, + 0, + 0, + 0, + 0 + ], + [ + 339, + 4, + 340, + 44, + 0, + 0, + 0, + 0 + ], + [ + 341, + 5, + 342, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO6familyAB14ProtocolFamilyOvg", + "count": 776, + "regions": [ + [ + 347, + 37, + 356, + 4, + 776, + 0, + 0, + 0 + ], + [ + 349, + 4, + 350, + 31, + 776, + 0, + 0, + 0 + ], + [ + 351, + 4, + 352, + 32, + 0, + 0, + 0, + 0 + ], + [ + 353, + 4, + 354, + 31, + 0, + 0, + 0, + 0 + ], + [ + 355, + 5, + 356, + 4, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "__ntd_Signature_line:366:9", + "count": 12, + "regions": [ + [ + 436, + 98, + 465, + 4, + 12, + 0, + 0, + 0 + ], + [ + 440, + 64, + 443, + 5, + 0, + 0, + 0, + 0 + ], + [ + 443, + 5, + 465, + 4, + 12, + 0, + 0, + 0 + ], + [ + 446, + 23, + 451, + 5, + 12, + 0, + 0, + 0 + ], + [ + 447, + 44, + 450, + 6, + 0, + 0, + 0, + 0 + ], + [ + 450, + 6, + 451, + 5, + 12, + 0, + 0, + 0 + ], + [ + 451, + 5, + 465, + 4, + 12, + 0, + 0, + 0 + ], + [ + 452, + 25, + 457, + 5, + 0, + 0, + 0, + 0 + ], + [ + 453, + 44, + 456, + 6, + 0, + 0, + 0, + 0 + ], + [ + 456, + 6, + 457, + 5, + 0, + 0, + 0, + 0 + ], + [ + 457, + 5, + 465, + 4, + 12, + 0, + 0, + 0 + ], + [ + 479, + 121, + 504, + 4, + 0, + 0, + 0, + 0 + ], + [ + 482, + 29, + 487, + 5, + 0, + 0, + 0, + 0 + ], + [ + 483, + 48, + 486, + 6, + 0, + 0, + 0, + 0 + ], + [ + 486, + 6, + 487, + 5, + 0, + 0, + 0, + 0 + ], + [ + 487, + 5, + 504, + 4, + 0, + 0, + 0, + 0 + ], + [ + 488, + 31, + 493, + 5, + 0, + 0, + 0, + 0 + ], + [ + 489, + 48, + 492, + 6, + 0, + 0, + 0, + 0 + ], + [ + 492, + 6, + 493, + 5, + 0, + 0, + 0, + 0 + ], + [ + 493, + 5, + 504, + 4, + 0, + 0, + 0, + 0 + ], + [ + 501, + 23, + 503, + 5, + 0, + 0, + 0, + 0 + ], + [ + 503, + 5, + 504, + 4, + 0, + 0, + 0, + 0 + ], + [ + 518, + 135, + 548, + 4, + 0, + 0, + 0, + 0 + ], + [ + 522, + 79, + 525, + 5, + 0, + 0, + 0, + 0 + ], + [ + 525, + 5, + 548, + 4, + 0, + 0, + 0, + 0 + ], + [ + 530, + 29, + 535, + 5, + 0, + 0, + 0, + 0 + ], + [ + 531, + 48, + 534, + 6, + 0, + 0, + 0, + 0 + ], + [ + 534, + 6, + 535, + 5, + 0, + 0, + 0, + 0 + ], + [ + 535, + 5, + 548, + 4, + 0, + 0, + 0, + 0 + ], + [ + 536, + 31, + 541, + 5, + 0, + 0, + 0, + 0 + ], + [ + 537, + 48, + 540, + 6, + 0, + 0, + 0, + 0 + ], + [ + 540, + 6, + 541, + 5, + 0, + 0, + 0, + 0 + ], + [ + 541, + 5, + 548, + 4, + 0, + 0, + 0, + 0 + ], + [ + 560, + 85, + 615, + 4, + 0, + 0, + 0, + 0 + ], + [ + 563, + 46, + 566, + 5, + 0, + 0, + 0, + 0 + ], + [ + 566, + 5, + 615, + 4, + 0, + 0, + 0, + 0 + ], + [ + 575, + 29, + 580, + 5, + 0, + 0, + 0, + 0 + ], + [ + 576, + 48, + 579, + 6, + 0, + 0, + 0, + 0 + ], + [ + 579, + 6, + 580, + 5, + 0, + 0, + 0, + 0 + ], + [ + 580, + 5, + 615, + 4, + 0, + 0, + 0, + 0 + ], + [ + 581, + 31, + 586, + 5, + 0, + 0, + 0, + 0 + ], + [ + 582, + 48, + 585, + 6, + 0, + 0, + 0, + 0 + ], + [ + 585, + 6, + 586, + 5, + 0, + 0, + 0, + 0 + ], + [ + 586, + 5, + 615, + 4, + 0, + 0, + 0, + 0 + ], + [ + 597, + 78, + 600, + 5, + 0, + 0, + 0, + 0 + ], + [ + 600, + 5, + 615, + 4, + 0, + 0, + 0, + 0 + ], + [ + 630, + 133, + 664, + 4, + 776, + 0, + 0, + 0 + ], + [ + 637, + 26, + 640, + 5, + 0, + 0, + 0, + 0 + ], + [ + 640, + 5, + 664, + 4, + 776, + 0, + 0, + 0 + ], + [ + 647, + 23, + 652, + 5, + 776, + 0, + 0, + 0 + ], + [ + 648, + 44, + 651, + 6, + 0, + 0, + 0, + 0 + ], + [ + 651, + 6, + 652, + 5, + 776, + 0, + 0, + 0 + ], + [ + 652, + 5, + 664, + 4, + 776, + 0, + 0, + 0 + ], + [ + 653, + 25, + 658, + 5, + 0, + 0, + 0, + 0 + ], + [ + 654, + 28, + 657, + 6, + 0, + 0, + 0, + 0 + ], + [ + 657, + 6, + 658, + 5, + 0, + 0, + 0, + 0 + ], + [ + 658, + 5, + 664, + 4, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV11descriptionSSvg", + "count": 0, + "regions": [ + [ + 418, + 34, + 421, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV14protocolFamily10socketType5proto7addressADSgs5Int32V_A2kB7AddressOSgtKcfcSbyKXEfu_", + "count": 0, + "regions": [ + [ + 447, + 26, + 447, + 38, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV14protocolFamily10socketType5proto7addressADSgs5Int32V_A2kB7AddressOSgtKcfcSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 453, + 26, + 453, + 38, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV10socketType5proto7address8hostname4portADSgAB0aD0O_AB0A8ProtocolOAB7AddressOSSSgs5Int32VSgtKcfcSbyKXEfu_", + "count": 0, + "regions": [ + [ + 483, + 28, + 483, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV10socketType5proto7address8hostname4portADSgAB0aD0O_AB0A8ProtocolOAB7AddressOSSSgs5Int32VSgtKcfcSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 489, + 28, + 489, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV14protocolFamily10socketType5proto8hostname4portADSgAB08ProtocolD0O_AB0aF0OAB0aJ0OSSSgs5Int32VSgtKcfcSbyKXEfu_", + "count": 0, + "regions": [ + [ + 522, + 49, + 522, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV14protocolFamily10socketType5proto8hostname4portADSgAB08ProtocolD0O_AB0aF0OAB0aJ0OSSSgs5Int32VSgtKcfcSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 531, + 28, + 531, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV14protocolFamily10socketType5proto8hostname4portADSgAB08ProtocolD0O_AB0aF0OAB0aJ0OSSSgs5Int32VSgtKcfcSbyKXEfu1_", + "count": 0, + "regions": [ + [ + 537, + 28, + 537, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV10socketType5proto4pathADSgAB0aD0O_AB0A8ProtocolOSSSgtKcfcSbyKXEfu_", + "count": 0, + "regions": [ + [ + 576, + 28, + 576, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV10socketType5proto4pathADSgAB0aD0O_AB0A8ProtocolOSSSgtKcfcSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 582, + 28, + 582, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV10socketType5proto4pathADSgAB0aD0O_AB0A8ProtocolOSSSgtKcfcSpys4Int8VGSgAPXEfU_", + "count": 0, + "regions": [ + [ + 603, + 61, + 608, + 5, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV10socketType5proto4pathADSgAB0aD0O_AB0A8ProtocolOSSSgtKcfcSpys4Int8VGSgAPXEfU_AQSPyAOGXEfU_", + "count": 0, + "regions": [ + [ + 605, + 22, + 607, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV14protocolFamily10socketType5proto7address8hostname4portADSgs5Int32V_A2mB7AddressOSgSSSgAMSgtKcfcSbyKXEfu_", + "count": 0, + "regions": [ + [ + 648, + 26, + 648, + 38, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9SignatureV11unixAddressSpys5UInt8VG_SityKF", + "count": 0, + "regions": [ + [ + 672, + 76, + 715, + 4, + 0, + 0, + 0, + 0 + ], + [ + 675, + 19, + 678, + 5, + 0, + 0, + 0, + 0 + ], + [ + 678, + 5, + 715, + 4, + 0, + 0, + 0, + 0 + ], + [ + 707, + 21, + 710, + 5, + 0, + 0, + 0, + 0 + ], + [ + 710, + 5, + 714, + 29, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "__ntd_Error_line:724:9", + "count": 12, + "regions": [ + [ + 768, + 36, + 773, + 4, + 12, + 0, + 0, + 0 + ], + [ + 782, + 25, + 786, + 4, + 0, + 0, + 0, + 0 + ], + [ + 795, + 30, + 798, + 4, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5ErrorV11descriptionSSvg", + "count": 8, + "regions": [ + [ + 746, + 34, + 750, + 4, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5ErrorV11descriptionSSvgSSyKXEfu_", + "count": 0, + "regions": [ + [ + 748, + 45, + 748, + 66, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "__ntd_Socket_line:34:8", + "count": 12, + "regions": [ + [ + 1282, + 87, + 1319, + 3, + 12, + 0, + 0, + 0 + ], + [ + 1293, + 22, + 1295, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1295, + 4, + 1319, + 3, + 12, + 0, + 0, + 0 + ], + [ + 1305, + 24, + 1309, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1309, + 4, + 1319, + 3, + 12, + 0, + 0, + 0 + ], + [ + 1330, + 78, + 1372, + 3, + 776, + 0, + 0, + 0 + ], + [ + 1351, + 18, + 1355, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1355, + 4, + 1372, + 3, + 776, + 0, + 0, + 0 + ], + [ + 1355, + 10, + 1371, + 4, + 776, + 0, + 0, + 0 + ], + [ + 1356, + 74, + 1364, + 5, + 776, + 0, + 0, + 0 + ], + [ + 1364, + 5, + 1371, + 4, + 776, + 0, + 0, + 0 + ], + [ + 1364, + 11, + 1370, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1370, + 5, + 1371, + 4, + 776, + 0, + 0, + 0 + ], + [ + 1371, + 4, + 1372, + 3, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC8delegateAA18SSLServiceDelegate_pSgvW", + "count": 393, + "regions": [ + [ + 841, + 10, + 847, + 4, + 393, + 0, + 0, + 0 + ], + [ + 844, + 23, + 846, + 5, + 393, + 0, + 0, + 0 + ], + [ + 846, + 5, + 847, + 4, + 393, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC14readBufferSizeSivW", + "count": 393, + "regions": [ + [ + 861, + 10, + 883, + 4, + 393, + 0, + 0, + 0 + ], + [ + 864, + 63, + 867, + 5, + 0, + 0, + 0, + 0 + ], + [ + 867, + 5, + 883, + 4, + 393, + 0, + 0, + 0 + ], + [ + 869, + 34, + 882, + 5, + 393, + 0, + 0, + 0 + ], + [ + 882, + 5, + 883, + 4, + 393, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC8isActiveSbvg", + "count": 0, + "regions": [ + [ + 916, + 28, + 919, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC8isActiveSbvgSbyKXEfu_", + "count": 0, + "regions": [ + [ + 918, + 25, + 918, + 36, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC8isServerSbvg", + "count": 0, + "regions": [ + [ + 924, + 28, + 927, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC8isSecureSbvg", + "count": 0, + "regions": [ + [ + 932, + 28, + 938, + 3, + 0, + 0, + 0, + 0 + ], + [ + 934, + 34, + 936, + 4, + 0, + 0, + 0, + 0 + ], + [ + 936, + 4, + 937, + 22, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC13listeningPorts5Int32Vvg", + "count": 8, + "regions": [ + [ + 943, + 34, + 949, + 3, + 8, + 0, + 0, + 0 + ], + [ + 945, + 47, + 947, + 4, + 0, + 0, + 0, + 0 + ], + [ + 947, + 4, + 948, + 18, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC14remoteHostnameSSvg", + "count": 1552, + "regions": [ + [ + 954, + 36, + 962, + 3, + 1552, + 0, + 0, + 0 + ], + [ + 957, + 33, + 959, + 4, + 0, + 0, + 0, + 0 + ], + [ + 959, + 4, + 961, + 14, + 1552, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC10remotePorts5Int32Vvg", + "count": 776, + "regions": [ + [ + 967, + 31, + 974, + 3, + 776, + 0, + 0, + 0 + ], + [ + 969, + 74, + 971, + 4, + 0, + 0, + 0, + 0 + ], + [ + 971, + 4, + 973, + 18, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC10remotePathSSSgvg", + "count": 0, + "regions": [ + [ + 979, + 33, + 987, + 3, + 0, + 0, + 0, + 0 + ], + [ + 982, + 29, + 984, + 4, + 0, + 0, + 0, + 0 + ], + [ + 984, + 4, + 986, + 14, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6create6family4type5protoA2B14ProtocolFamilyO_AB0A4TypeOAB0aF0OtKFZ", + "count": 12, + "regions": [ + [ + 1003, + 134, + 1020, + 3, + 12, + 0, + 0, + 0 + ], + [ + 1006, + 22, + 1011, + 4, + 12, + 0, + 0, + 0 + ], + [ + 1007, + 47, + 1010, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1010, + 5, + 1011, + 4, + 12, + 0, + 0, + 0 + ], + [ + 1011, + 4, + 1020, + 3, + 12, + 0, + 0, + 0 + ], + [ + 1012, + 24, + 1017, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1013, + 47, + 1016, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1016, + 5, + 1017, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1017, + 4, + 1019, + 62, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6create6family4type5protoA2B14ProtocolFamilyO_AB0A4TypeOAB0aF0OtKFZSbyKXEfu_", + "count": 0, + "regions": [ + [ + 1007, + 27, + 1007, + 41, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6create6family4type5protoA2B14ProtocolFamilyO_AB0A4TypeOAB0aF0OtKFZSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 1013, + 27, + 1013, + 41, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6create14connectedUsingA2B9SignatureV_tKFZ", + "count": 0, + "regions": [ + [ + 1029, + 81, + 1036, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6create16fromNativeHandle7addressABs5Int32V_AB7AddressOSgtKFZ", + "count": 0, + "regions": [ + [ + 1047, + 101, + 1055, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1049, + 33, + 1052, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1052, + 4, + 1054, + 59, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC15hostnameAndPort4fromSS0B0_s5Int32V4porttSgAB7AddressO_tFZ", + "count": 784, + "regions": [ + [ + 1064, + 95, + 1104, + 3, + 784, + 0, + 0, + 0 + ], + [ + 1072, + 3, + 1081, + 5, + 784, + 0, + 0, + 0 + ], + [ + 1077, + 22, + 1079, + 5, + 784, + 0, + 0, + 0 + ], + [ + 1079, + 5, + 1081, + 5, + 784, + 0, + 0, + 0 + ], + [ + 1079, + 11, + 1081, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1081, + 5, + 1081, + 5, + 784, + 0, + 0, + 0 + ], + [ + 1083, + 3, + 1092, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1088, + 22, + 1090, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1090, + 5, + 1092, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1090, + 11, + 1092, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1092, + 5, + 1092, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1094, + 3, + 1095, + 14, + 0, + 0, + 0, + 0 + ], + [ + 1096, + 4, + 1104, + 3, + 784, + 0, + 0, + 0 + ], + [ + 1098, + 42, + 1101, + 4, + 784, + 0, + 0, + 0 + ], + [ + 1101, + 4, + 1103, + 13, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC11checkStatus3forSayABG9readables_AE9writablestAE_tKFZ", + "count": 0, + "regions": [ + [ + 1113, + 108, + 1130, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1118, + 25, + 1127, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1121, + 23, + 1123, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1123, + 5, + 1127, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1124, + 23, + 1126, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1126, + 5, + 1127, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1127, + 4, + 1129, + 32, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4wait3for7timeout0B7ForeverSayABGSgAG_SuSbtKFZ", + "count": 0, + "regions": [ + [ + 1142, + 110, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1145, + 25, + 1159, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1147, + 59, + 1150, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1150, + 5, + 1159, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1151, + 31, + 1154, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1154, + 5, + 1159, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1155, + 54, + 1158, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1158, + 5, + 1159, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1159, + 4, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1163, + 35, + 1181, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1181, + 4, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1188, + 25, + 1194, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1190, + 38, + 1192, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1192, + 5, + 1194, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1194, + 4, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1198, + 18, + 1200, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1200, + 4, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1200, + 10, + 1202, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1202, + 4, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1205, + 16, + 1208, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1208, + 4, + 1217, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1211, + 17, + 1213, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1213, + 4, + 1216, + 55, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4wait3for7timeout0B7ForeverSayABGSgAG_SuSbtKFZSbyKXEfu_", + "count": 0, + "regions": [ + [ + 1155, + 27, + 1155, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4wait3for7timeout0B7ForeverSayABGSgAG_SuSbtKFZSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 1163, + 22, + 1163, + 34, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4wait3for7timeout0B7ForeverSayABGSgAG_SuSbtKFZSSyKXEfu1_", + "count": 0, + "regions": [ + [ + 1207, + 106, + 1207, + 123, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4wait3for7timeout0B7ForeverSayABGSgAG_SuSbtKFZSbABXEfU_", + "count": 0, + "regions": [ + [ + 1216, + 25, + 1216, + 55, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC13createAddress3for2onAB0C0OSgSS_s5Int32VtFZ", + "count": 0, + "regions": [ + [ + 1228, + 80, + 1266, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1234, + 18, + 1237, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1237, + 4, + 1266, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1248, + 48, + 1254, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1254, + 4, + 1266, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1254, + 56, + 1260, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1260, + 4, + 1266, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1260, + 10, + 1263, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1263, + 4, + 1265, + 17, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAACfD", + "count": 784, + "regions": [ + [ + 1377, + 12, + 1392, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1379, + 30, + 1382, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1382, + 10, + 1392, + 6, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC22acceptClientConnection14invokeDelegateABSb_tKF", + "count": 784, + "regions": [ + [ + 1407, + 86, + 1482, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1410, + 56, + 1413, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1413, + 4, + 1482, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1415, + 23, + 1418, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1418, + 4, + 1482, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1420, + 24, + 1423, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1423, + 4, + 1482, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1430, + 10, + 1464, + 4, + 784, + 0, + 0, + 0 + ], + [ + 1431, + 7, + 1457, + 5, + 784, + 0, + 0, + 0 + ], + [ + 1452, + 13, + 1454, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1454, + 6, + 1457, + 5, + 784, + 0, + 0, + 0 + ], + [ + 1457, + 40, + 1460, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1460, + 5, + 1464, + 4, + 784, + 0, + 0, + 0 + ], + [ + 1464, + 4, + 1482, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1464, + 11, + 1464, + 22, + 784, + 0, + 0, + 0 + ], + [ + 1471, + 27, + 1473, + 4, + 389, + 0, + 0, + 0 + ], + [ + 1473, + 4, + 1482, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1476, + 49, + 1478, + 10, + 0, + 0, + 0, + 0 + ], + [ + 1478, + 10, + 1481, + 25, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC22acceptClientConnection14invokeDelegateABSb_tKFySpySo8sockaddrVG_Spys6UInt32VGtKXEfU_", + "count": 784, + "regions": [ + [ + 1432, + 60, + 1452, + 6, + 784, + 0, + 0, + 0 + ], + [ + 1439, + 16, + 1450, + 7, + 6, + 0, + 0, + 0 + ], + [ + 1442, + 25, + 1444, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1444, + 8, + 1449, + 83, + 6, + 0, + 0, + 0 + ], + [ + 1450, + 7, + 1452, + 6, + 778, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC22invokeDelegateOnAccept3foryAB_tKF", + "count": 389, + "regions": [ + [ + 1491, + 70, + 1515, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1494, + 41, + 1497, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1497, + 4, + 1515, + 3, + 389, + 0, + 0, + 0 + ], + [ + 1499, + 6, + 1507, + 10, + 389, + 0, + 0, + 0 + ], + [ + 1501, + 28, + 1505, + 14, + 389, + 0, + 0, + 0 + ], + [ + 1505, + 14, + 1507, + 10, + 389, + 0, + 0, + 0 + ], + [ + 1507, + 27, + 1514, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1509, + 49, + 1511, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1511, + 5, + 1513, + 31, + 0, + 0, + 0, + 0 + ], + [ + 1514, + 4, + 1515, + 3, + 389, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC16acceptConnectionyyKF", + "count": 0, + "regions": [ + [ + 1520, + 40, + 1614, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1523, + 56, + 1526, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1526, + 4, + 1614, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1528, + 23, + 1531, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1531, + 4, + 1614, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1533, + 24, + 1536, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1536, + 4, + 1614, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1543, + 10, + 1577, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1544, + 7, + 1570, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1565, + 13, + 1567, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1567, + 6, + 1570, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1570, + 40, + 1573, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1573, + 5, + 1577, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1577, + 4, + 1614, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1577, + 11, + 1577, + 22, + 0, + 0, + 0, + 0 + ], + [ + 1588, + 68, + 1591, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1591, + 4, + 1614, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1598, + 6, + 1605, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1600, + 28, + 1603, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1603, + 5, + 1605, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1605, + 21, + 1613, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1607, + 49, + 1610, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1610, + 5, + 1612, + 31, + 0, + 0, + 0, + 0 + ], + [ + 1613, + 4, + 1614, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC16acceptConnectionyyKFySpySo8sockaddrVG_Spys6UInt32VGtKXEfU_", + "count": 0, + "regions": [ + [ + 1545, + 60, + 1565, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1552, + 16, + 1563, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1555, + 25, + 1557, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1557, + 8, + 1562, + 83, + 0, + 0, + 0, + 0 + ], + [ + 1563, + 7, + 1565, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5closeyyF", + "count": 786, + "regions": [ + [ + 1621, + 22, + 1624, + 3, + 786, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKF", + "count": 0, + "regions": [ + [ + 1642, + 104, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1645, + 56, + 1648, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1648, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1650, + 23, + 1653, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1653, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1655, + 27, + 1658, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1658, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1660, + 39, + 1663, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1663, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1665, + 32, + 1668, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1668, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1671, + 6, + 1675, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1675, + 21, + 1683, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1677, + 49, + 1680, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1680, + 5, + 1682, + 31, + 0, + 0, + 0, + 0 + ], + [ + 1683, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1700, + 29, + 1700, + 73, + 0, + 0, + 0, + 0 + ], + [ + 1700, + 76, + 1700, + 85, + 0, + 0, + 0, + 0 + ], + [ + 1713, + 18, + 1722, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1716, + 28, + 1718, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1718, + 5, + 1722, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1718, + 11, + 1720, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1720, + 5, + 1721, + 80, + 0, + 0, + 0, + 0 + ], + [ + 1722, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1746, + 9, + 1746, + 20, + 0, + 0, + 0, + 0 + ], + [ + 1746, + 21, + 1856, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1753, + 30, + 1755, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1755, + 5, + 1856, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1759, + 39, + 1772, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1762, + 18, + 1765, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1765, + 6, + 1772, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1768, + 19, + 1771, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1771, + 6, + 1772, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1772, + 5, + 1856, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1782, + 19, + 1784, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1784, + 5, + 1856, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1787, + 28, + 1846, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1789, + 20, + 1845, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1816, + 19, + 1819, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1819, + 7, + 1845, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1823, + 43, + 1841, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1828, + 90, + 1831, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1831, + 8, + 1841, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1834, + 22, + 1839, + 8, + 0, + 0, + 0, + 0 + ], + [ + 1839, + 8, + 1841, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1841, + 7, + 1845, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1841, + 13, + 1844, + 7, + 0, + 0, + 0, + 0 + ], + [ + 1844, + 7, + 1845, + 6, + 0, + 0, + 0, + 0 + ], + [ + 1845, + 6, + 1846, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1846, + 5, + 1856, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1856, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1859, + 45, + 1869, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1861, + 31, + 1867, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1867, + 5, + 1868, + 85, + 0, + 0, + 0, + 0 + ], + [ + 1869, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1872, + 56, + 1875, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1875, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1882, + 49, + 1888, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1888, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1888, + 55, + 1894, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1894, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1894, + 10, + 1897, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1897, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1910, + 37, + 1925, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1915, + 17, + 1918, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1918, + 5, + 1925, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1921, + 18, + 1924, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1924, + 5, + 1925, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1925, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1928, + 6, + 1935, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1930, + 28, + 1933, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1933, + 5, + 1935, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1935, + 21, + 1943, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1937, + 49, + 1940, + 5, + 0, + 0, + 0, + 0 + ], + [ + 1940, + 5, + 1942, + 31, + 0, + 0, + 0, + 0 + ], + [ + 1943, + 4, + 1944, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 1660, + 26, + 1660, + 38, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSbyKXEfu0_", + "count": 0, + "regions": [ + [ + 1665, + 19, + 1665, + 31, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFAB0A4TypeOyKXEfu1_", + "count": 0, + "regions": [ + [ + 1686, + 57, + 1686, + 64, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFAIyKXEfu2_", + "count": 0, + "regions": [ + [ + 1700, + 64, + 1700, + 73, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSSyKXEfu3_", + "count": 0, + "regions": [ + [ + 1717, + 62, + 1717, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSSyKXEfu4_", + "count": 0, + "regions": [ + [ + 1719, + 67, + 1719, + 88, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSbyKXEfu5_", + "count": 0, + "regions": [ + [ + 1759, + 27, + 1759, + 38, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSbyKXEfu6_", + "count": 0, + "regions": [ + [ + 1859, + 21, + 1859, + 44, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2to4port7timeout10familyOnlyySS_s5Int32VSuSbtKFSbyKXEfu7_", + "count": 0, + "regions": [ + [ + 1910, + 25, + 1910, + 36, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2toySS_tKF", + "count": 0, + "regions": [ + [ + 1951, + 46, + 2003, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1954, + 68, + 1957, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1957, + 4, + 2003, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1960, + 56, + 1963, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1963, + 4, + 2003, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1965, + 23, + 1968, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1968, + 4, + 2003, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1972, + 45, + 1975, + 4, + 0, + 0, + 0, + 0 + ], + [ + 1975, + 4, + 2003, + 3, + 0, + 0, + 0, + 0 + ], + [ + 1997, + 13, + 2000, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2000, + 4, + 2003, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect2toySS_tKFs5Int32VSpySo8sockaddrVGXEfU_", + "count": 0, + "regions": [ + [ + 1987, + 70, + 1996, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect5usingyAB9SignatureV_tKF", + "count": 0, + "regions": [ + [ + 2010, + 57, + 2102, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2013, + 56, + 2016, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2016, + 4, + 2102, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2020, + 32, + 2024, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2024, + 4, + 2102, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2026, + 38, + 2091, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2029, + 7, + 2033, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2033, + 22, + 2041, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2035, + 50, + 2038, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2038, + 6, + 2040, + 32, + 0, + 0, + 0, + 0 + ], + [ + 2041, + 5, + 2091, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2052, + 14, + 2055, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2055, + 5, + 2091, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2058, + 79, + 2063, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2063, + 5, + 2091, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2063, + 86, + 2070, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2070, + 5, + 2091, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2073, + 7, + 2080, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2075, + 29, + 2078, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2078, + 6, + 2080, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2080, + 22, + 2088, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2082, + 50, + 2085, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2085, + 6, + 2087, + 32, + 0, + 0, + 0, + 0 + ], + [ + 2088, + 5, + 2090, + 10, + 0, + 0, + 0, + 0 + ], + [ + 2091, + 4, + 2102, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2094, + 86, + 2098, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2098, + 4, + 2101, + 108, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC7connect5usingyAB9SignatureV_tKFs5Int32VSPySo8sockaddrVG_s6UInt32VtXEfU_", + "count": 0, + "regions": [ + [ + 2044, + 41, + 2050, + 5, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKF", + "count": 12, + "regions": [ + [ + 2119, + 149, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2122, + 56, + 2125, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2125, + 4, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2130, + 104, + 2133, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2133, + 4, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2136, + 21, + 2150, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2142, + 105, + 2149, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2146, + 29, + 2148, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2148, + 6, + 2149, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2149, + 5, + 2150, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2150, + 4, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2153, + 39, + 2156, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2156, + 4, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2159, + 62, + 2164, + 10, + 0, + 0, + 0, + 0 + ], + [ + 2160, + 122, + 2163, + 14, + 0, + 0, + 0, + 0 + ], + [ + 2163, + 14, + 2164, + 10, + 0, + 0, + 0, + 0 + ], + [ + 2164, + 10, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2167, + 55, + 2183, + 4, + 12, + 0, + 0, + 0 + ], + [ + 2170, + 7, + 2174, + 5, + 12, + 0, + 0, + 0 + ], + [ + 2174, + 22, + 2182, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2176, + 50, + 2179, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2179, + 6, + 2181, + 32, + 0, + 0, + 0, + 0 + ], + [ + 2182, + 5, + 2183, + 4, + 12, + 0, + 0, + 0 + ], + [ + 2183, + 4, + 2326, + 3, + 12, + 0, + 0, + 0 + ], + [ + 2212, + 18, + 2221, + 4, + 2, + 0, + 0, + 0 + ], + [ + 2215, + 28, + 2217, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2217, + 5, + 2221, + 4, + 2, + 0, + 0, + 0 + ], + [ + 2217, + 11, + 2219, + 5, + 2, + 0, + 0, + 0 + ], + [ + 2219, + 5, + 2220, + 80, + 2, + 0, + 0, + 0 + ], + [ + 2221, + 4, + 2326, + 3, + 10, + 0, + 0, + 0 + ], + [ + 2234, + 9, + 2234, + 20, + 12, + 0, + 0, + 0 + ], + [ + 2234, + 21, + 2255, + 4, + 10, + 0, + 0, + 0 + ], + [ + 2245, + 89, + 2250, + 6, + 8, + 0, + 0, + 0 + ], + [ + 2250, + 6, + 2255, + 4, + 2, + 0, + 0, + 0 + ], + [ + 2255, + 4, + 2326, + 3, + 10, + 0, + 0, + 0 + ], + [ + 2258, + 13, + 2261, + 4, + 2, + 0, + 0, + 0 + ], + [ + 2261, + 4, + 2326, + 3, + 8, + 0, + 0, + 0 + ], + [ + 2267, + 16, + 2276, + 4, + 8, + 0, + 0, + 0 + ], + [ + 2272, + 12, + 2274, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2274, + 5, + 2276, + 4, + 8, + 0, + 0, + 0 + ], + [ + 2276, + 4, + 2326, + 3, + 8, + 0, + 0, + 0 + ], + [ + 2276, + 10, + 2295, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2278, + 50, + 2284, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2284, + 5, + 2295, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2284, + 56, + 2290, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2290, + 5, + 2295, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2290, + 11, + 2293, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2293, + 5, + 2295, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2295, + 4, + 2326, + 3, + 8, + 0, + 0, + 0 + ], + [ + 2298, + 67, + 2301, + 4, + 8, + 0, + 0, + 0 + ], + [ + 2301, + 4, + 2326, + 3, + 8, + 0, + 0, + 0 + ], + [ + 2307, + 55, + 2309, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2309, + 4, + 2326, + 3, + 8, + 0, + 0, + 0 + ], + [ + 2318, + 63, + 2321, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2321, + 5, + 2326, + 3, + 8, + 0, + 0, + 0 + ], + [ + 2325, + 53, + 2325, + 57, + 4, + 0, + 0, + 0 + ], + [ + 2325, + 60, + 2325, + 65, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 2159, + 44, + 2159, + 61, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFSbyKXEfu0_", + "count": 12, + "regions": [ + [ + 2167, + 37, + 2167, + 54, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFAHyKXEfu1_", + "count": 12, + "regions": [ + [ + 2211, + 43, + 2211, + 46, + 12, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFSSyKXEfu2_", + "count": 0, + "regions": [ + [ + 2216, + 62, + 2216, + 83, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFSSyKXEfu3_", + "count": 0, + "regions": [ + [ + 2218, + 66, + 2218, + 87, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFySpySo8sockaddrVG_Spys6UInt32VGtKXEfU_", + "count": 8, + "regions": [ + [ + 2268, + 65, + 2272, + 5, + 8, + 0, + 0, + 0 + ], + [ + 2269, + 58, + 2271, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2271, + 6, + 2272, + 5, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSize14allowPortReuse4nodeySi_SiSbSSSgtKFSbyKXEfu4_", + "count": 0, + "regions": [ + [ + 2307, + 37, + 2307, + 54, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSizeySS_SitKF", + "count": 0, + "regions": [ + [ + 2337, + 102, + 2418, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2340, + 56, + 2343, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2343, + 4, + 2418, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2346, + 76, + 2349, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2349, + 4, + 2418, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2354, + 104, + 2357, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2357, + 4, + 2418, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2361, + 34, + 2364, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2364, + 4, + 2418, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2395, + 13, + 2398, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2398, + 4, + 2418, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2407, + 63, + 2410, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2410, + 5, + 2418, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen2on14maxBacklogSizeySS_SitKFs5Int32VSpySo8sockaddrVGXEfU_", + "count": 0, + "regions": [ + [ + 2384, + 70, + 2393, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen10forMessage7bufSize2on010maxBacklogF0Si9bytesRead_AB7AddressOSg7addresstSpys4Int8VG_S3itKF", + "count": 0, + "regions": [ + [ + 2433, + 200, + 2468, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2436, + 19, + 2439, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2439, + 4, + 2468, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2442, + 56, + 2445, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2445, + 4, + 2468, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2449, + 37, + 2452, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2452, + 4, + 2468, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2455, + 19, + 2457, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2457, + 4, + 2468, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2460, + 46, + 2463, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2463, + 4, + 2467, + 63, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen10forMessage2on14maxBacklogSizeSi9bytesRead_AB7AddressOSg7addresstSo13NSMutableDataC_S2itKF", + "count": 0, + "regions": [ + [ + 2480, + 170, + 2509, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2483, + 56, + 2486, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2486, + 4, + 2509, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2490, + 58, + 2493, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2493, + 4, + 2509, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2496, + 19, + 2498, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2498, + 4, + 2509, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2501, + 46, + 2504, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2504, + 4, + 2508, + 43, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen10forMessage2on14maxBacklogSizeSi9bytesRead_AB7AddressOSg7addresstSo13NSMutableDataC_S2itKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 2490, + 35, + 2490, + 52, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC6listen10forMessage2on14maxBacklogSizeSi9bytesRead_AB7AddressOSg7addresst10Foundation4DataVz_S2itKF", + "count": 0, + "regions": [ + [ + 2521, + 167, + 2550, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2524, + 56, + 2527, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2527, + 4, + 2550, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2531, + 37, + 2534, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2534, + 4, + 2550, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2537, + 19, + 2539, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2539, + 4, + 2550, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2542, + 46, + 2545, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2545, + 4, + 2549, + 44, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4read4into7bufSize8truncateSiSpys4Int8VG_SiSbtKF", + "count": 0, + "regions": [ + [ + 2571, + 113, + 2672, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2574, + 19, + 2577, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2577, + 4, + 2672, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2580, + 56, + 2583, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2583, + 4, + 2672, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2585, + 24, + 2588, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2588, + 4, + 2672, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2591, + 34, + 2622, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2593, + 41, + 2611, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2595, + 17, + 2607, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2607, + 6, + 2611, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2607, + 12, + 2610, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2610, + 6, + 2611, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2611, + 5, + 2621, + 22, + 0, + 0, + 0, + 0 + ], + [ + 2622, + 4, + 2672, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2628, + 17, + 2631, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2631, + 4, + 2672, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2635, + 34, + 2669, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2638, + 41, + 2660, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2641, + 17, + 2655, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2655, + 6, + 2660, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2655, + 12, + 2659, + 6, + 0, + 0, + 0, + 0 + ], + [ + 2659, + 6, + 2660, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2660, + 5, + 2669, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2669, + 4, + 2671, + 21, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC10readStringSSSgyKF", + "count": 0, + "regions": [ + [ + 2679, + 45, + 2695, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2681, + 55, + 2684, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2684, + 4, + 2695, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2689, + 16, + 2692, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2692, + 4, + 2694, + 33, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4read4intoSiSo13NSMutableDataC_tKF", + "count": 1923, + "regions": [ + [ + 2705, + 59, + 2734, + 3, + 1923, + 0, + 0, + 0 + ], + [ + 2708, + 56, + 2711, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2711, + 4, + 2734, + 3, + 1923, + 0, + 0, + 0 + ], + [ + 2713, + 24, + 2716, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2716, + 4, + 2734, + 3, + 1923, + 0, + 0, + 0 + ], + [ + 2723, + 16, + 2731, + 4, + 978, + 0, + 0, + 0 + ], + [ + 2731, + 4, + 2733, + 21, + 1923, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4read4intoSi10Foundation4DataVz_tKF", + "count": 0, + "regions": [ + [ + 2743, + 56, + 2773, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2746, + 56, + 2749, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2749, + 4, + 2773, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2751, + 24, + 2754, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2754, + 4, + 2773, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2761, + 16, + 2770, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2770, + 4, + 2772, + 21, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC12readDatagram4into7bufSizeSi9bytesRead_AB7AddressOSg7addresstSpys4Int8VG_SitKF", + "count": 0, + "regions": [ + [ + 2787, + 129, + 2838, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2790, + 19, + 2793, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2793, + 4, + 2838, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2796, + 56, + 2799, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2799, + 4, + 2838, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2803, + 37, + 2806, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2806, + 4, + 2838, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2812, + 17, + 2815, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2815, + 4, + 2838, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2819, + 34, + 2835, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2822, + 41, + 2826, + 5, + 0, + 0, + 0, + 0 + ], + [ + 2826, + 5, + 2835, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2835, + 4, + 2837, + 32, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC12readDatagram4intoSi9bytesRead_AB7AddressOSg7addresstSo13NSMutableDataC_tKF", + "count": 0, + "regions": [ + [ + 2849, + 99, + 2880, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2852, + 56, + 2855, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2855, + 4, + 2880, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2859, + 37, + 2862, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2862, + 4, + 2880, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2869, + 16, + 2877, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2877, + 4, + 2879, + 32, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC12readDatagram4intoSi9bytesRead_AB7AddressOSg7addresst10Foundation4DataVz_tKF", + "count": 0, + "regions": [ + [ + 2891, + 96, + 2923, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2894, + 56, + 2897, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2897, + 4, + 2923, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2901, + 37, + 2904, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2904, + 4, + 2923, + 3, + 0, + 0, + 0, + 0 + ], + [ + 2911, + 16, + 2920, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2920, + 4, + 2922, + 32, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from7bufSizeSiSV_SitKF", + "count": 792, + "regions": [ + [ + 2938, + 98, + 3035, + 3, + 792, + 0, + 0, + 0 + ], + [ + 2941, + 19, + 2944, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2944, + 4, + 3035, + 3, + 792, + 0, + 0, + 0 + ], + [ + 2947, + 56, + 2950, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2950, + 4, + 3035, + 3, + 792, + 0, + 0, + 0 + ], + [ + 2952, + 24, + 2955, + 4, + 0, + 0, + 0, + 0 + ], + [ + 2955, + 4, + 3035, + 3, + 792, + 0, + 0, + 0 + ], + [ + 2964, + 9, + 2964, + 23, + 1177, + 0, + 0, + 0 + ], + [ + 2964, + 24, + 3032, + 4, + 795, + 0, + 0, + 0 + ], + [ + 2967, + 28, + 3008, + 5, + 396, + 0, + 0, + 0 + ], + [ + 2969, + 12, + 3006, + 6, + 408, + 0, + 0, + 0 + ], + [ + 2971, + 9, + 2977, + 7, + 408, + 0, + 0, + 0 + ], + [ + 2977, + 24, + 3004, + 7, + 14, + 0, + 0, + 0 + ], + [ + 2979, + 47, + 2982, + 8, + 0, + 0, + 0, + 0 + ], + [ + 2982, + 8, + 3004, + 7, + 14, + 0, + 0, + 0 + ], + [ + 2986, + 7, + 2987, + 13, + 0, + 0, + 0, + 0 + ], + [ + 2989, + 7, + 2998, + 16, + 12, + 0, + 0, + 0 + ], + [ + 2990, + 11, + 2994, + 9, + 12, + 0, + 0, + 0 + ], + [ + 2994, + 30, + 2997, + 9, + 0, + 0, + 0, + 0 + ], + [ + 2997, + 9, + 2998, + 16, + 12, + 0, + 0, + 0 + ], + [ + 3000, + 7, + 3001, + 30, + 2, + 0, + 0, + 0 + ], + [ + 3002, + 8, + 3004, + 7, + 14, + 0, + 0, + 0 + ], + [ + 3004, + 7, + 3006, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3006, + 6, + 3008, + 5, + -12, + 0, + 0, + 0 + ], + [ + 3006, + 13, + 3006, + 17, + 0, + 0, + 0, + 0 + ], + [ + 3008, + 5, + 3032, + 4, + 387, + 0, + 0, + 0 + ], + [ + 3008, + 11, + 3014, + 5, + 399, + 0, + 0, + 0 + ], + [ + 3014, + 5, + 3032, + 4, + 387, + 0, + 0, + 0 + ], + [ + 3015, + 14, + 3030, + 5, + 2, + 0, + 0, + 0 + ], + [ + 3017, + 39, + 3021, + 6, + 2, + 0, + 0, + 0 + ], + [ + 3021, + 6, + 3030, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3024, + 28, + 3027, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3027, + 6, + 3029, + 80, + 0, + 0, + 0, + 0 + ], + [ + 3030, + 5, + 3032, + 4, + 385, + 0, + 0, + 0 + ], + [ + 3032, + 4, + 3034, + 14, + 382, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from7bufSizeSiSV_SitKFSbyKXEfu_", + "count": 2, + "regions": [ + [ + 3017, + 27, + 3017, + 38, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4fromSiSo6NSDataC_tKF", + "count": 0, + "regions": [ + [ + 3044, + 72, + 3052, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3047, + 23, + 3049, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3049, + 4, + 3051, + 95, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4fromSi10Foundation4DataV_tKF", + "count": 0, + "regions": [ + [ + 3061, + 70, + 3072, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3064, + 22, + 3066, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3066, + 4, + 3071, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4fromSi10Foundation4DataV_tKFSiSPys5UInt8VGKXEfU_", + "count": 0, + "regions": [ + [ + 3068, + 37, + 3071, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4fromSiSS_tKF", + "count": 0, + "regions": [ + [ + 3081, + 74, + 3088, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4fromSiSS_tKFSiSRys4Int8VGKXEfU_", + "count": 0, + "regions": [ + [ + 3083, + 59, + 3087, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from7bufSize2toSiSV_SiAB7AddressOtKF", + "count": 0, + "regions": [ + [ + 3102, + 119, + 3167, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3105, + 34, + 3107, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3107, + 4, + 3167, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3110, + 19, + 3113, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3113, + 4, + 3167, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3116, + 56, + 3119, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3119, + 4, + 3167, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3123, + 37, + 3126, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3126, + 4, + 3166, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from7bufSize2toSiSV_SiAB7AddressOtKFSiSPySo8sockaddrVG_s6UInt32VtKXEfU_", + "count": 0, + "regions": [ + [ + 3128, + 42, + 3166, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3137, + 10, + 3137, + 24, + 0, + 0, + 0, + 0 + ], + [ + 3137, + 25, + 3163, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3146, + 15, + 3161, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3148, + 40, + 3152, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3152, + 7, + 3161, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3155, + 29, + 3158, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3158, + 7, + 3160, + 81, + 0, + 0, + 0, + 0 + ], + [ + 3161, + 6, + 3163, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3163, + 5, + 3165, + 15, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from7bufSize2toSiSV_SiAB7AddressOtKFSiSPySo8sockaddrVG_s6UInt32VtKXEfU_SbyKXEfu_", + "count": 0, + "regions": [ + [ + 3148, + 28, + 3148, + 39, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from2toSiSo6NSDataC_AB7AddressOtKF", + "count": 0, + "regions": [ + [ + 3178, + 93, + 3182, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from2toSi10Foundation4DataV_AB7AddressOtKF", + "count": 0, + "regions": [ + [ + 3193, + 91, + 3200, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from2toSi10Foundation4DataV_AB7AddressOtKFSiSPys5UInt8VGKXEfU_", + "count": 0, + "regions": [ + [ + 3196, + 37, + 3199, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from2toSiSS_AB7AddressOtKF", + "count": 0, + "regions": [ + [ + 3211, + 95, + 3218, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5write4from2toSiSS_AB7AddressOtKFSiSRys4Int8VGKXEfU_", + "count": 0, + "regions": [ + [ + 3213, + 59, + 3217, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC20isReadableOrWritable11waitForever7timeoutSb8readable_Sb8writabletSb_SutKF", + "count": 14, + "regions": [ + [ + 3231, + 124, + 3298, + 3, + 14, + 0, + 0, + 0 + ], + [ + 3234, + 56, + 3237, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3237, + 4, + 3298, + 3, + 14, + 0, + 0, + 0 + ], + [ + 3239, + 24, + 3242, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3242, + 4, + 3298, + 3, + 14, + 0, + 0, + 0 + ], + [ + 3255, + 18, + 3260, + 4, + 14, + 0, + 0, + 0 + ], + [ + 3260, + 4, + 3298, + 3, + 14, + 0, + 0, + 0 + ], + [ + 3260, + 10, + 3288, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3266, + 19, + 3284, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3284, + 5, + 3288, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3288, + 4, + 3298, + 3, + 14, + 0, + 0, + 0 + ], + [ + 3291, + 16, + 3294, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3294, + 4, + 3297, + 71, + 14, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC11setBlocking4modeySb_tKF", + "count": 776, + "regions": [ + [ + 3305, + 57, + 3329, + 3, + 776, + 0, + 0, + 0 + ], + [ + 3308, + 16, + 3311, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3311, + 4, + 3329, + 3, + 776, + 0, + 0, + 0 + ], + [ + 3314, + 18, + 3318, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3318, + 4, + 3329, + 3, + 776, + 0, + 0, + 0 + ], + [ + 3318, + 10, + 3321, + 4, + 776, + 0, + 0, + 0 + ], + [ + 3321, + 4, + 3329, + 3, + 776, + 0, + 0, + 0 + ], + [ + 3323, + 17, + 3326, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3326, + 4, + 3329, + 3, + 776, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC14setReadTimeout5valueySu_tKF", + "count": 0, + "regions": [ + [ + 3337, + 53, + 3369, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3343, + 16, + 3361, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3361, + 4, + 3369, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3365, + 17, + 3368, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3368, + 4, + 3369, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC15setWriteTimeout5valueySu_tKF", + "count": 0, + "regions": [ + [ + 3377, + 54, + 3409, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3383, + 16, + 3401, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3401, + 4, + 3409, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3405, + 17, + 3408, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3408, + 4, + 3409, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC12udpBroadcast6enableySb_tKF", + "count": 0, + "regions": [ + [ + 3417, + 48, + 3437, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3420, + 56, + 3423, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3423, + 4, + 3437, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3427, + 37, + 3430, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3430, + 4, + 3437, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3433, + 28, + 3433, + 29, + 0, + 0, + 0, + 0 + ], + [ + 3433, + 32, + 3433, + 33, + 0, + 0, + 0, + 0 + ], + [ + 3434, + 104, + 3436, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3436, + 4, + 3437, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5close33_7A557F9C0CD96487D1D5CD90ABDD6537LL14withSSLCleanupySb_tF", + "count": 786, + "regions": [ + [ + 3447, + 43, + 3494, + 3, + 786, + 0, + 0, + 0 + ], + [ + 3449, + 56, + 3475, + 4, + 786, + 0, + 0, + 0 + ], + [ + 3452, + 22, + 3454, + 5, + 786, + 0, + 0, + 0 + ], + [ + 3454, + 5, + 3475, + 4, + 786, + 0, + 0, + 0 + ], + [ + 3466, + 25, + 3469, + 6, + 6, + 0, + 0, + 0 + ], + [ + 3469, + 6, + 3475, + 4, + 786, + 0, + 0, + 0 + ], + [ + 3475, + 4, + 3494, + 3, + 786, + 0, + 0, + 0 + ], + [ + 3477, + 29, + 3493, + 4, + 786, + 0, + 0, + 0 + ], + [ + 3484, + 55, + 3490, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3490, + 5, + 3493, + 4, + 786, + 0, + 0, + 0 + ], + [ + 3493, + 4, + 3494, + 3, + 786, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC5close33_7A557F9C0CD96487D1D5CD90ABDD6537LL14withSSLCleanupySb_tFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 3484, + 38, + 3484, + 54, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC19readDataIntoStorage33_7A557F9C0CD96487D1D5CD90ABDD6537LLSiyKF", + "count": 1923, + "regions": [ + [ + 3501, + 51, + 3609, + 3, + 1923, + 0, + 0, + 0 + ], + [ + 3511, + 34, + 3513, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3513, + 4, + 3609, + 3, + 1923, + 0, + 0, + 0 + ], + [ + 3517, + 10, + 3606, + 4, + 2179, + 0, + 0, + 0 + ], + [ + 3519, + 28, + 3527, + 5, + 1161, + 0, + 0, + 0 + ], + [ + 3527, + 5, + 3606, + 4, + 2179, + 0, + 0, + 0 + ], + [ + 3527, + 11, + 3568, + 5, + 1018, + 0, + 0, + 0 + ], + [ + 3529, + 12, + 3566, + 6, + 1018, + 0, + 0, + 0 + ], + [ + 3531, + 9, + 3537, + 7, + 1018, + 0, + 0, + 0 + ], + [ + 3537, + 24, + 3564, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3539, + 47, + 3542, + 8, + 0, + 0, + 0, + 0 + ], + [ + 3542, + 8, + 3564, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3546, + 7, + 3547, + 13, + 0, + 0, + 0, + 0 + ], + [ + 3549, + 7, + 3558, + 16, + 0, + 0, + 0, + 0 + ], + [ + 3550, + 11, + 3554, + 9, + 0, + 0, + 0, + 0 + ], + [ + 3554, + 30, + 3557, + 9, + 0, + 0, + 0, + 0 + ], + [ + 3557, + 9, + 3558, + 16, + 0, + 0, + 0, + 0 + ], + [ + 3560, + 7, + 3561, + 30, + 0, + 0, + 0, + 0 + ], + [ + 3562, + 8, + 3564, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3564, + 7, + 3566, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3566, + 6, + 3568, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3566, + 13, + 3566, + 17, + 0, + 0, + 0, + 0 + ], + [ + 3568, + 5, + 3606, + 4, + 1161, + 0, + 0, + 0 + ], + [ + 3570, + 17, + 3589, + 5, + 974, + 0, + 0, + 0 + ], + [ + 3576, + 5, + 3577, + 36, + 974, + 0, + 0, + 0 + ], + [ + 3579, + 5, + 3582, + 85, + 0, + 0, + 0, + 0 + ], + [ + 3584, + 5, + 3586, + 80, + 0, + 0, + 0, + 0 + ], + [ + 3587, + 6, + 3589, + 5, + 974, + 0, + 0, + 0 + ], + [ + 3589, + 5, + 3606, + 4, + 1161, + 0, + 0, + 0 + ], + [ + 3591, + 18, + 3595, + 5, + 9, + 0, + 0, + 0 + ], + [ + 3595, + 5, + 3606, + 4, + 1152, + 0, + 0, + 0 + ], + [ + 3601, + 35, + 3604, + 5, + 940, + 0, + 0, + 0 + ], + [ + 3604, + 5, + 3606, + 4, + 212, + 0, + 0, + 0 + ], + [ + 3606, + 4, + 3608, + 33, + -44, + 0, + 0, + 0 + ], + [ + 3606, + 11, + 3606, + 20, + 256, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC23readDatagramIntoStorage33_7A557F9C0CD96487D1D5CD90ABDD6537LLSi9bytesRead_AB7AddressOSg04fromP0tyKF", + "count": 0, + "regions": [ + [ + 3616, + 91, + 3677, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3625, + 34, + 3627, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3627, + 4, + 3677, + 3, + 0, + 0, + 0, + 0 + ], + [ + 3629, + 6, + 3673, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3666, + 12, + 3669, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3669, + 5, + 3671, + 45, + 0, + 0, + 0, + 0 + ], + [ + 3673, + 57, + 3676, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3676, + 4, + 3677, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC23readDatagramIntoStorage33_7A557F9C0CD96487D1D5CD90ABDD6537LLSi9bytesRead_AB7AddressOSg04fromP0tyKFySpySo8sockaddrVG_Spys6UInt32VGtKXEfU_", + "count": 0, + "regions": [ + [ + 3630, + 53, + 3666, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3640, + 18, + 3657, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3644, + 49, + 3647, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3647, + 7, + 3657, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3650, + 29, + 3653, + 7, + 0, + 0, + 0, + 0 + ], + [ + 3653, + 7, + 3656, + 80, + 0, + 0, + 0, + 0 + ], + [ + 3657, + 6, + 3666, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3659, + 19, + 3662, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3662, + 6, + 3666, + 5, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC23readDatagramIntoStorage33_7A557F9C0CD96487D1D5CD90ABDD6537LLSi9bytesRead_AB7AddressOSg04fromP0tyKFySpySo8sockaddrVG_Spys6UInt32VGtKXEfU_SbyKXEfu_", + "count": 0, + "regions": [ + [ + 3644, + 28, + 3644, + 48, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC4wait33_7A557F9C0CD96487D1D5CD90ABDD6537LL7forReadySb_tKF", + "count": 12, + "regions": [ + [ + 3684, + 42, + 3708, + 3, + 12, + 0, + 0, + 0 + ], + [ + 3686, + 10, + 3707, + 4, + 14, + 0, + 0, + 0 + ], + [ + 3690, + 15, + 3698, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3692, + 24, + 3694, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3694, + 6, + 3698, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3694, + 12, + 3696, + 6, + 0, + 0, + 0, + 0 + ], + [ + 3696, + 6, + 3698, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3698, + 5, + 3707, + 4, + 14, + 0, + 0, + 0 + ], + [ + 3698, + 11, + 3705, + 5, + 14, + 0, + 0, + 0 + ], + [ + 3700, + 24, + 3702, + 6, + 12, + 0, + 0, + 0 + ], + [ + 3702, + 6, + 3705, + 5, + 2, + 0, + 0, + 0 + ], + [ + 3702, + 12, + 3704, + 6, + 2, + 0, + 0, + 0 + ], + [ + 3704, + 6, + 3705, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3705, + 5, + 3707, + 4, + 0, + 0, + 0, + 0 + ], + [ + 3707, + 4, + 3708, + 3, + -2, + 0, + 0, + 0 + ], + [ + 3707, + 11, + 3707, + 15, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9lastError33_7A557F9C0CD96487D1D5CD90ABDD6537LLSSyF", + "count": 8, + "regions": [ + [ + 3715, + 37, + 3718, + 3, + 8, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC9lastError33_7A557F9C0CD96487D1D5CD90ABDD6537LLSSyFSSyKXEfu_", + "count": 0, + "regions": [ + [ + 3717, + 53, + 3717, + 70, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6SocketAAC13ignoreSIGPIPE33_7A557F9C0CD96487D1D5CD90ABDD6537LL2onys5Int32V_tKF", + "count": 788, + "regions": [ + [ + 3725, + 50, + 3738, + 3, + 788, + 0, + 0, + 0 + ], + [ + 3733, + 105, + 3735, + 5, + 0, + 0, + 0, + 0 + ], + [ + 3735, + 5, + 3738, + 3, + 788, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/Socket.swift" + ] + }, + { + "name": "$s6Socket8SSLErrorO7errCodeSivg", + "count": 2, + "regions": [ + [ + 179, + 26, + 192, + 3, + 2, + 0, + 0, + 0 + ], + [ + 183, + 3, + 184, + 12, + 0, + 0, + 0, + 0 + ], + [ + 186, + 3, + 187, + 13, + 0, + 0, + 0, + 0 + ], + [ + 189, + 3, + 190, + 23, + 2, + 0, + 0, + 0 + ], + [ + 191, + 4, + 192, + 3, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift" + ] + }, + { + "name": "$s6Socket8SSLErrorO11descriptionSSvg", + "count": 2, + "regions": [ + [ + 195, + 33, + 208, + 3, + 2, + 0, + 0, + 0 + ], + [ + 199, + 3, + 200, + 20, + 0, + 0, + 0, + 0 + ], + [ + 202, + 3, + 203, + 28, + 0, + 0, + 0, + 0 + ], + [ + 205, + 3, + 206, + 17, + 2, + 0, + 0, + 0 + ], + [ + 207, + 4, + 208, + 3, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketProtocols.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO19withSockAddrPointer4bodyxxSPySo8sockaddrVG_s6UInt32VtKXE_tKlF", + "count": 0, + "regions": [ + [ + 43, + 115, + 73, + 3, + 0, + 0, + 0, + 0 + ], + [ + 63, + 3, + 64, + 41, + 0, + 0, + 0, + 0 + ], + [ + 66, + 3, + 67, + 41, + 0, + 0, + 0, + 0 + ], + [ + 69, + 3, + 70, + 41, + 0, + 0, + 0, + 0 + ], + [ + 72, + 4, + 73, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO19withSockAddrPointer4bodyxxSPySo8sockaddrVG_s6UInt32VtKXE_tKlF11castAndCallL_yxqd___xAI_AKtKXEtKr__lF", + "count": 0, + "regions": [ + [ + 52, + 119, + 59, + 4, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO19withSockAddrPointer4bodyxxSPySo8sockaddrVG_s6UInt32VtKXE_tKlF11castAndCallL_yxqd___xAI_AKtKXEtKr__lFxSPyqd__GKXEfU_", + "count": 0, + "regions": [ + [ + 54, + 52, + 58, + 5, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO19withSockAddrPointer4bodyxxSPySo8sockaddrVG_s6UInt32VtKXE_tKlF11castAndCallL_yxqd___xAI_AKtKXEtKr__lFxSPyqd__GKXEfU_xAIKXEfU_", + "count": 0, + "regions": [ + [ + 55, + 69, + 57, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfC", + "count": 792, + "regions": [ + [ + 86, + 116, + 120, + 3, + 792, + 0, + 0, + 0 + ], + [ + 99, + 3, + 104, + 5, + 784, + 0, + 0, + 0 + ], + [ + 105, + 3, + 110, + 5, + 0, + 0, + 0, + 0 + ], + [ + 111, + 3, + 116, + 5, + 0, + 0, + 0, + 0 + ], + [ + 117, + 3, + 118, + 14, + 0, + 0, + 0, + 0 + ], + [ + 119, + 4, + 120, + 3, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcySpySo0E8_storageVGKXEfU_", + "count": 792, + "regions": [ + [ + 90, + 53, + 96, + 4, + 792, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcySpySo0E8_storageVGKXEfU_yAIKXEfU_", + "count": 792, + "regions": [ + [ + 91, + 61, + 95, + 5, + 792, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcySpySo0E8_storageVGKXEfU_yAIKXEfU_yALKXEfU_", + "count": 792, + "regions": [ + [ + 92, + 61, + 94, + 6, + 792, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcADSPySo0E8_storageVGXEfU0_", + "count": 784, + "regions": [ + [ + 100, + 50, + 104, + 5, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcADSPySo0E8_storageVGXEfU0_ADSPySo0E3_inVGXEfU_", + "count": 784, + "regions": [ + [ + 101, + 68, + 103, + 6, + 784, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcADSPySo0E8_storageVGXEfU1_", + "count": 0, + "regions": [ + [ + 106, + 50, + 110, + 5, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcADSPySo0E8_storageVGXEfU1_ADSPySo0E4_in6VGXEfU_", + "count": 0, + "regions": [ + [ + 107, + 69, + 109, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcADSPySo0E8_storageVGXEfU2_", + "count": 0, + "regions": [ + [ + 112, + 50, + 116, + 5, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$s6SocketAAC7AddressO15addressProviderADSgySpySo8sockaddrVG_Spys6UInt32VGtKXE_tKcfcADSPySo0E8_storageVGXEfU2_ADSPySo0E3_unVGXEfU_", + "count": 0, + "regions": [ + [ + 113, + 68, + 115, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE16withCArrayAccess5blockxxSpys5Int32VGKXE_tKlF", + "count": 84, + "regions": [ + [ + 151, + 101, + 155, + 4, + 84, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE16withCArrayAccess5blockxxSpys5Int32VGKXE_tKlFxSpyAG_A31GtGKXEfU_", + "count": 84, + "regions": [ + [ + 152, + 55, + 154, + 5, + 84, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE7address33_213EB2A589E5E29E2D222F80686A30D9LL3forSi_s5Int32VtAH_tFZ", + "count": 56, + "regions": [ + [ + 163, + 61, + 175, + 3, + 56, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE4zeroyyF", + "count": 28, + "regions": [ + [ + 180, + 30, + 186, + 3, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE4zeroyyFySpys5Int32VGXEfU_", + "count": 28, + "regions": [ + [ + 182, + 20, + 182, + 74, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE0B0yys5Int32VF", + "count": 28, + "regions": [ + [ + 193, + 40, + 196, + 3, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE0B0yys5Int32VFySpyAFGXEfU_", + "count": 28, + "regions": [ + [ + 195, + 20, + 195, + 41, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE5clearyys5Int32VF", + "count": 0, + "regions": [ + [ + 203, + 42, + 206, + 3, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE5clearyys5Int32VFySpyAFGXEfU_", + "count": 0, + "regions": [ + [ + 205, + 20, + 205, + 42, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE5isSetySbs5Int32VF", + "count": 28, + "regions": [ + [ + 215, + 50, + 218, + 3, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "$sSo6fd_setV6SocketE5isSetySbs5Int32VFSbSpyAFGXEfU_", + "count": 28, + "regions": [ + [ + 217, + 27, + 217, + 52, + 28, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/BlueSocket/Sources/Socket/SocketUtils.swift" + ] + }, + { + "name": "__ntd_OrderedDictionary_line:18:8", + "count": 697, + "regions": [ + [ + 24, + 19, + 24, + 21, + 697, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "$s11TypeDecoder17OrderedDictionaryV5countSivg", + "count": 180, + "regions": [ + [ + 28, + 13, + 30, + 10, + 180, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "$s11TypeDecoder17OrderedDictionaryVyq_Sgxcig", + "count": 0, + "regions": [ + [ + 38, + 13, + 40, + 10, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "$s11TypeDecoder17OrderedDictionaryVyq_Sgxcis", + "count": 2725, + "regions": [ + [ + 41, + 20, + 54, + 10, + 2725, + 0, + 0, + 0 + ], + [ + 42, + 32, + 49, + 14, + 2725, + 0, + 0, + 0 + ], + [ + 44, + 31, + 46, + 18, + 2725, + 0, + 0, + 0 + ], + [ + 46, + 18, + 48, + 23, + 2725, + 0, + 0, + 0 + ], + [ + 49, + 14, + 53, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "$s11TypeDecoder17OrderedDictionaryVyq_SgxcisSbxXEfU_", + "count": 0, + "regions": [ + [ + 51, + 42, + 51, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "$s11TypeDecoder17OrderedDictionaryVyq_SgSicig", + "count": 0, + "regions": [ + [ + 58, + 40, + 64, + 6, + 0, + 0, + 0, + 0 + ], + [ + 59, + 46, + 62, + 10, + 0, + 0, + 0, + 0 + ], + [ + 62, + 10, + 63, + 19, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "$s11TypeDecoder17OrderedDictionaryV11descriptionSSvg", + "count": 0, + "regions": [ + [ + 67, + 36, + 73, + 6, + 0, + 0, + 0, + 0 + ], + [ + 69, + 28, + 71, + 10, + 0, + 0, + 0, + 0 + ], + [ + 71, + 10, + 72, + 22, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/OrderedDictionary.swift" + ] + }, + { + "name": "__ntd_InternalError_line:18:1", + "count": 0, + "regions": [ + [ + 20, + 29, + 22, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$sSD11TypeDecoderE06getKeyA0ypXpyFZ", + "count": 153, + "regions": [ + [ + 32, + 42, + 32, + 61, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$sSD11TypeDecoderE08getValueA0ypXpyFZ", + "count": 153, + "regions": [ + [ + 33, + 44, + 33, + 65, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s10Foundation3URLV11TypeDecoderE16validCodingValue6forKeyypSgs0fI0_p_tFZ", + "count": 0, + "regions": [ + [ + 144, + 72, + 149, + 6, + 0, + 0, + 0, + 0 + ], + [ + 146, + 9, + 146, + 46, + 0, + 0, + 0, + 0 + ], + [ + 147, + 9, + 147, + 28, + 0, + 0, + 0, + 0 + ], + [ + 148, + 10, + 149, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s10Foundation8TimeZoneV11TypeDecoderE16validCodingValue6forKeyypSgs0gJ0_p_tFZ", + "count": 0, + "regions": [ + [ + 152, + 72, + 157, + 6, + 0, + 0, + 0, + 0 + ], + [ + 154, + 9, + 154, + 52, + 0, + 0, + 0, + 0 + ], + [ + 155, + 9, + 155, + 28, + 0, + 0, + 0, + 0 + ], + [ + 156, + 10, + 157, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s10Foundation4UUIDV11TypeDecoderE16validCodingValueypSgyFZ", + "count": 0, + "regions": [ + [ + 160, + 51, + 162, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A4InfoO16debugDescriptionSSvg", + "count": 620, + "regions": [ + [ + 240, + 41, + 257, + 6, + 620, + 0, + 0, + 0 + ], + [ + 242, + 9, + 243, + 58, + 306, + 0, + 0, + 0 + ], + [ + 244, + 9, + 245, + 56, + 0, + 0, + 0, + 0 + ], + [ + 246, + 9, + 247, + 61, + 0, + 0, + 0, + 0 + ], + [ + 248, + 9, + 249, + 58, + 0, + 0, + 0, + 0 + ], + [ + 250, + 9, + 251, + 57, + 0, + 0, + 0, + 0 + ], + [ + 252, + 9, + 253, + 58, + 314, + 0, + 0, + 0 + ], + [ + 254, + 9, + 255, + 56, + 0, + 0, + 0, + 0 + ], + [ + 256, + 10, + 257, + 6, + 620, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A4InfoO08describeaC0_4desc6indentSSACSg_SSSitFS2S_ACtXEfU_", + "count": 2395, + "regions": [ + [ + 274, + 59, + 274, + 131, + 2395, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A4InfoO9hashValueSivg", + "count": 346, + "regions": [ + [ + 292, + 31, + 294, + 6, + 346, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A4InfoO2eeoiySbAC_ACtFZ", + "count": 86, + "regions": [ + [ + 298, + 66, + 300, + 6, + 86, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A13DecodingErrorV08decodingD00E06forKey010underlyingD0ACSe_pXp_s06CodingG0_pSgs0cD0OtFZ", + "count": 0, + "regions": [ + [ + 329, + 151, + 352, + 6, + 0, + 0, + 0, + 0 + ], + [ + 333, + 26, + 335, + 10, + 0, + 0, + 0, + 0 + ], + [ + 335, + 10, + 352, + 6, + 0, + 0, + 0, + 0 + ], + [ + 335, + 16, + 337, + 10, + 0, + 0, + 0, + 0 + ], + [ + 337, + 10, + 352, + 6, + 0, + 0, + 0, + 0 + ], + [ + 338, + 65, + 342, + 10, + 0, + 0, + 0, + 0 + ], + [ + 342, + 10, + 352, + 6, + 0, + 0, + 0, + 0 + ], + [ + 342, + 71, + 346, + 10, + 0, + 0, + 0, + 0 + ], + [ + 346, + 10, + 352, + 6, + 0, + 0, + 0, + 0 + ], + [ + 346, + 16, + 350, + 10, + 0, + 0, + 0, + 0 + ], + [ + 350, + 10, + 351, + 69, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_InternalTypeDecoder_line:355:1", + "count": 1799, + "regions": [ + [ + 360, + 57, + 383, + 6, + 1799, + 0, + 0, + 0 + ], + [ + 367, + 62, + 371, + 10, + 153, + 0, + 0, + 0 + ], + [ + 371, + 10, + 383, + 6, + 1646, + 0, + 0, + 0 + ], + [ + 376, + 78, + 382, + 10, + 153, + 0, + 0, + 0 + ], + [ + 382, + 10, + 383, + 6, + 1646, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder08InternalaB0C_8typePathACypXp_SayypXpGtKcfcSbypXpXEfU_", + "count": 3374, + "regions": [ + [ + 367, + 41, + 367, + 55, + 3374, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder08InternalaB0C10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 385, + 40, + 385, + 53, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder08InternalaB0C6cyclicSbvg", + "count": 1755, + "regions": [ + [ + 388, + 22, + 388, + 90, + 1755, + 0, + 0, + 0 + ], + [ + 388, + 51, + 388, + 66, + 0, + 0, + 0, + 0 + ], + [ + 388, + 66, + 388, + 90, + 1755, + 0, + 0, + 0 + ], + [ + 388, + 72, + 388, + 88, + 1755, + 0, + 0, + 0 + ], + [ + 388, + 88, + 388, + 90, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder08InternalaB0C9container7keyedBys22KeyedDecodingContainerVyxGxm_tKs9CodingKeyRzlF", + "count": 911, + "regions": [ + [ + 390, + 87, + 396, + 6, + 911, + 0, + 0, + 0 + ], + [ + 391, + 36, + 393, + 10, + 605, + 0, + 0, + 0 + ], + [ + 393, + 10, + 396, + 6, + 306, + 0, + 0, + 0 + ], + [ + 393, + 16, + 395, + 10, + 306, + 0, + 0, + 0 + ], + [ + 395, + 10, + 396, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder08InternalaB0C16unkeyedContainers015UnkeyedDecodingE0_pyKF", + "count": 352, + "regions": [ + [ + 398, + 64, + 404, + 6, + 352, + 0, + 0, + 0 + ], + [ + 399, + 36, + 401, + 10, + 352, + 0, + 0, + 0 + ], + [ + 401, + 10, + 404, + 6, + 0, + 0, + 0, + 0 + ], + [ + 401, + 16, + 403, + 10, + 0, + 0, + 0, + 0 + ], + [ + 403, + 10, + 404, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder08InternalaB0C20singleValueContainers06Singlee8DecodingF0_pyKF", + "count": 536, + "regions": [ + [ + 406, + 72, + 412, + 6, + 536, + 0, + 0, + 0 + ], + [ + 407, + 36, + 409, + 10, + 536, + 0, + 0, + 0 + ], + [ + 409, + 10, + 412, + 6, + 0, + 0, + 0, + 0 + ], + [ + 409, + 16, + 411, + 10, + 0, + 0, + 0, + 0 + ], + [ + 411, + 10, + 412, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_TypeKeyedDecodingContainer_line:415:1", + "count": 605, + "regions": [ + [ + 419, + 42, + 421, + 6, + 605, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 423, + 33, + 423, + 46, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC7allKeysSayxGvg", + "count": 0, + "regions": [ + [ + 424, + 24, + 424, + 37, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC8containsySbxF", + "count": 1403, + "regions": [ + [ + 426, + 39, + 426, + 54, + 1403, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC7keyDesc33_AC7230667271E80804ECDACE555A3D96LLySSxF", + "count": 3853, + "regions": [ + [ + 428, + 48, + 430, + 6, + 3853, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC7keyDesc33_AC7230667271E80804ECDACE555A3D96LLySSxFSiyKXEfu_", + "count": 3853, + "regions": [ + [ + 429, + 55, + 429, + 56, + 3853, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC06updatecA4Info33_AC7230667271E80804ECDACE555A3D96LL4with6forKeyyAA0aG0O_xtKF", + "count": 2450, + "regions": [ + [ + 432, + 95, + 449, + 6, + 2450, + 0, + 0, + 0 + ], + [ + 433, + 58, + 433, + 85, + 1403, + 0, + 0, + 0 + ], + [ + 433, + 88, + 433, + 104, + 1047, + 0, + 0, + 0 + ], + [ + 435, + 9, + 439, + 66, + 605, + 0, + 0, + 0 + ], + [ + 440, + 9, + 443, + 82, + 1845, + 0, + 0, + 0 + ], + [ + 444, + 9, + 447, + 145, + 0, + 0, + 0, + 0 + ], + [ + 448, + 10, + 449, + 6, + 2450, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC06updatecA4Info33_AC7230667271E80804ECDACE555A3D96LL4with6forKeyyAA0aG0O_xtKFSbyXEfu_", + "count": 0, + "regions": [ + [ + 446, + 20, + 446, + 25, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC5dummy6forKeyqd__Sgx_tlF", + "count": 1661, + "regions": [ + [ + 451, + 42, + 453, + 6, + 1661, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC9decodeNil6forKeySbx_tKF", + "count": 1403, + "regions": [ + [ + 455, + 72, + 455, + 132, + 1403, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2bm_xtKF", + "count": 90, + "regions": [ + [ + 456, + 72, + 456, + 175, + 90, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2bm_xtKFSbyKXEfu_", + "count": 90, + "regions": [ + [ + 456, + 168, + 456, + 173, + 90, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2im_xtKF", + "count": 259, + "regions": [ + [ + 457, + 72, + 457, + 171, + 259, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2im_xtKFSiyKXEfu_", + "count": 259, + "regions": [ + [ + 457, + 168, + 457, + 169, + 259, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys4Int8VAGm_xtKF", + "count": 0, + "regions": [ + [ + 458, + 72, + 458, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys4Int8VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 458, + 168, + 458, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5Int16VAGm_xtKF", + "count": 0, + "regions": [ + [ + 459, + 72, + 459, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5Int16VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 459, + 168, + 459, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5Int32VAGm_xtKF", + "count": 54, + "regions": [ + [ + 460, + 72, + 460, + 171, + 54, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5Int32VAGm_xtKFAGyKXEfu_", + "count": 54, + "regions": [ + [ + 460, + 168, + 460, + 169, + 54, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5Int64VAGm_xtKF", + "count": 0, + "regions": [ + [ + 461, + 72, + 461, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5Int64VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 461, + 168, + 461, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2um_xtKF", + "count": 0, + "regions": [ + [ + 462, + 72, + 462, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2um_xtKFSuyKXEfu_", + "count": 0, + "regions": [ + [ + 462, + 168, + 462, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5UInt8VAGm_xtKF", + "count": 0, + "regions": [ + [ + 463, + 72, + 463, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys5UInt8VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 463, + 168, + 463, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys6UInt16VAGm_xtKF", + "count": 90, + "regions": [ + [ + 464, + 72, + 464, + 171, + 90, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys6UInt16VAGm_xtKFAGyKXEfu_", + "count": 90, + "regions": [ + [ + 464, + 168, + 464, + 169, + 90, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys6UInt32VAGm_xtKF", + "count": 0, + "regions": [ + [ + 465, + 72, + 465, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys6UInt32VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 465, + 168, + 465, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys6UInt64VAGm_xtKF", + "count": 0, + "regions": [ + [ + 466, + 72, + 466, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeys6UInt64VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 466, + 168, + 466, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2fm_xtKF", + "count": 0, + "regions": [ + [ + 467, + 72, + 467, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2fm_xtKFSfyKXEfu_", + "count": 0, + "regions": [ + [ + 467, + 168, + 467, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2dm_xtKF", + "count": 0, + "regions": [ + [ + 468, + 72, + 468, + 171, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2dm_xtKFSdyKXEfu_", + "count": 0, + "regions": [ + [ + 468, + 168, + 468, + 169, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2Sm_xtKF", + "count": 1168, + "regions": [ + [ + 469, + 72, + 469, + 172, + 1168, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyS2Sm_xtKFSSyKXEfu_", + "count": 1168, + "regions": [ + [ + 469, + 168, + 469, + 170, + 1168, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC6decode_6forKeyqd__qd__m_xtKSeRd__lF", + "count": 789, + "regions": [ + [ + 470, + 77, + 481, + 6, + 789, + 0, + 0, + 0 + ], + [ + 472, + 12, + 477, + 10, + 789, + 0, + 0, + 0 + ], + [ + 477, + 44, + 480, + 10, + 0, + 0, + 0, + 0 + ], + [ + 480, + 10, + 481, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC06nestedE07keyedBy6forKeys0cdE0Vyqd__Gqd__m_xtKs06CodingJ0Rd__lF", + "count": 0, + "regions": [ + [ + 482, + 128, + 485, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC013nestedUnkeyedE06forKeys0gdE0_px_tKF", + "count": 0, + "regions": [ + [ + 486, + 85, + 489, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC05superB0s0B0_pyKF", + "count": 0, + "regions": [ + [ + 490, + 43, + 492, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A22KeyedDecodingContainerC05superB06forKeys0B0_px_tKF", + "count": 0, + "regions": [ + [ + 493, + 58, + 495, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_TypeSingleValueDecodingContainer_line:498:1", + "count": 536, + "regions": [ + [ + 502, + 42, + 504, + 6, + 536, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 506, + 33, + 506, + 46, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC03setA4Info33_AC7230667271E80804ECDACE555A3D96LL2toyAA0aH0O_tF", + "count": 536, + "regions": [ + [ + 508, + 53, + 510, + 6, + 536, + 0, + 0, + 0 + ], + [ + 509, + 41, + 509, + 60, + 0, + 0, + 0, + 0 + ], + [ + 509, + 63, + 509, + 71, + 536, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC5dummyxSgylF", + "count": 536, + "regions": [ + [ + 512, + 27, + 514, + 6, + 536, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC9decodeNilSbyF", + "count": 0, + "regions": [ + [ + 516, + 55, + 516, + 99, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2bmKF", + "count": 0, + "regions": [ + [ + 517, + 55, + 517, + 136, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2bmKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 517, + 129, + 517, + 134, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2imKF", + "count": 163, + "regions": [ + [ + 518, + 55, + 518, + 132, + 163, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2imKFSiyKXEfu_", + "count": 163, + "regions": [ + [ + 518, + 129, + 518, + 130, + 163, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys4Int8VAFmKF", + "count": 0, + "regions": [ + [ + 519, + 55, + 519, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys4Int8VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 519, + 129, + 519, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5Int16VAFmKF", + "count": 0, + "regions": [ + [ + 520, + 55, + 520, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5Int16VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 520, + 129, + 520, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5Int32VAFmKF", + "count": 36, + "regions": [ + [ + 521, + 55, + 521, + 132, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5Int32VAFmKFAFyKXEfu_", + "count": 36, + "regions": [ + [ + 521, + 129, + 521, + 130, + 36, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5Int64VAFmKF", + "count": 0, + "regions": [ + [ + 522, + 55, + 522, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5Int64VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 522, + 129, + 522, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2umKF", + "count": 0, + "regions": [ + [ + 523, + 55, + 523, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2umKFSuyKXEfu_", + "count": 0, + "regions": [ + [ + 523, + 129, + 523, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5UInt8VAFmKF", + "count": 0, + "regions": [ + [ + 524, + 55, + 524, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys5UInt8VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 524, + 129, + 524, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys6UInt16VAFmKF", + "count": 0, + "regions": [ + [ + 525, + 55, + 525, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys6UInt16VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 525, + 129, + 525, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys6UInt32VAFmKF", + "count": 0, + "regions": [ + [ + 526, + 55, + 526, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys6UInt32VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 526, + 129, + 526, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys6UInt64VAFmKF", + "count": 0, + "regions": [ + [ + 527, + 55, + 527, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeys6UInt64VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 527, + 129, + 527, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2fmKF", + "count": 0, + "regions": [ + [ + 528, + 55, + 528, + 132, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2fmKFSfyKXEfu_", + "count": 0, + "regions": [ + [ + 528, + 129, + 528, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2dmKF", + "count": 31, + "regions": [ + [ + 529, + 55, + 529, + 132, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2dmKFSdyKXEfu_", + "count": 31, + "regions": [ + [ + 529, + 129, + 529, + 130, + 31, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2SmKF", + "count": 306, + "regions": [ + [ + 530, + 55, + 530, + 133, + 306, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyS2SmKFSSyKXEfu_", + "count": 306, + "regions": [ + [ + 530, + 129, + 530, + 131, + 306, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A28SingleValueDecodingContainerC6decodeyxxmKSeRzlF", + "count": 0, + "regions": [ + [ + 531, + 60, + 542, + 6, + 0, + 0, + 0, + 0 + ], + [ + 532, + 12, + 538, + 10, + 0, + 0, + 0, + 0 + ], + [ + 538, + 44, + 541, + 10, + 0, + 0, + 0, + 0 + ], + [ + 541, + 10, + 542, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_TypeUnkeyedDecodingContainer_line:545:1", + "count": 352, + "regions": [ + [ + 549, + 42, + 552, + 6, + 352, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV10codingPathSays9CodingKey_pGvg", + "count": 0, + "regions": [ + [ + 554, + 33, + 554, + 46, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV5countSiSgvg", + "count": 0, + "regions": [ + [ + 555, + 21, + 555, + 33, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV03setA4Info33_AC7230667271E80804ECDACE555A3D96LL2toyAA0aG0O_tF", + "count": 352, + "regions": [ + [ + 559, + 53, + 561, + 6, + 352, + 0, + 0, + 0 + ], + [ + 560, + 72, + 560, + 91, + 0, + 0, + 0, + 0 + ], + [ + 560, + 94, + 560, + 102, + 352, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV9decodeNilSbyKF", + "count": 0, + "regions": [ + [ + 563, + 64, + 563, + 108, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyS2bmKF", + "count": 0, + "regions": [ + [ + 564, + 64, + 564, + 134, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyS2imKF", + "count": 0, + "regions": [ + [ + 565, + 64, + 565, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys4Int8VAFmKF", + "count": 0, + "regions": [ + [ + 566, + 64, + 566, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys5Int16VAFmKF", + "count": 0, + "regions": [ + [ + 567, + 64, + 567, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys5Int32VAFmKF", + "count": 0, + "regions": [ + [ + 568, + 64, + 568, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys5Int64VAFmKF", + "count": 0, + "regions": [ + [ + 569, + 64, + 569, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyS2umKF", + "count": 0, + "regions": [ + [ + 570, + 64, + 570, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys5UInt8VAFmKF", + "count": 0, + "regions": [ + [ + 571, + 64, + 571, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys6UInt16VAFmKF", + "count": 0, + "regions": [ + [ + 572, + 64, + 572, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys6UInt32VAFmKF", + "count": 0, + "regions": [ + [ + 573, + 64, + 573, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeys6UInt64VAFmKF", + "count": 0, + "regions": [ + [ + 574, + 64, + 574, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyS2fmKF", + "count": 0, + "regions": [ + [ + 575, + 64, + 575, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyS2dmKF", + "count": 0, + "regions": [ + [ + 576, + 64, + 576, + 130, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyS2SmKF", + "count": 0, + "regions": [ + [ + 577, + 64, + 577, + 131, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV6decodeyxxmKSeRzlF", + "count": 352, + "regions": [ + [ + 578, + 69, + 590, + 6, + 352, + 0, + 0, + 0 + ], + [ + 579, + 12, + 586, + 10, + 352, + 0, + 0, + 0 + ], + [ + 586, + 44, + 589, + 10, + 0, + 0, + 0, + 0 + ], + [ + 589, + 10, + 590, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV06nestedE07keyedBys05KeyeddE0VyxGxm_tKs9CodingKeyRzlF", + "count": 0, + "regions": [ + [ + 592, + 120, + 596, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV06nestedcE0s0cdE0_pyKF", + "count": 0, + "regions": [ + [ + 597, + 79, + 600, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder0A24UnkeyedDecodingContainerV05superB0s0B0_pyKF", + "count": 0, + "regions": [ + [ + 601, + 52, + 605, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_DummyDecoder_line:611:1", + "count": 459, + "regions": [ + [ + 616, + 28, + 616, + 51, + 459, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder05DummyB0V9container7keyedBys22KeyedDecodingContainerVyxGxm_tKs9CodingKeyRzlF", + "count": 0, + "regions": [ + [ + 618, + 87, + 620, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder05DummyB0V16unkeyedContainers015UnkeyedDecodingE0_pyKF", + "count": 153, + "regions": [ + [ + 622, + 64, + 624, + 6, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder05DummyB0V20singleValueContainers06Singlee8DecodingF0_pyKF", + "count": 0, + "regions": [ + [ + 626, + 72, + 628, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_DummyKeyedDecodingContainer_line:631:1", + "count": 306, + "regions": [ + [ + 636, + 35, + 636, + 61, + 306, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV8containsySbxF", + "count": 306, + "regions": [ + [ + 638, + 39, + 638, + 55, + 306, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV5dummy6forKeyqd__Sgx_tlF", + "count": 459, + "regions": [ + [ + 640, + 42, + 642, + 6, + 459, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV9decodeNil6forKeySbx_tKF", + "count": 0, + "regions": [ + [ + 644, + 48, + 644, + 63, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2bm_xtKF", + "count": 0, + "regions": [ + [ + 645, + 68, + 645, + 109, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2bm_xtKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 645, + 102, + 645, + 107, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2im_xtKF", + "count": 153, + "regions": [ + [ + 646, + 68, + 646, + 105, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2im_xtKFSiyKXEfu_", + "count": 153, + "regions": [ + [ + 646, + 102, + 646, + 103, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys4Int8VAGm_xtKF", + "count": 0, + "regions": [ + [ + 647, + 68, + 647, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys4Int8VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 647, + 102, + 647, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5Int16VAGm_xtKF", + "count": 0, + "regions": [ + [ + 648, + 68, + 648, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5Int16VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 648, + 102, + 648, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5Int32VAGm_xtKF", + "count": 0, + "regions": [ + [ + 649, + 68, + 649, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5Int32VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 649, + 102, + 649, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5Int64VAGm_xtKF", + "count": 0, + "regions": [ + [ + 650, + 68, + 650, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5Int64VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 650, + 102, + 650, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2um_xtKF", + "count": 0, + "regions": [ + [ + 651, + 68, + 651, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2um_xtKFSuyKXEfu_", + "count": 0, + "regions": [ + [ + 651, + 102, + 651, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5UInt8VAGm_xtKF", + "count": 0, + "regions": [ + [ + 652, + 68, + 652, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys5UInt8VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 652, + 102, + 652, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys6UInt16VAGm_xtKF", + "count": 0, + "regions": [ + [ + 653, + 68, + 653, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys6UInt16VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 653, + 102, + 653, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys6UInt32VAGm_xtKF", + "count": 0, + "regions": [ + [ + 654, + 68, + 654, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys6UInt32VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 654, + 102, + 654, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys6UInt64VAGm_xtKF", + "count": 0, + "regions": [ + [ + 655, + 68, + 655, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeys6UInt64VAGm_xtKFAGyKXEfu_", + "count": 0, + "regions": [ + [ + 655, + 102, + 655, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2fm_xtKF", + "count": 0, + "regions": [ + [ + 656, + 68, + 656, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2fm_xtKFSfyKXEfu_", + "count": 0, + "regions": [ + [ + 656, + 102, + 656, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2dm_xtKF", + "count": 0, + "regions": [ + [ + 657, + 68, + 657, + 105, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2dm_xtKFSdyKXEfu_", + "count": 0, + "regions": [ + [ + 657, + 102, + 657, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2Sm_xtKF", + "count": 306, + "regions": [ + [ + 658, + 68, + 658, + 106, + 306, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyS2Sm_xtKFSSyKXEfu_", + "count": 306, + "regions": [ + [ + 658, + 102, + 658, + 104, + 306, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV6decode_6forKeyqd__qd__m_xtKSeRd__lF", + "count": 153, + "regions": [ + [ + 659, + 72, + 659, + 114, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV06nestedF07keyedBy6forKeys0deF0Vyqd__Gqd__m_xtKs06CodingK0Rd__lF", + "count": 0, + "regions": [ + [ + 660, + 128, + 662, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV013nestedUnkeyedF06forKeys0heF0_px_tKF", + "count": 0, + "regions": [ + [ + 663, + 85, + 665, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV05superB0s0B0_pyKF", + "count": 0, + "regions": [ + [ + 666, + 43, + 666, + 88, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder27DummyKeyedDecodingContainerV05superB06forKeys0B0_px_tKF", + "count": 0, + "regions": [ + [ + 667, + 58, + 667, + 103, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_DummyUnkeyedDecodingContainer_line:669:1", + "count": 153, + "regions": [ + [ + 676, + 35, + 676, + 61, + 153, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV9decodeNilSbyKF", + "count": 0, + "regions": [ + [ + 678, + 37, + 678, + 52, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyS2bmKF", + "count": 0, + "regions": [ + [ + 679, + 55, + 679, + 71, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyS2imKF", + "count": 0, + "regions": [ + [ + 680, + 55, + 680, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys4Int8VAFmKF", + "count": 0, + "regions": [ + [ + 681, + 55, + 681, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys5Int16VAFmKF", + "count": 0, + "regions": [ + [ + 682, + 55, + 682, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys5Int32VAFmKF", + "count": 0, + "regions": [ + [ + 683, + 55, + 683, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys5Int64VAFmKF", + "count": 0, + "regions": [ + [ + 684, + 55, + 684, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyS2umKF", + "count": 0, + "regions": [ + [ + 685, + 55, + 685, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys5UInt8VAFmKF", + "count": 0, + "regions": [ + [ + 686, + 55, + 686, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys6UInt16VAFmKF", + "count": 0, + "regions": [ + [ + 687, + 55, + 687, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys6UInt32VAFmKF", + "count": 0, + "regions": [ + [ + 688, + 55, + 688, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeys6UInt64VAFmKF", + "count": 0, + "regions": [ + [ + 689, + 55, + 689, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyS2fmKF", + "count": 0, + "regions": [ + [ + 690, + 55, + 690, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyS2dmKF", + "count": 0, + "regions": [ + [ + 691, + 55, + 691, + 67, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyS2SmKF", + "count": 0, + "regions": [ + [ + 692, + 55, + 692, + 68, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV6decodeyxxmKSeRzlF", + "count": 0, + "regions": [ + [ + 693, + 59, + 693, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV06nestedF07keyedBys05KeyedeF0VyxGxm_tKs9CodingKeyRzlF", + "count": 0, + "regions": [ + [ + 694, + 111, + 696, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV06nesteddF0s0deF0_pyKF", + "count": 0, + "regions": [ + [ + 697, + 70, + 699, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder29DummyUnkeyedDecodingContainerV05superB0s0B0_pyKF", + "count": 0, + "regions": [ + [ + 700, + 43, + 702, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "__ntd_DummySingleValueDecodingContainer_line:704:1", + "count": 0, + "regions": [ + [ + 708, + 35, + 708, + 61, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV5dummyxSgylF", + "count": 0, + "regions": [ + [ + 710, + 27, + 712, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV9decodeNilSbyF", + "count": 0, + "regions": [ + [ + 714, + 30, + 714, + 45, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2bmKF", + "count": 0, + "regions": [ + [ + 715, + 55, + 715, + 82, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2bmKFSbyKXEfu_", + "count": 0, + "regions": [ + [ + 715, + 75, + 715, + 80, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2imKF", + "count": 0, + "regions": [ + [ + 716, + 55, + 716, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2imKFSiyKXEfu_", + "count": 0, + "regions": [ + [ + 716, + 75, + 716, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys4Int8VAFmKF", + "count": 0, + "regions": [ + [ + 717, + 55, + 717, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys4Int8VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 717, + 75, + 717, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5Int16VAFmKF", + "count": 0, + "regions": [ + [ + 718, + 55, + 718, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5Int16VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 718, + 75, + 718, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5Int32VAFmKF", + "count": 0, + "regions": [ + [ + 719, + 55, + 719, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5Int32VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 719, + 75, + 719, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5Int64VAFmKF", + "count": 0, + "regions": [ + [ + 720, + 55, + 720, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5Int64VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 720, + 75, + 720, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2umKF", + "count": 0, + "regions": [ + [ + 721, + 55, + 721, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2umKFSuyKXEfu_", + "count": 0, + "regions": [ + [ + 721, + 75, + 721, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5UInt8VAFmKF", + "count": 0, + "regions": [ + [ + 722, + 55, + 722, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys5UInt8VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 722, + 75, + 722, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys6UInt16VAFmKF", + "count": 0, + "regions": [ + [ + 723, + 55, + 723, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys6UInt16VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 723, + 75, + 723, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys6UInt32VAFmKF", + "count": 0, + "regions": [ + [ + 724, + 55, + 724, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys6UInt32VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 724, + 75, + 724, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys6UInt64VAFmKF", + "count": 0, + "regions": [ + [ + 725, + 55, + 725, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeys6UInt64VAFmKFAFyKXEfu_", + "count": 0, + "regions": [ + [ + 725, + 75, + 725, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2fmKF", + "count": 0, + "regions": [ + [ + 726, + 55, + 726, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2fmKFSfyKXEfu_", + "count": 0, + "regions": [ + [ + 726, + 75, + 726, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2dmKF", + "count": 0, + "regions": [ + [ + 727, + 55, + 727, + 78, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2dmKFSdyKXEfu_", + "count": 0, + "regions": [ + [ + 727, + 75, + 727, + 76, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2SmKF", + "count": 0, + "regions": [ + [ + 728, + 55, + 728, + 79, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyS2SmKFSSyKXEfu_", + "count": 0, + "regions": [ + [ + 728, + 75, + 728, + 77, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoder33DummySingleValueDecodingContainerV6decodeyxxmKSeRzlF", + "count": 0, + "regions": [ + [ + 729, + 59, + 729, + 101, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + }, + { + "name": "$s11TypeDecoderAAV6decodeyAA0A4InfoOSe_pXpKFZ", + "count": 352, + "regions": [ + [ + 750, + 74, + 752, + 6, + 352, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Kitura-master/.build/checkouts/TypeDecoder/Sources/TypeDecoder/TypeDecoder.swift" + ] + } + ], + "totals": { + "lines": { + "count": 32028, + "covered": 24690, + "percent": 77 + }, + "functions": { + "count": 4823, + "covered": 3566, + "percent": 73 + }, + "instantiations": { + "count": 4823, + "covered": 3566, + "percent": 73 + }, + "regions": { + "count": 9508, + "covered": 6295, + "notcovered": 3213, + "percent": 66 + } + } + } + ] +} \ No newline at end of file diff --git a/Tests/Assets/Kitura.json b/Tests/Assets/Kitura.json new file mode 100644 index 0000000..59fb52c --- /dev/null +++ b/Tests/Assets/Kitura.json @@ -0,0 +1,2009 @@ +{ + "endDate" : 1547853075.309, + "children" : [ + { + "endDate" : 1547853075.3080001, + "children" : [ + { + "endDate" : 1547852973.2520001, + "children" : [ + + ], + "startDate" : 1547852973.1559999, + "cases" : [ + { + "outcome" : "success", + "className" : "MiscellaneousTests", + "moduleName" : "KituraTests", + "testName" : "testHeaders", + "duration" : 0.095000000000000001 + }, + { + "outcome" : "success", + "className" : "MiscellaneousTests", + "moduleName" : "KituraTests", + "testName" : "testHeadersHelpers", + "duration" : 0 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "MiscellaneousTests" + }, + { + "endDate" : 1547852973.378, + "children" : [ + + ], + "startDate" : 1547852973.2520001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestBridgingHTTPStatusCode", + "moduleName" : "KituraTests", + "testName" : "testSimpleResponse", + "duration" : 0.126 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestBridgingHTTPStatusCode" + }, + { + "endDate" : 1547852973.431, + "children" : [ + + ], + "startDate" : 1547852973.3789999, + "cases" : [ + { + "outcome" : "success", + "className" : "TestBridgingRequestError", + "moduleName" : "KituraTests", + "testName" : "testRequestError", + "duration" : 0.052999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestBridgingRequestError" + }, + { + "endDate" : 1547853009.793, + "children" : [ + + ], + "startDate" : 1547852973.431, + "cases" : [ + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicDelete", + "duration" : 0.158 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicDeleteSingle", + "duration" : 0.155 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicGetArray", + "duration" : 0.153 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicGetIdentifiersArray", + "duration" : 0.20799999999999999 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicGetSingle", + "duration" : 0.16 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicGetSingleton", + "duration" : 0.158 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicPatch", + "duration" : 6.1950000000000003 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicPost", + "duration" : 0.36399999999999999 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicPostIdentifier", + "duration" : 0.16300000000000001 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testBasicPut", + "duration" : 6.194 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testCodableDeleteQueryParameters", + "duration" : 0.29099999999999998 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testCodableGetArrayQueryParameters", + "duration" : 0.28499999999999998 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testCodableGetSingleQueryParameters", + "duration" : 0.29199999999999998 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testCodablePostSuccessStatuses", + "duration" : 0.158 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testCodableRoutesWithBodyParsingFail", + "duration" : 4.194 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testErrorOverridesBody", + "duration" : 8.4879999999999995 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testIdentifierNotExpected", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testIdentifierNotSupplied", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testInvalidIdentifierSupplied", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testJoinPath", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testNoDataCustomStatus", + "duration" : 2.1240000000000001 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testNoDataDefaultStatus", + "duration" : 2.1219999999999999 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testPartialIdentifierSupplied", + "duration" : 0.053999999999999999 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testRouteParameters", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestCodableRouter", + "moduleName" : "KituraTests", + "testName" : "testRouteWithTrailingSlash", + "duration" : 4.2380000000000004 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestCodableRouter" + }, + { + "endDate" : 1547853009.7939999, + "children" : [ + + ], + "startDate" : 1547853009.793, + "cases" : [ + { + "outcome" : "success", + "className" : "TestContentType", + "moduleName" : "KituraTests", + "testName" : "testFilename", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestContentType", + "moduleName" : "KituraTests", + "testName" : "testInitialize", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestContentType", + "moduleName" : "KituraTests", + "testName" : "testIsContentType", + "duration" : 0 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestContentType" + }, + { + "endDate" : 1547853010.155, + "children" : [ + + ], + "startDate" : 1547853009.7939999, + "cases" : [ + { + "outcome" : "success", + "className" : "TestCookies", + "moduleName" : "KituraTests", + "testName" : "testCookieFromServer", + "duration" : 0.111 + }, + { + "outcome" : "success", + "className" : "TestCookies", + "moduleName" : "KituraTests", + "testName" : "testCookieToServerWithSemiColonSeparator", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestCookies", + "moduleName" : "KituraTests", + "testName" : "testCookieToServerWithSemiColonSpaceSeparator", + "duration" : 0.053999999999999999 + }, + { + "outcome" : "success", + "className" : "TestCookies", + "moduleName" : "KituraTests", + "testName" : "testCookieToServerWithSemiColonWhitespacesSeparator", + "duration" : 0.049000000000000002 + }, + { + "outcome" : "success", + "className" : "TestCookies", + "moduleName" : "KituraTests", + "testName" : "testNoCookies", + "duration" : 0.092999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestCookies" + }, + { + "endDate" : 1547853010.6199999, + "children" : [ + + ], + "startDate" : 1547853010.155, + "cases" : [ + { + "outcome" : "success", + "className" : "TestCustomCoders", + "moduleName" : "KituraTests", + "testName" : "testCustomCoder", + "duration" : 0.108 + }, + { + "outcome" : "success", + "className" : "TestCustomCoders", + "moduleName" : "KituraTests", + "testName" : "testCustomQueryEncoder", + "duration" : 0.253 + }, + { + "outcome" : "success", + "className" : "TestCustomCoders", + "moduleName" : "KituraTests", + "testName" : "testRawCustomCoder", + "duration" : 0.105 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestCustomCoders" + }, + { + "endDate" : 1547853010.622, + "children" : [ + + ], + "startDate" : 1547853010.6199999, + "cases" : [ + { + "outcome" : "success", + "className" : "TestDecodingErrorExtension", + "moduleName" : "KituraTests", + "testName" : "testMalformedJson", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestDecodingErrorExtension", + "moduleName" : "KituraTests", + "testName" : "testMissingRequiredKey", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestDecodingErrorExtension", + "moduleName" : "KituraTests", + "testName" : "testMissingValue", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestDecodingErrorExtension", + "moduleName" : "KituraTests", + "testName" : "testWrongType", + "duration" : 0 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestDecodingErrorExtension" + }, + { + "endDate" : 1547853010.7750001, + "children" : [ + + ], + "startDate" : 1547853010.622, + "cases" : [ + { + "outcome" : "success", + "className" : "TestErrors", + "moduleName" : "KituraTests", + "testName" : "testInvalidEndpoint", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestErrors", + "moduleName" : "KituraTests", + "testName" : "testInvalidHeader", + "duration" : 0.049000000000000002 + }, + { + "outcome" : "success", + "className" : "TestErrors", + "moduleName" : "KituraTests", + "testName" : "testInvalidMethod", + "duration" : 0.053999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestErrors" + }, + { + "endDate" : 1547853010.777, + "children" : [ + + ], + "startDate" : 1547853010.7750001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testAllTextMediaTypeBuilder", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testAllTextSlashMediaTypeBuilder", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testHTMLMediaTypeBuilder", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testIncorrectTopLevelType", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testInvalidMediaType", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testMediaCaseInsensitive", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testPartsAllTextMediaTypeBuilder", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testPartsHTMLMediaTypeBuilder", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testPartsMediaCaseInsensitive", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestMediaType", + "moduleName" : "KituraTests", + "testName" : "testValidMediaType", + "duration" : 0 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestMediaType" + }, + { + "endDate" : 1547853011.3710001, + "children" : [ + + ], + "startDate" : 1547853010.777, + "cases" : [ + { + "outcome" : "success", + "className" : "TestMultiplicity", + "moduleName" : "KituraTests", + "testName" : "testCombined", + "duration" : 0.14799999999999999 + }, + { + "outcome" : "success", + "className" : "TestMultiplicity", + "moduleName" : "KituraTests", + "testName" : "testPlus", + "duration" : 0.151 + }, + { + "outcome" : "success", + "className" : "TestMultiplicity", + "moduleName" : "KituraTests", + "testName" : "testQuestion", + "duration" : 0.14599999999999999 + }, + { + "outcome" : "success", + "className" : "TestMultiplicity", + "moduleName" : "KituraTests", + "testName" : "testStar", + "duration" : 0.14899999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestMultiplicity" + }, + { + "endDate" : 1547853011.3829999, + "children" : [ + + ], + "startDate" : 1547853011.3710001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestRangeHeaderDataExtensions", + "moduleName" : "KituraTests", + "testName" : "testPartialDataRead", + "duration" : 0.0080000000000000002 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderDataExtensions", + "moduleName" : "KituraTests", + "testName" : "testPartialDataReadEntireFile", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderDataExtensions", + "moduleName" : "KituraTests", + "testName" : "testPartialDataReadWithErrorFileNotFound", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestRangeHeaderDataExtensions" + }, + { + "endDate" : 1547853011.388, + "children" : [ + + ], + "startDate" : 1547853011.3829999, + "cases" : [ + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testIsBytesRangeHeader", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testParseString", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testReturnNilOnInvalidNonDigitsRanges", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testReturnNilOnInvalidRanges", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testReturnNilOnMalformedHeader", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldCapEndAtSize", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldCombineOverlappingRanges", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldCombineOverlappingRangesAndRetainOriginalOrder", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseNonBytesRange", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseNormalString", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseStringAskingForLastByte", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseStringWithBytesEqualZeroZero", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseStringWithMultipleRanges", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseStringWithOnlyEnd", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseStringWithOnlyStart", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseStringWithSomeInvalidRanges", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestRangeHeaderParser", + "moduleName" : "KituraTests", + "testName" : "testShouldParseWithStartBytesEqualtToZero", + "duration" : 0 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestRangeHeaderParser" + }, + { + "endDate" : 1547853012, + "children" : [ + + ], + "startDate" : 1547853011.388, + "cases" : [ + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testCustomMiddlewareURLParameter", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testCustomMiddlewareURLParameterWithQueryParam", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testMultipleParametersMultipleHandlers", + "duration" : 0.098000000000000004 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testOneParameterMultipleHandlers", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testParameterExit", + "duration" : 0.097000000000000003 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testParameters", + "duration" : 0.097000000000000003 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testQueryParameters", + "duration" : 0.111 + }, + { + "outcome" : "success", + "className" : "TestRequests", + "moduleName" : "KituraTests", + "testName" : "testRouteParameters", + "duration" : 0.052999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestRequests" + }, + { + "endDate" : 1547853019.2190001, + "children" : [ + + ], + "startDate" : 1547853012, + "cases" : [ + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testAcceptEncodingTypes", + "duration" : 0.10000000000000001 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testAcceptTypes", + "duration" : 0.105 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testChangeStatusCodeOnInvokedSend", + "duration" : 0.10000000000000001 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testEmptyHandler", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testErrorHandler", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testFormat", + "duration" : 0.14999999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testHeaderModifiers", + "duration" : 0.058000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testJsonp", + "duration" : 0.25 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testLargeGet", + "duration" : 0.088999999999999996 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testLargePost", + "duration" : 2.1459999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testLifecycle", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testLink", + "duration" : 0.104 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testMultipartFormParsing", + "duration" : 0.20699999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testOptionalStringNilResponse", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testOptionalStringResponse", + "duration" : 0.055 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testParameters", + "duration" : 0.048000000000000001 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testParametersPercent20InPath", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testParametersPercent20InQuery", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testParametersPercentageEncoding", + "duration" : 0.045999999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testParametersPlusInPath", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testParametersPlusInQuery", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testPostJSONRequest", + "duration" : 0.053999999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testPostRequest", + "duration" : 0.053999999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testPostRequestTheHardWay", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testPostRequestUrlEncoded", + "duration" : 0.157 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testPostRequestWithDoubleBodyParser", + "duration" : 0.048000000000000001 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testRawDataPost", + "duration" : 2.0609999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testRedirect", + "duration" : 0.094 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testResponseNoEndOrNext", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testRouteFunc", + "duration" : 0.107 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testSend", + "duration" : 0.37 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testSendAfterEnd", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testSimpleResponse", + "duration" : 0.049000000000000002 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testSubdomains", + "duration" : 0.155 + }, + { + "outcome" : "success", + "className" : "TestResponse", + "moduleName" : "KituraTests", + "testName" : "testUserInfo", + "duration" : 0.050000000000000003 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestResponse" + }, + { + "endDate" : 1547853022.0050001, + "children" : [ + + ], + "startDate" : 1547853019.2190001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testBuildRegexFromPattern", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testCustomMatchesWithModifiers", + "duration" : 1.1020000000000001 + }, + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testRouteWithPercentEncoding", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testSimpleCustomMatches", + "duration" : 0.19900000000000001 + }, + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testSimpleMatches", + "duration" : 0.254 + }, + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testSimpleModifiers", + "duration" : 0.78600000000000003 + }, + { + "outcome" : "success", + "className" : "TestRouteRegex", + "moduleName" : "KituraTests", + "testName" : "testSimplePaths", + "duration" : 0.39300000000000002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestRouteRegex" + }, + { + "endDate" : 1547853022.0079999, + "children" : [ + + ], + "startDate" : 1547853022.0050001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestRouterHTTPVerbsGenerated", + "moduleName" : "KituraTests", + "testName" : "testFirstTypeVerbsAdded", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestRouterHTTPVerbsGenerated", + "moduleName" : "KituraTests", + "testName" : "testFourthTypeVerbsAdded", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestRouterHTTPVerbsGenerated", + "moduleName" : "KituraTests", + "testName" : "testSecondTypeVerbsAdded", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestRouterHTTPVerbsGenerated", + "moduleName" : "KituraTests", + "testName" : "testThirdTypeVerbsAdded", + "duration" : 0.001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestRouterHTTPVerbsGenerated" + }, + { + "endDate" : 1547853042.4000001, + "children" : [ + + ], + "startDate" : 1547853022.0090001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestServer", + "moduleName" : "KituraTests", + "testName" : "testServerFail", + "duration" : 0.040000000000000001 + }, + { + "outcome" : "success", + "className" : "TestServer", + "moduleName" : "KituraTests", + "testName" : "testServerRestart", + "duration" : 0.17499999999999999 + }, + { + "failureInfo" : { + "line" : 116, + "file" : "\/Users\/tib\/Downloads\/Kitura-master\/Tests\/KituraTests\/TestServer.swift", + "reason" : "failed - Error code: -9992(0x-2708), Address already in use\/Users\/tib\/Downloads\/Kitura-master\/Tests\/KituraTests\/TestServer.swift:144: error: -[KituraTests.TestServer testServerRun] : Asynchronous wait failed: Exceeded timeout of 10 seconds, with unfulfilled expectations: \"FastCGIServer started()\".\/Users\/tib\/Downloads\/Kitura-master\/Tests\/KituraTests\/TestServer.swift:146: error: -[KituraTests.TestServer testServerRun] : XCTAssertNil failed: \"Error Domain=com.apple.XCTestErrorDomain Code=0 \"(null)\"\"" + }, + "outcome" : "failure", + "className" : "TestServer", + "moduleName" : "KituraTests", + "testName" : "testServerRun", + "duration" : 10.169 + }, + { + "failureInfo" : { + "line" : 116, + "file" : "\/Users\/tib\/Downloads\/Kitura-master\/Tests\/KituraTests\/TestServer.swift", + "reason" : "failed - Error code: -9992(0x-2708), Address already in use\/Users\/tib\/Downloads\/Kitura-master\/Tests\/KituraTests\/TestServer.swift:131: error: -[KituraTests.TestServer testServerStartStop] : Asynchronous wait failed: Exceeded timeout of 10 seconds, with unfulfilled expectations: \"FastCGIServer started()\", \"FastCGIServer stopped()\".\/Users\/tib\/Downloads\/Kitura-master\/Tests\/KituraTests\/TestServer.swift:132: error: -[KituraTests.TestServer testServerStartStop] : XCTAssertNil failed: \"Error Domain=com.apple.XCTestErrorDomain Code=0 \"(null)\"\"" + }, + "outcome" : "failure", + "className" : "TestServer", + "moduleName" : "KituraTests", + "testName" : "testServerStartStop", + "duration" : 10.007999999999999 + } + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "TestServer" + }, + { + "endDate" : 1547853042.401, + "children" : [ + + ], + "startDate" : 1547853042.401, + "cases" : [ + { + "outcome" : "success", + "className" : "TestStack", + "moduleName" : "KituraTests", + "testName" : "testEmpty", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestStack", + "moduleName" : "KituraTests", + "testName" : "testPushPop", + "duration" : 0 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestStack" + }, + { + "endDate" : 1547853044.743, + "children" : [ + + ], + "startDate" : 1547853042.402, + "cases" : [ + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testAbsolutePathFunction", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testAbsoluteRootPath", + "duration" : 0 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testDataIsNotCorrupted", + "duration" : 0.19500000000000001 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testFileServer", + "duration" : 0.496 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetDefaultResponse", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetKituraResource", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetMissingKituraResource", + "duration" : 0.056000000000000001 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetTraversedFile", + "duration" : 0.047 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetTraversedFileKituraResource", + "duration" : 0.047 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetWithSpecialCharacters", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetWithSpecialCharactersEncoded", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testGetWithWhiteSpaces", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testParameterizedSubRouterSubFolderStaticFileServer", + "duration" : 0.088999999999999996 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testParameterizedSubRouterSubFolderStaticFileServerRedirect", + "duration" : 0.11799999999999999 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestIsIgnoredOnNonGetMethod", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestIsIgnoredOnOptionOff", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequests", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestsWithLargeLastBytePos", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestsWithMultipleRanges", + "duration" : 0.056000000000000001 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestWithIfRangeHeaderAsLastModified", + "duration" : 0.099000000000000005 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestWithIfRangeHeaderAsOldLastModified", + "duration" : 0.050000000000000003 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestWithIfRangeHeaderWithETag", + "duration" : 0.11700000000000001 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestWithIfRangeHeaderWithOldETag", + "duration" : 0.055 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestWithNotSatisfiableRange", + "duration" : 0.057000000000000002 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testRangeRequestWithSintacticallyInvalidRange", + "duration" : 0.067000000000000004 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testSubRouterStaticFileServer", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testSubRouterStaticFileServerRedirect", + "duration" : 0.085000000000000006 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testSubRouterSubFolderStaticFileServer", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testSubRouterSubFolderStaticFileServerRedirect", + "duration" : 0.088999999999999996 + }, + { + "outcome" : "success", + "className" : "TestStaticFileServer", + "moduleName" : "KituraTests", + "testName" : "testWelcomePageCanBeDisabled", + "duration" : 0.049000000000000002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestStaticFileServer" + }, + { + "endDate" : 1547853045.2460001, + "children" : [ + + ], + "startDate" : 1547853044.743, + "cases" : [ + { + "outcome" : "success", + "className" : "TestSubrouter", + "moduleName" : "KituraTests", + "testName" : "testExternSub", + "duration" : 0.10000000000000001 + }, + { + "outcome" : "success", + "className" : "TestSubrouter", + "moduleName" : "KituraTests", + "testName" : "testMergeParams", + "duration" : 0.155 + }, + { + "outcome" : "success", + "className" : "TestSubrouter", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddleware", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestSubrouter", + "moduleName" : "KituraTests", + "testName" : "testSimpleSub", + "duration" : 0.097000000000000003 + }, + { + "outcome" : "success", + "className" : "TestSubrouter", + "moduleName" : "KituraTests", + "testName" : "testSubSubs", + "duration" : 0.099000000000000005 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestSubrouter" + }, + { + "endDate" : 1547853046.2360001, + "children" : [ + + ], + "startDate" : 1547853045.2460001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testArrayReturnTypes", + "duration" : 0.10100000000000001 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testBasePath", + "duration" : 0.095000000000000001 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testInfo", + "duration" : 0.095000000000000001 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testInputTypesModelled", + "duration" : 0.17199999999999999 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testNestedTypesModelled", + "duration" : 0.10000000000000001 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testSwaggerContent", + "duration" : 0.10000000000000001 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testSwaggerDefinitions", + "duration" : 0.10199999999999999 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testSwaggerQueryParams", + "duration" : 0.104 + }, + { + "outcome" : "success", + "className" : "TestSwaggerGeneration", + "moduleName" : "KituraTests", + "testName" : "testSwaggerVersion", + "duration" : 0.121 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestSwaggerGeneration" + }, + { + "endDate" : 1547853046.6140001, + "children" : [ + + ], + "startDate" : 1547853046.2360001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testAddWithFileExtensions", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testAddWithFileExtensionsWithoutTheDefaultOne", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableAddWithFileExtensions", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableAddWithFileExtensionsWithoutTheDefaultOne", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRender", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRenderWithExtensionAndWithoutDefaultTemplateEngine", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRenderWithExtensionAndWithoutDefaultTemplateEngineAfterSettingViewsPath", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRenderWithOptionsWithServer", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRenderWithServer", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRenderWithServerAndSubRouter", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testCodableRenderWithTuple", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testEmptyTemplateName", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testEmptyTemplateNameCodable", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testMissingExtension", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testMissingExtensionCodable", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testNoDefaultEngine", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testNoDefaultEngineCodable", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testRender", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testRenderWithExtensionAndWithoutDefaultTemplateEngine", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testRenderWithExtensionAndWithoutDefaultTemplateEngineAfterSettingViewsPath", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testRenderWithOptionsWithServer", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testRenderWithServer", + "duration" : 0.053999999999999999 + }, + { + "outcome" : "success", + "className" : "TestTemplateEngine", + "moduleName" : "KituraTests", + "testName" : "testRenderWithServerAndSubRouter", + "duration" : 0.050999999999999997 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestTemplateEngine" + }, + { + "endDate" : 1547853075.3080001, + "children" : [ + + ], + "startDate" : 1547853046.6140001, + "cases" : [ + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testCustomCoder", + "duration" : 4.2400000000000002 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testCustomCoderGet", + "duration" : 0.29399999999999998 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMiddlewareLogging", + "duration" : 0.058999999999999997 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareDelete", + "duration" : 0.16300000000000001 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareDeleteIdentifier", + "duration" : 0.16400000000000001 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareDeleteOptionalParameters", + "duration" : 0.115 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareDeleteParameters", + "duration" : 0.159 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetArray", + "duration" : 0.153 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetArrayOptionalParameters", + "duration" : 0.16300000000000001 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetArrayParameters", + "duration" : 0.158 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetIdentifier", + "duration" : 0.156 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetIdentifierCodableArray", + "duration" : 0.153 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetSingleton", + "duration" : 0.155 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewareGetSingletonParameters", + "duration" : 0.161 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewarePatch", + "duration" : 6.1870000000000003 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewarePost", + "duration" : 0.159 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewarePostIdentifier", + "duration" : 0.156 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testMultipleMiddlewarePut", + "duration" : 6.181 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareDelete", + "duration" : 0.113 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareDeleteIdentifier", + "duration" : 0.10199999999999999 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareDeleteOptionalParameters", + "duration" : 0.113 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareDeleteParameters", + "duration" : 0.112 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetArray", + "duration" : 0.104 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetArrayOptionalParameters", + "duration" : 0.154 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetArrayParameters", + "duration" : 0.112 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetIdentifier", + "duration" : 0.104 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetIdentifierCodableArray", + "duration" : 0.106 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetSingleton", + "duration" : 0.104 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewareGetSingletonParameters", + "duration" : 0.115 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewarePatch", + "duration" : 4.1269999999999998 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewarePost", + "duration" : 0.11 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewarePostIdentifier", + "duration" : 0.108 + }, + { + "outcome" : "success", + "className" : "TestTypeSafeMiddleware", + "moduleName" : "KituraTests", + "testName" : "testSingleMiddlewarePut", + "duration" : 4.133 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "TestTypeSafeMiddleware" + } + ], + "startDate" : 1547852973.1559999, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "KituraPackageTests.xctest" + } + ], + "startDate" : 1547852973.1559999, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "All tests" +} \ No newline at end of file diff --git a/Tests/Assets/Kitura.tests b/Tests/Assets/Kitura.tests new file mode 100644 index 0000000..3f80c79 --- /dev/null +++ b/Tests/Assets/Kitura.tests @@ -0,0 +1,566 @@ +Test Suite 'All tests' started at 2019-01-19 00:09:33.156 +Test Suite 'KituraPackageTests.xctest' started at 2019-01-19 00:09:33.156 +Test Suite 'MiscellaneousTests' started at 2019-01-19 00:09:33.156 +Test Case '-[KituraTests.MiscellaneousTests testHeaders]' started. +Test Case '-[KituraTests.MiscellaneousTests testHeaders]' passed (0.095 seconds). +Test Case '-[KituraTests.MiscellaneousTests testHeadersHelpers]' started. +Test Case '-[KituraTests.MiscellaneousTests testHeadersHelpers]' passed (0.000 seconds). +Test Suite 'MiscellaneousTests' passed at 2019-01-19 00:09:33.252. + Executed 2 tests, with 0 failures (0 unexpected) in 0.096 (0.096) seconds +Test Suite 'TestBridgingHTTPStatusCode' started at 2019-01-19 00:09:33.252 +Test Case '-[KituraTests.TestBridgingHTTPStatusCode testSimpleResponse]' started. +Test Case '-[KituraTests.TestBridgingHTTPStatusCode testSimpleResponse]' passed (0.126 seconds). +Test Suite 'TestBridgingHTTPStatusCode' passed at 2019-01-19 00:09:33.378. + Executed 1 test, with 0 failures (0 unexpected) in 0.126 (0.126) seconds +Test Suite 'TestBridgingRequestError' started at 2019-01-19 00:09:33.379 +Test Case '-[KituraTests.TestBridgingRequestError testRequestError]' started. +Test Case '-[KituraTests.TestBridgingRequestError testRequestError]' passed (0.053 seconds). +Test Suite 'TestBridgingRequestError' passed at 2019-01-19 00:09:33.431. + Executed 1 test, with 0 failures (0 unexpected) in 0.053 (0.053) seconds +Test Suite 'TestCodableRouter' started at 2019-01-19 00:09:33.431 +Test Case '-[KituraTests.TestCodableRouter testBasicDelete]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicDelete]' passed (0.158 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicDeleteSingle]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicDeleteSingle]' passed (0.155 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicGetArray]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicGetArray]' passed (0.153 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicGetIdentifiersArray]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicGetIdentifiersArray]' passed (0.208 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicGetSingle]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicGetSingle]' passed (0.160 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicGetSingleton]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicGetSingleton]' passed (0.158 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicPatch]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicPatch]' passed (6.195 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicPost]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicPost]' passed (0.364 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicPostIdentifier]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicPostIdentifier]' passed (0.163 seconds). +Test Case '-[KituraTests.TestCodableRouter testBasicPut]' started. +Test Case '-[KituraTests.TestCodableRouter testBasicPut]' passed (6.194 seconds). +Test Case '-[KituraTests.TestCodableRouter testCodableDeleteQueryParameters]' started. +Test Case '-[KituraTests.TestCodableRouter testCodableDeleteQueryParameters]' passed (0.291 seconds). +Test Case '-[KituraTests.TestCodableRouter testCodableGetArrayQueryParameters]' started. +Test Case '-[KituraTests.TestCodableRouter testCodableGetArrayQueryParameters]' passed (0.285 seconds). +Test Case '-[KituraTests.TestCodableRouter testCodableGetSingleQueryParameters]' started. +Test Case '-[KituraTests.TestCodableRouter testCodableGetSingleQueryParameters]' passed (0.292 seconds). +Test Case '-[KituraTests.TestCodableRouter testCodablePostSuccessStatuses]' started. +Test Case '-[KituraTests.TestCodableRouter testCodablePostSuccessStatuses]' passed (0.158 seconds). +Test Case '-[KituraTests.TestCodableRouter testCodableRoutesWithBodyParsingFail]' started. +Test Case '-[KituraTests.TestCodableRouter testCodableRoutesWithBodyParsingFail]' passed (4.194 seconds). +Test Case '-[KituraTests.TestCodableRouter testErrorOverridesBody]' started. +Test Case '-[KituraTests.TestCodableRouter testErrorOverridesBody]' passed (8.488 seconds). +Test Case '-[KituraTests.TestCodableRouter testIdentifierNotExpected]' started. +Test Case '-[KituraTests.TestCodableRouter testIdentifierNotExpected]' passed (0.050 seconds). +Test Case '-[KituraTests.TestCodableRouter testIdentifierNotSupplied]' started. +Test Case '-[KituraTests.TestCodableRouter testIdentifierNotSupplied]' passed (0.053 seconds). +Test Case '-[KituraTests.TestCodableRouter testInvalidIdentifierSupplied]' started. +Test Case '-[KituraTests.TestCodableRouter testInvalidIdentifierSupplied]' passed (0.052 seconds). +Test Case '-[KituraTests.TestCodableRouter testJoinPath]' started. +Test Case '-[KituraTests.TestCodableRouter testJoinPath]' passed (0.001 seconds). +Test Case '-[KituraTests.TestCodableRouter testNoDataCustomStatus]' started. +Test Case '-[KituraTests.TestCodableRouter testNoDataCustomStatus]' passed (2.124 seconds). +Test Case '-[KituraTests.TestCodableRouter testNoDataDefaultStatus]' started. +Test Case '-[KituraTests.TestCodableRouter testNoDataDefaultStatus]' passed (2.122 seconds). +Test Case '-[KituraTests.TestCodableRouter testPartialIdentifierSupplied]' started. +Test Case '-[KituraTests.TestCodableRouter testPartialIdentifierSupplied]' passed (0.054 seconds). +Test Case '-[KituraTests.TestCodableRouter testRouteParameters]' started. +Test Case '-[KituraTests.TestCodableRouter testRouteParameters]' passed (0.050 seconds). +Test Case '-[KituraTests.TestCodableRouter testRouteWithTrailingSlash]' started. +Test Case '-[KituraTests.TestCodableRouter testRouteWithTrailingSlash]' passed (4.238 seconds). +Test Suite 'TestCodableRouter' passed at 2019-01-19 00:10:09.793. + Executed 25 tests, with 0 failures (0 unexpected) in 36.360 (36.362) seconds +Test Suite 'TestContentType' started at 2019-01-19 00:10:09.793 +Test Case '-[KituraTests.TestContentType testFilename]' started. +Test Case '-[KituraTests.TestContentType testFilename]' passed (0.000 seconds). +Test Case '-[KituraTests.TestContentType testInitialize]' started. +Test Case '-[KituraTests.TestContentType testInitialize]' passed (0.000 seconds). +Test Case '-[KituraTests.TestContentType testIsContentType]' started. +Test Case '-[KituraTests.TestContentType testIsContentType]' passed (0.000 seconds). +Test Suite 'TestContentType' passed at 2019-01-19 00:10:09.794. + Executed 3 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds +Test Suite 'TestCookies' started at 2019-01-19 00:10:09.794 +Test Case '-[KituraTests.TestCookies testCookieFromServer]' started. +Test Case '-[KituraTests.TestCookies testCookieFromServer]' passed (0.111 seconds). +Test Case '-[KituraTests.TestCookies testCookieToServerWithSemiColonSeparator]' started. +Test Case '-[KituraTests.TestCookies testCookieToServerWithSemiColonSeparator]' passed (0.053 seconds). +Test Case '-[KituraTests.TestCookies testCookieToServerWithSemiColonSpaceSeparator]' started. +Test Case '-[KituraTests.TestCookies testCookieToServerWithSemiColonSpaceSeparator]' passed (0.054 seconds). +Test Case '-[KituraTests.TestCookies testCookieToServerWithSemiColonWhitespacesSeparator]' started. +Test Case '-[KituraTests.TestCookies testCookieToServerWithSemiColonWhitespacesSeparator]' passed (0.049 seconds). +Test Case '-[KituraTests.TestCookies testNoCookies]' started. +Test Case '-[KituraTests.TestCookies testNoCookies]' passed (0.093 seconds). +Test Suite 'TestCookies' passed at 2019-01-19 00:10:10.155. + Executed 5 tests, with 0 failures (0 unexpected) in 0.360 (0.360) seconds +Test Suite 'TestCustomCoders' started at 2019-01-19 00:10:10.155 +Test Case '-[KituraTests.TestCustomCoders testCustomCoder]' started. +Test Case '-[KituraTests.TestCustomCoders testCustomCoder]' passed (0.108 seconds). +Test Case '-[KituraTests.TestCustomCoders testCustomQueryEncoder]' started. +Test Case '-[KituraTests.TestCustomCoders testCustomQueryEncoder]' passed (0.253 seconds). +Test Case '-[KituraTests.TestCustomCoders testRawCustomCoder]' started. +Test Case '-[KituraTests.TestCustomCoders testRawCustomCoder]' passed (0.105 seconds). +Test Suite 'TestCustomCoders' passed at 2019-01-19 00:10:10.620. + Executed 3 tests, with 0 failures (0 unexpected) in 0.465 (0.466) seconds +Test Suite 'TestDecodingErrorExtension' started at 2019-01-19 00:10:10.620 +Test Case '-[KituraTests.TestDecodingErrorExtension testMalformedJson]' started. +Test Case '-[KituraTests.TestDecodingErrorExtension testMalformedJson]' passed (0.000 seconds). +Test Case '-[KituraTests.TestDecodingErrorExtension testMissingRequiredKey]' started. +Test Case '-[KituraTests.TestDecodingErrorExtension testMissingRequiredKey]' passed (0.000 seconds). +Test Case '-[KituraTests.TestDecodingErrorExtension testMissingValue]' started. +Test Case '-[KituraTests.TestDecodingErrorExtension testMissingValue]' passed (0.000 seconds). +Test Case '-[KituraTests.TestDecodingErrorExtension testWrongType]' started. +Test Case '-[KituraTests.TestDecodingErrorExtension testWrongType]' passed (0.000 seconds). +Test Suite 'TestDecodingErrorExtension' passed at 2019-01-19 00:10:10.622. + Executed 4 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds +Test Suite 'TestErrors' started at 2019-01-19 00:10:10.622 +Test Case '-[KituraTests.TestErrors testInvalidEndpoint]' started. +Test Case '-[KituraTests.TestErrors testInvalidEndpoint]' passed (0.050 seconds). +Test Case '-[KituraTests.TestErrors testInvalidHeader]' started. +Test Case '-[KituraTests.TestErrors testInvalidHeader]' passed (0.049 seconds). +Test Case '-[KituraTests.TestErrors testInvalidMethod]' started. +Test Case '-[KituraTests.TestErrors testInvalidMethod]' passed (0.054 seconds). +Test Suite 'TestErrors' passed at 2019-01-19 00:10:10.775. + Executed 3 tests, with 0 failures (0 unexpected) in 0.153 (0.153) seconds +Test Suite 'TestMediaType' started at 2019-01-19 00:10:10.775 +Test Case '-[KituraTests.TestMediaType testAllTextMediaTypeBuilder]' started. +Test Case '-[KituraTests.TestMediaType testAllTextMediaTypeBuilder]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testAllTextSlashMediaTypeBuilder]' started. +Test Case '-[KituraTests.TestMediaType testAllTextSlashMediaTypeBuilder]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testHTMLMediaTypeBuilder]' started. +Test Case '-[KituraTests.TestMediaType testHTMLMediaTypeBuilder]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testIncorrectTopLevelType]' started. +Test Case '-[KituraTests.TestMediaType testIncorrectTopLevelType]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testInvalidMediaType]' started. +Test Case '-[KituraTests.TestMediaType testInvalidMediaType]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testMediaCaseInsensitive]' started. +Test Case '-[KituraTests.TestMediaType testMediaCaseInsensitive]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testPartsAllTextMediaTypeBuilder]' started. +Test Case '-[KituraTests.TestMediaType testPartsAllTextMediaTypeBuilder]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testPartsHTMLMediaTypeBuilder]' started. +Test Case '-[KituraTests.TestMediaType testPartsHTMLMediaTypeBuilder]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testPartsMediaCaseInsensitive]' started. +Test Case '-[KituraTests.TestMediaType testPartsMediaCaseInsensitive]' passed (0.000 seconds). +Test Case '-[KituraTests.TestMediaType testValidMediaType]' started. +Test Case '-[KituraTests.TestMediaType testValidMediaType]' passed (0.000 seconds). +Test Suite 'TestMediaType' passed at 2019-01-19 00:10:10.777. + Executed 10 tests, with 0 failures (0 unexpected) in 0.002 (0.002) seconds +Test Suite 'TestMultiplicity' started at 2019-01-19 00:10:10.777 +Test Case '-[KituraTests.TestMultiplicity testCombined]' started. +Test Case '-[KituraTests.TestMultiplicity testCombined]' passed (0.148 seconds). +Test Case '-[KituraTests.TestMultiplicity testPlus]' started. +Test Case '-[KituraTests.TestMultiplicity testPlus]' passed (0.151 seconds). +Test Case '-[KituraTests.TestMultiplicity testQuestion]' started. +Test Case '-[KituraTests.TestMultiplicity testQuestion]' passed (0.146 seconds). +Test Case '-[KituraTests.TestMultiplicity testStar]' started. +Test Case '-[KituraTests.TestMultiplicity testStar]' passed (0.149 seconds). +Test Suite 'TestMultiplicity' passed at 2019-01-19 00:10:11.371. + Executed 4 tests, with 0 failures (0 unexpected) in 0.593 (0.594) seconds +Test Suite 'TestRangeHeaderDataExtensions' started at 2019-01-19 00:10:11.371 +Test Case '-[KituraTests.TestRangeHeaderDataExtensions testPartialDataRead]' started. +Test Case '-[KituraTests.TestRangeHeaderDataExtensions testPartialDataRead]' passed (0.008 seconds). +Test Case '-[KituraTests.TestRangeHeaderDataExtensions testPartialDataReadEntireFile]' started. +Test Case '-[KituraTests.TestRangeHeaderDataExtensions testPartialDataReadEntireFile]' passed (0.002 seconds). +Test Case '-[KituraTests.TestRangeHeaderDataExtensions testPartialDataReadWithErrorFileNotFound]' started. +Test Case '-[KituraTests.TestRangeHeaderDataExtensions testPartialDataReadWithErrorFileNotFound]' passed (0.002 seconds). +Test Suite 'TestRangeHeaderDataExtensions' passed at 2019-01-19 00:10:11.383. + Executed 3 tests, with 0 failures (0 unexpected) in 0.011 (0.012) seconds +Test Suite 'TestRangeHeaderParser' started at 2019-01-19 00:10:11.383 +Test Case '-[KituraTests.TestRangeHeaderParser testIsBytesRangeHeader]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testIsBytesRangeHeader]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testParseString]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testParseString]' passed (0.001 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testReturnNilOnInvalidNonDigitsRanges]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testReturnNilOnInvalidNonDigitsRanges]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testReturnNilOnInvalidRanges]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testReturnNilOnInvalidRanges]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testReturnNilOnMalformedHeader]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testReturnNilOnMalformedHeader]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldCapEndAtSize]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldCapEndAtSize]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldCombineOverlappingRanges]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldCombineOverlappingRanges]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldCombineOverlappingRangesAndRetainOriginalOrder]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldCombineOverlappingRangesAndRetainOriginalOrder]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseNonBytesRange]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseNonBytesRange]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseNormalString]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseNormalString]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringAskingForLastByte]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringAskingForLastByte]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithBytesEqualZeroZero]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithBytesEqualZeroZero]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithMultipleRanges]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithMultipleRanges]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithOnlyEnd]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithOnlyEnd]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithOnlyStart]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithOnlyStart]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithSomeInvalidRanges]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseStringWithSomeInvalidRanges]' passed (0.000 seconds). +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseWithStartBytesEqualtToZero]' started. +Test Case '-[KituraTests.TestRangeHeaderParser testShouldParseWithStartBytesEqualtToZero]' passed (0.000 seconds). +Test Suite 'TestRangeHeaderParser' passed at 2019-01-19 00:10:11.388. + Executed 17 tests, with 0 failures (0 unexpected) in 0.005 (0.005) seconds +Test Suite 'TestRequests' started at 2019-01-19 00:10:11.388 +Test Case '-[KituraTests.TestRequests testCustomMiddlewareURLParameter]' started. +Test Case '-[KituraTests.TestRequests testCustomMiddlewareURLParameter]' passed (0.051 seconds). +Test Case '-[KituraTests.TestRequests testCustomMiddlewareURLParameterWithQueryParam]' started. +Test Case '-[KituraTests.TestRequests testCustomMiddlewareURLParameterWithQueryParam]' passed (0.052 seconds). +Test Case '-[KituraTests.TestRequests testMultipleParametersMultipleHandlers]' started. +Test Case '-[KituraTests.TestRequests testMultipleParametersMultipleHandlers]' passed (0.098 seconds). +Test Case '-[KituraTests.TestRequests testOneParameterMultipleHandlers]' started. +Test Case '-[KituraTests.TestRequests testOneParameterMultipleHandlers]' passed (0.053 seconds). +Test Case '-[KituraTests.TestRequests testParameterExit]' started. +Test Case '-[KituraTests.TestRequests testParameterExit]' passed (0.097 seconds). +Test Case '-[KituraTests.TestRequests testParameters]' started. +Test Case '-[KituraTests.TestRequests testParameters]' passed (0.097 seconds). +Test Case '-[KituraTests.TestRequests testQueryParameters]' started. +Test Case '-[KituraTests.TestRequests testQueryParameters]' passed (0.111 seconds). +Test Case '-[KituraTests.TestRequests testRouteParameters]' started. +Test Case '-[KituraTests.TestRequests testRouteParameters]' passed (0.053 seconds). +Test Suite 'TestRequests' passed at 2019-01-19 00:10:12.000. + Executed 8 tests, with 0 failures (0 unexpected) in 0.611 (0.612) seconds +Test Suite 'TestResponse' started at 2019-01-19 00:10:12.000 +Test Case '-[KituraTests.TestResponse testAcceptEncodingTypes]' started. +Test Case '-[KituraTests.TestResponse testAcceptEncodingTypes]' passed (0.100 seconds). +Test Case '-[KituraTests.TestResponse testAcceptTypes]' started. +Test Case '-[KituraTests.TestResponse testAcceptTypes]' passed (0.105 seconds). +Test Case '-[KituraTests.TestResponse testChangeStatusCodeOnInvokedSend]' started. +Test Case '-[KituraTests.TestResponse testChangeStatusCodeOnInvokedSend]' passed (0.100 seconds). +Test Case '-[KituraTests.TestResponse testEmptyHandler]' started. +Test Case '-[KituraTests.TestResponse testEmptyHandler]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testErrorHandler]' started. +Test Case '-[KituraTests.TestResponse testErrorHandler]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testFormat]' started. +Test Case '-[KituraTests.TestResponse testFormat]' passed (0.150 seconds). +Test Case '-[KituraTests.TestResponse testHeaderModifiers]' started. +Test Case '-[KituraTests.TestResponse testHeaderModifiers]' passed (0.058 seconds). +Test Case '-[KituraTests.TestResponse testJsonp]' started. +Test Case '-[KituraTests.TestResponse testJsonp]' passed (0.250 seconds). +Test Case '-[KituraTests.TestResponse testLargeGet]' started. +Test Case '-[KituraTests.TestResponse testLargeGet]' passed (0.089 seconds). +Test Case '-[KituraTests.TestResponse testLargePost]' started. +Test Case '-[KituraTests.TestResponse testLargePost]' passed (2.146 seconds). +Test Case '-[KituraTests.TestResponse testLifecycle]' started. +Test Case '-[KituraTests.TestResponse testLifecycle]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testLink]' started. +Test Case '-[KituraTests.TestResponse testLink]' passed (0.104 seconds). +Test Case '-[KituraTests.TestResponse testMultipartFormParsing]' started. +Test Case '-[KituraTests.TestResponse testMultipartFormParsing]' passed (0.207 seconds). +Test Case '-[KituraTests.TestResponse testOptionalStringNilResponse]' started. +Test Case '-[KituraTests.TestResponse testOptionalStringNilResponse]' passed (0.053 seconds). +Test Case '-[KituraTests.TestResponse testOptionalStringResponse]' started. +Test Case '-[KituraTests.TestResponse testOptionalStringResponse]' passed (0.055 seconds). +Test Case '-[KituraTests.TestResponse testParameters]' started. +Test Case '-[KituraTests.TestResponse testParameters]' passed (0.048 seconds). +Test Case '-[KituraTests.TestResponse testParametersPercent20InPath]' started. +Test Case '-[KituraTests.TestResponse testParametersPercent20InPath]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testParametersPercent20InQuery]' started. +Test Case '-[KituraTests.TestResponse testParametersPercent20InQuery]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testParametersPercentageEncoding]' started. +Test Case '-[KituraTests.TestResponse testParametersPercentageEncoding]' passed (0.046 seconds). +Test Case '-[KituraTests.TestResponse testParametersPlusInPath]' started. +Test Case '-[KituraTests.TestResponse testParametersPlusInPath]' passed (0.052 seconds). +Test Case '-[KituraTests.TestResponse testParametersPlusInQuery]' started. +Test Case '-[KituraTests.TestResponse testParametersPlusInQuery]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testPostJSONRequest]' started. +Test Case '-[KituraTests.TestResponse testPostJSONRequest]' passed (0.054 seconds). +Test Case '-[KituraTests.TestResponse testPostRequest]' started. +Test Case '-[KituraTests.TestResponse testPostRequest]' passed (0.054 seconds). +Test Case '-[KituraTests.TestResponse testPostRequestTheHardWay]' started. +Test Case '-[KituraTests.TestResponse testPostRequestTheHardWay]' passed (0.050 seconds). +Test Case '-[KituraTests.TestResponse testPostRequestUrlEncoded]' started. +Test Case '-[KituraTests.TestResponse testPostRequestUrlEncoded]' passed (0.157 seconds). +Test Case '-[KituraTests.TestResponse testPostRequestWithDoubleBodyParser]' started. +Test Case '-[KituraTests.TestResponse testPostRequestWithDoubleBodyParser]' passed (0.048 seconds). +Test Case '-[KituraTests.TestResponse testRawDataPost]' started. +Test Case '-[KituraTests.TestResponse testRawDataPost]' passed (2.061 seconds). +Test Case '-[KituraTests.TestResponse testRedirect]' started. +Test Case '-[KituraTests.TestResponse testRedirect]' passed (0.094 seconds). +Test Case '-[KituraTests.TestResponse testResponseNoEndOrNext]' started. +Test Case '-[KituraTests.TestResponse testResponseNoEndOrNext]' passed (0.053 seconds). +Test Case '-[KituraTests.TestResponse testRouteFunc]' started. +Test Case '-[KituraTests.TestResponse testRouteFunc]' passed (0.107 seconds). +Test Case '-[KituraTests.TestResponse testSend]' started. +Test Case '-[KituraTests.TestResponse testSend]' passed (0.370 seconds). +Test Case '-[KituraTests.TestResponse testSendAfterEnd]' started. +Test Case '-[KituraTests.TestResponse testSendAfterEnd]' passed (0.051 seconds). +Test Case '-[KituraTests.TestResponse testSimpleResponse]' started. +Test Case '-[KituraTests.TestResponse testSimpleResponse]' passed (0.049 seconds). +Test Case '-[KituraTests.TestResponse testSubdomains]' started. +Test Case '-[KituraTests.TestResponse testSubdomains]' passed (0.155 seconds). +Test Case '-[KituraTests.TestResponse testUserInfo]' started. +Test Case '-[KituraTests.TestResponse testUserInfo]' passed (0.050 seconds). +Test Suite 'TestResponse' passed at 2019-01-19 00:10:19.219. + Executed 35 tests, with 0 failures (0 unexpected) in 7.217 (7.219) seconds +Test Suite 'TestRouteRegex' started at 2019-01-19 00:10:19.219 +Test Case '-[KituraTests.TestRouteRegex testBuildRegexFromPattern]' started. +Test Case '-[KituraTests.TestRouteRegex testBuildRegexFromPattern]' passed (0.001 seconds). +Test Case '-[KituraTests.TestRouteRegex testCustomMatchesWithModifiers]' started. +Test Case '-[KituraTests.TestRouteRegex testCustomMatchesWithModifiers]' passed (1.102 seconds). +Test Case '-[KituraTests.TestRouteRegex testRouteWithPercentEncoding]' started. +Test Case '-[KituraTests.TestRouteRegex testRouteWithPercentEncoding]' passed (0.051 seconds). +Test Case '-[KituraTests.TestRouteRegex testSimpleCustomMatches]' started. +Test Case '-[KituraTests.TestRouteRegex testSimpleCustomMatches]' passed (0.199 seconds). +Test Case '-[KituraTests.TestRouteRegex testSimpleMatches]' started. +Test Case '-[KituraTests.TestRouteRegex testSimpleMatches]' passed (0.254 seconds). +Test Case '-[KituraTests.TestRouteRegex testSimpleModifiers]' started. +Test Case '-[KituraTests.TestRouteRegex testSimpleModifiers]' passed (0.786 seconds). +Test Case '-[KituraTests.TestRouteRegex testSimplePaths]' started. +Test Case '-[KituraTests.TestRouteRegex testSimplePaths]' passed (0.393 seconds). +Test Suite 'TestRouteRegex' passed at 2019-01-19 00:10:22.005. + Executed 7 tests, with 0 failures (0 unexpected) in 2.785 (2.786) seconds +Test Suite 'TestRouterHTTPVerbsGenerated' started at 2019-01-19 00:10:22.005 +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testFirstTypeVerbsAdded]' started. +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testFirstTypeVerbsAdded]' passed (0.001 seconds). +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testFourthTypeVerbsAdded]' started. +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testFourthTypeVerbsAdded]' passed (0.001 seconds). +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testSecondTypeVerbsAdded]' started. +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testSecondTypeVerbsAdded]' passed (0.001 seconds). +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testThirdTypeVerbsAdded]' started. +Test Case '-[KituraTests.TestRouterHTTPVerbsGenerated testThirdTypeVerbsAdded]' passed (0.001 seconds). +Test Suite 'TestRouterHTTPVerbsGenerated' passed at 2019-01-19 00:10:22.008. + Executed 4 tests, with 0 failures (0 unexpected) in 0.003 (0.003) seconds +Test Suite 'TestServer' started at 2019-01-19 00:10:22.009 +Test Case '-[KituraTests.TestServer testServerFail]' started. +Test Case '-[KituraTests.TestServer testServerFail]' passed (0.040 seconds). +Test Case '-[KituraTests.TestServer testServerRestart]' started. +Test Case '-[KituraTests.TestServer testServerRestart]' passed (0.175 seconds). +Test Case '-[KituraTests.TestServer testServerRun]' started. +/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift:116: error: -[KituraTests.TestServer testServerRun] : failed - Error code: -9992(0x-2708), Address already in use +/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift:144: error: -[KituraTests.TestServer testServerRun] : Asynchronous wait failed: Exceeded timeout of 10 seconds, with unfulfilled expectations: "FastCGIServer started()". +/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift:146: error: -[KituraTests.TestServer testServerRun] : XCTAssertNil failed: "Error Domain=com.apple.XCTestErrorDomain Code=0 "(null)"" - +Test Case '-[KituraTests.TestServer testServerRun]' failed (10.169 seconds). +Test Case '-[KituraTests.TestServer testServerStartStop]' started. +/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift:116: error: -[KituraTests.TestServer testServerStartStop] : failed - Error code: -9992(0x-2708), Address already in use +/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift:131: error: -[KituraTests.TestServer testServerStartStop] : Asynchronous wait failed: Exceeded timeout of 10 seconds, with unfulfilled expectations: "FastCGIServer started()", "FastCGIServer stopped()". +/Users/tib/Downloads/Kitura-master/Tests/KituraTests/TestServer.swift:132: error: -[KituraTests.TestServer testServerStartStop] : XCTAssertNil failed: "Error Domain=com.apple.XCTestErrorDomain Code=0 "(null)"" - +Test Case '-[KituraTests.TestServer testServerStartStop]' failed (10.008 seconds). +Test Suite 'TestServer' failed at 2019-01-19 00:10:42.400. + Executed 4 tests, with 6 failures (0 unexpected) in 20.392 (20.392) seconds +Test Suite 'TestStack' started at 2019-01-19 00:10:42.401 +Test Case '-[KituraTests.TestStack testEmpty]' started. +Test Case '-[KituraTests.TestStack testEmpty]' passed (0.000 seconds). +Test Case '-[KituraTests.TestStack testPushPop]' started. +Test Case '-[KituraTests.TestStack testPushPop]' passed (0.000 seconds). +Test Suite 'TestStack' passed at 2019-01-19 00:10:42.401. + Executed 2 tests, with 0 failures (0 unexpected) in 0.001 (0.001) seconds +Test Suite 'TestStaticFileServer' started at 2019-01-19 00:10:42.402 +Test Case '-[KituraTests.TestStaticFileServer testAbsolutePathFunction]' started. +Test Case '-[KituraTests.TestStaticFileServer testAbsolutePathFunction]' passed (0.000 seconds). +Test Case '-[KituraTests.TestStaticFileServer testAbsoluteRootPath]' started. +Test Case '-[KituraTests.TestStaticFileServer testAbsoluteRootPath]' passed (0.000 seconds). +Test Case '-[KituraTests.TestStaticFileServer testDataIsNotCorrupted]' started. +Test Case '-[KituraTests.TestStaticFileServer testDataIsNotCorrupted]' passed (0.195 seconds). +Test Case '-[KituraTests.TestStaticFileServer testFileServer]' started. +Test Case '-[KituraTests.TestStaticFileServer testFileServer]' passed (0.496 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetDefaultResponse]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetDefaultResponse]' passed (0.050 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetKituraResource]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetKituraResource]' passed (0.052 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetMissingKituraResource]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetMissingKituraResource]' passed (0.056 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetTraversedFile]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetTraversedFile]' passed (0.047 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetTraversedFileKituraResource]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetTraversedFileKituraResource]' passed (0.047 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetWithSpecialCharacters]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetWithSpecialCharacters]' passed (0.052 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetWithSpecialCharactersEncoded]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetWithSpecialCharactersEncoded]' passed (0.051 seconds). +Test Case '-[KituraTests.TestStaticFileServer testGetWithWhiteSpaces]' started. +Test Case '-[KituraTests.TestStaticFileServer testGetWithWhiteSpaces]' passed (0.051 seconds). +Test Case '-[KituraTests.TestStaticFileServer testParameterizedSubRouterSubFolderStaticFileServer]' started. +Test Case '-[KituraTests.TestStaticFileServer testParameterizedSubRouterSubFolderStaticFileServer]' passed (0.089 seconds). +Test Case '-[KituraTests.TestStaticFileServer testParameterizedSubRouterSubFolderStaticFileServerRedirect]' started. +Test Case '-[KituraTests.TestStaticFileServer testParameterizedSubRouterSubFolderStaticFileServerRedirect]' passed (0.118 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestIsIgnoredOnNonGetMethod]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestIsIgnoredOnNonGetMethod]' passed (0.052 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestIsIgnoredOnOptionOff]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestIsIgnoredOnOptionOff]' passed (0.053 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequests]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequests]' passed (0.052 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestsWithLargeLastBytePos]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestsWithLargeLastBytePos]' passed (0.050 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestsWithMultipleRanges]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestsWithMultipleRanges]' passed (0.056 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderAsLastModified]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderAsLastModified]' passed (0.099 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderAsOldLastModified]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderAsOldLastModified]' passed (0.050 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderWithETag]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderWithETag]' passed (0.117 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderWithOldETag]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithIfRangeHeaderWithOldETag]' passed (0.055 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithNotSatisfiableRange]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithNotSatisfiableRange]' passed (0.057 seconds). +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithSintacticallyInvalidRange]' started. +Test Case '-[KituraTests.TestStaticFileServer testRangeRequestWithSintacticallyInvalidRange]' passed (0.067 seconds). +Test Case '-[KituraTests.TestStaticFileServer testSubRouterStaticFileServer]' started. +Test Case '-[KituraTests.TestStaticFileServer testSubRouterStaticFileServer]' passed (0.052 seconds). +Test Case '-[KituraTests.TestStaticFileServer testSubRouterStaticFileServerRedirect]' started. +Test Case '-[KituraTests.TestStaticFileServer testSubRouterStaticFileServerRedirect]' passed (0.085 seconds). +Test Case '-[KituraTests.TestStaticFileServer testSubRouterSubFolderStaticFileServer]' started. +Test Case '-[KituraTests.TestStaticFileServer testSubRouterSubFolderStaticFileServer]' passed (0.052 seconds). +Test Case '-[KituraTests.TestStaticFileServer testSubRouterSubFolderStaticFileServerRedirect]' started. +Test Case '-[KituraTests.TestStaticFileServer testSubRouterSubFolderStaticFileServerRedirect]' passed (0.089 seconds). +Test Case '-[KituraTests.TestStaticFileServer testWelcomePageCanBeDisabled]' started. +Test Case '-[KituraTests.TestStaticFileServer testWelcomePageCanBeDisabled]' passed (0.049 seconds). +Test Suite 'TestStaticFileServer' passed at 2019-01-19 00:10:44.743. + Executed 30 tests, with 0 failures (0 unexpected) in 2.339 (2.342) seconds +Test Suite 'TestSubrouter' started at 2019-01-19 00:10:44.743 +Test Case '-[KituraTests.TestSubrouter testExternSub]' started. +Test Case '-[KituraTests.TestSubrouter testExternSub]' passed (0.100 seconds). +Test Case '-[KituraTests.TestSubrouter testMergeParams]' started. +Test Case '-[KituraTests.TestSubrouter testMergeParams]' passed (0.155 seconds). +Test Case '-[KituraTests.TestSubrouter testMultipleMiddleware]' started. +Test Case '-[KituraTests.TestSubrouter testMultipleMiddleware]' passed (0.051 seconds). +Test Case '-[KituraTests.TestSubrouter testSimpleSub]' started. +Test Case '-[KituraTests.TestSubrouter testSimpleSub]' passed (0.097 seconds). +Test Case '-[KituraTests.TestSubrouter testSubSubs]' started. +Test Case '-[KituraTests.TestSubrouter testSubSubs]' passed (0.099 seconds). +Test Suite 'TestSubrouter' passed at 2019-01-19 00:10:45.246. + Executed 5 tests, with 0 failures (0 unexpected) in 0.502 (0.503) seconds +Test Suite 'TestSwaggerGeneration' started at 2019-01-19 00:10:45.246 +Test Case '-[KituraTests.TestSwaggerGeneration testArrayReturnTypes]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testArrayReturnTypes]' passed (0.101 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testBasePath]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testBasePath]' passed (0.095 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testInfo]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testInfo]' passed (0.095 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testInputTypesModelled]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testInputTypesModelled]' passed (0.172 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testNestedTypesModelled]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testNestedTypesModelled]' passed (0.100 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerContent]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerContent]' passed (0.100 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerDefinitions]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerDefinitions]' passed (0.102 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerQueryParams]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerQueryParams]' passed (0.104 seconds). +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerVersion]' started. +Test Case '-[KituraTests.TestSwaggerGeneration testSwaggerVersion]' passed (0.121 seconds). +Test Suite 'TestSwaggerGeneration' passed at 2019-01-19 00:10:46.236. + Executed 9 tests, with 0 failures (0 unexpected) in 0.989 (0.990) seconds +Test Suite 'TestTemplateEngine' started at 2019-01-19 00:10:46.236 +Test Case '-[KituraTests.TestTemplateEngine testAddWithFileExtensions]' started. +Test Case '-[KituraTests.TestTemplateEngine testAddWithFileExtensions]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testAddWithFileExtensionsWithoutTheDefaultOne]' started. +Test Case '-[KituraTests.TestTemplateEngine testAddWithFileExtensionsWithoutTheDefaultOne]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableAddWithFileExtensions]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableAddWithFileExtensions]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableAddWithFileExtensionsWithoutTheDefaultOne]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableAddWithFileExtensionsWithoutTheDefaultOne]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRender]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRender]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithExtensionAndWithoutDefaultTemplateEngine]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithExtensionAndWithoutDefaultTemplateEngine]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithExtensionAndWithoutDefaultTemplateEngineAfterSettingViewsPath]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithExtensionAndWithoutDefaultTemplateEngineAfterSettingViewsPath]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithOptionsWithServer]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithOptionsWithServer]' passed (0.052 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithServer]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithServer]' passed (0.051 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithServerAndSubRouter]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithServerAndSubRouter]' passed (0.053 seconds). +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithTuple]' started. +Test Case '-[KituraTests.TestTemplateEngine testCodableRenderWithTuple]' passed (0.051 seconds). +Test Case '-[KituraTests.TestTemplateEngine testEmptyTemplateName]' started. +Test Case '-[KituraTests.TestTemplateEngine testEmptyTemplateName]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testEmptyTemplateNameCodable]' started. +Test Case '-[KituraTests.TestTemplateEngine testEmptyTemplateNameCodable]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testMissingExtension]' started. +Test Case '-[KituraTests.TestTemplateEngine testMissingExtension]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testMissingExtensionCodable]' started. +Test Case '-[KituraTests.TestTemplateEngine testMissingExtensionCodable]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testNoDefaultEngine]' started. +Test Case '-[KituraTests.TestTemplateEngine testNoDefaultEngine]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testNoDefaultEngineCodable]' started. +Test Case '-[KituraTests.TestTemplateEngine testNoDefaultEngineCodable]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testRender]' started. +Test Case '-[KituraTests.TestTemplateEngine testRender]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testRenderWithExtensionAndWithoutDefaultTemplateEngine]' started. +Test Case '-[KituraTests.TestTemplateEngine testRenderWithExtensionAndWithoutDefaultTemplateEngine]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testRenderWithExtensionAndWithoutDefaultTemplateEngineAfterSettingViewsPath]' started. +Test Case '-[KituraTests.TestTemplateEngine testRenderWithExtensionAndWithoutDefaultTemplateEngineAfterSettingViewsPath]' passed (0.001 seconds). +Test Case '-[KituraTests.TestTemplateEngine testRenderWithOptionsWithServer]' started. +Test Case '-[KituraTests.TestTemplateEngine testRenderWithOptionsWithServer]' passed (0.052 seconds). +Test Case '-[KituraTests.TestTemplateEngine testRenderWithServer]' started. +Test Case '-[KituraTests.TestTemplateEngine testRenderWithServer]' passed (0.054 seconds). +Test Case '-[KituraTests.TestTemplateEngine testRenderWithServerAndSubRouter]' started. +Test Case '-[KituraTests.TestTemplateEngine testRenderWithServerAndSubRouter]' passed (0.051 seconds). +Test Suite 'TestTemplateEngine' passed at 2019-01-19 00:10:46.614. + Executed 23 tests, with 0 failures (0 unexpected) in 0.377 (0.378) seconds +Test Suite 'TestTypeSafeMiddleware' started at 2019-01-19 00:10:46.614 +Test Case '-[KituraTests.TestTypeSafeMiddleware testCustomCoder]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testCustomCoder]' passed (4.240 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testCustomCoderGet]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testCustomCoderGet]' passed (0.294 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMiddlewareLogging]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMiddlewareLogging]' passed (0.059 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDelete]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDelete]' passed (0.163 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDeleteIdentifier]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDeleteIdentifier]' passed (0.164 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDeleteOptionalParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDeleteOptionalParameters]' passed (0.115 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDeleteParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareDeleteParameters]' passed (0.159 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetArray]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetArray]' passed (0.153 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetArrayOptionalParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetArrayOptionalParameters]' passed (0.163 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetArrayParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetArrayParameters]' passed (0.158 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetIdentifier]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetIdentifier]' passed (0.156 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetIdentifierCodableArray]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetIdentifierCodableArray]' passed (0.153 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetSingleton]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetSingleton]' passed (0.155 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetSingletonParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewareGetSingletonParameters]' passed (0.161 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePatch]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePatch]' passed (6.187 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePost]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePost]' passed (0.159 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePostIdentifier]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePostIdentifier]' passed (0.156 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePut]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testMultipleMiddlewarePut]' passed (6.181 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDelete]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDelete]' passed (0.113 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDeleteIdentifier]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDeleteIdentifier]' passed (0.102 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDeleteOptionalParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDeleteOptionalParameters]' passed (0.113 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDeleteParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareDeleteParameters]' passed (0.112 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetArray]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetArray]' passed (0.104 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetArrayOptionalParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetArrayOptionalParameters]' passed (0.154 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetArrayParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetArrayParameters]' passed (0.112 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetIdentifier]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetIdentifier]' passed (0.104 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetIdentifierCodableArray]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetIdentifierCodableArray]' passed (0.106 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetSingleton]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetSingleton]' passed (0.104 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetSingletonParameters]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewareGetSingletonParameters]' passed (0.115 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePatch]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePatch]' passed (4.127 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePost]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePost]' passed (0.110 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePostIdentifier]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePostIdentifier]' passed (0.108 seconds). +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePut]' started. +Test Case '-[KituraTests.TestTypeSafeMiddleware testSingleMiddlewarePut]' passed (4.133 seconds). +Test Suite 'TestTypeSafeMiddleware' passed at 2019-01-19 00:11:15.308. + Executed 33 tests, with 0 failures (0 unexpected) in 28.692 (28.694) seconds +Test Suite 'KituraPackageTests.xctest' failed at 2019-01-19 00:11:15.308. + Executed 241 tests, with 6 failures (0 unexpected) in 102.133 (102.152) seconds +Test Suite 'All tests' failed at 2019-01-19 00:11:15.309. + Executed 241 tests, with 6 failures (0 unexpected) in 102.133 (102.153) seconds \ No newline at end of file diff --git a/Tests/Assets/Promise.tests b/Tests/Assets/Promise.tests new file mode 100644 index 0000000..f013d3f --- /dev/null +++ b/Tests/Assets/Promise.tests @@ -0,0 +1,164 @@ +Test Suite 'All tests' started at 2019-01-19 13:30:06.884 +Test Suite 'PromisesPackageTests.xctest' started at 2019-01-19 13:30:06.884 +Test Suite 'ExecutionContextTests' started at 2019-01-19 13:30:06.884 +Test Case '-[PromiseTests.ExecutionContextTests testConcurrency]' started. +Test Case '-[PromiseTests.ExecutionContextTests testConcurrency]' passed (15.366 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatableQueueSupportsNonMainQueues]' started. +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatableQueueSupportsNonMainQueues]' passed (0.001 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatedInvalidatableQueue]' started. +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatedInvalidatableQueue]' passed (0.106 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testNonInvalidatedInvalidatableQueue]' started. +Test Case '-[PromiseTests.ExecutionContextTests testNonInvalidatedInvalidatableQueue]' passed (0.001 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testTapContinuesToFireInvalidatableQueue]' started. +Test Case '-[PromiseTests.ExecutionContextTests testTapContinuesToFireInvalidatableQueue]' passed (0.001 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testThreads]' started. +Test Case '-[PromiseTests.ExecutionContextTests testThreads]' passed (3.067 seconds). +Test Suite 'ExecutionContextTests' passed at 2019-01-19 13:30:25.428. + Executed 6 tests, with 0 failures (0 unexpected) in 18.543 (18.543) seconds +Test Suite 'PromiseAllTests' started at 2019-01-19 13:30:25.428 +Test Case '-[PromiseTests.PromiseAllTests testAll]' started. +Test Case '-[PromiseTests.PromiseAllTests testAll]' passed (0.110 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithEmptyArray]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithEmptyArray]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithPreFulfilledValues]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithPreFulfilledValues]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningFirst]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningFirst]' passed (0.058 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningLast]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningLast]' passed (0.106 seconds). +Test Suite 'PromiseAllTests' passed at 2019-01-19 13:30:25.704. + Executed 5 tests, with 0 failures (0 unexpected) in 0.275 (0.276) seconds +Test Suite 'PromiseAlwaysTests' started at 2019-01-19 13:30:25.704 +Test Case '-[PromiseTests.PromiseAlwaysTests testAlways]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlways]' passed (0.505 seconds). +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantFulfill]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantFulfill]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantReject]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantReject]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysRejects]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysRejects]' passed (0.522 seconds). +Test Suite 'PromiseAlwaysTests' passed at 2019-01-19 13:30:26.732. + Executed 4 tests, with 0 failures (0 unexpected) in 1.028 (1.029) seconds +Test Suite 'PromiseDelayTests' started at 2019-01-19 13:30:26.733 +Test Case '-[PromiseTests.PromiseDelayTests testDelay]' started. +Test Case '-[PromiseTests.PromiseDelayTests testDelay]' passed (0.204 seconds). +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionFails]' started. +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionFails]' passed (0.502 seconds). +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionSucceeds]' started. +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionSucceeds]' passed (0.014 seconds). +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutPromise]' started. +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutPromise]' passed (0.207 seconds). +Test Suite 'PromiseDelayTests' passed at 2019-01-19 13:30:27.660. + Executed 4 tests, with 0 failures (0 unexpected) in 0.927 (0.927) seconds +Test Suite 'PromiseEnsureTests' started at 2019-01-19 13:30:27.660 +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureOnlyCalledOnSucceess]' started. +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureOnlyCalledOnSucceess]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureRejects]' started. +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureRejects]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureSucceeds]' started. +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureSucceeds]' passed (0.001 seconds). +Test Suite 'PromiseEnsureTests' passed at 2019-01-19 13:30:27.663. + Executed 3 tests, with 0 failures (0 unexpected) in 0.003 (0.003) seconds +Test Suite 'PromiseKickoffTests' started at 2019-01-19 13:30:27.663 +Test Case '-[PromiseTests.PromiseKickoffTests testFailingKickoff]' started. +Test Case '-[PromiseTests.PromiseKickoffTests testFailingKickoff]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseKickoffTests testKickoff]' started. +Test Case '-[PromiseTests.PromiseKickoffTests testKickoff]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseKickoffTests testPromiseKickoff]' started. +Test Case '-[PromiseTests.PromiseKickoffTests testPromiseKickoff]' passed (0.107 seconds). +Test Suite 'PromiseKickoffTests' passed at 2019-01-19 13:30:27.772. + Executed 3 tests, with 0 failures (0 unexpected) in 0.108 (0.108) seconds +Test Suite 'PromiseRaceTests' started at 2019-01-19 13:30:27.772 +Test Case '-[PromiseTests.PromiseRaceTests testInstantReject]' started. +Test Case '-[PromiseTests.PromiseRaceTests testInstantReject]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRaceTests testInstantResolve]' started. +Test Case '-[PromiseTests.PromiseRaceTests testInstantResolve]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRaceTests testRace]' started. +Test Case '-[PromiseTests.PromiseRaceTests testRace]' passed (0.057 seconds). +Test Case '-[PromiseTests.PromiseRaceTests testRaceFailure]' started. +Test Case '-[PromiseTests.PromiseRaceTests testRaceFailure]' passed (0.052 seconds). +Test Suite 'PromiseRaceTests' passed at 2019-01-19 13:30:27.883. + Executed 4 tests, with 0 failures (0 unexpected) in 0.111 (0.111) seconds +Test Suite 'PromiseRecoverTests' started at 2019-01-19 13:30:27.883 +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecover]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecover]' passed (0.108 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecoverInstant]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecoverInstant]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecover]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecover]' passed (0.107 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverInstant]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverInstant]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunction]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunction]' passed (0.104 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunctionError]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunctionError]' passed (0.105 seconds). +Test Suite 'PromiseRecoverTests' passed at 2019-01-19 13:30:28.310. + Executed 6 tests, with 0 failures (0 unexpected) in 0.426 (0.427) seconds +Test Suite 'PromiseRetryTests' started at 2019-01-19 13:30:28.310 +Test Case '-[PromiseTests.PromiseRetryTests testRetry]' started. +Test Case '-[PromiseTests.PromiseRetryTests testRetry]' passed (0.003 seconds). +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithInstantSuccess]' started. +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithInstantSuccess]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithNeverSuccess]' started. +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithNeverSuccess]' passed (0.002 seconds). +Test Suite 'PromiseRetryTests' passed at 2019-01-19 13:30:28.317. + Executed 3 tests, with 0 failures (0 unexpected) in 0.006 (0.006) seconds +Test Suite 'PromiseTests' started at 2019-01-19 13:30:28.317 +Test Case '-[PromiseTests.PromiseTests testAsync]' started. +Test Case '-[PromiseTests.PromiseTests testAsync]' passed (0.054 seconds). +Test Case '-[PromiseTests.PromiseTests testAsyncRejection]' started. +Test Case '-[PromiseTests.PromiseTests testAsyncRejection]' passed (0.051 seconds). +Test Case '-[PromiseTests.PromiseTests testAsyncThrowing]' started. +Test Case '-[PromiseTests.PromiseTests testAsyncThrowing]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testDoubleReject]' started. +Test Case '-[PromiseTests.PromiseTests testDoubleReject]' passed (0.000 seconds). +Test Case '-[PromiseTests.PromiseTests testDoubleResolve]' started. +Test Case '-[PromiseTests.PromiseTests testDoubleResolve]' passed (0.000 seconds). +Test Case '-[PromiseTests.PromiseTests testFlatMap]' started. +Test Case '-[PromiseTests.PromiseTests testFlatMap]' passed (0.110 seconds). +Test Case '-[PromiseTests.PromiseTests testFulfilled]' started. +Test Case '-[PromiseTests.PromiseTests testFulfilled]' passed (0.053 seconds). +Test Case '-[PromiseTests.PromiseTests testMap]' started. +Test Case '-[PromiseTests.PromiseTests testMap]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testPending]' started. +Test Case '-[PromiseTests.PromiseTests testPending]' passed (0.000 seconds). +Test Case '-[PromiseTests.PromiseTests testRejected]' started. +Test Case '-[PromiseTests.PromiseTests testRejected]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testRejectedAfterFulfilled]' started. +Test Case '-[PromiseTests.PromiseTests testRejectedAfterFulfilled]' passed (0.051 seconds). +Test Case '-[PromiseTests.PromiseTests testRejectThenResolve]' started. +Test Case '-[PromiseTests.PromiseTests testRejectThenResolve]' passed (0.000 seconds). +Test Case '-[PromiseTests.PromiseTests testResolveThenReject]' started. +Test Case '-[PromiseTests.PromiseTests testResolveThenReject]' passed (0.000 seconds). +Test Case '-[PromiseTests.PromiseTests testThen]' started. +Test Case '-[PromiseTests.PromiseTests testThen]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testThenWhenPending]' started. +Test Case '-[PromiseTests.PromiseTests testThenWhenPending]' passed (0.055 seconds). +Test Case '-[PromiseTests.PromiseTests testTrailingClosuresCompile]' started. +Test Case '-[PromiseTests.PromiseTests testTrailingClosuresCompile]' passed (0.110 seconds). +Test Case '-[PromiseTests.PromiseTests testZalgoContained]' started. +Test Case '-[PromiseTests.PromiseTests testZalgoContained]' passed (0.001 seconds). +Test Suite 'PromiseTests' passed at 2019-01-19 13:30:28.808. + Executed 17 tests, with 0 failures (0 unexpected) in 0.490 (0.491) seconds +Test Suite 'PromiseThrowsTests' started at 2019-01-19 13:30:28.808 +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmapping]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmapping]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmappingWithError]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmappingWithError]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMapping]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMapping]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMappingWithError]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMappingWithError]' passed (0.001 seconds). +Test Suite 'PromiseThrowsTests' passed at 2019-01-19 13:30:28.812. + Executed 4 tests, with 0 failures (0 unexpected) in 0.004 (0.004) seconds +Test Suite 'PromiseZipTests' started at 2019-01-19 13:30:28.812 +Test Case '-[PromiseTests.PromiseZipTests testMultipleParameters]' started. +Test Case '-[PromiseTests.PromiseZipTests testMultipleParameters]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseZipTests testZipping2]' started. +Test Case '-[PromiseTests.PromiseZipTests testZipping2]' passed (0.001 seconds). +Test Suite 'PromiseZipTests' passed at 2019-01-19 13:30:28.814. + Executed 2 tests, with 0 failures (0 unexpected) in 0.002 (0.002) seconds +Test Suite 'PromisesPackageTests.xctest' passed at 2019-01-19 13:30:28.814. + Executed 61 tests, with 0 failures (0 unexpected) in 21.923 (21.930) seconds +Test Suite 'All tests' passed at 2019-01-19 13:30:28.814. + Executed 61 tests, with 0 failures (0 unexpected) in 21.923 (21.930) seconds \ No newline at end of file diff --git a/Tests/Assets/PromiseFailure.json b/Tests/Assets/PromiseFailure.json new file mode 100644 index 0000000..aa34484 --- /dev/null +++ b/Tests/Assets/PromiseFailure.json @@ -0,0 +1,600 @@ +{ + "endDate" : 1547901789.3310001, + "children" : [ + { + "endDate" : 1547901789.3299999, + "children" : [ + { + "endDate" : 1547901785.9000001, + "children" : [ + + ], + "startDate" : 1547901767.3559999, + "cases" : [ + { + "outcome" : "success", + "className" : "ExecutionContextTests", + "moduleName" : "PromiseTests", + "testName" : "testConcurrency", + "duration" : 15.353999999999999 + }, + { + "outcome" : "success", + "className" : "ExecutionContextTests", + "moduleName" : "PromiseTests", + "testName" : "testInvalidatableQueueSupportsNonMainQueues", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "ExecutionContextTests", + "moduleName" : "PromiseTests", + "testName" : "testInvalidatedInvalidatableQueue", + "duration" : 0.10199999999999999 + }, + { + "outcome" : "success", + "className" : "ExecutionContextTests", + "moduleName" : "PromiseTests", + "testName" : "testNonInvalidatedInvalidatableQueue", + "duration" : 0.0070000000000000001 + }, + { + "outcome" : "success", + "className" : "ExecutionContextTests", + "moduleName" : "PromiseTests", + "testName" : "testTapContinuesToFireInvalidatableQueue", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "ExecutionContextTests", + "moduleName" : "PromiseTests", + "testName" : "testThreads", + "duration" : 3.0750000000000002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ExecutionContextTests" + }, + { + "endDate" : 1547901786.175, + "children" : [ + + ], + "startDate" : 1547901785.901, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseAllTests", + "moduleName" : "PromiseTests", + "testName" : "testAll", + "duration" : 0.108 + }, + { + "outcome" : "success", + "className" : "PromiseAllTests", + "moduleName" : "PromiseTests", + "testName" : "testAllWithEmptyArray", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseAllTests", + "moduleName" : "PromiseTests", + "testName" : "testAllWithPreFulfilledValues", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseAllTests", + "moduleName" : "PromiseTests", + "testName" : "testAllWithRejectionHappeningFirst", + "duration" : 0.058000000000000003 + }, + { + "outcome" : "success", + "className" : "PromiseAllTests", + "moduleName" : "PromiseTests", + "testName" : "testAllWithRejectionHappeningLast", + "duration" : 0.10299999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseAllTests" + }, + { + "endDate" : 1547901787.201, + "children" : [ + + ], + "startDate" : 1547901786.175, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseAlwaysTests", + "moduleName" : "PromiseTests", + "testName" : "testAlways", + "duration" : 0.50700000000000001 + }, + { + "outcome" : "success", + "className" : "PromiseAlwaysTests", + "moduleName" : "PromiseTests", + "testName" : "testAlwaysInstantFulfill", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseAlwaysTests", + "moduleName" : "PromiseTests", + "testName" : "testAlwaysInstantReject", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseAlwaysTests", + "moduleName" : "PromiseTests", + "testName" : "testAlwaysRejects", + "duration" : 0.51500000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseAlwaysTests" + }, + { + "endDate" : 1547901788.141, + "children" : [ + + ], + "startDate" : 1547901787.2019999, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseDelayTests", + "moduleName" : "PromiseTests", + "testName" : "testDelay", + "duration" : 0.20200000000000001 + }, + { + "outcome" : "success", + "className" : "PromiseDelayTests", + "moduleName" : "PromiseTests", + "testName" : "testTimeoutFunctionFails", + "duration" : 0.51900000000000002 + }, + { + "outcome" : "success", + "className" : "PromiseDelayTests", + "moduleName" : "PromiseTests", + "testName" : "testTimeoutFunctionSucceeds", + "duration" : 0.012 + }, + { + "outcome" : "success", + "className" : "PromiseDelayTests", + "moduleName" : "PromiseTests", + "testName" : "testTimeoutPromise", + "duration" : 0.20300000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseDelayTests" + }, + { + "endDate" : 1547901788.1470001, + "children" : [ + + ], + "startDate" : 1547901788.142, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseEnsureTests", + "moduleName" : "PromiseTests", + "testName" : "testEnsureOnlyCalledOnSucceess", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseEnsureTests", + "moduleName" : "PromiseTests", + "testName" : "testEnsureRejects", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseEnsureTests", + "moduleName" : "PromiseTests", + "testName" : "testEnsureSucceeds", + "duration" : 0.001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseEnsureTests" + }, + { + "endDate" : 1547901788.2520001, + "children" : [ + + ], + "startDate" : 1547901788.1470001, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseKickoffTests", + "moduleName" : "PromiseTests", + "testName" : "testFailingKickoff", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseKickoffTests", + "moduleName" : "PromiseTests", + "testName" : "testKickoff", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseKickoffTests", + "moduleName" : "PromiseTests", + "testName" : "testPromiseKickoff", + "duration" : 0.10199999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseKickoffTests" + }, + { + "endDate" : 1547901788.3670001, + "children" : [ + + ], + "startDate" : 1547901788.253, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseRaceTests", + "moduleName" : "PromiseTests", + "testName" : "testInstantReject", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseRaceTests", + "moduleName" : "PromiseTests", + "testName" : "testInstantResolve", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseRaceTests", + "moduleName" : "PromiseTests", + "testName" : "testRace", + "duration" : 0.056000000000000001 + }, + { + "outcome" : "success", + "className" : "PromiseRaceTests", + "moduleName" : "PromiseTests", + "testName" : "testRaceFailure", + "duration" : 0.052999999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseRaceTests" + }, + { + "endDate" : 1547901788.7950001, + "children" : [ + + ], + "startDate" : 1547901788.3670001, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseRecoverTests", + "moduleName" : "PromiseTests", + "testName" : "testIgnoreRecover", + "duration" : 0.107 + }, + { + "outcome" : "success", + "className" : "PromiseRecoverTests", + "moduleName" : "PromiseTests", + "testName" : "testIgnoreRecoverInstant", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseRecoverTests", + "moduleName" : "PromiseTests", + "testName" : "testRecover", + "duration" : 0.105 + }, + { + "outcome" : "success", + "className" : "PromiseRecoverTests", + "moduleName" : "PromiseTests", + "testName" : "testRecoverInstant", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseRecoverTests", + "moduleName" : "PromiseTests", + "testName" : "testRecoverWithThrowingFunction", + "duration" : 0.106 + }, + { + "outcome" : "success", + "className" : "PromiseRecoverTests", + "moduleName" : "PromiseTests", + "testName" : "testRecoverWithThrowingFunctionError", + "duration" : 0.10299999999999999 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseRecoverTests" + }, + { + "endDate" : 1547901788.802, + "children" : [ + + ], + "startDate" : 1547901788.796, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseRetryTests", + "moduleName" : "PromiseTests", + "testName" : "testRetry", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "PromiseRetryTests", + "moduleName" : "PromiseTests", + "testName" : "testRetryWithInstantSuccess", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseRetryTests", + "moduleName" : "PromiseTests", + "testName" : "testRetryWithNeverSuccess", + "duration" : 0.002 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseRetryTests" + }, + { + "endDate" : 1547901789.313, + "children" : [ + + ], + "startDate" : 1547901788.803, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testAsync", + "duration" : 0.056000000000000001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testAsyncRejection", + "duration" : 0.051999999999999998 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testAsyncThrowing", + "duration" : 0.002 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testDoubleReject", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testDoubleResolve", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testFlatMap", + "duration" : 0.108 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testFulfilled", + "duration" : 0.052999999999999999 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testMap", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testPending", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testRejected", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testRejectedAfterFulfilled", + "duration" : 0.050999999999999997 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testRejectThenResolve", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testResolveThenReject", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testThen", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testThenWhenPending", + "duration" : 0.053999999999999999 + }, + { + "outcome" : "success", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testTrailingClosuresCompile", + "duration" : 0.107 + }, + { + "failureInfo" : { + "line" : 232, + "file" : "\/Users\/tib\/Downloads\/Promise-master\/PromiseTests\/PromiseTests.swift", + "reason" : "XCTAssertTrue failed" + }, + "outcome" : "failure", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testZalgoContained", + "duration" : 0.012 + } + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "PromiseTests" + }, + { + "endDate" : 1547901789.3199999, + "children" : [ + + ], + "startDate" : 1547901789.3139999, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseThrowsTests", + "moduleName" : "PromiseTests", + "testName" : "testThrowsInFlatmapping", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseThrowsTests", + "moduleName" : "PromiseTests", + "testName" : "testThrowsInFlatmappingWithError", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseThrowsTests", + "moduleName" : "PromiseTests", + "testName" : "testThrowsInMapping", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseThrowsTests", + "moduleName" : "PromiseTests", + "testName" : "testThrowsInMappingWithError", + "duration" : 0.001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseThrowsTests" + }, + { + "endDate" : 1547901789.329, + "children" : [ + + ], + "startDate" : 1547901789.3210001, + "cases" : [ + { + "outcome" : "success", + "className" : "PromiseZipTests", + "moduleName" : "PromiseTests", + "testName" : "testMultipleParameters", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "PromiseZipTests", + "moduleName" : "PromiseTests", + "testName" : "testZipping2", + "duration" : 0.0060000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "PromiseZipTests" + } + ], + "startDate" : 1547901767.3559999, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "PromiseTests.xctest" + } + ], + "startDate" : 1547901767.355, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "All tests" +} \ No newline at end of file diff --git a/Tests/Assets/PromiseFailure.tests b/Tests/Assets/PromiseFailure.tests new file mode 100644 index 0000000..5480d5d --- /dev/null +++ b/Tests/Assets/PromiseFailure.tests @@ -0,0 +1,166 @@ +Test Suite 'All tests' started at 2019-01-19 13:42:47.355 +Test Suite 'PromiseTests.xctest' started at 2019-01-19 13:42:47.356 +Test Suite 'ExecutionContextTests' started at 2019-01-19 13:42:47.356 +Test Case '-[PromiseTests.ExecutionContextTests testConcurrency]' started. +Test Case '-[PromiseTests.ExecutionContextTests testConcurrency]' passed (15.354 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatableQueueSupportsNonMainQueues]' started. +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatableQueueSupportsNonMainQueues]' passed (0.002 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatedInvalidatableQueue]' started. +Test Case '-[PromiseTests.ExecutionContextTests testInvalidatedInvalidatableQueue]' passed (0.102 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testNonInvalidatedInvalidatableQueue]' started. +Test Case '-[PromiseTests.ExecutionContextTests testNonInvalidatedInvalidatableQueue]' passed (0.007 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testTapContinuesToFireInvalidatableQueue]' started. +Test Case '-[PromiseTests.ExecutionContextTests testTapContinuesToFireInvalidatableQueue]' passed (0.001 seconds). +Test Case '-[PromiseTests.ExecutionContextTests testThreads]' started. +Test Case '-[PromiseTests.ExecutionContextTests testThreads]' passed (3.075 seconds). +Test Suite 'ExecutionContextTests' passed at 2019-01-19 13:43:05.900. + Executed 6 tests, with 0 failures (0 unexpected) in 18.540 (18.545) seconds +Test Suite 'PromiseAllTests' started at 2019-01-19 13:43:05.901 +Test Case '-[PromiseTests.PromiseAllTests testAll]' started. +Test Case '-[PromiseTests.PromiseAllTests testAll]' passed (0.108 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithEmptyArray]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithEmptyArray]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithPreFulfilledValues]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithPreFulfilledValues]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningFirst]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningFirst]' passed (0.058 seconds). +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningLast]' started. +Test Case '-[PromiseTests.PromiseAllTests testAllWithRejectionHappeningLast]' passed (0.103 seconds). +Test Suite 'PromiseAllTests' passed at 2019-01-19 13:43:06.175. + Executed 5 tests, with 0 failures (0 unexpected) in 0.271 (0.274) seconds +Test Suite 'PromiseAlwaysTests' started at 2019-01-19 13:43:06.175 +Test Case '-[PromiseTests.PromiseAlwaysTests testAlways]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlways]' passed (0.507 seconds). +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantFulfill]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantFulfill]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantReject]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysInstantReject]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysRejects]' started. +Test Case '-[PromiseTests.PromiseAlwaysTests testAlwaysRejects]' passed (0.515 seconds). +Test Suite 'PromiseAlwaysTests' passed at 2019-01-19 13:43:07.201. + Executed 4 tests, with 0 failures (0 unexpected) in 1.023 (1.026) seconds +Test Suite 'PromiseDelayTests' started at 2019-01-19 13:43:07.202 +Test Case '-[PromiseTests.PromiseDelayTests testDelay]' started. +Test Case '-[PromiseTests.PromiseDelayTests testDelay]' passed (0.202 seconds). +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionFails]' started. +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionFails]' passed (0.519 seconds). +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionSucceeds]' started. +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutFunctionSucceeds]' passed (0.012 seconds). +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutPromise]' started. +Test Case '-[PromiseTests.PromiseDelayTests testTimeoutPromise]' passed (0.203 seconds). +Test Suite 'PromiseDelayTests' passed at 2019-01-19 13:43:08.141. + Executed 4 tests, with 0 failures (0 unexpected) in 0.936 (0.939) seconds +Test Suite 'PromiseEnsureTests' started at 2019-01-19 13:43:08.142 +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureOnlyCalledOnSucceess]' started. +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureOnlyCalledOnSucceess]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureRejects]' started. +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureRejects]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureSucceeds]' started. +Test Case '-[PromiseTests.PromiseEnsureTests testEnsureSucceeds]' passed (0.001 seconds). +Test Suite 'PromiseEnsureTests' passed at 2019-01-19 13:43:08.147. + Executed 3 tests, with 0 failures (0 unexpected) in 0.003 (0.005) seconds +Test Suite 'PromiseKickoffTests' started at 2019-01-19 13:43:08.147 +Test Case '-[PromiseTests.PromiseKickoffTests testFailingKickoff]' started. +Test Case '-[PromiseTests.PromiseKickoffTests testFailingKickoff]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseKickoffTests testKickoff]' started. +Test Case '-[PromiseTests.PromiseKickoffTests testKickoff]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseKickoffTests testPromiseKickoff]' started. +Test Case '-[PromiseTests.PromiseKickoffTests testPromiseKickoff]' passed (0.102 seconds). +Test Suite 'PromiseKickoffTests' passed at 2019-01-19 13:43:08.252. + Executed 3 tests, with 0 failures (0 unexpected) in 0.103 (0.105) seconds +Test Suite 'PromiseRaceTests' started at 2019-01-19 13:43:08.253 +Test Case '-[PromiseTests.PromiseRaceTests testInstantReject]' started. +Test Case '-[PromiseTests.PromiseRaceTests testInstantReject]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRaceTests testInstantResolve]' started. +Test Case '-[PromiseTests.PromiseRaceTests testInstantResolve]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRaceTests testRace]' started. +Test Case '-[PromiseTests.PromiseRaceTests testRace]' passed (0.056 seconds). +Test Case '-[PromiseTests.PromiseRaceTests testRaceFailure]' started. +Test Case '-[PromiseTests.PromiseRaceTests testRaceFailure]' passed (0.053 seconds). +Test Suite 'PromiseRaceTests' passed at 2019-01-19 13:43:08.367. + Executed 4 tests, with 0 failures (0 unexpected) in 0.111 (0.114) seconds +Test Suite 'PromiseRecoverTests' started at 2019-01-19 13:43:08.367 +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecover]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecover]' passed (0.107 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecoverInstant]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testIgnoreRecoverInstant]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecover]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecover]' passed (0.105 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverInstant]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverInstant]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunction]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunction]' passed (0.106 seconds). +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunctionError]' started. +Test Case '-[PromiseTests.PromiseRecoverTests testRecoverWithThrowingFunctionError]' passed (0.103 seconds). +Test Suite 'PromiseRecoverTests' passed at 2019-01-19 13:43:08.795. + Executed 6 tests, with 0 failures (0 unexpected) in 0.423 (0.428) seconds +Test Suite 'PromiseRetryTests' started at 2019-01-19 13:43:08.796 +Test Case '-[PromiseTests.PromiseRetryTests testRetry]' started. +Test Case '-[PromiseTests.PromiseRetryTests testRetry]' passed (0.002 seconds). +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithInstantSuccess]' started. +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithInstantSuccess]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithNeverSuccess]' started. +Test Case '-[PromiseTests.PromiseRetryTests testRetryWithNeverSuccess]' passed (0.002 seconds). +Test Suite 'PromiseRetryTests' passed at 2019-01-19 13:43:08.802. + Executed 3 tests, with 0 failures (0 unexpected) in 0.004 (0.006) seconds +Test Suite 'PromiseTests' started at 2019-01-19 13:43:08.803 +Test Case '-[PromiseTests.PromiseTests testAsync]' started. +Test Case '-[PromiseTests.PromiseTests testAsync]' passed (0.056 seconds). +Test Case '-[PromiseTests.PromiseTests testAsyncRejection]' started. +Test Case '-[PromiseTests.PromiseTests testAsyncRejection]' passed (0.052 seconds). +Test Case '-[PromiseTests.PromiseTests testAsyncThrowing]' started. +Test Case '-[PromiseTests.PromiseTests testAsyncThrowing]' passed (0.002 seconds). +Test Case '-[PromiseTests.PromiseTests testDoubleReject]' started. +Test Case '-[PromiseTests.PromiseTests testDoubleReject]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testDoubleResolve]' started. +Test Case '-[PromiseTests.PromiseTests testDoubleResolve]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testFlatMap]' started. +Test Case '-[PromiseTests.PromiseTests testFlatMap]' passed (0.108 seconds). +Test Case '-[PromiseTests.PromiseTests testFulfilled]' started. +Test Case '-[PromiseTests.PromiseTests testFulfilled]' passed (0.053 seconds). +Test Case '-[PromiseTests.PromiseTests testMap]' started. +Test Case '-[PromiseTests.PromiseTests testMap]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testPending]' started. +Test Case '-[PromiseTests.PromiseTests testPending]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testRejected]' started. +Test Case '-[PromiseTests.PromiseTests testRejected]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testRejectedAfterFulfilled]' started. +Test Case '-[PromiseTests.PromiseTests testRejectedAfterFulfilled]' passed (0.051 seconds). +Test Case '-[PromiseTests.PromiseTests testRejectThenResolve]' started. +Test Case '-[PromiseTests.PromiseTests testRejectThenResolve]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testResolveThenReject]' started. +Test Case '-[PromiseTests.PromiseTests testResolveThenReject]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testThen]' started. +Test Case '-[PromiseTests.PromiseTests testThen]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseTests testThenWhenPending]' started. +Test Case '-[PromiseTests.PromiseTests testThenWhenPending]' passed (0.054 seconds). +Test Case '-[PromiseTests.PromiseTests testTrailingClosuresCompile]' started. +Test Case '-[PromiseTests.PromiseTests testTrailingClosuresCompile]' passed (0.107 seconds). +Test Case '-[PromiseTests.PromiseTests testZalgoContained]' started. +/Users/tib/Downloads/Promise-master/PromiseTests/PromiseTests.swift:232: error: -[PromiseTests.PromiseTests testZalgoContained] : XCTAssertTrue failed - +Test Case '-[PromiseTests.PromiseTests testZalgoContained]' failed (0.012 seconds). +Test Suite 'PromiseTests' failed at 2019-01-19 13:43:09.313. + Executed 17 tests, with 1 failure (0 unexpected) in 0.501 (0.511) seconds +Test Suite 'PromiseThrowsTests' started at 2019-01-19 13:43:09.314 +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmapping]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmapping]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmappingWithError]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInFlatmappingWithError]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMapping]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMapping]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMappingWithError]' started. +Test Case '-[PromiseTests.PromiseThrowsTests testThrowsInMappingWithError]' passed (0.001 seconds). +Test Suite 'PromiseThrowsTests' passed at 2019-01-19 13:43:09.320. + Executed 4 tests, with 0 failures (0 unexpected) in 0.004 (0.006) seconds +Test Suite 'PromiseZipTests' started at 2019-01-19 13:43:09.321 +Test Case '-[PromiseTests.PromiseZipTests testMultipleParameters]' started. +Test Case '-[PromiseTests.PromiseZipTests testMultipleParameters]' passed (0.001 seconds). +Test Case '-[PromiseTests.PromiseZipTests testZipping2]' started. +Test Case '-[PromiseTests.PromiseZipTests testZipping2]' passed (0.006 seconds). +Test Suite 'PromiseZipTests' passed at 2019-01-19 13:43:09.329. + Executed 2 tests, with 0 failures (0 unexpected) in 0.007 (0.008) seconds +Test Suite 'PromiseTests.xctest' failed at 2019-01-19 13:43:09.330. + Executed 61 tests, with 1 failure (0 unexpected) in 21.928 (21.974) seconds +Test Suite 'All tests' failed at 2019-01-19 13:43:09.331. + Executed 61 tests, with 1 failure (0 unexpected) in 21.928 (21.976) seconds +Program ended with exit code: 1 \ No newline at end of file diff --git a/Tests/Assets/PromiseUnexpectedFailure.json b/Tests/Assets/PromiseUnexpectedFailure.json new file mode 100644 index 0000000..801da9c --- /dev/null +++ b/Tests/Assets/PromiseUnexpectedFailure.json @@ -0,0 +1,48 @@ +{ + "endDate" : 1547901937, + "children" : [ + { + "endDate" : 1547901937, + "children" : [ + { + "endDate" : 1547901936.9990001, + "children" : [ + + ], + "startDate" : 1547901936.977, + "cases" : [ + { + "failureInfo" : { + "line" : 0, + "file" : "", + "reason" : "failed: caught error: The operation couldn’t be completed. (PromiseTests.WrenchError error 1.)" + }, + "outcome" : "failure", + "className" : "PromiseTests", + "moduleName" : "PromiseTests", + "testName" : "testUnexpected", + "duration" : 0.021000000000000001 + } + ], + "unexpected" : 1, + "outcome" : "failure", + "name" : "PromiseTests" + } + ], + "startDate" : 1547901936.977, + "cases" : [ + + ], + "unexpected" : 2, + "outcome" : "failure", + "name" : "PromiseTests.xctest" + } + ], + "startDate" : 1547901936.9760001, + "cases" : [ + + ], + "unexpected" : 1, + "outcome" : "failure", + "name" : "Selected tests" +} \ No newline at end of file diff --git a/Tests/Assets/PromiseUnexpectedFailure.tests b/Tests/Assets/PromiseUnexpectedFailure.tests new file mode 100644 index 0000000..ff4e3e5 --- /dev/null +++ b/Tests/Assets/PromiseUnexpectedFailure.tests @@ -0,0 +1,13 @@ +Test Suite 'Selected tests' started at 2019-01-19 13:45:36.976 +Test Suite 'PromiseTests.xctest' started at 2019-01-19 13:45:36.977 +Test Suite 'PromiseTests' started at 2019-01-19 13:45:36.977 +Test Case '-[PromiseTests.PromiseTests testUnexpected]' started. +:0: error: -[PromiseTests.PromiseTests testUnexpected] : failed: caught error: The operation couldn’t be completed. (PromiseTests.WrenchError error 1.) +Test Case '-[PromiseTests.PromiseTests testUnexpected]' failed (0.021 seconds). +Test Suite 'PromiseTests' failed at 2019-01-19 13:45:36.999. + Executed 1 test, with 1 failure (1 unexpected) in 0.021 (0.021) seconds +Test Suite 'PromiseTests.xctest' failed at 2019-01-19 13:45:37.000. + Executed 1 test, with 1 failure (2 unexpected) in 0.021 (0.022) seconds +Test Suite 'Selected tests' failed at 2019-01-19 13:45:37.000. + Executed 1 test, with 1 failure (1 unexpected) in 0.021 (0.024) seconds +Program ended with exit code: 1 \ No newline at end of file diff --git a/Tests/Assets/Shell-coverage.json b/Tests/Assets/Shell-coverage.json new file mode 100644 index 0000000..09ab950 --- /dev/null +++ b/Tests/Assets/Shell-coverage.json @@ -0,0 +1,1938 @@ +{ + "version": "2.0.0", + "type": "llvm.coverage.json.export", + "data": [ + { + "files": [ + { + "filename": "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift", + "segments": [ + [ + 19, + 45, + 1, + 1, + 1 + ], + [ + 21, //line number + 9, // number of calls? + 0, //actually called + 1, + 1 + ], + [ + 22, + 52, + 1, + 1, + 0 + ], + [ + 23, + 9, + 1, + 1, + 1 + ], + [ + 24, + 47, + 1, + 1, + 0 + ], + [ + 25, + 10, + 1, + 1, + 1 + ], + [ + 26, + 6, + 0, + 0, + 0 + ], + [ + 33, + 26, + 2, + 1, + 1 + ], + [ + 35, + 13, + 2, + 1, + 1 + ], + [ + 35, + 46, + 2, + 1, + 0 + ], + [ + 36, + 13, + 2, + 1, + 1 + ], + [ + 36, + 46, + 2, + 1, + 0 + ], + [ + 37, + 6, + 0, + 0, + 0 + ], + [ + 52, + 16, + 0, + 1, + 1 + ], + [ + 54, + 6, + 0, + 0, + 0 + ], + [ + 59, + 38, + 16358, + 1, + 1 + ], + [ + 61, + 6, + 0, + 0, + 0 + ], + [ + 63, + 23, + 2, + 1, + 1 + ], + [ + 64, + 37, + 0, + 1, + 1 + ], + [ + 66, + 10, + 2, + 1, + 1 + ], + [ + 68, + 6, + 0, + 0, + 0 + ], + [ + 100, + 74, + 6, + 1, + 1 + ], + [ + 104, + 6, + 0, + 0, + 0 + ], + [ + 120, + 57, + 6, + 1, + 1 + ], + [ + 125, + 30, + 1, + 1, + 1 + ], + [ + 130, + 10, + 6, + 1, + 1 + ], + [ + 141, + 62, + 45264, + 1, + 1 + ], + [ + 143, + 34, + 45264, + 1, + 1 + ], + [ + 146, + 14, + 45264, + 1, + 0 + ], + [ + 147, + 10, + 6, + 1, + 0 + ], + [ + 148, + 61, + 45333, + 1, + 1 + ], + [ + 150, + 34, + 45333, + 1, + 1 + ], + [ + 153, + 14, + 45333, + 1, + 0 + ], + [ + 154, + 10, + 6, + 1, + 0 + ], + [ + 176, + 40, + 6, + 1, + 1 + ], + [ + 177, + 55, + 2, + 1, + 1 + ], + [ + 179, + 73, + 2, + 1, + 1 + ], + [ + 181, + 18, + 2, + 1, + 1 + ], + [ + 182, + 82, + 2, + 1, + 0 + ], + [ + 183, + 14, + 4, + 1, + 1 + ], + [ + 184, + 79, + 0, + 1, + 1 + ], + [ + 186, + 14, + 4, + 1, + 1 + ], + [ + 187, + 60, + 4, + 1, + 0 + ], + [ + 188, + 10, + 6, + 1, + 0 + ], + [ + 189, + 6, + 0, + 0, + 0 + ], + [ + 200, + 91, + 1, + 1, + 1 + ], + [ + 202, + 21, + 1, + 1, + 1 + ], + [ + 203, + 16, + 1, + 1, + 1 + ], + [ + 206, + 14, + 1, + 1, + 0 + ], + [ + 207, + 19, + 0, + 1, + 1 + ], + [ + 209, + 14, + 1, + 1, + 1 + ], + [ + 210, + 10, + 1, + 1, + 0 + ], + [ + 211, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 158, + "covered": 151, + "percent": 95 + }, + "functions": { + "count": 16, + "covered": 15, + "percent": 93 + }, + "instantiations": { + "count": 16, + "covered": 15, + "percent": 93 + }, + "regions": { + "count": 32, + "covered": 27, + "notcovered": 5, + "percent": 84 + } + } + }, + { + "filename": "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift", + "segments": [ + [ + 24, + 63, + 0, + 1, + 1 + ], + [ + 26, + 6, + 0, + 0, + 0 + ], + [ + 28, + 77, + 7, + 1, + 1 + ], + [ + 29, + 24, + 7, + 1, + 1 + ], + [ + 29, + 30, + 7, + 1, + 0 + ], + [ + 29, + 32, + 7, + 1, + 1 + ], + [ + 29, + 40, + 7, + 1, + 0 + ], + [ + 29, + 42, + 0, + 1, + 1 + ], + [ + 29, + 96, + 7, + 1, + 0 + ], + [ + 30, + 6, + 0, + 0, + 0 + ], + [ + 34, + 30, + 1, + 1, + 1 + ], + [ + 38, + 6, + 0, + 0, + 0 + ], + [ + 40, + 22, + 1, + 1, + 1 + ], + [ + 41, + 12, + 1, + 1, + 1 + ], + [ + 44, + 10, + 1, + 1, + 0 + ], + [ + 45, + 39, + 1, + 1, + 1 + ], + [ + 51, + 13, + 1, + 1, + 1 + ], + [ + 52, + 35, + 1, + 1, + 1 + ], + [ + 52, + 39, + 1, + 1, + 0 + ], + [ + 52, + 41, + 1, + 1, + 1 + ], + [ + 52, + 42, + 1, + 1, + 0 + ], + [ + 52, + 44, + 0, + 1, + 1 + ], + [ + 52, + 75, + 1, + 1, + 0 + ], + [ + 53, + 13, + 0, + 1, + 1 + ], + [ + 54, + 88, + 1, + 1, + 0 + ], + [ + 55, + 14, + 1, + 1, + 1 + ], + [ + 56, + 10, + 1, + 1, + 0 + ], + [ + 57, + 15, + 0, + 1, + 1 + ], + [ + 59, + 10, + 1, + 1, + 1 + ], + [ + 60, + 6, + 0, + 0, + 0 + ], + [ + 62, + 35, + 1, + 1, + 1 + ], + [ + 69, + 6, + 0, + 0, + 0 + ], + [ + 72, + 37, + 1, + 1, + 1 + ], + [ + 79, + 118, + 0, + 1, + 1 + ], + [ + 81, + 10, + 1, + 1, + 1 + ], + [ + 84, + 6, + 0, + 0, + 0 + ], + [ + 86, + 36, + 1, + 1, + 1 + ], + [ + 91, + 12, + 1, + 1, + 1 + ], + [ + 93, + 10, + 1, + 1, + 0 + ], + [ + 94, + 39, + 1, + 1, + 1 + ], + [ + 96, + 13, + 1, + 1, + 1 + ], + [ + 98, + 90, + 0, + 1, + 1 + ], + [ + 100, + 18, + 1, + 1, + 1 + ], + [ + 101, + 35, + 1, + 1, + 1 + ], + [ + 101, + 39, + 1, + 1, + 0 + ], + [ + 101, + 41, + 1, + 1, + 1 + ], + [ + 101, + 42, + 1, + 1, + 0 + ], + [ + 101, + 44, + 0, + 1, + 1 + ], + [ + 101, + 75, + 1, + 1, + 0 + ], + [ + 103, + 13, + 0, + 1, + 1 + ], + [ + 104, + 88, + 1, + 1, + 0 + ], + [ + 105, + 14, + 1, + 1, + 1 + ], + [ + 106, + 10, + 1, + 1, + 0 + ], + [ + 107, + 15, + 0, + 1, + 1 + ], + [ + 109, + 10, + 1, + 1, + 1 + ], + [ + 110, + 6, + 0, + 0, + 0 + ], + [ + 112, + 25, + 1, + 1, + 1 + ], + [ + 118, + 30, + 1, + 1, + 1 + ], + [ + 119, + 34, + 0, + 1, + 1 + ], + [ + 121, + 14, + 1, + 1, + 1 + ], + [ + 122, + 44, + 0, + 1, + 1 + ], + [ + 124, + 14, + 1, + 1, + 1 + ], + [ + 127, + 10, + 1, + 1, + 0 + ], + [ + 129, + 6, + 0, + 0, + 0 + ] + ], + "expansions": [], + "summary": { + "lines": { + "count": 115, + "covered": 101, + "percent": 87 + }, + "functions": { + "count": 18, + "covered": 14, + "percent": 77 + }, + "instantiations": { + "count": 18, + "covered": 14, + "percent": 77 + }, + "regions": { + "count": 40, + "covered": 28, + "notcovered": 12, + "percent": 70 + } + } + } + ], + "functions": [ + { + "name": "$s5Shell0A5ErrorO20localizedDescriptionSSvg", + "count": 1, + "regions": [ + [ + 19, + 45, + 26, + 6, + 1, + 0, + 0, + 0 + ], + [ + 21, + 9, + 22, + 52, + 0, + 0, + 0, + 0 + ], + [ + 23, + 9, + 24, + 47, + 1, + 0, + 0, + 0 + ], + [ + 25, + 10, + 26, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$sSo12NSFileHandleC5ShellE10isStandard33_95DBF62DDAC341142027A00D3F629766LLSbvg", + "count": 2, + "regions": [ + [ + 33, + 26, + 37, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$sSo12NSFileHandleC5ShellE10isStandard33_95DBF62DDAC341142027A00D3F629766LLSbvgSbyKXEfu_", + "count": 2, + "regions": [ + [ + 35, + 13, + 35, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$sSo12NSFileHandleC5ShellE10isStandard33_95DBF62DDAC341142027A00D3F629766LLSbvgSbyKXEfu0_", + "count": 2, + "regions": [ + [ + 36, + 13, + 36, + 46, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5Shell0A11DataHandlerPAAE3endyyF", + "count": 0, + "regions": [ + [ + 52, + 16, + 54, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$sSo12NSFileHandleC5ShellE6handleyy10Foundation4DataVF", + "count": 16358, + "regions": [ + [ + 59, + 38, + 61, + 6, + 16358, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$sSo12NSFileHandleC5ShellE3endyyF", + "count": 2, + "regions": [ + [ + 63, + 23, + 68, + 6, + 2, + 0, + 0, + 0 + ], + [ + 64, + 37, + 66, + 10, + 0, + 0, + 0, + 0 + ], + [ + 66, + 10, + 68, + 6, + 2, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "__ntd_Shell_line:73:6", + "count": 6, + "regions": [ + [ + 100, + 74, + 104, + 6, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3runyS2SKF", + "count": 6, + "regions": [ + [ + 120, + 57, + 189, + 6, + 6, + 0, + 0, + 0 + ], + [ + 125, + 30, + 130, + 10, + 1, + 0, + 0, + 0 + ], + [ + 130, + 10, + 188, + 10, + 6, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3runyS2SKFySo12NSFileHandleCcfU0_", + "count": 45264, + "regions": [ + [ + 141, + 62, + 147, + 10, + 45264, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3runyS2SKFySo12NSFileHandleCcfU0_yycfU_", + "count": 45264, + "regions": [ + [ + 143, + 34, + 146, + 14, + 45264, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3runyS2SKFySo12NSFileHandleCcfU1_", + "count": 45333, + "regions": [ + [ + 148, + 61, + 154, + 10, + 45333, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3runyS2SKFySo12NSFileHandleCcfU1_yycfU_", + "count": 45333, + "regions": [ + [ + 150, + 34, + 153, + 14, + 45333, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3runyS2SKFSSyKXEfU3_", + "count": 6, + "regions": [ + [ + 176, + 40, + 188, + 10, + 6, + 0, + 0, + 0 + ], + [ + 177, + 55, + 183, + 14, + 2, + 0, + 0, + 0 + ], + [ + 179, + 73, + 181, + 18, + 2, + 0, + 0, + 0 + ], + [ + 181, + 18, + 182, + 82, + 2, + 0, + 0, + 0 + ], + [ + 183, + 14, + 188, + 10, + 4, + 0, + 0, + 0 + ], + [ + 184, + 79, + 186, + 14, + 0, + 0, + 0, + 0 + ], + [ + 186, + 14, + 187, + 60, + 4, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3run_10completionySS_ySSSg_s5Error_pSgtctF", + "count": 1, + "regions": [ + [ + 200, + 91, + 211, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s5ShellAAC3run_10completionySS_ySSSg_s5Error_pSgtctFyycfU_", + "count": 1, + "regions": [ + [ + 202, + 21, + 210, + 10, + 1, + 0, + 0, + 0 + ], + [ + 203, + 16, + 206, + 14, + 1, + 0, + 0, + 0 + ], + [ + 207, + 19, + 209, + 14, + 0, + 0, + 0, + 0 + ], + [ + 209, + 14, + 210, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Sources/Shell/Shell.swift" + ] + }, + { + "name": "$s10ShellTestsAAC7invalid33_21DCF8B7C6CAF9D6CD4B2CD5C23C2B34LL5error8expectedys5Error_p_SStF", + "count": 0, + "regions": [ + [ + 24, + 63, + 26, + 6, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC6assert33_21DCF8B7C6CAF9D6CD4B2CD5C23C2B34LL4type6result8expectedySS_xxtSQRzlF", + "count": 7, + "regions": [ + [ + 28, + 77, + 30, + 6, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC6assert33_21DCF8B7C6CAF9D6CD4B2CD5C23C2B34LL4type6result8expectedySS_xxtSQRzlFxyKXEfu_", + "count": 7, + "regions": [ + [ + 29, + 24, + 29, + 30, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC6assert33_21DCF8B7C6CAF9D6CD4B2CD5C23C2B34LL4type6result8expectedySS_xxtSQRzlFxyKXEfu0_", + "count": 7, + "regions": [ + [ + 29, + 32, + 29, + 40, + 7, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC6assert33_21DCF8B7C6CAF9D6CD4B2CD5C23C2B34LL4type6result8expectedySS_xxtSQRzlFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 29, + 42, + 29, + 96, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC10testOutputyyKF", + "count": 1, + "regions": [ + [ + 34, + 30, + 38, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC9testErroryyF", + "count": 1, + "regions": [ + [ + 40, + 22, + 60, + 6, + 1, + 0, + 0, + 0 + ], + [ + 41, + 12, + 44, + 10, + 1, + 0, + 0, + 0 + ], + [ + 45, + 39, + 56, + 10, + 1, + 0, + 0, + 0 + ], + [ + 51, + 13, + 52, + 76, + 1, + 0, + 0, + 0 + ], + [ + 53, + 13, + 54, + 88, + 0, + 0, + 0, + 0 + ], + [ + 55, + 14, + 56, + 10, + 1, + 0, + 0, + 0 + ], + [ + 57, + 15, + 59, + 10, + 0, + 0, + 0, + 0 + ], + [ + 59, + 10, + 60, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC9testErroryyFSiyKXEfu_", + "count": 1, + "regions": [ + [ + 52, + 35, + 52, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC9testErroryyFSiyKXEfu0_", + "count": 1, + "regions": [ + [ + 52, + 41, + 52, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC9testErroryyFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 52, + 44, + 52, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC15testEnvironmentyyKF", + "count": 1, + "regions": [ + [ + 62, + 35, + 69, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC17testOutputHandleryyKF", + "count": 1, + "regions": [ + [ + 72, + 37, + 84, + 6, + 1, + 0, + 0, + 0 + ], + [ + 79, + 118, + 81, + 10, + 0, + 0, + 0, + 0 + ], + [ + 81, + 10, + 84, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC16testErrorHandleryyKF", + "count": 1, + "regions": [ + [ + 86, + 36, + 110, + 6, + 1, + 0, + 0, + 0 + ], + [ + 91, + 12, + 93, + 10, + 1, + 0, + 0, + 0 + ], + [ + 94, + 39, + 106, + 10, + 1, + 0, + 0, + 0 + ], + [ + 96, + 13, + 102, + 120, + 1, + 0, + 0, + 0 + ], + [ + 98, + 90, + 100, + 18, + 0, + 0, + 0, + 0 + ], + [ + 100, + 18, + 102, + 120, + 1, + 0, + 0, + 0 + ], + [ + 103, + 13, + 104, + 88, + 0, + 0, + 0, + 0 + ], + [ + 105, + 14, + 106, + 10, + 1, + 0, + 0, + 0 + ], + [ + 107, + 15, + 109, + 10, + 0, + 0, + 0, + 0 + ], + [ + 109, + 10, + 110, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC16testErrorHandleryyKFSiyKXEfu_", + "count": 1, + "regions": [ + [ + 101, + 35, + 101, + 39, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC16testErrorHandleryyKFSiyKXEfu0_", + "count": 1, + "regions": [ + [ + 101, + 41, + 101, + 42, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC16testErrorHandleryyKFSSyXEfu1_", + "count": 0, + "regions": [ + [ + 101, + 44, + 101, + 75, + 0, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC12testAsyncRunyyF", + "count": 1, + "regions": [ + [ + 112, + 25, + 129, + 6, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + }, + { + "name": "$s10ShellTestsAAC12testAsyncRunyyFySSSg_s5Error_pSgtcfU_", + "count": 1, + "regions": [ + [ + 118, + 30, + 127, + 10, + 1, + 0, + 0, + 0 + ], + [ + 119, + 34, + 121, + 14, + 0, + 0, + 0, + 0 + ], + [ + 121, + 14, + 127, + 10, + 1, + 0, + 0, + 0 + ], + [ + 122, + 44, + 124, + 14, + 0, + 0, + 0, + 0 + ], + [ + 124, + 14, + 127, + 10, + 1, + 0, + 0, + 0 + ] + ], + "filenames": [ + "/Users/tib/Downloads/Shell-master/Tests/ShellTests/ShellTests.swift" + ] + } + ], + "totals": { + "lines": { + "count": 273, + "covered": 252, + "percent": 92 + }, + "functions": { + "count": 34, + "covered": 29, + "percent": 85 + }, + "instantiations": { + "count": 34, + "covered": 29, + "percent": 85 + }, + "regions": { + "count": 72, + "covered": 55, + "notcovered": 17, + "percent": 76 + } + } + } + ] +} \ No newline at end of file diff --git a/Tests/Assets/Shell.json b/Tests/Assets/Shell.json new file mode 100644 index 0000000..cb23c81 --- /dev/null +++ b/Tests/Assets/Shell.json @@ -0,0 +1,78 @@ +{ + "endDate" : 1547924039.8410001, + "children" : [ + { + "endDate" : 1547924039.8410001, + "children" : [ + { + "endDate" : 1547924039.8410001, + "children" : [ + + ], + "startDate" : 1547924037.3429999, + "cases" : [ + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testAsyncRun", + "duration" : 2.1720000000000002 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testEnvironment", + "duration" : 0.065000000000000002 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testError", + "duration" : 0.065000000000000002 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testErrorHandler", + "duration" : 0.066000000000000003 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testOutput", + "duration" : 0.065000000000000002 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testOutputHandler", + "duration" : 0.064000000000000001 + } + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ShellTests" + } + ], + "startDate" : 1547924037.3429999, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "ShellPackageTests.xctest" + } + ], + "startDate" : 1547924037.342, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "success", + "name" : "All tests" +} \ No newline at end of file diff --git a/Tests/Assets/Shell.tests b/Tests/Assets/Shell.tests new file mode 100644 index 0000000..f38a255 --- /dev/null +++ b/Tests/Assets/Shell.tests @@ -0,0 +1,21 @@ +Test Suite 'All tests' started at 2019-01-19 19:53:57.342 +Test Suite 'ShellPackageTests.xctest' started at 2019-01-19 19:53:57.343 +Test Suite 'ShellTests' started at 2019-01-19 19:53:57.343 +Test Case '-[ShellTests.ShellTests testAsyncRun]' started. +Test Case '-[ShellTests.ShellTests testAsyncRun]' passed (2.172 seconds). +Test Case '-[ShellTests.ShellTests testEnvironment]' started. +Test Case '-[ShellTests.ShellTests testEnvironment]' passed (0.065 seconds). +Test Case '-[ShellTests.ShellTests testError]' started. +Test Case '-[ShellTests.ShellTests testError]' passed (0.065 seconds). +Test Case '-[ShellTests.ShellTests testErrorHandler]' started. +Test Case '-[ShellTests.ShellTests testErrorHandler]' passed (0.066 seconds). +Test Case '-[ShellTests.ShellTests testOutput]' started. +Test Case '-[ShellTests.ShellTests testOutput]' passed (0.065 seconds). +Test Case '-[ShellTests.ShellTests testOutputHandler]' started. +Test Case '-[ShellTests.ShellTests testOutputHandler]' passed (0.064 seconds). +Test Suite 'ShellTests' passed at 2019-01-19 19:53:59.841. + Executed 6 tests, with 0 failures (0 unexpected) in 2.498 (2.498) seconds +Test Suite 'ShellPackageTests.xctest' passed at 2019-01-19 19:53:59.841. + Executed 6 tests, with 0 failures (0 unexpected) in 2.498 (2.498) seconds +Test Suite 'All tests' passed at 2019-01-19 19:53:59.841. + Executed 6 tests, with 0 failures (0 unexpected) in 2.498 (2.499) seconds \ No newline at end of file diff --git a/Tests/Assets/ShellFailure.json b/Tests/Assets/ShellFailure.json new file mode 100644 index 0000000..a25bd55 --- /dev/null +++ b/Tests/Assets/ShellFailure.json @@ -0,0 +1,100 @@ +{ + "endDate" : 1547924247.4200001, + "children" : [ + { + "endDate" : 1547924247.4200001, + "children" : [ + { + "endDate" : 1547924247.4200001, + "children" : [ + + ], + "startDate" : 1547924244.888, + "cases" : [ + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testAsyncRun", + "duration" : 2.1429999999999998 + }, + { + "failureInfo" : { + "line" : 33, + "file" : "\/Users\/tib\/Shell\/Tests\/ShellTests\/ShellTests.swift", + "reason" : "XCTAssertEqual failed: (\"Custom bad env variable\") is not equal to (\"Custom env variable\") - Invalid output `Custom bad env variable`, expected `Custom env variable`." + }, + "outcome" : "failure", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testEnvironment", + "duration" : 0.067000000000000004 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testError", + "duration" : 0.064000000000000001 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testErrorHandler", + "duration" : 0.064000000000000001 + }, + { + "failureInfo" : { + "line" : 33, + "file" : "\/Users\/tib\/Shell\/Tests\/ShellTests\/ShellTests.swift", + "reason" : "XCTAssertEqual failed: (\"Hello world!\") is not equal to (\"Hello outside world!\") - Invalid output `Hello world!`, expected `Hello outside world!`." + }, + "outcome" : "failure", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testOutput", + "duration" : 0.064000000000000001 + }, + { + "outcome" : "success", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testOutputHandler", + "duration" : 0.064000000000000001 + }, + { + "failureInfo" : { + "line" : 0, + "file" : "", + "reason" : "failed: caught error: The operation couldn’t be completed. (Shell.ShellError error 0.)" + }, + "outcome" : "failure", + "className" : "ShellTests", + "moduleName" : "ShellTests", + "testName" : "testThrow", + "duration" : 0.066000000000000003 + } + ], + "unexpected" : 1, + "outcome" : "failure", + "name" : "ShellTests" + } + ], + "startDate" : 1547924244.888, + "cases" : [ + + ], + "unexpected" : 1, + "outcome" : "failure", + "name" : "ShellPackageTests.xctest" + } + ], + "startDate" : 1547924244.888, + "cases" : [ + + ], + "unexpected" : 1, + "outcome" : "failure", + "name" : "All tests" +} \ No newline at end of file diff --git a/Tests/Assets/ShellFailure.tests b/Tests/Assets/ShellFailure.tests new file mode 100644 index 0000000..a2e3411 --- /dev/null +++ b/Tests/Assets/ShellFailure.tests @@ -0,0 +1,26 @@ +Test Suite 'All tests' started at 2019-01-19 19:57:24.888 +Test Suite 'ShellPackageTests.xctest' started at 2019-01-19 19:57:24.888 +Test Suite 'ShellTests' started at 2019-01-19 19:57:24.888 +Test Case '-[ShellTests.ShellTests testAsyncRun]' started. +Test Case '-[ShellTests.ShellTests testAsyncRun]' passed (2.143 seconds). +Test Case '-[ShellTests.ShellTests testEnvironment]' started. +/Users/tib/Shell/Tests/ShellTests/ShellTests.swift:33: error: -[ShellTests.ShellTests testEnvironment] : XCTAssertEqual failed: ("Custom bad env variable") is not equal to ("Custom env variable") - Invalid output `Custom bad env variable`, expected `Custom env variable`. +Test Case '-[ShellTests.ShellTests testEnvironment]' failed (0.067 seconds). +Test Case '-[ShellTests.ShellTests testError]' started. +Test Case '-[ShellTests.ShellTests testError]' passed (0.064 seconds). +Test Case '-[ShellTests.ShellTests testErrorHandler]' started. +Test Case '-[ShellTests.ShellTests testErrorHandler]' passed (0.064 seconds). +Test Case '-[ShellTests.ShellTests testOutput]' started. +/Users/tib/Shell/Tests/ShellTests/ShellTests.swift:33: error: -[ShellTests.ShellTests testOutput] : XCTAssertEqual failed: ("Hello world!") is not equal to ("Hello outside world!") - Invalid output `Hello world!`, expected `Hello outside world!`. +Test Case '-[ShellTests.ShellTests testOutput]' failed (0.064 seconds). +Test Case '-[ShellTests.ShellTests testOutputHandler]' started. +Test Case '-[ShellTests.ShellTests testOutputHandler]' passed (0.064 seconds). +Test Case '-[ShellTests.ShellTests testThrow]' started. +:0: error: -[ShellTests.ShellTests testThrow] : failed: caught error: The operation couldn’t be completed. (Shell.ShellError error 0.) +Test Case '-[ShellTests.ShellTests testThrow]' failed (0.066 seconds). +Test Suite 'ShellTests' failed at 2019-01-19 19:57:27.420. + Executed 7 tests, with 3 failures (1 unexpected) in 2.531 (2.532) seconds +Test Suite 'ShellPackageTests.xctest' failed at 2019-01-19 19:57:27.420. + Executed 7 tests, with 3 failures (1 unexpected) in 2.531 (2.532) seconds +Test Suite 'All tests' failed at 2019-01-19 19:57:27.420. + Executed 7 tests, with 3 failures (1 unexpected) in 2.531 (2.532) seconds \ No newline at end of file diff --git a/Tests/Assets/ShellOutFailure.json b/Tests/Assets/ShellOutFailure.json new file mode 100644 index 0000000..20ef029 --- /dev/null +++ b/Tests/Assets/ShellOutFailure.json @@ -0,0 +1,149 @@ +{ + "endDate" : 1547899721.1240001, + "children" : [ + { + "endDate" : 1547899721.1240001, + "children" : [ + { + "endDate" : 1547899721.1240001, + "children" : [ + + ], + "startDate" : 1547899714.9300001, + "cases" : [ + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testCapturingErrorWithHandle", + "duration" : 0.26900000000000002 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testCapturingOutputWithHandle", + "duration" : 0.185 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testErrorDescription", + "duration" : 0.001 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testGitCommands", + "duration" : 1.833 + }, + { + "failureInfo" : { + "line" : 50, + "file" : "\/Users\/tib\/Downloads\/ShellOut-master\/Tests\/ShellOutTests\/ShellOutTests.swift", + "reason" : "XCTAssertEqual failed: (\"Helloworld\") is not equal to (\"Hellowdorld\")" + }, + "outcome" : "failure", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testSeriesOfCommands", + "duration" : 0.16900000000000001 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testSeriesOfCommandsAtPath", + "duration" : 0.34499999999999997 + }, + { + "failureInfo" : { + "line" : 32, + "file" : "\/Users\/tib\/Downloads\/ShellOut-master\/Tests\/ShellOutTests\/ShellOutTests.swift", + "reason" : "XCTAssertEqual failed: (\"Hello\") is not equal to (\"Heallo\")" + }, + "outcome" : "failure", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testSingleCommandAtPath", + "duration" : 0.33600000000000002 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testSingleCommandAtPathContainingSpace", + "duration" : 0.52500000000000002 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testSingleCommandAtPathContainingTilde", + "duration" : 0.16500000000000001 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testSwiftPackageManagerCommands", + "duration" : 1.665 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testThrowingError", + "duration" : 0.188 + }, + { + "failureInfo" : { + "line" : 18, + "file" : "\/Users\/tib\/Downloads\/ShellOut-master\/Tests\/ShellOutTests\/ShellOutTests.swift", + "reason" : "XCTAssertEqual failed: (\"Hello world\") is not equal to (\"Hello worldd\")" + }, + "outcome" : "failure", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testWithArguments", + "duration" : 0.17999999999999999 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testWithInlineArguments", + "duration" : 0.159 + }, + { + "outcome" : "success", + "className" : "ShellOutTests", + "moduleName" : "ShellOutTests", + "testName" : "testWithoutArguments", + "duration" : 0.17199999999999999 + } + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "ShellOutTests" + } + ], + "startDate" : 1547899714.9289999, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "ShellOutPackageTests.xctest" + } + ], + "startDate" : 1547899714.9289999, + "cases" : [ + + ], + "unexpected" : 0, + "outcome" : "failure", + "name" : "All tests" +} \ No newline at end of file diff --git a/Tests/Assets/ShellOutFailure.tests b/Tests/Assets/ShellOutFailure.tests new file mode 100644 index 0000000..5659bac --- /dev/null +++ b/Tests/Assets/ShellOutFailure.tests @@ -0,0 +1,42 @@ +Test Suite 'All tests' started at 2019-01-19 13:08:34.929 +Test Suite 'ShellOutPackageTests.xctest' started at 2019-01-19 13:08:34.929 +Test Suite 'ShellOutTests' started at 2019-01-19 13:08:34.930 +Test Case '-[ShellOutTests.ShellOutTests testCapturingErrorWithHandle]' started. +Test Case '-[ShellOutTests.ShellOutTests testCapturingErrorWithHandle]' passed (0.269 seconds). +Test Case '-[ShellOutTests.ShellOutTests testCapturingOutputWithHandle]' started. +Test Case '-[ShellOutTests.ShellOutTests testCapturingOutputWithHandle]' passed (0.185 seconds). +Test Case '-[ShellOutTests.ShellOutTests testErrorDescription]' started. +Test Case '-[ShellOutTests.ShellOutTests testErrorDescription]' passed (0.001 seconds). +Test Case '-[ShellOutTests.ShellOutTests testGitCommands]' started. +Test Case '-[ShellOutTests.ShellOutTests testGitCommands]' passed (1.833 seconds). +Test Case '-[ShellOutTests.ShellOutTests testSeriesOfCommands]' started. +/Users/tib/Downloads/ShellOut-master/Tests/ShellOutTests/ShellOutTests.swift:50: error: -[ShellOutTests.ShellOutTests testSeriesOfCommands] : XCTAssertEqual failed: ("Hello +world") is not equal to ("Hello +wdorld") - +Test Case '-[ShellOutTests.ShellOutTests testSeriesOfCommands]' failed (0.169 seconds). +Test Case '-[ShellOutTests.ShellOutTests testSeriesOfCommandsAtPath]' started. +Test Case '-[ShellOutTests.ShellOutTests testSeriesOfCommandsAtPath]' passed (0.345 seconds). +Test Case '-[ShellOutTests.ShellOutTests testSingleCommandAtPath]' started. +/Users/tib/Downloads/ShellOut-master/Tests/ShellOutTests/ShellOutTests.swift:32: error: -[ShellOutTests.ShellOutTests testSingleCommandAtPath] : XCTAssertEqual failed: ("Hello") is not equal to ("Heallo") - +Test Case '-[ShellOutTests.ShellOutTests testSingleCommandAtPath]' failed (0.336 seconds). +Test Case '-[ShellOutTests.ShellOutTests testSingleCommandAtPathContainingSpace]' started. +Test Case '-[ShellOutTests.ShellOutTests testSingleCommandAtPathContainingSpace]' passed (0.525 seconds). +Test Case '-[ShellOutTests.ShellOutTests testSingleCommandAtPathContainingTilde]' started. +Test Case '-[ShellOutTests.ShellOutTests testSingleCommandAtPathContainingTilde]' passed (0.165 seconds). +Test Case '-[ShellOutTests.ShellOutTests testSwiftPackageManagerCommands]' started. +Test Case '-[ShellOutTests.ShellOutTests testSwiftPackageManagerCommands]' passed (1.665 seconds). +Test Case '-[ShellOutTests.ShellOutTests testThrowingError]' started. +Test Case '-[ShellOutTests.ShellOutTests testThrowingError]' passed (0.188 seconds). +Test Case '-[ShellOutTests.ShellOutTests testWithArguments]' started. +/Users/tib/Downloads/ShellOut-master/Tests/ShellOutTests/ShellOutTests.swift:18: error: -[ShellOutTests.ShellOutTests testWithArguments] : XCTAssertEqual failed: ("Hello world") is not equal to ("Hello worldd") - +Test Case '-[ShellOutTests.ShellOutTests testWithArguments]' failed (0.180 seconds). +Test Case '-[ShellOutTests.ShellOutTests testWithInlineArguments]' started. +Test Case '-[ShellOutTests.ShellOutTests testWithInlineArguments]' passed (0.159 seconds). +Test Case '-[ShellOutTests.ShellOutTests testWithoutArguments]' started. +Test Case '-[ShellOutTests.ShellOutTests testWithoutArguments]' passed (0.172 seconds). +Test Suite 'ShellOutTests' failed at 2019-01-19 13:08:41.124. +Executed 14 tests, with 3 failures (0 unexpected) in 6.193 (6.194) seconds +Test Suite 'ShellOutPackageTests.xctest' failed at 2019-01-19 13:08:41.124. +Executed 14 tests, with 3 failures (0 unexpected) in 6.193 (6.194) seconds +Test Suite 'All tests' failed at 2019-01-19 13:08:41.124. +Executed 14 tests, with 3 failures (0 unexpected) in 6.193 (6.194) seconds \ No newline at end of file diff --git a/Tests/LinuxMain.swift b/Tests/LinuxMain.swift new file mode 100644 index 0000000..146572f --- /dev/null +++ b/Tests/LinuxMain.swift @@ -0,0 +1,7 @@ +import XCTest + +import TestifyTests + +var tests = [XCTestCaseEntry]() +tests += TestifyTests.allTests() +XCTMain(tests) \ No newline at end of file diff --git a/Tests/TestifyTests/TestifyTests.swift b/Tests/TestifyTests/TestifyTests.swift new file mode 100644 index 0000000..12d87af --- /dev/null +++ b/Tests/TestifyTests/TestifyTests.swift @@ -0,0 +1,59 @@ +import XCTest +@testable import Testify + +final class TestifyTests: XCTestCase { + + static var allTests = [ + ("testTests", testTests), + ] + + func testTests() throws { + + let testFiles = [ + "PromiseUnexpectedFailure", + "PromiseFailure", + "ShellOutFailure", + "Shell", + "ShellFailure", + "Alamofire", + "Kitura", + ] + + let packageRootPath = URL(fileURLWithPath: #file) + .pathComponents + .prefix(while: { $0 != "Tests" }) + .joined(separator: "/") + .dropFirst() + + let assetsUrl = URL(fileURLWithPath: String(packageRootPath)).appendingPathComponent("Tests") + .appendingPathComponent("Assets") + + for file in testFiles { + let testUrl = assetsUrl.appendingPathComponent(file) + .appendingPathExtension("tests") + let jsonUrl = assetsUrl.appendingPathComponent(file) + .appendingPathExtension("json") + + let testData = try Data(contentsOf: testUrl) + guard let testOutput = String(data: testData, encoding: .utf8) else { + return XCTFail("Could not decode test data.") + } + let resultData = try Data(contentsOf: jsonUrl) + let suite = TestSuite.parse(testOutput) + + let decoder = JSONDecoder() + decoder.dateDecodingStrategy = .secondsSince1970 + let expectation = try decoder.decode(TestSuite.self, from: resultData) + + XCTAssertTrue(self.checkIsEqual(suite, expectation), "Invalid case count for \(file).") + } + } + + //@TODO: proper equation checking, for now I'm ok with this... ¯\_(ツ)_/¯ + func checkIsEqual(_ testSuite1: TestSuite, _ testSuite2: TestSuite) -> Bool { + return testSuite1.name == testSuite2.name && + testSuite1.outcome == testSuite2.outcome && + testSuite1.cases.count == testSuite2.cases.count && + testSuite1.children.count == testSuite2.children.count + } +} diff --git a/Tests/TestifyTests/XCTestManifests.swift b/Tests/TestifyTests/XCTestManifests.swift new file mode 100644 index 0000000..0ae5b6f --- /dev/null +++ b/Tests/TestifyTests/XCTestManifests.swift @@ -0,0 +1,9 @@ +import XCTest + +#if !os(macOS) +public func allTests() -> [XCTestCaseEntry] { + return [ + testCase(TestifyTests.allTests), + ] +} +#endif \ No newline at end of file