[
  {
    "path": ".gitignore",
    "content": "xcuserdata\n*.xctimeline\n*.xccheckout\n*.xcscmblueprint\n*.mode2v3\n*.pbxuser\n(*)/\n.DS_Store\nCarthage/\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: swift\nosx_image: xcode10.2\nscript: xcodebuild -sdk iphonesimulator12.2 -destination 'platform=iOS Simulator,name=iPhone 8,OS=12.2' -project Project\\ Files/OrderedSet.xcodeproj -scheme OrderedSet build test\n"
  },
  {
    "path": "Framework/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>FMWK</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>3.0.1</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(CURRENT_PROJECT_VERSION)</string>\n\t<key>NSHumanReadableCopyright</key>\n\t<string>Copyright © 2016 Weebly. All rights reserved.</string>\n\t<key>NSPrincipalClass</key>\n\t<string></string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Framework/OrderedSet.h",
    "content": "//\n//  OrderedSet.h\n//  OrderedSet\n//\n//  Created by Torsten Louland on 26/11/2016.\n//  Copyright © 2016 Weebly. All rights reserved.\n//\n\n#import <Foundation/Foundation.h>\n\nFOUNDATION_EXPORT double OrderedSetVersionNumber;\nFOUNDATION_EXPORT const unsigned char OrderedSetVersionString[];\n"
  },
  {
    "path": "Framework/PrivacyInfo.xcprivacy",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>NSPrivacyCollectedDataTypes</key>\n\t<array/>\n\t<key>NSPrivacyAccessedAPITypes</key>\n\t<array/>\n\t<key>NSPrivacyTrackingDomains</key>\n\t<array/>\n\t<key>NSPrivacyTracking</key>\n\t<false/>\n</dict>\n</plist>\n"
  },
  {
    "path": "LICENSE",
    "content": "Copyright (c) 2015, Weebly\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.m of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of Weebly nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL Weebly, Inc BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n\n"
  },
  {
    "path": "OrderedSet.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name         = \"OrderedSet\"\n  s.version      = \"6.0.3\"\n  s.summary      = \"A Swift implementation of an OrderedSet.\"\n\n  s.description  = <<-DESC\n                   NSOrderedSet is great and all, but you can't stuff enums and structs into it, and it\n\t\t   lacks the mutability constraints that other collection types in Swift through var and let.\n\t\t   Introducing OrderedSet, a wholly-Swift implementation of the common ordered, unique collection!\n                   DESC\n\n  s.homepage     = \"https://github.com/Weebly/OrderedSet\"\n\n  s.license      = { :type => \"MIT\", :file => \"LICENSE\" }\n\n  s.author             = { \"Jace Conflenti\" => \"jace@squareup.com\" }\n  s.social_media_url   = \"http://twitter.com/ketzusaka\"\n\n  s.ios.deployment_target = \"12.0\"\n  s.osx.deployment_target = \"10.13\"\n  s.tvos.deployment_target = \"12.0\"\n  s.watchos.deployment_target = \"5.2\"\n\n  s.swift_version = '5.0'\n  s.source       = { :git => \"https://github.com/Weebly/OrderedSet.git\", :tag => \"v6.0.3\" }\n  s.resource_bundles = {'OrderedSet_privacy' => ['Framework/PrivacyInfo.xcprivacy']}\n  s.requires_arc = true\n  s.source_files  = \"Sources/*.{swift}\"\nend\n"
  },
  {
    "path": "Package.swift",
    "content": "// swift-tools-version:4.2\n\nimport PackageDescription\n\nlet package = Package(\n    name: \"OrderedSet\",\n    products: [.library(name: \"OrderedSet\", targets: [\"OrderedSet\"])],\n    targets: [.target(name: \"OrderedSet\", path: \"Sources\")]\n)\n"
  },
  {
    "path": "Project Files/OrderedSet/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  OrderedSet\n//\n//  Created by James Richard on 1/6/15.\n//  Copyright (c) 2015 Weebly. \n//\n\nimport UIKit\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n\n    internal func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {\n        // Override point for customization after application launch.\n        return true\n    }\n}\n"
  },
  {
    "path": "Project Files/OrderedSet/Base.lproj/LaunchScreen.xib",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.XIB\" version=\"3.0\" toolsVersion=\"6214\" systemVersion=\"14A314h\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"6207\"/>\n        <capability name=\"Constraints with non-1.0 multipliers\" minToolsVersion=\"5.1\"/>\n    </dependencies>\n    <objects>\n        <placeholder placeholderIdentifier=\"IBFilesOwner\" id=\"-1\" userLabel=\"File's Owner\"/>\n        <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"-2\" customClass=\"UIResponder\"/>\n        <view contentMode=\"scaleToFill\" id=\"iN0-l3-epB\">\n            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"480\" height=\"480\"/>\n            <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n            <subviews>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"  Copyright (c) 2015 Weebly. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"9\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8ie-xW-0ye\">\n                    <rect key=\"frame\" x=\"20\" y=\"439\" width=\"441\" height=\"21\"/>\n                    <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n                <label opaque=\"NO\" clipsSubviews=\"YES\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"OrderedSet\" textAlignment=\"center\" lineBreakMode=\"middleTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"18\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"kId-c2-rCX\">\n                    <rect key=\"frame\" x=\"20\" y=\"140\" width=\"441\" height=\"43\"/>\n                    <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"36\"/>\n                    <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                    <nil key=\"highlightedColor\"/>\n                </label>\n            </subviews>\n            <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n            <constraints>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"centerY\" secondItem=\"iN0-l3-epB\" secondAttribute=\"bottom\" multiplier=\"1/3\" constant=\"1\" id=\"5cJ-9S-tgC\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"kId-c2-rCX\" secondAttribute=\"centerX\" id=\"Koa-jz-hwk\"/>\n                <constraint firstAttribute=\"bottom\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"bottom\" constant=\"20\" id=\"Kzo-t9-V3l\"/>\n                <constraint firstItem=\"8ie-xW-0ye\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"MfP-vx-nX0\"/>\n                <constraint firstAttribute=\"centerX\" secondItem=\"8ie-xW-0ye\" secondAttribute=\"centerX\" id=\"ZEH-qu-HZ9\"/>\n                <constraint firstItem=\"kId-c2-rCX\" firstAttribute=\"leading\" secondItem=\"iN0-l3-epB\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"fvb-Df-36g\"/>\n            </constraints>\n            <nil key=\"simulatedStatusBarMetrics\"/>\n            <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n            <point key=\"canvasLocation\" x=\"548\" y=\"455\"/>\n        </view>\n    </objects>\n</document>\n"
  },
  {
    "path": "Project Files/OrderedSet/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"6254\" systemVersion=\"14C78c\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" initialViewController=\"rS3-R9-Ivy\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"6247\"/>\n    </dependencies>\n    <scenes>\n        <!--Master-->\n        <scene sceneID=\"cUi-kZ-frf\">\n            <objects>\n                <navigationController title=\"Master\" id=\"rS3-R9-Ivy\" sceneMemberID=\"viewController\">\n                    <navigationBar key=\"navigationBar\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"scaleToFill\" id=\"yXu-0R-QUA\">\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                    </navigationBar>\n                    <connections>\n                        <segue destination=\"pGg-6v-bdr\" kind=\"relationship\" relationship=\"rootViewController\" id=\"RxB-wf-QIq\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"eq9-QA-ai8\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"-148\" y=\"64\"/>\n        </scene>\n        <!--Master-->\n        <scene sceneID=\"VgW-fR-Quf\">\n            <objects>\n                <tableViewController title=\"Master\" id=\"pGg-6v-bdr\" customClass=\"MasterViewController\" customModule=\"OrderedSet\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" opaque=\"NO\" clipsSubviews=\"YES\" clearsContextBeforeDrawing=\"NO\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"22\" sectionFooterHeight=\"22\" id=\"mLL-gJ-YKr\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"600\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                        <prototypes>\n                            <tableViewCell contentMode=\"scaleToFill\" selectionStyle=\"blue\" accessoryType=\"disclosureIndicator\" hidesAccessoryWhenEditing=\"NO\" indentationLevel=\"1\" indentationWidth=\"0.0\" reuseIdentifier=\"Cell\" textLabel=\"2pz-XF-uhl\" style=\"IBUITableViewCellStyleDefault\" id=\"m0d-ak-lc9\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"86\" width=\"320\" height=\"44\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"m0d-ak-lc9\" id=\"d3P-M7-ByW\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"287\" height=\"43\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <label opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" text=\"Title\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" id=\"2pz-XF-uhl\">\n                                            <rect key=\"frame\" x=\"15\" y=\"0.0\" width=\"270\" height=\"43\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"20\"/>\n                                            <color key=\"textColor\" cocoaTouchSystemColor=\"darkTextColor\"/>\n                                            <color key=\"highlightedColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"calibratedRGB\"/>\n                                        </label>\n                                    </subviews>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"calibratedWhite\"/>\n                            </tableViewCell>\n                        </prototypes>\n                        <sections/>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"pGg-6v-bdr\" id=\"P41-gY-KXY\"/>\n                            <outlet property=\"delegate\" destination=\"pGg-6v-bdr\" id=\"Y6K-Cp-Qkv\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" title=\"Master\" id=\"tQt-TN-PWz\"/>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"6Cn-md-YlS\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"605\" y=\"64\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "Project Files/OrderedSet/Images.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "Project Files/OrderedSet/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>APPL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>3.0.1</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>2</string>\n\t<key>LSRequiresIPhoneOS</key>\n\t<true/>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n\t<key>UIRequiredDeviceCapabilities</key>\n\t<array>\n\t\t<string>armv7</string>\n\t</array>\n\t<key>UIStatusBarTintParameters</key>\n\t<dict>\n\t\t<key>UINavigationBar</key>\n\t\t<dict>\n\t\t\t<key>Style</key>\n\t\t\t<string>UIBarStyleDefault</string>\n\t\t\t<key>Translucent</key>\n\t\t\t<false/>\n\t\t</dict>\n\t</dict>\n\t<key>UISupportedInterfaceOrientations</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "Project Files/OrderedSet/MasterViewController.swift",
    "content": "//\n//  MasterViewController.swift\n//  OrderedSet\n//\n//  Created by James Richard on 1/6/15.\n//  Copyright (c) 2015 Weebly.\n//\n\nimport UIKit\n\nclass MasterViewController: UITableViewController {\n\n    var objects = OrderedSet<Date>()\n\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        // Do any additional setup after loading the view, typically from a nib.\n        self.navigationItem.leftBarButtonItem = self.editButtonItem\n\n        let addButton = UIBarButtonItem(barButtonSystemItem: .add, target: self, action: #selector(MasterViewController.insertNewObject(_:)))\n        self.navigationItem.rightBarButtonItem = addButton\n    }\n\n    @objc func insertNewObject(_ sender: AnyObject) {\n        objects.insert(Date(), at: 0)\n        let indexPath = IndexPath(row: 0, section: 0)\n        self.tableView.insertRows(at: [indexPath], with: .automatic)\n    }\n\n    // MARK: - Table View\n\n    override func numberOfSections(in tableView: UITableView) -> Int {\n        return 1\n    }\n\n    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {\n        return objects.count\n    }\n\n    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n        let cell = tableView.dequeueReusableCell(withIdentifier: \"Cell\", for: indexPath) as UITableViewCell\n\n        let object = objects[(indexPath as NSIndexPath).row] as Date\n        cell.textLabel!.text = object.description\n        return cell\n    }\n\n    override func tableView(_ tableView: UITableView, canEditRowAt indexPath: IndexPath) -> Bool {\n        // Return false if you do not want the specified item to be editable.\n        return true\n    }\n\n    override func tableView(_ tableView: UITableView, commit editingStyle: UITableViewCell.EditingStyle, forRowAt indexPath: IndexPath) {\n        if editingStyle == .delete {\n            objects.removeObject(at: indexPath.row)\n            tableView.deleteRows(at: [indexPath], with: .fade)\n        }\n    }\n}\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 54;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t0319D6592BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */; };\n\t\t0319D65A2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */; };\n\t\t0319D65B2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */; };\n\t\t0319D65C2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */; };\n\t\t0319D65D2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */ = {isa = PBXBuildFile; fileRef = 0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */; };\n\t\t1A15ED131A5DC30B00D40BDD /* OrderedSet_Tests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1A15ED121A5DC30B00D40BDD /* OrderedSet_Tests.swift */; };\n\t\t1ABC4FBD1A5C966200DC4F4D /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC4FBC1A5C966200DC4F4D /* AppDelegate.swift */; };\n\t\t1ABC4FBF1A5C966200DC4F4D /* MasterViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC4FBE1A5C966200DC4F4D /* MasterViewController.swift */; };\n\t\t1ABC4FC41A5C966200DC4F4D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 1ABC4FC21A5C966200DC4F4D /* Main.storyboard */; };\n\t\t1ABC4FC61A5C966200DC4F4D /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 1ABC4FC51A5C966200DC4F4D /* Images.xcassets */; };\n\t\t1ABC4FC91A5C966200DC4F4D /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 1ABC4FC71A5C966200DC4F4D /* LaunchScreen.xib */; };\n\t\t1ABC4FDF1A5C97F500DC4F4D /* OrderedSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC4FDE1A5C97F500DC4F4D /* OrderedSet.swift */; };\n\t\t1AD4D0AC20C0E6A2008B34B1 /* OrderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBBEBB01DE9B371005525DE /* OrderedSet.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t1AF415F220C0E8D30030FC7F /* OrderedSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC4FDE1A5C97F500DC4F4D /* OrderedSet.swift */; };\n\t\tAEBBEBB21DE9B371005525DE /* OrderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBBEBB01DE9B371005525DE /* OrderedSet.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEBBEBB61DE9B4E5005525DE /* OrderedSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC4FDE1A5C97F500DC4F4D /* OrderedSet.swift */; };\n\t\tAEBBEBC41DE9B852005525DE /* OrderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AEBBEBB01DE9B371005525DE /* OrderedSet.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\tAEBBEBC51DE9B859005525DE /* OrderedSet.swift in Sources */ = {isa = PBXBuildFile; fileRef = 1ABC4FDE1A5C97F500DC4F4D /* OrderedSet.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t1ABC4FCF1A5C966200DC4F4D /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 1ABC4FAF1A5C966200DC4F4D /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 1ABC4FB61A5C966200DC4F4D;\n\t\t\tremoteInfo = OrderedSet;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\t0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xml; path = PrivacyInfo.xcprivacy; sourceTree = \"<group>\"; };\n\t\t1A15ED121A5DC30B00D40BDD /* OrderedSet_Tests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = OrderedSet_Tests.swift; sourceTree = \"<group>\"; };\n\t\t1A6B154022B5C095006F3A5C /* OrderedSet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OrderedSet.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t1ABC4FB71A5C966200DC4F4D /* OrderedSet.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = OrderedSet.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t1ABC4FBB1A5C966200DC4F4D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t1ABC4FBC1A5C966200DC4F4D /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t1ABC4FBE1A5C966200DC4F4D /* MasterViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = MasterViewController.swift; sourceTree = \"<group>\"; };\n\t\t1ABC4FC31A5C966200DC4F4D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t1ABC4FC51A5C966200DC4F4D /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = \"<group>\"; };\n\t\t1ABC4FC81A5C966200DC4F4D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = \"<group>\"; };\n\t\t1ABC4FCE1A5C966200DC4F4D /* OrderedSetTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = OrderedSetTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t1ABC4FD31A5C966200DC4F4D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t1ABC4FDE1A5C97F500DC4F4D /* OrderedSet.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; name = OrderedSet.swift; path = ../../Sources/OrderedSet.swift; sourceTree = \"<group>\"; };\n\t\t1AD4D0A420C0E61C008B34B1 /* OrderedSet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OrderedSet.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tAEBBEBAE1DE9B371005525DE /* OrderedSet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OrderedSet.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tAEBBEBB01DE9B371005525DE /* OrderedSet.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = OrderedSet.h; sourceTree = \"<group>\"; };\n\t\tAEBBEBB11DE9B371005525DE /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tAEBBEBBC1DE9B78F005525DE /* OrderedSet.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = OrderedSet.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t1A6B153D22B5C095006F3A5C /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1ABC4FB41A5C966200DC4F4D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1ABC4FCB1A5C966200DC4F4D /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1AD4D0A020C0E61C008B34B1 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBAA1DE9B371005525DE /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBB81DE9B78F005525DE /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t1ABC4FAE1A5C966200DC4F4D = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FB91A5C966200DC4F4D /* OrderedSet */,\n\t\t\t\t1ABC4FD11A5C966200DC4F4D /* OrderedSetTests */,\n\t\t\t\tAEBBEBAF1DE9B371005525DE /* Framework Support */,\n\t\t\t\t1ABC4FB81A5C966200DC4F4D /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1ABC4FB81A5C966200DC4F4D /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FB71A5C966200DC4F4D /* OrderedSet.app */,\n\t\t\t\t1ABC4FCE1A5C966200DC4F4D /* OrderedSetTests.xctest */,\n\t\t\t\tAEBBEBAE1DE9B371005525DE /* OrderedSet.framework */,\n\t\t\t\tAEBBEBBC1DE9B78F005525DE /* OrderedSet.framework */,\n\t\t\t\t1AD4D0A420C0E61C008B34B1 /* OrderedSet.framework */,\n\t\t\t\t1A6B154022B5C095006F3A5C /* OrderedSet.framework */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1ABC4FB91A5C966200DC4F4D /* OrderedSet */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FDE1A5C97F500DC4F4D /* OrderedSet.swift */,\n\t\t\t\t1ABC4FBC1A5C966200DC4F4D /* AppDelegate.swift */,\n\t\t\t\t1ABC4FBE1A5C966200DC4F4D /* MasterViewController.swift */,\n\t\t\t\t1ABC4FC21A5C966200DC4F4D /* Main.storyboard */,\n\t\t\t\t1ABC4FC51A5C966200DC4F4D /* Images.xcassets */,\n\t\t\t\t1ABC4FC71A5C966200DC4F4D /* LaunchScreen.xib */,\n\t\t\t\t1ABC4FBA1A5C966200DC4F4D /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = OrderedSet;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1ABC4FBA1A5C966200DC4F4D /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FBB1A5C966200DC4F4D /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1ABC4FD11A5C966200DC4F4D /* OrderedSetTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1A15ED121A5DC30B00D40BDD /* OrderedSet_Tests.swift */,\n\t\t\t\t1ABC4FD21A5C966200DC4F4D /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = OrderedSetTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1ABC4FD21A5C966200DC4F4D /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FD31A5C966200DC4F4D /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tAEBBEBAF1DE9B371005525DE /* Framework Support */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t0319D6582BD2BA31009E47CE /* PrivacyInfo.xcprivacy */,\n\t\t\t\tAEBBEBB01DE9B371005525DE /* OrderedSet.h */,\n\t\t\t\tAEBBEBB11DE9B371005525DE /* Info.plist */,\n\t\t\t);\n\t\t\tname = \"Framework Support\";\n\t\t\tpath = ../Framework;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t1A6B153B22B5C095006F3A5C /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1AD4D0A120C0E61C008B34B1 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1AD4D0AC20C0E6A2008B34B1 /* OrderedSet.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBAB1DE9B371005525DE /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEBBEBB21DE9B371005525DE /* OrderedSet.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBB91DE9B78F005525DE /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEBBEBC41DE9B852005525DE /* OrderedSet.h in Headers */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXHeadersBuildPhase section */\n\n/* Begin PBXNativeTarget section */\n\t\t1A6B153F22B5C095006F3A5C /* OrderedSet-watchOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 1A6B154722B5C095006F3A5C /* Build configuration list for PBXNativeTarget \"OrderedSet-watchOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t1A6B153B22B5C095006F3A5C /* Headers */,\n\t\t\t\t1A6B153C22B5C095006F3A5C /* Sources */,\n\t\t\t\t1A6B153D22B5C095006F3A5C /* Frameworks */,\n\t\t\t\t1A6B153E22B5C095006F3A5C /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"OrderedSet-watchOS\";\n\t\t\tproductName = \"OrderedSet-watchOS\";\n\t\t\tproductReference = 1A6B154022B5C095006F3A5C /* OrderedSet.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t1ABC4FB61A5C966200DC4F4D /* OrderedSet */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 1ABC4FD81A5C966200DC4F4D /* Build configuration list for PBXNativeTarget \"OrderedSet\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t1ABC4FB31A5C966200DC4F4D /* Sources */,\n\t\t\t\t1ABC4FB41A5C966200DC4F4D /* Frameworks */,\n\t\t\t\t1ABC4FB51A5C966200DC4F4D /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = OrderedSet;\n\t\t\tproductName = OrderedSet;\n\t\t\tproductReference = 1ABC4FB71A5C966200DC4F4D /* OrderedSet.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t1ABC4FCD1A5C966200DC4F4D /* OrderedSetTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 1ABC4FDB1A5C966200DC4F4D /* Build configuration list for PBXNativeTarget \"OrderedSetTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t1ABC4FCA1A5C966200DC4F4D /* Sources */,\n\t\t\t\t1ABC4FCB1A5C966200DC4F4D /* Frameworks */,\n\t\t\t\t1ABC4FCC1A5C966200DC4F4D /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t1ABC4FD01A5C966200DC4F4D /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = OrderedSetTests;\n\t\t\tproductName = OrderedSetTests;\n\t\t\tproductReference = 1ABC4FCE1A5C966200DC4F4D /* OrderedSetTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\t1AD4D0A320C0E61C008B34B1 /* OrderedSet-tvOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 1AD4D0A920C0E61C008B34B1 /* Build configuration list for PBXNativeTarget \"OrderedSet-tvOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t1AD4D09F20C0E61C008B34B1 /* Sources */,\n\t\t\t\t1AD4D0A020C0E61C008B34B1 /* Frameworks */,\n\t\t\t\t1AD4D0A120C0E61C008B34B1 /* Headers */,\n\t\t\t\t1AD4D0A220C0E61C008B34B1 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"OrderedSet-tvOS\";\n\t\t\tproductName = \"OrderedSet-tvOS\";\n\t\t\tproductReference = 1AD4D0A420C0E61C008B34B1 /* OrderedSet.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tAEBBEBAD1DE9B371005525DE /* OrderedSet-iOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = AEBBEBB51DE9B371005525DE /* Build configuration list for PBXNativeTarget \"OrderedSet-iOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tAEBBEBA91DE9B371005525DE /* Sources */,\n\t\t\t\tAEBBEBAA1DE9B371005525DE /* Frameworks */,\n\t\t\t\tAEBBEBAB1DE9B371005525DE /* Headers */,\n\t\t\t\tAEBBEBAC1DE9B371005525DE /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"OrderedSet-iOS\";\n\t\t\tproductName = \"OrderedSet-iOS\";\n\t\t\tproductReference = AEBBEBAE1DE9B371005525DE /* OrderedSet.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\tAEBBEBBB1DE9B78F005525DE /* OrderedSet-macOS */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = AEBBEBC11DE9B78F005525DE /* Build configuration list for PBXNativeTarget \"OrderedSet-macOS\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tAEBBEBB71DE9B78F005525DE /* Sources */,\n\t\t\t\tAEBBEBB81DE9B78F005525DE /* Frameworks */,\n\t\t\t\tAEBBEBB91DE9B78F005525DE /* Headers */,\n\t\t\t\tAEBBEBBA1DE9B78F005525DE /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t);\n\t\t\tname = \"OrderedSet-macOS\";\n\t\t\tproductName = \"OrderedSet-macOS\";\n\t\t\tproductReference = AEBBEBBC1DE9B78F005525DE /* OrderedSet.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t1ABC4FAF1A5C966200DC4F4D /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tBuildIndependentTargetsInParallel = YES;\n\t\t\t\tLastSwiftUpdateCheck = 0710;\n\t\t\t\tLastUpgradeCheck = 1510;\n\t\t\t\tORGANIZATIONNAME = Weebly;\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t1A6B153F22B5C095006F3A5C = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 10.2;\n\t\t\t\t\t\tDevelopmentTeam = 5M378EFHK7;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\t1ABC4FB61A5C966200DC4F4D = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.1.1;\n\t\t\t\t\t\tLastSwiftMigration = 0900;\n\t\t\t\t\t};\n\t\t\t\t\t1ABC4FCD1A5C966200DC4F4D = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 6.1.1;\n\t\t\t\t\t\tLastSwiftMigration = 0900;\n\t\t\t\t\t\tTestTargetID = 1ABC4FB61A5C966200DC4F4D;\n\t\t\t\t\t};\n\t\t\t\t\t1AD4D0A320C0E61C008B34B1 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.3;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\tAEBBEBAD1DE9B371005525DE = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.1;\n\t\t\t\t\t\tLastSwiftMigration = 1020;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t\tAEBBEBBB1DE9B78F005525DE = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.1;\n\t\t\t\t\t\tLastSwiftMigration = 0900;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = 1ABC4FB21A5C966200DC4F4D /* Build configuration list for PBXProject \"OrderedSet\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = en;\n\t\t\thasScannedForEncodings = 0;\n\t\t\tknownRegions = (\n\t\t\t\ten,\n\t\t\t\tBase,\n\t\t\t);\n\t\t\tmainGroup = 1ABC4FAE1A5C966200DC4F4D;\n\t\t\tproductRefGroup = 1ABC4FB81A5C966200DC4F4D /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t1ABC4FB61A5C966200DC4F4D /* OrderedSet */,\n\t\t\t\t1ABC4FCD1A5C966200DC4F4D /* OrderedSetTests */,\n\t\t\t\tAEBBEBAD1DE9B371005525DE /* OrderedSet-iOS */,\n\t\t\t\tAEBBEBBB1DE9B78F005525DE /* OrderedSet-macOS */,\n\t\t\t\t1AD4D0A320C0E61C008B34B1 /* OrderedSet-tvOS */,\n\t\t\t\t1A6B153F22B5C095006F3A5C /* OrderedSet-watchOS */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t1A6B153E22B5C095006F3A5C /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0319D65D2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1ABC4FB51A5C966200DC4F4D /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1ABC4FC41A5C966200DC4F4D /* Main.storyboard in Resources */,\n\t\t\t\t1ABC4FC91A5C966200DC4F4D /* LaunchScreen.xib in Resources */,\n\t\t\t\t0319D6592BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t\t1ABC4FC61A5C966200DC4F4D /* Images.xcassets in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1ABC4FCC1A5C966200DC4F4D /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1AD4D0A220C0E61C008B34B1 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0319D65C2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBAC1DE9B371005525DE /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0319D65A2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBBA1DE9B78F005525DE /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t0319D65B2BD2BA31009E47CE /* PrivacyInfo.xcprivacy in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\t1A6B153C22B5C095006F3A5C /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1ABC4FB31A5C966200DC4F4D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1ABC4FDF1A5C97F500DC4F4D /* OrderedSet.swift in Sources */,\n\t\t\t\t1ABC4FBF1A5C966200DC4F4D /* MasterViewController.swift in Sources */,\n\t\t\t\t1ABC4FBD1A5C966200DC4F4D /* AppDelegate.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1ABC4FCA1A5C966200DC4F4D /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1A15ED131A5DC30B00D40BDD /* OrderedSet_Tests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t1AD4D09F20C0E61C008B34B1 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t1AF415F220C0E8D30030FC7F /* OrderedSet.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBA91DE9B371005525DE /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEBBEBB61DE9B4E5005525DE /* OrderedSet.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tAEBBEBB71DE9B78F005525DE /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tAEBBEBC51DE9B859005525DE /* OrderedSet.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\t1ABC4FD01A5C966200DC4F4D /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 1ABC4FB61A5C966200DC4F4D /* OrderedSet */;\n\t\t\ttargetProxy = 1ABC4FCF1A5C966200DC4F4D /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t1ABC4FC21A5C966200DC4F4D /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FC31A5C966200DC4F4D /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t1ABC4FC71A5C966200DC4F4D /* LaunchScreen.xib */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t1ABC4FC81A5C966200DC4F4D /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.xib;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t1A6B154522B5C095006F3A5C /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = 5M378EFHK7;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu11 gnu++14\";\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = OrderedSet;\n\t\t\t\tSDKROOT = watchos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = 4;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t\tWATCHOS_DEPLOYMENT_TARGET = 5.2;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1A6B154622B5C095006F3A5C /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = 5M378EFHK7;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu11 gnu++14\";\n\t\t\t\tMTL_FAST_MATH = YES;\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = OrderedSet;\n\t\t\t\tSDKROOT = watchos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = 4;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t\tWATCHOS_DEPLOYMENT_TARGET = 5.2;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t1ABC4FD61A5C966200DC4F4D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_DYNAMIC_NO_PIC = NO;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_OPTIMIZATION_LEVEL = 0;\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tGCC_SYMBOLS_PRIVATE_EXTERN = NO;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.13;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = YES;\n\t\t\t\tONLY_ACTIVE_ARCH = YES;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Off;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTVOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tWATCHOS_DEPLOYMENT_TARGET = 5.2;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1ABC4FD71A5C966200DC4F4D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_SEARCH_USER_PATHS = NO;\n\t\t\t\tCLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED = YES;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++0x\";\n\t\t\t\tCLANG_CXX_LIBRARY = \"libc++\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCLANG_ENABLE_OBJC_ARC = YES;\n\t\t\t\tCLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES;\n\t\t\t\tCLANG_WARN_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_COMMA = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES;\n\t\t\t\tCLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;\n\t\t\t\tCLANG_WARN_EMPTY_BODY = YES;\n\t\t\t\tCLANG_WARN_ENUM_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_INFINITE_RECURSION = YES;\n\t\t\t\tCLANG_WARN_INT_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES;\n\t\t\t\tCLANG_WARN_OBJC_LITERAL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;\n\t\t\t\tCLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = YES;\n\t\t\t\tCLANG_WARN_RANGE_LOOP_ANALYSIS = YES;\n\t\t\t\tCLANG_WARN_STRICT_PROTOTYPES = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVE = YES;\n\t\t\t\tCLANG_WARN_UNREACHABLE_CODE = YES;\n\t\t\t\tCLANG_WARN__DUPLICATE_METHOD_MATCH = YES;\n\t\t\t\tCOPY_PHASE_STRIP = YES;\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_USER_SCRIPT_SANDBOXING = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu99;\n\t\t\t\tGCC_NO_COMMON_BLOCKS = YES;\n\t\t\t\tGCC_WARN_64_TO_32_BIT_CONVERSION = YES;\n\t\t\t\tGCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;\n\t\t\t\tGCC_WARN_UNDECLARED_SELECTOR = YES;\n\t\t\t\tGCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;\n\t\t\t\tGCC_WARN_UNUSED_FUNCTION = YES;\n\t\t\t\tGCC_WARN_UNUSED_VARIABLE = YES;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.13;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_COMPILATION_MODE = wholemodule;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-O\";\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Off;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTVOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t\tWATCHOS_DEPLOYMENT_TARGET = 5.2;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t1ABC4FD91A5C966200DC4F4D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tINFOPLIST_FILE = OrderedSet/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"com.Weebly.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1ABC4FDA1A5C966200DC4F4D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tINFOPLIST_FILE = OrderedSet/Info.plist;\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"com.Weebly.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t1ABC4FDC1A5C966200DC4F4D /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tGCC_PREPROCESSOR_DEFINITIONS = (\n\t\t\t\t\t\"DEBUG=1\",\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t);\n\t\t\t\tINFOPLIST_FILE = OrderedSetTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"com.Weebly.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/OrderedSet.app/OrderedSet\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1ABC4FDD1A5C966200DC4F4D /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tINFOPLIST_FILE = OrderedSetTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"com.Weebly.$(PRODUCT_NAME:rfc1034identifier)\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/OrderedSet.app/OrderedSet\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t1AD4D0AA20C0E61C008B34B1 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu11 gnu++14\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = OrderedSet;\n\t\t\t\tSDKROOT = appletvos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tTARGETED_DEVICE_FAMILY = 3;\n\t\t\t\tTVOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t1AD4D0AB20C0E61C008B34B1 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_CXX_LANGUAGE_STANDARD = \"gnu++14\";\n\t\t\t\tCLANG_ENABLE_OBJC_WEAK = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = \"\";\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu11 gnu++14\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = OrderedSet;\n\t\t\t\tSDKROOT = appletvos;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = 3;\n\t\t\t\tTVOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tAEBBEBB31DE9B371005525DE /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tEXCLUDED_ARCHS = \"\";\n\t\t\t\t\"EXCLUDED_ARCHS[sdk=iphonesimulator*]\" = arm64;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu99 gnu++11\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = \"$(PROJECT_NAME)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tAEBBEBB41DE9B371005525DE /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tEXCLUDED_ARCHS = \"\";\n\t\t\t\t\"EXCLUDED_ARCHS[sdk=iphonesimulator*]\" = arm64;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 12.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu99 gnu++11\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = \"$(PROJECT_NAME)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tAEBBEBC21DE9B78F005525DE /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.13;\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu99 gnu++11\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = \"$(PROJECT_NAME)\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Off;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tAEBBEBC31DE9B78F005525DE /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tAPPLICATION_EXTENSION_API_ONLY = YES;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCLANG_WARN_SUSPICIOUS_MOVES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"-\";\n\t\t\t\tCOMBINE_HIDPI_IMAGES = YES;\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEAD_CODE_STRIPPING = YES;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDYLIB_COMPATIBILITY_VERSION = 1;\n\t\t\t\tDYLIB_CURRENT_VERSION = 1;\n\t\t\t\tDYLIB_INSTALL_NAME_BASE = \"@rpath\";\n\t\t\t\tENABLE_MODULE_VERIFIER = YES;\n\t\t\t\tFRAMEWORK_VERSION = A;\n\t\t\t\tINFOPLIST_FILE = ../Framework/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = (\n\t\t\t\t\t\"$(inherited)\",\n\t\t\t\t\t\"@executable_path/../Frameworks\",\n\t\t\t\t\t\"@loader_path/Frameworks\",\n\t\t\t\t);\n\t\t\t\tMACOSX_DEPLOYMENT_TARGET = 10.13;\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGES = \"objective-c objective-c++\";\n\t\t\t\tMODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = \"gnu99 gnu++11\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.Weebly.OrderedSet;\n\t\t\t\tPRODUCT_NAME = \"$(PROJECT_NAME)\";\n\t\t\t\tSDKROOT = macosx;\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_SWIFT3_OBJC_INFERENCE = Off;\n\t\t\t\tVERSIONING_SYSTEM = \"apple-generic\";\n\t\t\t\tVERSION_INFO_PREFIX = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t1A6B154722B5C095006F3A5C /* Build configuration list for PBXNativeTarget \"OrderedSet-watchOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1A6B154522B5C095006F3A5C /* Debug */,\n\t\t\t\t1A6B154622B5C095006F3A5C /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t1ABC4FB21A5C966200DC4F4D /* Build configuration list for PBXProject \"OrderedSet\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1ABC4FD61A5C966200DC4F4D /* Debug */,\n\t\t\t\t1ABC4FD71A5C966200DC4F4D /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t1ABC4FD81A5C966200DC4F4D /* Build configuration list for PBXNativeTarget \"OrderedSet\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1ABC4FD91A5C966200DC4F4D /* Debug */,\n\t\t\t\t1ABC4FDA1A5C966200DC4F4D /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t1ABC4FDB1A5C966200DC4F4D /* Build configuration list for PBXNativeTarget \"OrderedSetTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1ABC4FDC1A5C966200DC4F4D /* Debug */,\n\t\t\t\t1ABC4FDD1A5C966200DC4F4D /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t1AD4D0A920C0E61C008B34B1 /* Build configuration list for PBXNativeTarget \"OrderedSet-tvOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t1AD4D0AA20C0E61C008B34B1 /* Debug */,\n\t\t\t\t1AD4D0AB20C0E61C008B34B1 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tAEBBEBB51DE9B371005525DE /* Build configuration list for PBXNativeTarget \"OrderedSet-iOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tAEBBEBB31DE9B371005525DE /* Debug */,\n\t\t\t\tAEBBEBB41DE9B371005525DE /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tAEBBEBC11DE9B78F005525DE /* Build configuration list for PBXNativeTarget \"OrderedSet-macOS\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tAEBBEBC21DE9B78F005525DE /* Debug */,\n\t\t\t\tAEBBEBC31DE9B78F005525DE /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n/* End XCConfigurationList section */\n\t};\n\trootObject = 1ABC4FAF1A5C966200DC4F4D /* Project object */;\n}\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:OrderedSet.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>IDEDidComputeMac32BitWarning</key>\n\t<true/>\n</dict>\n</plist>\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/xcshareddata/xcschemes/OrderedSet-iOS.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"AEBBEBAD1DE9B371005525DE\"\n               BuildableName = \"OrderedSet.framework\"\n               BlueprintName = \"OrderedSet-iOS\"\n               ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AEBBEBAD1DE9B371005525DE\"\n            BuildableName = \"OrderedSet.framework\"\n            BlueprintName = \"OrderedSet-iOS\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AEBBEBAD1DE9B371005525DE\"\n            BuildableName = \"OrderedSet.framework\"\n            BlueprintName = \"OrderedSet-iOS\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/xcshareddata/xcschemes/OrderedSet-macOS.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"AEBBEBBB1DE9B78F005525DE\"\n               BuildableName = \"OrderedSet.framework\"\n               BlueprintName = \"OrderedSet-macOS\"\n               ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AEBBEBBB1DE9B78F005525DE\"\n            BuildableName = \"OrderedSet.framework\"\n            BlueprintName = \"OrderedSet-macOS\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"AEBBEBBB1DE9B78F005525DE\"\n            BuildableName = \"OrderedSet.framework\"\n            BlueprintName = \"OrderedSet-macOS\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/xcshareddata/xcschemes/OrderedSet-tvOS.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"1AD4D0A320C0E61C008B34B1\"\n               BuildableName = \"OrderedSet.framework\"\n               BlueprintName = \"OrderedSet-tvOS\"\n               ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"1AD4D0A320C0E61C008B34B1\"\n            BuildableName = \"OrderedSet.framework\"\n            BlueprintName = \"OrderedSet-tvOS\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"1AD4D0A320C0E61C008B34B1\"\n            BuildableName = \"OrderedSet.framework\"\n            BlueprintName = \"OrderedSet-tvOS\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Project Files/OrderedSet.xcodeproj/xcshareddata/xcschemes/OrderedSet.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1510\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n      <BuildActionEntries>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"YES\"\n            buildForProfiling = \"YES\"\n            buildForArchiving = \"YES\"\n            buildForAnalyzing = \"YES\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"1ABC4FB61A5C966200DC4F4D\"\n               BuildableName = \"OrderedSet.app\"\n               BlueprintName = \"OrderedSet\"\n               ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n         <BuildActionEntry\n            buildForTesting = \"YES\"\n            buildForRunning = \"NO\"\n            buildForProfiling = \"NO\"\n            buildForArchiving = \"NO\"\n            buildForAnalyzing = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"1ABC4FCD1A5C966200DC4F4D\"\n               BuildableName = \"OrderedSetTests.xctest\"\n               BlueprintName = \"OrderedSetTests\"\n               ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"1ABC4FB61A5C966200DC4F4D\"\n            BuildableName = \"OrderedSet.app\"\n            BlueprintName = \"OrderedSet\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"1ABC4FCD1A5C966200DC4F4D\"\n               BuildableName = \"OrderedSetTests.xctest\"\n               BlueprintName = \"OrderedSetTests\"\n               ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"1ABC4FB61A5C966200DC4F4D\"\n            BuildableName = \"OrderedSet.app\"\n            BlueprintName = \"OrderedSet\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"1ABC4FB61A5C966200DC4F4D\"\n            BuildableName = \"OrderedSet.app\"\n            BlueprintName = \"OrderedSet\"\n            ReferencedContainer = \"container:OrderedSet.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "Project Files/OrderedSetTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "Project Files/OrderedSetTests/OrderedSet_Tests.swift",
    "content": "//\n//  OrderedSet_Tests.swift\n//  Weebly\n//\n//  Created by James Richard on 10/22/14.\n//  Copyright (c) 2014 Weebly. All rights reserved.\n//\n\nimport XCTest\nimport OrderedSet\n\nclass OrderedSet_Tests: XCTestCase {\n\n\t//TODO: add tests for more Swift 2.x default SequenceType and Collection implementations\n    \n    // MARK: Count\n    \n    func testCount_withoutObjects_is0() {\n        let subject = OrderedSet<String>()\n        XCTAssertEqual(subject.count, 0)\n    }\n    \n    // MARK: isEmpty\n    \n    func testIsEmpty_whenEmpty_isTrue() {\n        let subject = OrderedSet<String>()\n        XCTAssertTrue(subject.isEmpty)\n    }\n    \n    func testIsEmpty_whenEmptyNotEmpty_isFalse() {\n        let subject = OrderedSet<String>(sequence: [\"One\"])\n        XCTAssertFalse(subject.isEmpty)\n    }\n\n    // MARK: Append\n    \n    func testAppend_increasesCount() {\n        var subject = OrderedSet<String>()\n        subject.append(\"Test\")\n        XCTAssertEqual(subject.count, 1)\n    }\n\n    func testAppend_withSameObjectTwice_keepsCountAs1() {\n        var subject = OrderedSet<String>()\n        subject.append(\"Test\")\n        subject.append(\"Test\")\n        XCTAssertEqual(subject.count, 1)\n    }\n    \n    // MARK: Subscript\n    \n    func testObjectSubscript_returnsCorrectObject() {\n        var subject = OrderedSet<String>()\n        subject.append(\"Test\")\n        XCTAssert(subject[0] == \"Test\")\n    }\n    \n    func testSubscriptInsertion_replacesObject() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        subject[1] = \"wat\"\n        XCTAssertEqual(subject.count, 3)\n        XCTAssert(subject[0] == \"One\")\n        XCTAssert(subject[1] == \"wat\")\n        XCTAssert(subject[2] == \"Three\")\n    }\n    \n    func testSubscriptSetting_iteratesCorrectly() {\n        var subject: OrderedSet<Int> = [0, 1, 2]\n        subject[1] = 0\n        var contents = [Int]()\n        for i in subject {\n            contents.append(i)\n        }\n        \n        XCTAssertEqual(contents.count, 2)\n        XCTAssertEqual(contents[0], 0)\n        XCTAssertEqual(contents[1], 2)\n    }\n\n    func testSubscriptAssignObjectAtIndex_doesNotAffectOtherSet() {\n        let other: OrderedSet<String> = [\"One\"]\n        var subject = other\n        subject[0] = \"Two\"\n        XCTAssertNotEqual(subject, other)\n    }\n    \n    // MARK: Contains\n\n    func testContains_whenObjectIsContained_isTrue() {\n        var subject = OrderedSet<String>()\n        subject.append(\"Test\")\n        XCTAssertTrue(subject.contains(\"Test\"))\n    }\n\n    func testContains_whenObjectIsNotContained_isFalse() {\n        let subject = OrderedSet<String>()\n        XCTAssertFalse(subject.contains(\"Test\"))\n    }\n    \n    // MARK: Enumeration\n    \n    func testEnumeration_enumeratesAllObjectsInOrder() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        var enumeratedObjects = [String]()\n        for object in subject {\n            enumeratedObjects.append(object)\n        }\n        \n        let expected = [\"One\", \"Two\", \"Three\"]\n        \n        XCTAssertEqual(enumeratedObjects, expected)\n    }\n\n    // MARK: Init With Sequence\n    \n    func testInitWithSequence_withDuplicates_onlyCountsThemOnce() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Two\", \"Four\"])\n        XCTAssertEqual(subject.count, 3)\n    }\n    \n    func testInitWithSequence_withDuplicates_doesntChangeIndexAfterFirst() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Two\", \"Four\"])\n        XCTAssert(subject[0] == \"One\")\n        XCTAssert(subject[1] == \"Two\")\n        XCTAssert(subject[2] == \"Four\")\n    }\n\n    // MARK: Init With Array Literal\n    \n    func testInitializingWithArrayLiteral_includesItemsInOrder() {\n        let subject: OrderedSet<String> = [\"One\", \"Two\"]\n        var enumeratedObjects = [String]()\n        for object in subject {\n            enumeratedObjects.append(object)\n        }\n        \n        let expected = [\"One\", \"Two\"]\n        \n        XCTAssertEqual(enumeratedObjects, expected)\n    }\n    \n    // MARK: Index Of Object\n    \n    func testIndexOfObject_whenObjectExists_isCorrectIndex() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        XCTAssert(subject.index(of: \"Three\") == 2)\n    }\n    \n    func testIndexOfObject_whenObjectDoesntExist_isNil() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        XCTAssertNil(subject.index(of: \"Four\"))\n    }\n    \n    // MARK: Remove\n    \n    func testRemove_whenObjectExists_reducesCount() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        subject.remove(\"Two\")\n        XCTAssertEqual(subject.count, 2)\n    }\n    \n    func testRemove_whenObjectDoesntExist_doesntChangeCount() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        subject.remove(\"Twoz\")\n        XCTAssertEqual(subject.count, 3)\n    }\n    \n    func testRemove_whenObjectIsNotLast_updatesOrdering() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\", \"Four\"])\n        subject.remove(\"Two\")\n        XCTAssert(subject[0] == \"One\")\n        XCTAssert(subject[1] == \"Three\")\n        XCTAssert(subject[2] == \"Four\")\n    }\n    \n    // MARK: Remove Objects\n    \n    func testRemoveObjects_removesPassedInObjects() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\", \"Four\"])\n        subject.remove([\"Two\", \"Four\"])\n        let expected: OrderedSet<String> = [\"One\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testRemoveObjects_returnsCollectionOfCorrectIndexPositions() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\", \"Four\"])\n        let indexes = subject.remove([\"Two\", \"Four\"])\n        XCTAssertEqual(indexes, [1, 3])\n    }\n    \n    func testRemoveObjects__whenAnObjectDoesntExist_returnsCollectionOfCorrectIndexPositions() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\", \"Four\"])\n        let indexes = subject.remove([\"Two\", \"Three\", \"Six\"])\n        XCTAssertEqual(indexes, [1, 2])\n    }\n\n    func testRemoveObjects__whenRemovingSameObjectFromTwoSets_doesNotCrash() {\n        var original = OrderedSet<String>(sequence: [\"One\"])\n        var subject = original\n        original.remove(\"One\")\n        subject.remove(\"One\")\n    }\n    \n    // MARK: Remove Object At Index\n    \n    func testRemoveObjectAtIndex_removesTheObjectAtIndex() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\", \"Four\"])\n        subject.removeObject(at: 1)\n        let expected: OrderedSet<String> = [\"One\", \"Three\", \"Four\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    // MARK: Index of removed Object\n    \n    func testRemoveObject_returnsCorrectIndex() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        let index = subject.remove(\"Two\")\n        XCTAssertEqual(index, 1)\n    }\n    \n    // MARK: Remove All Objects\n    \n    func testRemoveAllObjects_removesAllObjectsThatSatisfyGivenPredicate() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        let removedObjects = subject.removeAllObjects(where: { $0.hasPrefix(\"T\") })\n        let expected: OrderedSet<String> = [\"One\"]\n        XCTAssertEqual(subject, expected)\n        let expectedRemovedObjects: OrderedSet<String> = [\"Two\", \"Three\"]\n        XCTAssertEqual(removedObjects, expectedRemovedObjects)\n    }\n    \n    func testRemoveAllObjects_removesAllObjects() {\n        var subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        subject.removeAllObjects()\n        XCTAssertEqual(subject.count, 0)\n    }\n    \n    // MARK: Intersects Sequence\n    \n    func testIntersectsSequence_withoutIntersection_isFalse() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        XCTAssertFalse(subject.intersects([\"Four\"]))\n    }\n    \n    func testIntersectsSequence_withIntersection_isTrue() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        XCTAssertTrue(subject.intersects([\"Two\"]))\n    }\n    \n    // MARK: Is Subset Of Sequence\n    \n    func testIsSubsetOfSequence_whenIsSubset_isTrue() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        XCTAssertTrue(subject.isSubset(of: [\"Three\", \"Two\", \"One\"]))\n    }\n    \n    func testIsSubsetOfSequence_whenIsSubset_andContainsDuplicates_isTrue() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\", \"Three\"])\n        XCTAssertTrue(subject.isSubset(of: [\"Three\", \"Two\", \"One\", \"Three\"]))\n    }\n    \n    func testIsSubsetOfSequence_whenIsNotSubset_isFalse() {\n        let subject = OrderedSet<String>(sequence: [\"One\", \"Two\"])\n        XCTAssertTrue(subject.isSubset(of: [\"Three\", \"Two\", \"One\"]))\n    }\n    \n    // MARK: Concatenation\n    \n    func testConcatingOrderedSets_returnsJoinedSet() {\n        let first: OrderedSet<String> = [\"One\"]\n        let second: OrderedSet<String> = [\"One\", \"Two\"]\n        let result = first + second\n        XCTAssertEqual(result.count, 2)\n        XCTAssert(result[0] == \"One\")\n        XCTAssert(result[1] == \"Two\")\n    }\n    \n    func testConcatAppendOrderedSets_returnsJoinedOrderedSet() {\n        var subject: OrderedSet<String> = [\"One\"]\n        let second: OrderedSet<String> = [\"One\", \"Two\"]\n        subject += second\n        XCTAssertEqual(subject.count, 2)\n        XCTAssert(subject[0] == \"One\")\n        XCTAssert(subject[1] == \"Two\")\n    }\n    \n    // MARK: Decatenate\n    \n    func testDecatenate_removesMatchedObjects() {\n        let subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let second: OrderedSet<String> = [\"One\", \"Three\"]\n        let result = subject - second\n        XCTAssertEqual(result.count, 1)\n        XCTAssert(result[0] == \"Two\")\n    }\n    \n    func testDecatenateEquals_removesMatchedObjects() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let second: OrderedSet<String> = [\"One\", \"Three\"]\n        subject -= second\n        XCTAssertEqual(subject.count, 1)\n        XCTAssert(subject[0] == \"Two\")\n    }\n    \n    // MARK: Map\n    \n    func testMap_mapsEachObject() {\n        let subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let result = subject.map { $0.hashValue }\n        let expected = [\"One\".hashValue, \"Two\".hashValue, \"Three\".hashValue]\n        XCTAssertTrue(result == expected)\n    }\n    \n    // MARK: Equality\n    \n    func testEquals_isTrue_whenEqual() {\n        let first: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let second: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(first, second)\n    }\n    \n    func testEquals_isFalse_whenNotEqual() {\n        let first: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let second: OrderedSet<String> = [\"One\", \"Two\", \"Four\"]\n        XCTAssertNotEqual(first, second)\n    }\n    \n    func testEquals_isFalse_whenFirstArrayIsLargerThanSecond() {\n        let first: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\"]\n        let second: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertNotEqual(first, second)\n    }\n    \n    func testEquals_isFalse_whenSecondArrayIsLargerThanFirst() {\n        let first: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let second: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\"]\n        XCTAssertNotEqual(first, second)\n    }\n    \n    func testEquals_isFalse_whenSecondArrayIsDifferentOrderThanFirst() {\n        let first: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let second: OrderedSet<String> = [\"Three\", \"Two\", \"One\"]\n        XCTAssertNotEqual(first, second)\n    }\n    \n    // MARK: First\n    \n    func testFirst_whenEmpty_isNil() {\n        let subject = OrderedSet<String>()\n        XCTAssert(subject.first == nil)\n    }\n    \n    func testFirst_whenNotEmpty_isFirstElement() {\n        let subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssert(subject.first == \"One\")\n    }\n    \n    // MARK: Last\n    \n    func testLast_whenEmpty_isNil() {\n        let subject = OrderedSet<String>()\n        XCTAssert(subject.last == nil)\n    }\n    \n    func testLast_whenNotEmpty_isFirstElement() {\n        let subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssert(subject.last == \"Three\")\n    }\n\n    // MARK: - Swap Object\n    \n    func testSwapObject_whenBothObjectsExist_swapsBothObjects() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.swapObject(\"One\", with: \"Three\")\n        let expected: OrderedSet<String> = [\"Three\", \"Two\", \"One\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testSwapObject_whenOneObjectsExist_doesntChangeSet() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.swapObject(\"One\", with: \"Four\")\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    // MARK: Move Object to Index\n    \n    func testMoveObjectToIndex_whenObjectExists_whenMovingAmongEntireSet_movesObjectUp_andShiftsOthersDown() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(\"One\", toIndex: 2)\n        let expected: OrderedSet<String> = [\"Two\", \"Three\", \"One\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectToIndex_whenObjectExists_whenMovingAmongEntireSet_movesObjectDown_andShiftsOthersUp() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(\"Three\", toIndex: 0)\n        let expected: OrderedSet<String> = [\"Three\", \"One\", \"Two\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectToIndex_whenObjectExists_whenMovingAmongSubsetOfSet_movesObjectUp_andShiftsTraversedObjectsDown() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\", \"Five\"]\n        subject.moveObject(\"Four\", toIndex: 1)\n        let expected: OrderedSet<String> = [\"One\", \"Four\", \"Two\", \"Three\", \"Five\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectToIndex_whenObjectExists_whenMovingAmongSubsetOfSet_movesObjectDown_andShiftsTraversedObjectsUp() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\", \"Five\"]\n        subject.moveObject(\"Two\", toIndex: 3)\n        let expected: OrderedSet<String> = [\"One\", \"Three\", \"Four\", \"Two\", \"Five\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectToIndex_whenObjectDoesntExist_isNoop() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(\"Four\", toIndex: 0)\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectToIndex_whenObjectIsSameIndex_isNoop() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(\"One\", toIndex: 0)\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObject_withFullMove_mapsCorrectly() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\", \"Five\"]\n        subject.moveObject(\"One\", toIndex: 4)\n        XCTAssertEqual(subject.map { $0 }, [\"Two\", \"Three\", \"Four\", \"Five\", \"One\"])\n    }\n    \n    func testMoveObject_withInnerMove_mapsCorrectly() {\n        var subject: OrderedSet<String> = [\"p0\", \"p1\", \"c1\", \"p2\", \"p3\", \"c2\"]\n        subject.moveObject(\"p2\", toIndex: 1)\n        XCTAssertEqual(subject.map { $0 }, [\"p0\", \"p2\", \"p1\", \"c1\", \"p3\", \"c2\"])\n    }\n    \n    // MARK: Insert Object at Index\n    \n    func testMoveObjectAtIndex_whenObjectExists_whenMovingAmongEntireSet_movesObjectUp_andShiftsOthersDown() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(at: 0, to: 2)\n        let expected: OrderedSet<String> = [\"Two\", \"Three\", \"One\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectAtIndex_whenObjectExists_whenMovingAmongEntireSet_movesObjectDown_andShiftsOthersUp() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(at: 2, to: 0)\n        let expected: OrderedSet<String> = [\"Three\", \"One\", \"Two\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectAtIndex_whenObjectExists_whenMovingAmongSubsetOfSet_movesObjectUp_andShiftsTraversedObjectsDown() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\", \"Five\"]\n        subject.moveObject(at: 3, to: 1)\n        let expected: OrderedSet<String> = [\"One\", \"Four\", \"Two\", \"Three\", \"Five\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectAtIndex_whenObjectExists_whenMovingAmongSubsetOfSet_movesObjectDown_andShiftsTraversedObjectsUp() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\", \"Five\"]\n        subject.moveObject(at: 1, to: 3)\n        let expected: OrderedSet<String> = [\"One\", \"Three\", \"Four\", \"Two\", \"Five\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testMoveObjectAtIndex_whenSameIndexes_isNoop() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.moveObject(at: 0, to: 0)\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testInsertObjectAtIndex_whenObjectDoesntExist_insertsObjectAtCorrectSpot() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert(\"Zero\", at: 0)\n        let expected: OrderedSet<String> = [\"Zero\", \"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testInsertObjectAtIndex_whenObjectDoesExist_isNoop() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert(\"Two\", at: 0)\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testInsertObjectAtIndex_canInsertObjectAtTail() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert(\"Four\", at: 3)\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    // MARK: Insert Objects at Index\n    \n    func testInsertObjectsAtIndex_whenObjectsDontExist_insertsObjectsAtCorrectSpot() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert([\"Foo\", \"Bar\"], at: 1)\n        let expected: OrderedSet<String> = [\"One\", \"Foo\", \"Bar\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testInsertObjectsAtIndex_whenSomeObjectsExist_insertsOnlyNonExistingObjectsAtCorrectSpot() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert([\"Foo\", \"Three\"], at: 1)\n        let expected: OrderedSet<String> = [\"One\", \"Foo\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testInsertObjectsAtIndex_whenRepeatedObjectsAreInserted_insertsOnlyOne() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert([\"Foo\", \"Foo\"], at: 1)\n        let expected: OrderedSet<String> = [\"One\", \"Foo\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testInsertObjectsAtIndex_canInsertObjectAtTail() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.insert([\"Four\", \"Five\"], at: 3)\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Four\", \"Five\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    // MARK: Append Objects\n    \n    func testAppendObjects_whenObjectsDontExist_appendsAllObjects() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.append(contentsOf: [\"Foo\", \"Bar\"])\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Foo\", \"Bar\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testAppendObjects_whenSomeObjectsExist_appendsOnlyNonExistingObjects() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.append(contentsOf: [\"Foo\", \"Two\"])\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Foo\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    func testAppendObjects_whenRepeatedObjectsAreAppended_appendsOnlyOne() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject.append(contentsOf: [\"Foo\", \"Foo\"])\n        let expected: OrderedSet<String> = [\"One\", \"Two\", \"Three\", \"Foo\"]\n        XCTAssertEqual(subject, expected)\n    }\n    \n    // MARK: Description\n    \n    func testDescription_printsDescription() {\n        let subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        XCTAssertEqual(subject.description, \"OrderedSet (3 object(s)): [One, Two, Three]\")\n    }\n\n    // MARK: Operator Overloads\n\n    func testAddOperator_appendsSequence() {\n        let initial: OrderedSet<String> = [\"One\", \"Two\"]\n        let subject = initial + [\"Three\"]\n\n        XCTAssertEqual(initial, [\"One\", \"Two\"])\n        XCTAssertEqual(subject, [\"One\", \"Two\", \"Three\"])\n    }\n\n    func testAddInPlaceOperator_appendsSequence() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\"]\n        subject += [\"Three\"]\n\n        XCTAssertEqual(subject, [\"One\", \"Two\", \"Three\"])\n    }\n\n    func testSubtractOperator_removesSequence() {\n        let initial: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        let subject = initial - [\"Three\"]\n\n        XCTAssertEqual(initial, [\"One\", \"Two\", \"Three\"])\n        XCTAssertEqual(subject, [\"One\", \"Two\"])\n    }\n\n    func testSubtractInPlaceOperator_removesSequence() {\n        var subject: OrderedSet<String> = [\"One\", \"Two\", \"Three\"]\n        subject -= [\"Three\"]\n\n        XCTAssertEqual(subject, [\"One\", \"Two\"])\n    }\n    \n}\n"
  },
  {
    "path": "README.md",
    "content": "# Introduction\n\nOrderedSet is essentially the Swift equivalent of Foundation's NSOrderedSet/NSMutableOrderedSet. It was created so Swift would have a unique, ordered collection with fast lookup performance that supported strong typing through Generics, and so we could store Swift structs and enums in it.\n\n# Usage\n\nOrderedSet works very much like an Array. Here are some basic examples of its usage:\n\n```swift\nvar set = OrderedSet<Int>()\nset.append(1)\nset.contains(1) // => true\nset[0] = 2\nset[0] // => 2\nset.insert(3, at: 0)\nset // => [3, 2]\nset = [1,2,3] // OrderedSet's support array literals\nset // => [1, 2, 3]\nset += [3, 4] // You can concatenate any sequence type to an OrderedSet\nset // => [1, 2, 3, 4] (Since 3 was already in the set it was not added again)\n```\n\nIts also recommended that you use the instance methods when possible instead of the global Swift methods for searching an OrderedSet. For example, the Swift.contains(haystack, needle) method will enumerate the OrderedSet instead of making use of the fast lookup implementation that the OrderedSet.contains(needle) method will do.\n\nBe sure to check out the unit tests to see all the different ways to interact with an OrderedSet in action. You can also check out the sample project, which tweaks the default master/detail project to use an OrderedSet instead of an Array.\n\n# Installation\n\nOrderedSet is a single Swift file in the Sources directory. You can copy that file into your project, or use via CocoaPods by adding the following line to your Podfile:\n\n```ruby\npod 'OrderedSet', '5.0'\n```\n\nor use via Carthage by adding\n\n```\ngithub \"Weebly/OrderedSet\"\n```\n\nto your Cartfile and embedding the OrderedSet.framework in your app.\n\nAnd then add the following import where you want to use OrderedSet:\n\n```swift\nimport OrderedSet\n```\n\n\nUsing SwiftPM:\n```swift\npackage.append(.package(url: \"https://github.com/Weebly/OrderedSet.git\", .upToNextMajor(from: \"5.0.0\")))\n```\n\n# License\n\nOrderedSet is available under the MIT license. See the LICENSE file for more info.\n\n# CONTRIBUTING\n\nWe love to have your help to make OrderedSet better. Feel free to\n\n* open an issue if you run into any problem.\n* fork the project and submit pull request.\n\n"
  },
  {
    "path": "Sources/OrderedSet.swift",
    "content": "//  Copyright (c) 2014 James Richard. \n//  Distributed under the MIT License (http://opensource.org/licenses/MIT).\n\n/// An ordered, unique collection of objects.\npublic struct OrderedSet<T: Hashable> {\n    fileprivate var contents = [T: Index]() // Needs to have a value of Index instead of Void for fast removals\n    fileprivate var sequencedContents = SequencedContents()\n\n    fileprivate class SequencedContents {\n        fileprivate var pointers = [UnsafeMutablePointer<T>]()\n\n        func append(_ element: UnsafeMutablePointer<T>) {\n            pointers.append(element)\n        }\n\n        func index(after i: Int) -> Int {\n            return pointers.index(after: i)\n        }\n\n        func insert(_ element: UnsafeMutablePointer<T>, at i: Int) {\n            pointers.insert(element, at: i)\n        }\n\n        var last: UnsafeMutablePointer<T>? {\n            return pointers.last\n        }\n\n        @discardableResult\n        func remove(at i: Int) -> UnsafeMutablePointer<T> {\n            return pointers.remove(at: i)\n        }\n\n        func removeAll() {\n            pointers.removeAll()\n        }\n\n        subscript(_ i: Int) -> UnsafeMutablePointer<T> {\n            get { return pointers[i] }\n            set { pointers[i] = newValue }\n        }\n\n        func copy() -> SequencedContents {\n            let copy = SequencedContents()\n            copy.pointers.reserveCapacity(pointers.count)\n            for p in pointers {\n                let newP = UnsafeMutablePointer<T>.allocate(capacity: 1)\n                newP.initialize(from: p, count: 1)\n                copy.pointers.append(newP)\n            }\n            return copy\n        }\n    }\n    \n    /**\n     Inititalizes an empty ordered set.\n     - returns:     An empty ordered set.\n     */\n    public init() { }\n    \n    /**\n     Initializes a new ordered set with the order and contents\n     of sequence.\n     If an object appears more than once in the sequence it will only appear\n     once in the ordered set, at the position of its first occurance.\n     - parameter    sequence:   The sequence to initialize the ordered set with.\n     - returns:                 An initialized ordered set with the contents of sequence.\n     */\n    public init<S: Sequence>(sequence: S) where S.Iterator.Element == T {\n        for object in sequence where contents[object] == nil {\n            contents[object] = contents.count\n            \n            let pointer = UnsafeMutablePointer<T>.allocate(capacity: 1)\n            pointer.initialize(to: object)\n            sequencedContents.append(pointer)\n        }\n    }\n    \n    public init(arrayLiteral elements: T...) {\n        for object in elements where contents[object] == nil {\n            contents[object] = contents.count\n            \n            let pointer = UnsafeMutablePointer<T>.allocate(capacity: 1)\n            pointer.initialize(to: object)\n            sequencedContents.append(pointer)\n        }\n    }\n    \n    /**\n     Locate the index of an object in the ordered set.\n     It is preferable to use this method over the global find() for performance reasons.\n     - parameter    object: The object to find the index for.\n     - returns:             The index of the object, or nil if the object is not in the ordered set.\n     */\n    public func index(of object: T) -> Index? {\n        if let index = contents[object] {\n            return index\n        }\n        \n        return nil\n    }\n    \n    /**\n     Appends an object to the end of the ordered set.\n     - parameter    object: The object to be appended.\n     */\n    public mutating func append(_ object: T) {\n        \n        if let lastIndex = index(of: object) {\n            remove(object)\n            insert(object, at: lastIndex)\n        } else {\n            contents[object] = contents.count\n\n            if !isKnownUniquelyReferenced(&sequencedContents) {\n                sequencedContents = sequencedContents.copy()\n            }\n            let pointer = UnsafeMutablePointer<T>.allocate(capacity: 1)\n            pointer.initialize(to: object)\n            sequencedContents.append(pointer)\n        }\n    }\n    \n    /**\n     Appends a sequence of objects to the end of the ordered set.\n     - parameter    sequence:   The sequence of objects to be appended.\n     */\n    public mutating func append<S: Sequence>(contentsOf sequence: S) where S.Iterator.Element == T {\n        var gen = sequence.makeIterator()\n        while let object: T = gen.next() {\n            append(object)\n        }\n    }\n    \n    /**\n     Removes an object from the ordered set.\n     If the object exists in the ordered set, it will be removed.\n     If it is not the last object in the ordered set, subsequent\n     objects will be shifted down one position.\n     - parameter    object: The object to be removed.\n     - returns: The former index position of the object.\n     */\n    @discardableResult\n    public mutating func remove(_ object: T) -> Index? {\n        if let index = contents[object] {\n            contents[object] = nil\n\n            if !isKnownUniquelyReferenced(&sequencedContents) {\n                sequencedContents = sequencedContents.copy()\n            }\n            sequencedContents[index].deinitialize(count: 1)\n            sequencedContents[index].deallocate()\n            sequencedContents.remove(at: index)\n            \n            for (object, i) in contents {\n                if i < index {\n                    continue\n                }\n                \n                contents[object] = i - 1\n            }\n            \n            return index\n        }\n        return nil\n    }\n    \n    /**\n     Removes the given objects from the ordered set.\n     - parameter    objects:    The objects to be removed.\n     - returns: A collection of the former index positions of the objects. An index position is not provided for objects that were not found.\n     */\n    @discardableResult\n    public mutating func remove<S: Sequence>(_ objects: S) -> [Index]? where S.Iterator.Element == T {\n        \n        var indexes = [Index]()\n        objects.forEach { object in\n            if let index = index(of: object) {\n                indexes.append(index)\n            }\n        }\n        \n        var gen = objects.makeIterator()\n        while let object: T = gen.next() {\n            remove(object)\n        }\n        return indexes\n    }\n    \n    /**\n     Removes an object at a given index.\n     This method will cause a fatal error if you attempt to move an object to an index that is out of bounds.\n     - parameter    index:  The index of the object to be removed.\n     */\n    public mutating func removeObject(at index: Index) {\n        if index < 0 || index >= count {\n            fatalError(\"Attempting to remove an object at an index that does not exist\")\n        }\n        \n        remove(sequencedContents[index].pointee)\n    }\n    \n    /**\n     Removes all objects that satisfy the given predicate in the ordered set.\n     - parameter    shouldBeRemoved: A closure that takes an object in the ordered set as its argument and returns a Boolean value indicating whether the object should be removed from the ordered set.\n     - returns: The objects that were removed from the ordered set.\n    */\n    @discardableResult\n    public mutating func removeAllObjects(where shouldBeRemoved: (T) -> Bool) -> OrderedSet<T> {\n        \n        var removedObjects = OrderedSet<T>()\n        var pointers = sequencedContents.pointers.makeIterator()\n        while let object = pointers.next()?.pointee {\n            if shouldBeRemoved(object) {\n                remove(object)\n                removedObjects.append(object)\n            }\n        }\n        return removedObjects\n    }\n    \n    /**\n     Removes all objects in the ordered set.\n     */\n    public mutating func removeAllObjects() {\n        contents.removeAll()\n        \n        if !isKnownUniquelyReferenced(&sequencedContents) {\n            sequencedContents = sequencedContents.copy()\n        }\n        for sequencedContent in sequencedContents.pointers {\n            sequencedContent.deinitialize(count: 1)\n            sequencedContent.deallocate()\n        }\n        \n        sequencedContents.removeAll()\n    }\n    \n    /**\n     Swaps two objects contained within the ordered set.\n     Both objects must exist within the set, or the swap will not occur.\n     - parameter    first:  The first object to be swapped.\n     - parameter    second: The second object to be swapped.\n     */\n    public mutating func swapObject(_ first: T, with second: T) {\n        if let firstPosition = contents[first] {\n            if let secondPosition = contents[second] {\n                contents[first] = secondPosition\n                contents[second] = firstPosition\n                \n                if !isKnownUniquelyReferenced(&sequencedContents) {\n                    sequencedContents = sequencedContents.copy()\n                }\n                sequencedContents[firstPosition].pointee = second\n                sequencedContents[secondPosition].pointee = first\n            }\n        }\n    }\n    \n    /**\n     Tests if the ordered set contains any objects within a sequence.\n     - parameter    other:  The sequence to look for the intersection in.\n     - returns:             Returns true if the sequence and set contain any equal objects, otherwise false.\n     */\n    public func intersects<S: Sequence>(_ other: S) -> Bool where S.Iterator.Element == T {\n        var gen = other.makeIterator()\n        while let object: T = gen.next() {\n            if contains(object) {\n                return true\n            }\n        }\n        \n        return false\n    }\n    \n    /**\n     Tests if a the ordered set is a subset of another sequence.\n     - parameter    sequence:   The sequence to check.\n     - returns:                 true if the sequence contains all objects contained in the receiver, otherwise false.\n     */\n    public func isSubset<S: Sequence>(of sequence: S) -> Bool where S.Iterator.Element == T {\n        for (object, _) in contents {\n            if !sequence.contains(object) {\n                return false\n            }\n        }\n        \n        return true\n    }\n    \n    /**\n     Moves an object to a different index, shifting all objects in between the movement.\n     This method is a no-op if the object doesn't exist in the set or the index is the\n     same that the object is currently at.\n     This method will cause a fatal error if you attempt to move an object to an index that is out of bounds.\n     - parameter    object: The object to be moved\n     - parameter    index:  The index that the object should be moved to.\n     */\n    public mutating func moveObject(_ object: T, toIndex index: Index) {\n        if index < 0 || index >= count {\n            fatalError(\"Attempting to move an object at an index that does not exist\")\n        }\n        \n        if let position = contents[object] {\n            // Return if the client attempted to move to the current index\n            if position == index {\n                return\n            }\n            \n            let adjustment = position > index ? -1 : 1\n\n            if !isKnownUniquelyReferenced(&sequencedContents) {\n                sequencedContents = sequencedContents.copy()\n            }\n            \n            var currentIndex = position\n            while currentIndex != index {\n                let nextIndex = currentIndex + adjustment\n                \n                let firstObject = sequencedContents[currentIndex].pointee\n                let secondObject = sequencedContents[nextIndex].pointee\n                \n                sequencedContents[currentIndex].pointee = secondObject\n                sequencedContents[nextIndex].pointee = firstObject\n                \n                contents[firstObject] = nextIndex\n                contents[secondObject] = currentIndex\n                \n                currentIndex += adjustment\n            }\n        }\n    }\n    \n    /**\n     Moves an object from one index to a different index, shifting all objects in between the movement.\n     This method is a no-op if the index is the same that the object is currently at.\n     This method will cause a fatal error if you attempt to move an object fro man index that is out of bounds\n     or to an index that is out of bounds.\n     - parameter     index:      The index of the object to be moved.\n     - parameter     toIndex:    The index that the object should be moved to.\n     */\n    public mutating func moveObject(at index: Index, to toIndex: Index) {\n        if (index < 0 || index >= count) || (toIndex < 0 || toIndex >= count) {\n            fatalError(\"Attempting to move an object at or to an index that does not exist\")\n        }\n        \n        moveObject(self[index], toIndex: toIndex)\n    }\n    \n    /**\n     Inserts an object at a given index, shifting all objects above it up one.\n     This method will cause a fatal error if you attempt to insert the object out of bounds.\n     If the object already exists in the OrderedSet, this operation is a no-op.\n     - parameter    object:     The object to be inserted.\n     - parameter    index:      The index to be inserted at.\n     */\n    public mutating func insert(_ object: T, at index: Index) {\n        if index > count || index < 0 {\n            fatalError(\"Attempting to insert an object at an index that does not exist\")\n        }\n        \n        if contents[object] != nil {\n            return\n        }\n        \n        // Append our object, then swap them until its at the end.\n        append(object)\n        \n        for i in (index..<count-1).reversed() {\n            swapObject(self[i], with: self[i+1])\n        }\n    }\n    \n    /**\n     Inserts objects at a given index, shifting all objects above it up one.\n     This method will cause a fatal error if you attempt to insert the objects out of bounds.\n     If an object in objects already exists in the OrderedSet it will not be added. Objects that occur twice\n     in the sequence will only be added once.\n     - parameter    objects:    The objects to be inserted.\n     - parameter    index:      The index to be inserted at.\n     */\n    public mutating func insert<S: Sequence>(_ objects: S, at index: Index) where S.Iterator.Element == T {\n        if index > count || index < 0 {\n            fatalError(\"Attempting to insert an object at an index that does not exist\")\n        }\n        \n        var addedObjectCount = 0\n\n        if !isKnownUniquelyReferenced(&sequencedContents) {\n            sequencedContents = sequencedContents.copy()\n        }\n        \n        for object in objects where contents[object] == nil {\n            let seqIdx = index + addedObjectCount\n            let element = UnsafeMutablePointer<T>.allocate(capacity: 1)\n            element.initialize(to: object)\n            sequencedContents.insert(element, at: seqIdx)\n            contents[object] = seqIdx\n            addedObjectCount += 1\n        }\n        \n        // Now we'll remove duplicates and update the shifted objects position in the contents\n        // dictionary.\n        for i in index + addedObjectCount..<count {\n            contents[sequencedContents[i].pointee] = i\n        }\n    }\n    \n    /// Returns the last object in the set, or `nil` if the set is empty.\n    public var last: T? {\n        return sequencedContents.last?.pointee\n    }\n}\n\nextension OrderedSet: ExpressibleByArrayLiteral { }\n\nextension OrderedSet where T: Comparable {}\n\nextension OrderedSet {\n    \n    public var count: Int {\n        return contents.count\n    }\n    \n    public var isEmpty: Bool {\n        return count == 0\n    }\n    \n    public var first: T? {\n        guard count > 0 else { return nil }\n        return sequencedContents[0].pointee\n    }\n    \n    public func index(after index: Int) -> Int {\n        return sequencedContents.index(after: index)\n    }\n    \n    public typealias Index = Int\n    \n    public var startIndex: Int {\n        return 0\n    }\n    \n    public var endIndex: Int {\n        return contents.count\n    }\n    \n    public subscript(index: Index) -> T {\n        get {\n            return sequencedContents[index].pointee\n        }\n        \n        set {\n            if !isKnownUniquelyReferenced(&sequencedContents) {\n                sequencedContents = sequencedContents.copy()\n            }\n\n            let previousCount = contents.count\n            contents[sequencedContents[index].pointee] = nil\n            contents[newValue] = index\n            \n            // If the count is reduced we used an existing value, and need to sync up sequencedContents\n            if contents.count == previousCount {\n                sequencedContents[index].pointee = newValue\n            } else {\n                sequencedContents[index].deinitialize(count: 1)\n                sequencedContents[index].deallocate()\n                sequencedContents.remove(at: index)\n            }\n        }\n    }\n    \n}\n\npublic func +<T, S: Sequence> (lhs: OrderedSet<T>, rhs: S) -> OrderedSet<T> where S.Element == T {\n    var joinedSet = lhs\n    joinedSet.append(contentsOf: rhs)\n    \n    return joinedSet\n}\n\npublic func +=<T, S: Sequence> (lhs: inout OrderedSet<T>, rhs: S) where S.Element == T {\n    lhs.append(contentsOf: rhs)\n}\n\npublic func -<T, S: Sequence> (lhs: OrderedSet<T>, rhs: S) -> OrderedSet<T> where S.Element == T {\n    var purgedSet = lhs\n    purgedSet.remove(rhs)\n    \n    return purgedSet\n}\n\npublic func -=<T, S: Sequence> (lhs: inout OrderedSet<T>, rhs: S) where S.Element == T {\n    lhs.remove(rhs)\n}\n\nextension OrderedSet: Equatable { }\n\npublic func ==<T> (lhs: OrderedSet<T>, rhs: OrderedSet<T>) -> Bool {\n    if lhs.count != rhs.count {\n        return false\n    }\n    \n    for object in lhs where lhs.contents[object] != rhs.contents[object] {\n        return false\n    }\n    \n    return true\n}\n\nextension OrderedSet: CustomStringConvertible {\n    public var description: String {\n        let children = map({ \"\\($0)\" }).joined(separator: \", \")\n        return \"OrderedSet (\\(count) object(s)): [\\(children)]\"\n    }\n}\n\nextension OrderedSet: RandomAccessCollection {}\n"
  }
]