[
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\nbuild/\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata\n*.xccheckout\n*.moved-aside\nDerivedData\n*.hmap\n*.ipa\n*.xcuserstate\n\n# CocoaPods\n#\n# We recommend against adding the Pods directory to your .gitignore. However\n# you should judge for yourself, the pros and cons are mentioned at:\n# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control\n#\n# Pods/\n\n# Carthage\n#\n# Add this line if you want to avoid checking in source code from Carthage dependencies.\n# Carthage/Checkouts\n\nCarthage/Build\n"
  },
  {
    "path": ".swift-version",
    "content": "4.2\n"
  },
  {
    "path": ".travis.yml",
    "content": "osx_image: xcode10.2\nlanguage: objective-c\n\nxcode_project: FoldingCell/FoldingCell.xcodeproj\nxcode_scheme: FoldingCell\nxcode_sdk: iphonesimulator12.2\n\n# whitelist\nbranches:\nonly:\n- master\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": ""
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing to a Project\nNow that you’ve found the material for understanding the project, here is how you can take action.\n\n### Create an Issue\n\nIf you find a bug in a project you’re using (and you don’t know how to fix it), have trouble following the documentation or have a question about the project – create an issue! There’s nothing to it and whatever issue you’re having, you’re likely not the only one, so others will find your issue helpful, too. For more information on how issues work, check out our Issues guide.\n\n#### Issues Pro Tips\n\nCheck existing issues for your issue. Duplicating an issue is slower for both parties so search through open and closed issues to see if what you’re running into has been addressed already.\nBe clear about what your problem is: what was the expected outcome, what happened instead? Detail how someone else can recreate the problem.\nLink to demos recreating the problem on things like JSFiddle or CodePen.\nInclude system details like what the browser, library or operating system you’re using and its version.\nPaste error output or logs in your issue or in a Gist. If pasting them in the issue, wrap it in three backticks: ``` so that it renders nicely.\n\n### Pull Request\n\nIf you’re able to patch the bug or add the feature yourself – fantastic, make a pull request with the code! Be sure you’ve read any documents on contributing, understand the license and have signed a CLA if required. Once you’ve submitted a pull request the maintainer(s) can compare your branch to the existing one and decide whether or not to incorporate (pull in) your changes.\n\n#### Pull Request Pro Tips\n\nFork the repository and clone it locally. Connect your local to the original ‘upstream’ repository by adding it as a remote. Pull in changes from ‘upstream’ often so that you stay up to date so that when you submit your pull request, merge conflicts will be less likely. See more detailed instructions here.\nCreate a branch for your edits.\nBe clear about what problem is occurring and how someone can recreate that problem or why your feature will help. Then be equally as clear about the steps you took to make your changes.\nIt’s best to test. Run your changes against any existing tests if they exist and create new ones when needed. Whether tests exist or not, make sure your changes don’t break the existing project.\nInclude screenshots of the before and after if your changes include differences in HTML/CSS. Drag and drop the images into the body of your pull request.\nContribute in the style of the project to the best of your abilities. This may mean using indents, semi colons or comments differently than you would in your own repository, but makes it easier for the maintainer to merge, others to understand and maintain in the future.\n\n#### Open Pull Requests\n\nOnce you’ve opened a pull request a discussion will start around your proposed changes. Other contributors and users may chime in, but ultimately the decision is made by the maintainer(s). You may be asked to make some changes to your pull request, if so, add more commits to your branch and push them – they’ll automatically go into the existing pull request.\n\nIf your pull request is merged – great! If it is not, no sweat, it may not be what the project maintainer had in mind, or they were already working on it. This happens, so our recommendation is to take any feedback you’ve received and go forth and pull request again – or create your own open source project."
  },
  {
    "path": "FoldingCell/FoldingCell/FoldingCell.h",
    "content": "//\n//  FoldingCell.h\n//  FoldingCell\n//\n//  Created by Alex K. on 02/06/16.\n//  Copyright © 2016 Alex K. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n//! Project version number for FoldingCell.\nFOUNDATION_EXPORT double FoldingCellVersionNumber;\n\n//! Project version string for FoldingCell.\nFOUNDATION_EXPORT const unsigned char FoldingCellVersionString[];\n\n// In this header, you should import all the public headers of your framework using statements like #import <FoldingCell/PublicHeader.h>\n\n\n"
  },
  {
    "path": "FoldingCell/FoldingCell/FoldingCell.swift",
    "content": "//\n//  FoldingCell.swift\n//\n// Copyright (c) 21/12/15. Ramotion Inc. (http://ramotion.com)\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\n/// UITableViewCell with folding animation\nopen class FoldingCell: UITableViewCell {\n    \n    @objc open var isUnfolded = false\n    \n    /// UIView is displayed when cell open\n    @IBOutlet open var containerView: UIView!\n    @IBOutlet open var containerViewTop: NSLayoutConstraint!\n    \n    /// UIView whitch display when cell close\n    @IBOutlet open var foregroundView: RotatedView!\n    @IBOutlet open var foregroundViewTop: NSLayoutConstraint!\n    var animationView: UIView?\n    \n    ///  the number of folding elements. Default 2\n    @IBInspectable open var itemCount: NSInteger = 2\n    \n    /// The color of the back cell\n    @IBInspectable open var backViewColor: UIColor = UIColor.brown\n    \n    var animationItemViews: [RotatedView]?\n    \n    /**\n     Folding animation types\n     \n     - Open:  Open direction\n     - Close: Close direction\n     */\n    @objc public enum AnimationType : Int {\n        case open\n        case close\n    }\n    \n    // MARK: Life Cycle\n    \n    open override func awakeFromNib() {\n        super.awakeFromNib()\n        \n        commonInit()\n    }\n    \n    /**\n     Call this method in methods init(style: UITableViewCellStyle, reuseIdentifier: String?) after creating Views\n     */\n    @objc open func commonInit() {\n        configureDefaultState()\n        \n        selectionStyle = .none\n        \n        containerView.layer.cornerRadius = foregroundView.layer.cornerRadius\n        containerView.layer.masksToBounds = true\n    }\n    \n    // MARK: configure\n    \n    private func configureDefaultState() {\n        \n        guard let foregroundViewTop = self.foregroundViewTop,\n            let containerViewTop = self.containerViewTop else {\n                fatalError(\"set foregroundViewTop or containerViewTop outlets in storyboard\")\n        }\n        \n        containerViewTop.constant = foregroundViewTop.constant\n        containerView.alpha = 0\n        \n        if let height = (foregroundView.constraints.filter { $0.firstAttribute == .height && $0.secondItem == nil }).first?.constant {\n            foregroundView.layer.anchorPoint = CGPoint(x: 0.5, y: 1)\n            foregroundViewTop.constant += height / 2\n        }\n        foregroundView.layer.transform = foregroundView.transform3d()\n        \n        createAnimationView()\n        contentView.bringSubviewToFront(foregroundView)\n    }\n    \n    private func createAnimationItemView() -> [RotatedView] {\n        \n        var items = [RotatedView]()\n        items.append(foregroundView)\n        var rotatedViews = [RotatedView]()\n        \n        animationView?.subviews\n            .lazy\n            .compactMap({ $0 as? RotatedView })\n            .sorted(by: { $0.tag < $1.tag })\n            .forEach { itemView in\n                rotatedViews.append(itemView)\n                if let backView = itemView.backView {\n                    rotatedViews.append(backView)\n                }\n        }\n        \n        items.append(contentsOf: rotatedViews)\n        return items\n    }\n    \n    func configureAnimationItems(_ animationType: AnimationType) {\n        \n        if animationType == .open {\n            animationView?.subviews\n                .lazy\n                .compactMap { $0 as? RotatedView }\n                .forEach { $0.alpha = 0 }\n        } else {\n            animationView?.subviews\n                .lazy\n                .compactMap { $0 as? RotatedView }\n                .forEach {\n                    $0.alpha = animationType == .open ? 0 : 1\n                    if animationType != .open { $0.backView?.alpha = 0 }\n            }\n        }\n    }\n    \n    func createAnimationView() {\n        animationView = UIView(frame: containerView.frame)\n        animationView?.layer.cornerRadius = foregroundView.layer.cornerRadius\n        animationView?.backgroundColor = .clear\n        animationView?.translatesAutoresizingMaskIntoConstraints = false\n        animationView?.alpha = 0\n        \n        guard let animationView = self.animationView else { return }\n        \n        self.contentView.addSubview(animationView)\n        \n        // copy constraints from containerView\n        var newConstraints = [NSLayoutConstraint]()\n        for constraint in self.contentView.constraints {\n            if let item = constraint.firstItem as? UIView, item == containerView {\n                let newConstraint = NSLayoutConstraint(item: animationView, attribute: constraint.firstAttribute,\n                                                       relatedBy: constraint.relation, toItem: constraint.secondItem, attribute: constraint.secondAttribute,\n                                                       multiplier: constraint.multiplier, constant: constraint.constant)\n                \n                newConstraints.append(newConstraint)\n            } else if let firstItem = constraint.firstItem as? UIView, let secondItem: UIView = constraint.secondItem as? UIView, secondItem == containerView {\n                let newConstraint = NSLayoutConstraint(item: firstItem, attribute: constraint.firstAttribute,\n                                                       relatedBy: constraint.relation, toItem: animationView, attribute: constraint.secondAttribute,\n                                                       multiplier: constraint.multiplier, constant: constraint.constant)\n                \n                newConstraints.append(newConstraint)\n            }\n        }\n        self.contentView.addConstraints(newConstraints)\n        \n        for constraint in containerView.constraints { // added height constraint\n            if constraint.firstAttribute == .height, let item: UIView = constraint.firstItem as? UIView, item == containerView {\n                let newConstraint = NSLayoutConstraint(item: animationView, attribute: constraint.firstAttribute,\n                                                       relatedBy: constraint.relation, toItem: nil, attribute: constraint.secondAttribute,\n                                                       multiplier: constraint.multiplier, constant: constraint.constant)\n                \n                animationView.addConstraint(newConstraint)\n            }\n        }\n    }\n    \n    func addImageItemsToAnimationView() {\n        containerView.alpha = 1\n        let containerViewSize = containerView.bounds.size\n        let foregroundViewSize = foregroundView.bounds.size\n        \n        // added first item\n        var image = containerView.takeSnapshot(CGRect(x: 0, y: 0, width: containerViewSize.width, height: foregroundViewSize.height))\n        var imageView = UIImageView(image: image)\n        imageView.tag = 0\n        imageView.layer.cornerRadius = foregroundView.layer.cornerRadius\n        animationView?.addSubview(imageView)\n        \n        // added secod item\n        image = containerView.takeSnapshot(CGRect(x: 0, y: foregroundViewSize.height, width: containerViewSize.width, height: foregroundViewSize.height))\n        \n        imageView = UIImageView(image: image)\n        let rotatedView = RotatedView(frame: imageView.frame)\n        rotatedView.tag = 1\n        rotatedView.layer.anchorPoint = CGPoint(x: 0.5, y: 0)\n        rotatedView.layer.transform = rotatedView.transform3d()\n        \n        rotatedView.addSubview(imageView)\n        animationView?.addSubview(rotatedView)\n        rotatedView.frame = CGRect(x: imageView.frame.origin.x, y: foregroundViewSize.height, width: containerViewSize.width, height: foregroundViewSize.height)\n        \n        // added other views\n        let itemHeight = (containerViewSize.height - 2 * foregroundViewSize.height) / CGFloat(itemCount - 2)\n        \n        if itemCount == 2 {\n            // decrease containerView height or increase itemCount\n            assert(containerViewSize.height - 2 * foregroundViewSize.height == 0, \"contanerView.height too high\")\n        } else {\n            // decrease containerView height or increase itemCount\n            assert(containerViewSize.height - 2 * foregroundViewSize.height >= itemHeight, \"contanerView.height too high\")\n        }\n        \n        var yPosition = 2 * foregroundViewSize.height\n        var tag = 2\n        for _ in 2 ..< itemCount {\n            image = containerView.takeSnapshot(CGRect(x: 0, y: yPosition, width: containerViewSize.width, height: itemHeight))\n            \n            imageView = UIImageView(image: image)\n            let rotatedView = RotatedView(frame: imageView.frame)\n            \n            rotatedView.addSubview(imageView)\n            rotatedView.layer.anchorPoint = CGPoint(x: 0.5, y: 0)\n            rotatedView.layer.transform = rotatedView.transform3d()\n            animationView?.addSubview(rotatedView)\n            rotatedView.frame = CGRect(x: 0, y: yPosition, width: rotatedView.bounds.size.width, height: itemHeight)\n            rotatedView.tag = tag\n            \n            yPosition += itemHeight\n            tag += 1\n        }\n        \n        containerView.alpha = 0\n        \n        if let animationView = self.animationView {\n            // added back view\n            var previuosView: RotatedView?\n            for case let container as RotatedView in animationView.subviews.sorted(by: { $0.tag < $1.tag })\n                where container.tag > 0 && container.tag < animationView.subviews.count {\n                    previuosView?.addBackView(container.bounds.size.height, color: backViewColor)\n                    previuosView = container\n            }\n        }\n        animationItemViews = createAnimationItemView()\n    }\n    \n    fileprivate func removeImageItemsFromAnimationView() {\n        \n        guard let animationView = self.animationView else {\n            return\n        }\n        \n        animationView.subviews.forEach({ $0.removeFromSuperview() })\n    }\n    \n    // MARK: public\n    \n    /// Unfold cell.\n    ///\n    /// - Parameters:\n    ///   - value: unfold = true; collapse = false.\n    ///   - animated: animate changes.\n    ///   - completion: A block object to be executed when the animation sequence ends.\n    @objc open func unfold(_ value: Bool, animated: Bool = true, completion: (() -> Void)? = nil) {\n        if animated {\n            value ? openAnimation(completion) : closeAnimation(completion)\n        } else {\n            foregroundView.alpha = value ? 0 : 1\n            containerView.alpha = value ? 1 : 0\n        }\n    }\n    \n    @objc open func isAnimating() -> Bool {\n        return animationView?.alpha == 1 ? true : false\n    }\n    \n    // MARK: Animations\n    \n    @objc open dynamic func animationDuration(_ itemIndex: NSInteger, type: AnimationType) -> TimeInterval {\n        return type == .close ? durationsForCollapsedState[itemIndex] : durationsForExpandedState[itemIndex]\n    }\n    \n    @objc open var durationsForExpandedState: [TimeInterval] = []\n    @objc open var durationsForCollapsedState: [TimeInterval] = []\n    \n    func durationSequence(_ type: AnimationType) -> [TimeInterval] {\n        var durations = [TimeInterval]()\n        for i in 0 ..< itemCount - 1 {\n            let duration = animationDuration(i, type: type)\n            durations.append(TimeInterval(duration / 2.0))\n            durations.append(TimeInterval(duration / 2.0))\n        }\n        return durations\n    }\n    \n    func openAnimation(_ completion: (() -> Void)?) {\n        isUnfolded = true\n        removeImageItemsFromAnimationView()\n        addImageItemsToAnimationView()\n        \n        animationView?.alpha = 1\n        containerView.alpha = 0\n        \n        let durations = durationSequence(.open)\n        \n        var delay: TimeInterval = 0\n        var timing = convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeIn)\n        var from: CGFloat = 0.0\n        var to: CGFloat = -CGFloat.pi / 2\n        var hidden = true\n        configureAnimationItems(.open)\n        \n        guard let animationItemViews = self.animationItemViews else {\n            return\n        }\n        \n        for index in 0 ..< animationItemViews.count {\n            let animatedView = animationItemViews[index]\n            \n            animatedView.foldingAnimation(timing, from: from, to: to, duration: durations[index], delay: delay, hidden: hidden)\n            \n            from = from == 0.0 ? CGFloat.pi / 2 : 0.0\n            to = to == 0.0 ? -CGFloat.pi / 2 : 0.0\n            timing = timing == convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeIn) ? convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeOut) : convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeIn)\n            hidden = !hidden\n            delay += durations[index]\n        }\n        \n        let firstItemView = animationView?.subviews.filter { $0.tag == 0 }.first\n        \n        firstItemView?.layer.masksToBounds = true\n        DispatchQueue.main.asyncAfter(deadline: .now() + durations[0], execute: {\n            firstItemView?.layer.cornerRadius = 0\n        })\n        \n        DispatchQueue.main.asyncAfter(deadline: .now() + delay) {\n            self.animationView?.alpha = 0\n            self.containerView.alpha = 1\n            completion?()\n        }\n    }\n    \n    func closeAnimation(_ completion: (() -> Void)?) {\n        isUnfolded = false\n        removeImageItemsFromAnimationView()\n        addImageItemsToAnimationView()\n        \n        guard let animationItemViews = self.animationItemViews else {\n            fatalError()\n        }\n        \n        animationView?.alpha = 1\n        containerView.alpha = 0\n        \n        let durations: [TimeInterval] = durationSequence(.close).reversed()\n        \n        var delay: TimeInterval = 0\n        var timing = convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeIn)\n        var from: CGFloat = 0.0\n        var to: CGFloat = CGFloat.pi / 2\n        var hidden = true\n        configureAnimationItems(.close)\n        \n        if durations.count < animationItemViews.count {\n            fatalError(\"wrong override func animationDuration(itemIndex:NSInteger, type:AnimationType)-> NSTimeInterval\")\n        }\n        for index in 0 ..< animationItemViews.count {\n            let animatedView = animationItemViews.reversed()[index]\n            \n            animatedView.foldingAnimation(timing, from: from, to: to, duration: durations[index], delay: delay, hidden: hidden)\n            \n            to = to == 0.0 ? CGFloat.pi / 2 : 0.0\n            from = from == 0.0 ? -CGFloat.pi / 2 : 0.0\n            timing = timing == convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeIn) ? convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeOut) : convertFromCAMediaTimingFunctionName(CAMediaTimingFunctionName.easeIn)\n            hidden = !hidden\n            delay += durations[index]\n        }\n        DispatchQueue.main.asyncAfter(deadline: .now() + delay, execute: {\n            self.animationView?.alpha = 0\n            completion?()\n        })\n        \n        let firstItemView = animationView?.subviews.filter { $0.tag == 0 }.first\n        firstItemView?.layer.cornerRadius = 0\n        firstItemView?.layer.masksToBounds = true\n        if let durationFirst = durations.first {\n            DispatchQueue.main.asyncAfter(deadline: .now() + delay - durationFirst * 2, execute: {\n                firstItemView?.layer.cornerRadius = self.foregroundView.layer.cornerRadius\n                firstItemView?.setNeedsDisplay()\n                firstItemView?.setNeedsLayout()\n            })\n        }\n    }\n}\n\n// MARK: RotatedView\n\nopen class RotatedView: UIView {\n    \n    private enum Const {\n        static let rotationX = \"rotation.x\"\n        static let transformRotationX = \"transform.rotation.x\"\n    }\n    \n    var hiddenAfterAnimation = false\n    var backView: RotatedView?\n    \n    func addBackView(_ height: CGFloat, color: UIColor) {\n        let view = RotatedView(frame: CGRect.zero)\n        view.backgroundColor = color\n        view.layer.anchorPoint = CGPoint(x: 0.5, y: 1)\n        view.layer.transform = view.transform3d()\n        view.translatesAutoresizingMaskIntoConstraints = false\n        self.addSubview(view)\n        backView = view\n        \n        view.addConstraint(NSLayoutConstraint(item: view, attribute: .height, relatedBy: .equal, toItem: nil, attribute: .height,\n                                              multiplier: 1, constant: height))\n        \n        self.addConstraints([\n            NSLayoutConstraint(item: view, attribute: .top, relatedBy: .equal, toItem: self, attribute: .top, multiplier: 1,\n                               constant: self.bounds.size.height - height + height / 2),\n            NSLayoutConstraint(item: view, attribute: .leading, relatedBy: .equal, toItem: self, attribute: .leading,\n                               multiplier: 1, constant: 0),\n            NSLayoutConstraint(item: view, attribute: .trailing, relatedBy: .equal, toItem: self, attribute: .trailing,\n                               multiplier: 1, constant: 0),\n            ])\n    }\n}\n\nextension RotatedView: CAAnimationDelegate {\n    \n    func rotatedX(_ angle: CGFloat) {\n        var allTransofrom = CATransform3DIdentity\n        let rotateTransform = CATransform3DMakeRotation(angle, 1, 0, 0)\n        allTransofrom = CATransform3DConcat(allTransofrom, rotateTransform)\n        allTransofrom = CATransform3DConcat(allTransofrom, transform3d())\n        self.layer.transform = allTransofrom\n    }\n    \n    func transform3d() -> CATransform3D {\n        var transform = CATransform3DIdentity\n        transform.m34 = 2.5 / -2000\n        return transform\n    }\n    \n    // MARK: animations\n    \n    func foldingAnimation(_ timing: String, from: CGFloat, to: CGFloat, duration: TimeInterval, delay: TimeInterval, hidden: Bool) {\n        \n        let rotateAnimation = CABasicAnimation(keyPath: Const.transformRotationX)\n        rotateAnimation.timingFunction = CAMediaTimingFunction(name: convertToCAMediaTimingFunctionName(timing))\n        rotateAnimation.fromValue = from\n        rotateAnimation.toValue = to\n        rotateAnimation.duration = duration\n        rotateAnimation.delegate = self\n        rotateAnimation.fillMode = CAMediaTimingFillMode.forwards\n        rotateAnimation.isRemovedOnCompletion = false\n        rotateAnimation.beginTime = CACurrentMediaTime() + delay\n        \n        self.hiddenAfterAnimation = hidden\n        \n        self.layer.add(rotateAnimation, forKey: Const.rotationX)\n    }\n    \n    public func animationDidStart(_: CAAnimation) {\n        self.layer.shouldRasterize = true\n        self.alpha = 1\n    }\n    \n    public func animationDidStop(_: CAAnimation, finished _: Bool) {\n        if hiddenAfterAnimation {\n            self.alpha = 0\n        }\n        self.layer.removeAllAnimations()\n        self.layer.shouldRasterize = false\n        self.rotatedX(CGFloat(0))\n    }\n}\n\n// MARK: UIView + extension\nprivate extension UIView {\n    \n    func takeSnapshot(_ frame: CGRect) -> UIImage? {\n        UIGraphicsBeginImageContextWithOptions(frame.size, false, 0)\n        \n        guard let context = UIGraphicsGetCurrentContext() else { return nil }\n        context.translateBy(x: frame.origin.x * -1, y: frame.origin.y * -1)\n        \n        layer.render(in: context)\n        let image = UIGraphicsGetImageFromCurrentImageContext()\n        UIGraphicsEndImageContext()\n        \n        return image\n    }\n}\n\n// Helper function inserted by Swift 4.2 migrator.\nfileprivate func convertFromCAMediaTimingFunctionName(_ input: CAMediaTimingFunctionName) -> String {\n\treturn input.rawValue\n}\n\n// Helper function inserted by Swift 4.2 migrator.\nfileprivate func convertToCAMediaTimingFunctionName(_ input: String) -> CAMediaTimingFunctionName {\n\treturn CAMediaTimingFunctionName(rawValue: input)\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCell/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>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>$(CURRENT_PROJECT_VERSION)</string>\n\t<key>NSPrincipalClass</key>\n\t<string></string>\n\t<key>UILaunchStoryboardName</key>\n\t<string>LaunchScreen</string>\n\t<key>UIMainStoryboardFile</key>\n\t<string>Main</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//\n// Copyright (c) 21/12/15. Ramotion Inc. (http://ramotion.com)\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport UIKit\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n    func application(_: UIApplication, didFinishLaunchingWithOptions _: [UIApplication.LaunchOptionsKey: Any]? = nil) -> Bool {\n        return true\n    }\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"3x\"\n    },\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      \"idiom\" : \"ios-marketing\",\n      \"size\" : \"1024x1024\",\n      \"scale\" : \"1x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/arrow.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"arrow.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/background.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"background.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/burger.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"burger.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/dots.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"dots.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/image.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"image.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/photo.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"photo.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Assets.xcassets/stars.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"stars.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"13771\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <device id=\"retina4_7\" orientation=\"portrait\">\n        <adaptation id=\"fullscreen\"/>\n    </device>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"13772\"/>\n        <capability name=\"Constraints to layout margins\" minToolsVersion=\"6.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"Llm-lL-Icb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"xb3-aO-Qok\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"  Copyright (c) 2018 Ramotion. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fcf-sN-ku0\">\n                                <rect key=\"frame\" x=\"16\" y=\"630\" width=\"343\" height=\"17\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <nil key=\"textColor\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Folding Cell\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bCd-3b-lHA\">\n                                <rect key=\"frame\" x=\"139.5\" y=\"323\" width=\"96\" height=\"21\"/>\n                                <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"17\"/>\n                                <nil key=\"textColor\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                        </subviews>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstItem=\"fcf-sN-ku0\" firstAttribute=\"leading\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"leadingMargin\" id=\"811-hI-Egq\"/>\n                            <constraint firstItem=\"bCd-3b-lHA\" firstAttribute=\"centerY\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerY\" id=\"T4x-O3-JqD\"/>\n                            <constraint firstItem=\"bCd-3b-lHA\" firstAttribute=\"centerX\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerX\" id=\"VFr-tp-sPw\"/>\n                            <constraint firstItem=\"fcf-sN-ku0\" firstAttribute=\"trailing\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"trailingMargin\" id=\"dS9-pv-ebe\"/>\n                            <constraint firstItem=\"xb3-aO-Qok\" firstAttribute=\"top\" secondItem=\"fcf-sN-ku0\" secondAttribute=\"bottom\" constant=\"20\" id=\"kbD-dX-t3N\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"52\" y=\"374.66266866566718\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"15400\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"0cn-rv-Emg\">\n    <device id=\"retina4_7\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"15404\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <customFonts key=\"customFonts\">\n        <array key=\"OpenSans-Light.ttf\">\n            <string>OpenSans-Light</string>\n        </array>\n        <array key=\"OpenSans-Regular.ttf\">\n            <string>OpenSans</string>\n        </array>\n        <array key=\"OpenSans-Semibold.ttf\">\n            <string>OpenSans-Semibold</string>\n        </array>\n    </customFonts>\n    <scenes>\n        <!--Table View Controller-->\n        <scene sceneID=\"Q2d-BE-geS\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"MainTableViewController\" id=\"0cn-rv-Emg\" customClass=\"TableViewController\" customModule=\"FoldingCell_Demo\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" showsHorizontalScrollIndicator=\"NO\" showsVerticalScrollIndicator=\"NO\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"none\" rowHeight=\"667\" sectionHeaderHeight=\"28\" sectionFooterHeight=\"28\" id=\"MwZ-K3-six\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"708\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <color key=\"sectionIndexBackgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <prototypes>\n                            <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"none\" indentationWidth=\"10\" reuseIdentifier=\"FoldingCell\" rowHeight=\"667\" id=\"fgm-B1-nUi\" customClass=\"DemoCell\" customModule=\"FoldingCell_Demo\" customModuleProvider=\"target\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"28\" width=\"600\" height=\"667\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"fgm-B1-nUi\" id=\"MxP-E5-nua\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"600\" height=\"667\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CQr-i9-7br\" userLabel=\"Foreground\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                            <rect key=\"frame\" x=\"20\" y=\"7\" width=\"560\" height=\"165\"/>\n                                            <subviews>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UhV-pr-kw4\" userLabel=\"LeftView\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"88\" height=\"165\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"#25\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uWG-zH-Vjo\">\n                                                            <rect key=\"frame\" x=\"20\" y=\"33.5\" width=\"40.5\" height=\"28\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Light\" family=\"Open Sans\" pointSize=\"24\"/>\n                                                            <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.8008604307432432\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"TODAY\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FQM-r1-a67\">\n                                                            <rect key=\"frame\" x=\"18\" y=\"103\" width=\"33\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"06:30 PM\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9ka-ho-kkM\">\n                                                            <rect key=\"frame\" x=\"18\" y=\"121.5\" width=\"56\" height=\"15.5\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"13\"/>\n                                                            <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.80434438344594594\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.36470588235294116\" green=\"0.29019607843137252\" blue=\"0.59999999999999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"width\" constant=\"88\" id=\"79O-5u-rWy\"/>\n                                                        <constraint firstItem=\"uWG-zH-Vjo\" firstAttribute=\"centerY\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"centerY\" constant=\"-35\" id=\"BKr-4U-Xpn\"/>\n                                                        <constraint firstItem=\"9ka-ho-kkM\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"leading\" id=\"Cay-aa-P2d\"/>\n                                                        <constraint firstItem=\"uWG-zH-Vjo\" firstAttribute=\"centerX\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"centerX\" constant=\"-4\" id=\"JBk-n5-unF\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"FQM-r1-a67\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"YfX-oc-QrI\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"9ka-ho-kkM\" secondAttribute=\"bottom\" constant=\"28\" id=\"bej-dB-MVA\"/>\n                                                        <constraint firstItem=\"FQM-r1-a67\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"leading\" constant=\"18\" id=\"c48-WJ-cDt\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"FQM-r1-a67\" secondAttribute=\"bottom\" constant=\"50\" id=\"ccu-aB-Y5n\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"9ka-ho-kkM\" secondAttribute=\"trailing\" constant=\"14\" id=\"yC5-K2-pLt\"/>\n                                                    </constraints>\n                                                </view>\n                                                <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleAspectFit\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"dots\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lOX-iD-3OO\">\n                                                    <rect key=\"frame\" x=\"108\" y=\"32\" width=\"8\" height=\"42\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"height\" constant=\"42\" id=\"aAE-ZT-XRW\"/>\n                                                        <constraint firstAttribute=\"width\" constant=\"8\" id=\"z5d-lD-qkX\"/>\n                                                    </constraints>\n                                                </imageView>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EVE-fe-u5I\" userLabel=\"line\">\n                                                    <rect key=\"frame\" x=\"120\" y=\"52\" width=\"424\" height=\"1\"/>\n                                                    <color key=\"backgroundColor\" red=\"0.8784313725490196\" green=\"0.8784313725490196\" blue=\"0.8784313725490196\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"height\" constant=\"1\" id=\"4Xs-v9-X7G\"/>\n                                                    </constraints>\n                                                </view>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"W 85th St, New York, 10024 \" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"7\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"BUL-Of-nxF\" userLabel=\"W 85th St, New York, 10024\">\n                                                    <rect key=\"frame\" x=\"370\" y=\"28\" width=\"180\" height=\"16.5\"/>\n                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"14\"/>\n                                                    <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568627450979\" blue=\"0.2627450980392157\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"E 30th St, New York, 10016\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"7\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mNy-cH-kEi\" userLabel=\"W 85th St, New York, 10024\">\n                                                    <rect key=\"frame\" x=\"378\" y=\"57\" width=\"172\" height=\"16.5\"/>\n                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"14\"/>\n                                                    <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LnD-j0-rqc\" userLabel=\"RightView\">\n                                                    <rect key=\"frame\" x=\"410\" y=\"100\" width=\"150\" height=\"40\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"WEIGHT\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dKi-6r-6NP\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"light\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fZc-Gv-4xg\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"34.5\" height=\"21\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"fZc-Gv-4xg\" firstAttribute=\"leading\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"leading\" id=\"L6e-Uv-9vS\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"fZc-Gv-4xg\" secondAttribute=\"bottom\" id=\"ZRs-x2-A0s\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"fZc-Gv-4xg\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"jo5-im-pgZ\"/>\n                                                        <constraint firstItem=\"dKi-6r-6NP\" firstAttribute=\"leading\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"leading\" id=\"oWr-Zs-xYW\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"dKi-6r-6NP\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"rtR-Zg-NTk\"/>\n                                                        <constraint firstItem=\"dKi-6r-6NP\" firstAttribute=\"top\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"top\" id=\"wF5-DY-L1I\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"edX-4x-TiO\" userLabel=\"CenterView\">\n                                                    <rect key=\"frame\" x=\"259\" y=\"100\" width=\"150\" height=\"40\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"PLEDGE\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"O5e-nR-iJW\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"$150\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"a0P-Eh-vI9\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"40.5\" height=\"21\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"O5e-nR-iJW\" firstAttribute=\"leading\" secondItem=\"edX-4x-TiO\" secondAttribute=\"leading\" id=\"AYj-MP-1rV\"/>\n                                                        <constraint firstItem=\"O5e-nR-iJW\" firstAttribute=\"top\" secondItem=\"edX-4x-TiO\" secondAttribute=\"top\" id=\"cgQ-TI-IsS\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"a0P-Eh-vI9\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"ltE-8P-eIm\"/>\n                                                        <constraint firstItem=\"a0P-Eh-vI9\" firstAttribute=\"leading\" secondItem=\"edX-4x-TiO\" secondAttribute=\"leading\" id=\"oTf-nY-JXI\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"a0P-Eh-vI9\" secondAttribute=\"bottom\" id=\"oeJ-q1-9t1\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"O5e-nR-iJW\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"uwS-Um-Dzp\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XAj-wA-vfn\" userLabel=\"LeftVoew\">\n                                                    <rect key=\"frame\" x=\"108\" y=\"100\" width=\"150\" height=\"40\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"REQUESTS\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"X8Y-jq-qbv\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"53\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568627450979\" blue=\"0.2627450980392157\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"2\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sA6-bX-nDC\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"10.5\" height=\"21\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"sA6-bX-nDC\" firstAttribute=\"leading\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"leading\" id=\"CPD-C5-1TI\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"sA6-bX-nDC\" secondAttribute=\"bottom\" id=\"FLY-M3-HBk\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"40\" id=\"JEm-kR-Yum\"/>\n                                                        <constraint firstItem=\"X8Y-jq-qbv\" firstAttribute=\"leading\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"leading\" id=\"bpa-pP-9bM\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"X8Y-jq-qbv\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"gFa-fO-TAV\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"sA6-bX-nDC\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"pCm-UL-opC\"/>\n                                                        <constraint firstItem=\"X8Y-jq-qbv\" firstAttribute=\"top\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"top\" id=\"qjl-VM-Pwi\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                            <constraints>\n                                                <constraint firstItem=\"LnD-j0-rqc\" firstAttribute=\"centerY\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"centerY\" id=\"1WA-KY-kPA\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"trailing\" id=\"23p-a2-A6L\"/>\n                                                <constraint firstItem=\"BUL-Of-nxF\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" id=\"4Aj-wM-xak\"/>\n                                                <constraint firstItem=\"XAj-wA-vfn\" firstAttribute=\"width\" secondItem=\"edX-4x-TiO\" secondAttribute=\"width\" id=\"4SA-da-3ek\"/>\n                                                <constraint firstItem=\"lOX-iD-3OO\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"32\" id=\"Dgd-LY-uFx\"/>\n                                                <constraint firstItem=\"UhV-pr-kw4\" firstAttribute=\"leading\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" id=\"HeC-4J-km5\"/>\n                                                <constraint firstItem=\"LnD-j0-rqc\" firstAttribute=\"leading\" secondItem=\"edX-4x-TiO\" secondAttribute=\"trailing\" constant=\"1\" id=\"KSd-bn-DUH\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"bottom\" id=\"NLs-TX-v4X\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"mNy-cH-kEi\" secondAttribute=\"trailing\" constant=\"10\" id=\"Rqh-At-NpG\"/>\n                                                <constraint firstItem=\"XAj-wA-vfn\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"trailing\" constant=\"20\" id=\"TBj-Xh-aIR\"/>\n                                                <constraint firstItem=\"UhV-pr-kw4\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" id=\"V89-lD-fHB\"/>\n                                                <constraint firstItem=\"mNy-cH-kEi\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" id=\"XMf-Cs-Nu8\"/>\n                                                <constraint firstItem=\"EVE-fe-u5I\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"52\" id=\"Z3h-Dn-3CO\"/>\n                                                <constraint firstItem=\"LnD-j0-rqc\" firstAttribute=\"height\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"height\" id=\"anH-lP-Xab\"/>\n                                                <constraint firstAttribute=\"height\" constant=\"165\" id=\"bfl-Uq-i0I\"/>\n                                                <constraint firstItem=\"BUL-Of-nxF\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"28\" id=\"e1p-p7-g63\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"height\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"height\" id=\"eAg-xy-ea5\"/>\n                                                <constraint firstItem=\"mNy-cH-kEi\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"57\" id=\"fks-BZ-yCK\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"leading\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"trailing\" constant=\"1\" id=\"gBc-AU-Dv0\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"BUL-Of-nxF\" secondAttribute=\"trailing\" constant=\"10\" id=\"hTo-fu-XYr\"/>\n                                                <constraint firstItem=\"lOX-iD-3OO\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"trailing\" constant=\"20\" id=\"hcx-kY-WtQ\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"EVE-fe-u5I\" secondAttribute=\"trailing\" constant=\"16\" id=\"hmd-8g-7Zc\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"bottom\" constant=\"25\" id=\"kSF-kq-vx0\"/>\n                                                <constraint firstItem=\"EVE-fe-u5I\" firstAttribute=\"leading\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" constant=\"120\" id=\"kbm-Bj-AYL\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"width\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"width\" id=\"vyp-8w-PzA\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"centerY\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"centerY\" id=\"wEN-7C-rbm\"/>\n                                            </constraints>\n                                        </view>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CGm-93-iX0\" userLabel=\"Container\">\n                                            <rect key=\"frame\" x=\"20\" y=\"180\" width=\"560\" height=\"479\"/>\n                                            <subviews>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oxa-Zu-WLe\" userLabel=\"FirstContainerView\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"560\" height=\"165\"/>\n                                                    <subviews>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"o36-zd-BZb\" userLabel=\"bar\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"560\" height=\"49\"/>\n                                                            <subviews>\n                                                                <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vW5-Q1-KFs\">\n                                                                    <rect key=\"frame\" x=\"14\" y=\"-4.5\" width=\"76\" height=\"58\"/>\n                                                                    <state key=\"normal\" image=\"burger\"/>\n                                                                </button>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"# 2618-3157\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7eb-NE-XLS\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"560\" height=\"49\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Light\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"$25\" textAlignment=\"right\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4ve-4H-KPK\">\n                                                                    <rect key=\"frame\" x=\"517.5\" y=\"0.0\" width=\"30.5\" height=\"49\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.36470588240000001\" green=\"0.29411764709999999\" blue=\"0.59999999999999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"7eb-NE-XLS\" secondAttribute=\"bottom\" id=\"2hx-ym-O2n\"/>\n                                                                <constraint firstItem=\"7eb-NE-XLS\" firstAttribute=\"top\" secondItem=\"o36-zd-BZb\" secondAttribute=\"top\" id=\"3Qf-gI-O5n\"/>\n                                                                <constraint firstItem=\"vW5-Q1-KFs\" firstAttribute=\"centerY\" secondItem=\"o36-zd-BZb\" secondAttribute=\"centerY\" id=\"5fB-U4-flP\"/>\n                                                                <constraint firstAttribute=\"height\" constant=\"49\" id=\"AC3-t0-KIM\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"4ve-4H-KPK\" secondAttribute=\"trailing\" constant=\"12\" id=\"BgX-bA-WJy\"/>\n                                                                <constraint firstItem=\"4ve-4H-KPK\" firstAttribute=\"top\" secondItem=\"o36-zd-BZb\" secondAttribute=\"top\" id=\"RwT-Kf-gV5\"/>\n                                                                <constraint firstItem=\"4ve-4H-KPK\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"o36-zd-BZb\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"bcC-Jw-xQO\"/>\n                                                                <constraint firstItem=\"vW5-Q1-KFs\" firstAttribute=\"leading\" secondItem=\"o36-zd-BZb\" secondAttribute=\"leading\" constant=\"14\" id=\"eOn-QU-u2B\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"4ve-4H-KPK\" secondAttribute=\"bottom\" id=\"n0y-uI-DZL\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"7eb-NE-XLS\" secondAttribute=\"trailing\" id=\"ncs-Bz-WO7\"/>\n                                                                <constraint firstItem=\"7eb-NE-XLS\" firstAttribute=\"leading\" secondItem=\"o36-zd-BZb\" secondAttribute=\"leading\" id=\"sm1-NI-ycl\"/>\n                                                            </constraints>\n                                                            <userDefinedRuntimeAttributes>\n                                                                <userDefinedRuntimeAttribute type=\"number\" keyPath=\"layer.cornerRadius\">\n                                                                    <integer key=\"value\" value=\"10\"/>\n                                                                </userDefinedRuntimeAttribute>\n                                                                <userDefinedRuntimeAttribute type=\"boolean\" keyPath=\"layer.masksToBounds\" value=\"YES\"/>\n                                                            </userDefinedRuntimeAttributes>\n                                                        </view>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"image\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6Dq-oA-azK\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"49\" width=\"560\" height=\"116\"/>\n                                                        </imageView>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sdL-VL-QmS\" userLabel=\"LeftVoew\">\n                                                            <rect key=\"frame\" x=\"10\" y=\"117\" width=\"179.5\" height=\"40\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"REQUESTS\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qOA-jB-5OO\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"53\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"2\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"S4b-sI-0J6\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"10.5\" height=\"21\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"qOA-jB-5OO\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"3fn-95-aAz\"/>\n                                                                <constraint firstItem=\"qOA-jB-5OO\" firstAttribute=\"top\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"top\" id=\"cGd-ZP-J1s\"/>\n                                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"S4b-sI-0J6\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"hFA-F9-nvT\"/>\n                                                                <constraint firstItem=\"S4b-sI-0J6\" firstAttribute=\"leading\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"leading\" id=\"j7G-um-lhR\"/>\n                                                                <constraint firstItem=\"qOA-jB-5OO\" firstAttribute=\"leading\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"leading\" id=\"kbc-V1-6VS\"/>\n                                                                <constraint firstAttribute=\"height\" constant=\"40\" id=\"nCu-JM-dqc\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"S4b-sI-0J6\" secondAttribute=\"bottom\" id=\"rU3-vO-BOw\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"O5y-fi-aEI\" userLabel=\"CenterView\">\n                                                            <rect key=\"frame\" x=\"190.5\" y=\"117\" width=\"179\" height=\"40\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"PLEDGE\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4DJ-Tz-dlt\">\n                                                                    <rect key=\"frame\" x=\"70\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"$150\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DwZ-qm-hHf\">\n                                                                    <rect key=\"frame\" x=\"69.5\" y=\"19\" width=\"40.5\" height=\"21\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"4DJ-Tz-dlt\" firstAttribute=\"centerX\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"centerX\" id=\"SLb-LN-VUV\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"DwZ-qm-hHf\" secondAttribute=\"bottom\" id=\"ZmA-Kh-YOl\"/>\n                                                                <constraint firstItem=\"4DJ-Tz-dlt\" firstAttribute=\"top\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"top\" id=\"ZwB-Jg-DKc\"/>\n                                                                <constraint firstItem=\"DwZ-qm-hHf\" firstAttribute=\"centerX\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"centerX\" id=\"zYL-JO-Y3O\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LnF-7u-0Wm\" userLabel=\"RightView\">\n                                                            <rect key=\"frame\" x=\"370.5\" y=\"117\" width=\"179.5\" height=\"40\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"WEIGHT\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8pV-vb-qIN\">\n                                                                    <rect key=\"frame\" x=\"140.5\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"light\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"R9w-bP-fWa\">\n                                                                    <rect key=\"frame\" x=\"145\" y=\"19\" width=\"34.5\" height=\"21\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"R9w-bP-fWa\" secondAttribute=\"trailing\" id=\"03y-gy-i1D\"/>\n                                                                <constraint firstItem=\"8pV-vb-qIN\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"5v9-wv-MiA\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"8pV-vb-qIN\" secondAttribute=\"trailing\" id=\"C3p-9o-b86\"/>\n                                                                <constraint firstItem=\"8pV-vb-qIN\" firstAttribute=\"top\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"top\" id=\"P9u-kS-VVp\"/>\n                                                                <constraint firstItem=\"R9w-bP-fWa\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"leading\" constant=\"20\" symbolic=\"YES\" id=\"Y6C-17-VcW\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"R9w-bP-fWa\" secondAttribute=\"bottom\" id=\"g99-zI-5d7\"/>\n                                                            </constraints>\n                                                        </view>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.36470588240000001\" green=\"0.29411764709999999\" blue=\"0.59999999999999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"height\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"height\" id=\"0XV-ym-nC5\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"trailing\" constant=\"10\" id=\"Cdw-bC-VFs\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"bottom\" constant=\"8\" id=\"ChF-cT-Ci4\"/>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"centerY\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"centerY\" id=\"HbC-J7-ZQe\"/>\n                                                        <constraint firstItem=\"6Dq-oA-azK\" firstAttribute=\"top\" secondItem=\"o36-zd-BZb\" secondAttribute=\"bottom\" id=\"Hra-Tm-aeT\"/>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"width\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"width\" id=\"JFY-Wh-ndA\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"6Dq-oA-azK\" secondAttribute=\"trailing\" id=\"JMK-xd-Ud8\"/>\n                                                        <constraint firstItem=\"o36-zd-BZb\" firstAttribute=\"top\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"top\" id=\"Jfy-G5-X5f\"/>\n                                                        <constraint firstItem=\"LnF-7u-0Wm\" firstAttribute=\"height\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"height\" id=\"Ybq-dy-YcI\"/>\n                                                        <constraint firstItem=\"LnF-7u-0Wm\" firstAttribute=\"centerY\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"centerY\" id=\"cYZ-ka-z3f\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"o36-zd-BZb\" secondAttribute=\"trailing\" id=\"dJc-aP-NfF\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"6Dq-oA-azK\" secondAttribute=\"bottom\" id=\"fQE-7X-Zil\"/>\n                                                        <constraint firstItem=\"LnF-7u-0Wm\" firstAttribute=\"leading\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"trailing\" constant=\"1\" id=\"gUa-aN-vMf\"/>\n                                                        <constraint firstItem=\"6Dq-oA-azK\" firstAttribute=\"leading\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"leading\" id=\"lRI-g5-9IB\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"165\" id=\"oKl-NI-KY3\"/>\n                                                        <constraint firstItem=\"sdL-VL-QmS\" firstAttribute=\"leading\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"leading\" constant=\"10\" id=\"ox1-Jv-b1b\"/>\n                                                        <constraint firstItem=\"o36-zd-BZb\" firstAttribute=\"leading\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"leading\" id=\"rXP-0F-fmd\"/>\n                                                        <constraint firstItem=\"sdL-VL-QmS\" firstAttribute=\"width\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"width\" id=\"u3L-Je-do8\"/>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"leading\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"trailing\" constant=\"1\" id=\"vn1-SH-zt8\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view tag=\"1\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"stA-YF-Roj\" userLabel=\"SecondContainerView\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"165\" width=\"560\" height=\"165\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"SENDER\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"W63-7b-X8w\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"11\" width=\"40\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.13725490196078433\" green=\"0.13725490196078433\" blue=\"0.13725490196078433\" alpha=\"0.49546030405405406\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Edward Norton\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ax5-gv-o7S\">\n                                                            <rect key=\"frame\" x=\"79\" y=\"28\" width=\"473\" height=\"17.5\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                            <color key=\"textColor\" red=\"0.20392156862745098\" green=\"0.23921568627450979\" blue=\"0.2627450980392157\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"stars\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DCW-h4-xYV\">\n                                                            <rect key=\"frame\" x=\"79\" y=\"50.5\" width=\"194\" height=\"34\"/>\n                                                        </imageView>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"photo\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Nm8-JU-yEj\" userLabel=\"photo\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"28\" width=\"49\" height=\"49\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"49\" id=\"JNu-y1-BLY\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"49\" id=\"qpi-cG-s4a\"/>\n                                                            </constraints>\n                                                        </imageView>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"arrow\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YsL-0v-aFS\">\n                                                            <rect key=\"frame\" x=\"506\" y=\"27.5\" width=\"32\" height=\"50\"/>\n                                                        </imageView>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fuy-ww-tkB\" userLabel=\"line\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"92\" width=\"516\" height=\"1\"/>\n                                                            <color key=\"backgroundColor\" red=\"0.396078431372549\" green=\"0.40000000000000002\" blue=\"0.396078431372549\" alpha=\"0.20135663006756757\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"1\" id=\"04T-Vd-Eo2\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lbp-KK-0lW\" userLabel=\"fromView\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"92\" width=\"257.5\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"FROM\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mrt-du-GX9\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"247.5\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"W 90th St\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"I2n-ts-cGO\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"247.5\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"New York, NY 10025\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"VHi-qF-ipj\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"41.5\" width=\"247.5\" height=\"14\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"12\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"VHi-qF-ipj\" firstAttribute=\"top\" secondItem=\"I2n-ts-cGO\" secondAttribute=\"bottom\" id=\"16U-Jy-hNi\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"VHi-qF-ipj\" secondAttribute=\"trailing\" constant=\"10\" id=\"4Cd-0Z-1Wz\"/>\n                                                                <constraint firstItem=\"VHi-qF-ipj\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"leading\" id=\"93Z-Td-aWU\"/>\n                                                                <constraint firstItem=\"I2n-ts-cGO\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"leading\" id=\"a7f-md-5qZ\"/>\n                                                                <constraint firstItem=\"mrt-du-GX9\" firstAttribute=\"top\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"top\" constant=\"8\" id=\"aPY-XI-n36\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"mrt-du-GX9\" secondAttribute=\"trailing\" constant=\"10\" id=\"gSC-z7-Raa\"/>\n                                                                <constraint firstItem=\"I2n-ts-cGO\" firstAttribute=\"top\" secondItem=\"mrt-du-GX9\" secondAttribute=\"bottom\" constant=\"4\" id=\"hlf-bO-QYR\"/>\n                                                                <constraint firstItem=\"mrt-du-GX9\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"leading\" id=\"qmH-Wn-Toe\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"I2n-ts-cGO\" secondAttribute=\"trailing\" constant=\"10\" id=\"vuW-Ue-rZL\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"h39-gf-gsn\" userLabel=\"toView\">\n                                                            <rect key=\"frame\" x=\"280.5\" y=\"92\" width=\"257.5\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"TO\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sel-qV-TVo\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"257.5\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"46th Ave\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"AOk-eM-O1f\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"257.5\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Woodside, NY 11101\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7sP-u0-3Jz\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"41.5\" width=\"257.5\" height=\"14\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"12\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"AOk-eM-O1f\" firstAttribute=\"top\" secondItem=\"sel-qV-TVo\" secondAttribute=\"bottom\" constant=\"4\" id=\"PcS-xl-55z\"/>\n                                                                <constraint firstItem=\"sel-qV-TVo\" firstAttribute=\"leading\" secondItem=\"h39-gf-gsn\" secondAttribute=\"leading\" id=\"SVa-gH-2cV\"/>\n                                                                <constraint firstItem=\"AOk-eM-O1f\" firstAttribute=\"leading\" secondItem=\"h39-gf-gsn\" secondAttribute=\"leading\" id=\"gMZ-Np-crR\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"7sP-u0-3Jz\" secondAttribute=\"trailing\" id=\"mcV-Uz-ZtB\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"AOk-eM-O1f\" secondAttribute=\"trailing\" id=\"piV-3j-2Ma\"/>\n                                                                <constraint firstItem=\"7sP-u0-3Jz\" firstAttribute=\"leading\" secondItem=\"h39-gf-gsn\" secondAttribute=\"leading\" id=\"q12-fZ-7bC\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"sel-qV-TVo\" secondAttribute=\"trailing\" id=\"qva-xg-8Ca\"/>\n                                                                <constraint firstItem=\"sel-qV-TVo\" firstAttribute=\"top\" secondItem=\"h39-gf-gsn\" secondAttribute=\"top\" constant=\"8\" id=\"tVX-0Q-eMV\"/>\n                                                                <constraint firstItem=\"7sP-u0-3Jz\" firstAttribute=\"top\" secondItem=\"AOk-eM-O1f\" secondAttribute=\"bottom\" id=\"yjO-Ny-aIC\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dff-zA-mGx\" userLabel=\"bottom line\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"164\" width=\"560\" height=\"1\"/>\n                                                            <color key=\"backgroundColor\" red=\"0.39607843139999999\" green=\"0.40000000000000002\" blue=\"0.39607843139999999\" alpha=\"0.20135663009999999\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"1\" id=\"4RP-hO-LT1\"/>\n                                                            </constraints>\n                                                        </view>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"DCW-h4-xYV\" firstAttribute=\"top\" secondItem=\"ax5-gv-o7S\" secondAttribute=\"bottom\" constant=\"5\" id=\"0hE-wf-7T7\"/>\n                                                        <constraint firstItem=\"fuy-ww-tkB\" firstAttribute=\"centerY\" secondItem=\"stA-YF-Roj\" secondAttribute=\"centerY\" constant=\"10\" id=\"11U-5A-z9N\"/>\n                                                        <constraint firstItem=\"ax5-gv-o7S\" firstAttribute=\"leading\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"trailing\" constant=\"8\" id=\"5sH-Zg-wH3\"/>\n                                                        <constraint firstItem=\"Nm8-JU-yEj\" firstAttribute=\"leading\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"leading\" id=\"8Gl-W4-vrM\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"ax5-gv-o7S\" secondAttribute=\"trailing\" constant=\"8\" id=\"8q3-Mt-Co3\"/>\n                                                        <constraint firstItem=\"h39-gf-gsn\" firstAttribute=\"trailing\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"trailing\" id=\"QvS-Hj-mS4\"/>\n                                                        <constraint firstItem=\"YsL-0v-aFS\" firstAttribute=\"centerY\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"centerY\" id=\"Scd-ef-kZX\"/>\n                                                        <constraint firstItem=\"YsL-0v-aFS\" firstAttribute=\"trailing\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"trailing\" id=\"VSO-es-7Lt\"/>\n                                                        <constraint firstItem=\"ax5-gv-o7S\" firstAttribute=\"top\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"top\" id=\"XVf-8q-fzs\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"h39-gf-gsn\" secondAttribute=\"bottom\" id=\"aeD-DS-Nba\"/>\n                                                        <constraint firstItem=\"lbp-KK-0lW\" firstAttribute=\"top\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"bottom\" constant=\"-1\" id=\"bc9-x7-UPC\"/>\n                                                        <constraint firstItem=\"Nm8-JU-yEj\" firstAttribute=\"top\" secondItem=\"W63-7b-X8w\" secondAttribute=\"bottom\" constant=\"5\" id=\"cSO-FI-Zot\"/>\n                                                        <constraint firstItem=\"W63-7b-X8w\" firstAttribute=\"leading\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"leading\" id=\"cp5-qe-qig\"/>\n                                                        <constraint firstItem=\"fuy-ww-tkB\" firstAttribute=\"leading\" secondItem=\"stA-YF-Roj\" secondAttribute=\"leading\" constant=\"22\" id=\"eR7-fL-Plp\"/>\n                                                        <constraint firstItem=\"h39-gf-gsn\" firstAttribute=\"top\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"bottom\" constant=\"-1\" id=\"fqd-Q8-wQT\"/>\n                                                        <constraint firstItem=\"lbp-KK-0lW\" firstAttribute=\"width\" secondItem=\"h39-gf-gsn\" secondAttribute=\"width\" id=\"gun-zz-qrY\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"dff-zA-mGx\" secondAttribute=\"bottom\" id=\"gvU-tx-uqt\"/>\n                                                        <constraint firstItem=\"lbp-KK-0lW\" firstAttribute=\"leading\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"leading\" id=\"heC-JQ-6sD\"/>\n                                                        <constraint firstItem=\"DCW-h4-xYV\" firstAttribute=\"leading\" secondItem=\"ax5-gv-o7S\" secondAttribute=\"leading\" id=\"ivY-t3-4aZ\"/>\n                                                        <constraint firstItem=\"dff-zA-mGx\" firstAttribute=\"leading\" secondItem=\"stA-YF-Roj\" secondAttribute=\"leading\" id=\"j4L-2f-2xx\"/>\n                                                        <constraint firstItem=\"fuy-ww-tkB\" firstAttribute=\"top\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"bottom\" constant=\"15\" id=\"kdY-oS-aVS\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"bottom\" id=\"lN2-aN-Blf\"/>\n                                                        <constraint firstItem=\"h39-gf-gsn\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"trailing\" constant=\"1\" id=\"pXq-um-J27\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"dff-zA-mGx\" secondAttribute=\"trailing\" id=\"rP4-SC-s3a\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"trailing\" constant=\"22\" id=\"trm-Sb-BDX\"/>\n                                                        <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"W63-7b-X8w\" secondAttribute=\"trailing\" constant=\"20\" symbolic=\"YES\" id=\"u1C-hG-9rE\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"165\" id=\"zna-xw-SZ3\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view tag=\"2\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dXA-2m-h6U\" userLabel=\"ThirdContainerView\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"330\" width=\"560\" height=\"72\"/>\n                                                    <subviews>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4an-5P-hxw\" userLabel=\"fromView\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"0.0\" width=\"256.5\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"DELIVERY DATE\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Gqh-Lu-0yL\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"246.5\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"06:30 pm\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Nd-1K-xsW\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"246.5\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"May 16, 2015\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CVH-a0-dOK\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"41.5\" width=\"246.5\" height=\"14\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"12\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"CVH-a0-dOK\" secondAttribute=\"trailing\" constant=\"10\" id=\"2W4-1g-qUp\"/>\n                                                                <constraint firstItem=\"Gqh-Lu-0yL\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"leading\" id=\"CPK-DZ-Jna\"/>\n                                                                <constraint firstItem=\"3Nd-1K-xsW\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"leading\" id=\"HAO-rj-5r2\"/>\n                                                                <constraint firstItem=\"CVH-a0-dOK\" firstAttribute=\"top\" secondItem=\"3Nd-1K-xsW\" secondAttribute=\"bottom\" id=\"JfS-Z0-tb4\"/>\n                                                                <constraint firstItem=\"3Nd-1K-xsW\" firstAttribute=\"top\" secondItem=\"Gqh-Lu-0yL\" secondAttribute=\"bottom\" constant=\"4\" id=\"LsK-kp-Shr\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"Gqh-Lu-0yL\" secondAttribute=\"trailing\" constant=\"10\" id=\"qVb-B4-IKQ\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"3Nd-1K-xsW\" secondAttribute=\"trailing\" constant=\"10\" id=\"uTe-mD-rkb\"/>\n                                                                <constraint firstItem=\"Gqh-Lu-0yL\" firstAttribute=\"top\" secondItem=\"4an-5P-hxw\" secondAttribute=\"top\" constant=\"8\" id=\"uwz-Yb-BL3\"/>\n                                                                <constraint firstItem=\"CVH-a0-dOK\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"leading\" id=\"vFD-Zr-NfI\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xej-CM-tIb\" userLabel=\"toView\">\n                                                            <rect key=\"frame\" x=\"281.5\" y=\"0.0\" width=\"256.5\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"REQUEST DEADLINE\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GYY-Sq-cIe\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"256.5\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"24 minutes\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mgx-5V-Xba\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"256.5\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"mgx-5V-Xba\" firstAttribute=\"leading\" secondItem=\"xej-CM-tIb\" secondAttribute=\"leading\" id=\"BJE-Ky-3Me\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"mgx-5V-Xba\" secondAttribute=\"trailing\" id=\"ULU-ab-35w\"/>\n                                                                <constraint firstItem=\"mgx-5V-Xba\" firstAttribute=\"top\" secondItem=\"GYY-Sq-cIe\" secondAttribute=\"bottom\" constant=\"4\" id=\"hYq-Zc-RTv\"/>\n                                                                <constraint firstItem=\"GYY-Sq-cIe\" firstAttribute=\"top\" secondItem=\"xej-CM-tIb\" secondAttribute=\"top\" constant=\"8\" id=\"tOv-Os-X27\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"GYY-Sq-cIe\" secondAttribute=\"trailing\" id=\"xGr-he-RHD\"/>\n                                                                <constraint firstItem=\"GYY-Sq-cIe\" firstAttribute=\"leading\" secondItem=\"xej-CM-tIb\" secondAttribute=\"leading\" id=\"xz9-GB-Qu9\"/>\n                                                            </constraints>\n                                                        </view>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"xej-CM-tIb\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"trailing\" constant=\"3\" id=\"18O-Ef-V9i\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"xej-CM-tIb\" secondAttribute=\"bottom\" constant=\"-1\" id=\"1tY-3B-4u3\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"4an-5P-hxw\" secondAttribute=\"bottom\" constant=\"-1\" id=\"C3N-uA-S44\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"72\" id=\"E7G-nf-19d\"/>\n                                                        <constraint firstItem=\"4an-5P-hxw\" firstAttribute=\"width\" secondItem=\"xej-CM-tIb\" secondAttribute=\"width\" id=\"EfU-Gh-ldi\"/>\n                                                        <constraint firstItem=\"4an-5P-hxw\" firstAttribute=\"top\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"top\" id=\"W0D-tu-VOV\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"xej-CM-tIb\" secondAttribute=\"trailing\" constant=\"22\" id=\"gqy-Jt-C4w\"/>\n                                                        <constraint firstItem=\"4an-5P-hxw\" firstAttribute=\"leading\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"leading\" constant=\"22\" id=\"me4-Sw-MlK\"/>\n                                                        <constraint firstItem=\"xej-CM-tIb\" firstAttribute=\"top\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"top\" id=\"xOe-NP-ZG0\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view tag=\"3\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"073-FT-8Xc\" userLabel=\"BottomContainerView\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"402\" width=\"560\" height=\"72\"/>\n                                                    <subviews>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7hv-c7-TPM\" userLabel=\"line\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"560\" height=\"10\"/>\n                                                            <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"10\" id=\"I7X-zJ-Chv\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"roundedRect\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GIq-nQ-eox\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"3\" width=\"516\" height=\"41\"/>\n                                                            <color key=\"backgroundColor\" red=\"0.99607843137254903\" green=\"0.74509803921568629\" blue=\"0.086274509803921567\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"41\" id=\"1a9-RT-Lsa\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <state key=\"normal\" title=\"REQUEST\">\n                                                                <color key=\"titleColor\" red=\"0.27058823529411763\" green=\"0.21568627450980393\" blue=\"0.082352941176470587\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            </state>\n                                                            <userDefinedRuntimeAttributes>\n                                                                <userDefinedRuntimeAttribute type=\"number\" keyPath=\"layer.cornerRadius\">\n                                                                    <integer key=\"value\" value=\"10\"/>\n                                                                </userDefinedRuntimeAttribute>\n                                                            </userDefinedRuntimeAttributes>\n                                                            <connections>\n                                                                <action selector=\"buttonHandler:\" destination=\"fgm-B1-nUi\" eventType=\"touchUpInside\" id=\"qbs-qF-CKr\"/>\n                                                            </connections>\n                                                        </button>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"5 people have sent a request\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xRl-uA-7tD\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"44\" width=\"560\" height=\"28\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"7hv-c7-TPM\" secondAttribute=\"trailing\" id=\"0cg-br-1Fh\"/>\n                                                        <constraint firstItem=\"xRl-uA-7tD\" firstAttribute=\"top\" secondItem=\"GIq-nQ-eox\" secondAttribute=\"bottom\" id=\"6Ye-UR-abp\"/>\n                                                        <constraint firstItem=\"GIq-nQ-eox\" firstAttribute=\"leading\" secondItem=\"073-FT-8Xc\" secondAttribute=\"leading\" constant=\"22\" id=\"8nM-kU-591\"/>\n                                                        <constraint firstItem=\"7hv-c7-TPM\" firstAttribute=\"leading\" secondItem=\"073-FT-8Xc\" secondAttribute=\"leading\" id=\"CO8-XD-FkY\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"72\" id=\"N5h-ao-mEr\"/>\n                                                        <constraint firstItem=\"xRl-uA-7tD\" firstAttribute=\"leading\" secondItem=\"073-FT-8Xc\" secondAttribute=\"leading\" id=\"Sz9-gM-2Dh\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"xRl-uA-7tD\" secondAttribute=\"bottom\" id=\"aj3-EF-Ihl\"/>\n                                                        <constraint firstItem=\"GIq-nQ-eox\" firstAttribute=\"centerY\" secondItem=\"073-FT-8Xc\" secondAttribute=\"centerY\" constant=\"-12.5\" id=\"iKb-um-Pc8\"/>\n                                                        <constraint firstItem=\"7hv-c7-TPM\" firstAttribute=\"top\" secondItem=\"073-FT-8Xc\" secondAttribute=\"top\" id=\"kr2-hV-dgo\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"xRl-uA-7tD\" secondAttribute=\"trailing\" id=\"pfa-HZ-J4N\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"GIq-nQ-eox\" secondAttribute=\"trailing\" constant=\"22\" id=\"xr8-ZY-D9O\"/>\n                                                    </constraints>\n                                                    <userDefinedRuntimeAttributes>\n                                                        <userDefinedRuntimeAttribute type=\"number\" keyPath=\"layer.cornerRadius\">\n                                                            <integer key=\"value\" value=\"10\"/>\n                                                        </userDefinedRuntimeAttribute>\n                                                    </userDefinedRuntimeAttributes>\n                                                </view>\n                                            </subviews>\n                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                            <constraints>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"stA-YF-Roj\" secondAttribute=\"trailing\" id=\"0dd-qw-qxW\"/>\n                                                <constraint firstItem=\"dXA-2m-h6U\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" constant=\"330\" identifier=\"yPosition\" id=\"1Pb-T0-aLV\"/>\n                                                <constraint firstItem=\"dXA-2m-h6U\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"KJ6-At-0ch\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"trailing\" id=\"QgD-g5-T2R\"/>\n                                                <constraint firstItem=\"stA-YF-Roj\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" constant=\"165\" identifier=\"yPosition\" id=\"WXH-rW-ogj\"/>\n                                                <constraint firstItem=\"073-FT-8Xc\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"Wyb-18-gvz\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"073-FT-8Xc\" secondAttribute=\"trailing\" id=\"XEf-H7-Jtf\"/>\n                                                <constraint firstItem=\"oxa-Zu-WLe\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" id=\"dsV-Tl-As5\"/>\n                                                <constraint firstAttribute=\"height\" constant=\"479\" id=\"llk-Zn-ick\"/>\n                                                <constraint firstItem=\"073-FT-8Xc\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" constant=\"402\" identifier=\"yPosition\" id=\"nbR-Yc-9UT\"/>\n                                                <constraint firstItem=\"oxa-Zu-WLe\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"qSD-vx-636\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"trailing\" id=\"qf7-aP-Uq7\"/>\n                                                <constraint firstItem=\"stA-YF-Roj\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"zem-7x-IVn\"/>\n                                            </constraints>\n                                        </view>\n                                    </subviews>\n                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    <constraints>\n                                        <constraint firstItem=\"CQr-i9-7br\" firstAttribute=\"top\" secondItem=\"MxP-E5-nua\" secondAttribute=\"top\" constant=\"7\" identifier=\"ForegroundViewTop\" id=\"9tL-QY-I0e\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"CQr-i9-7br\" secondAttribute=\"trailing\" constant=\"20\" id=\"eKz-hh-g5H\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"CGm-93-iX0\" secondAttribute=\"trailing\" constant=\"20\" id=\"n4X-8b-s3c\"/>\n                                        <constraint firstItem=\"CQr-i9-7br\" firstAttribute=\"leading\" secondItem=\"MxP-E5-nua\" secondAttribute=\"leading\" constant=\"20\" id=\"uqx-fi-2na\"/>\n                                        <constraint firstItem=\"CGm-93-iX0\" firstAttribute=\"top\" secondItem=\"MxP-E5-nua\" secondAttribute=\"top\" constant=\"180\" identifier=\"ContainerViewTop\" id=\"wys-AY-Zdw\"/>\n                                        <constraint firstItem=\"CGm-93-iX0\" firstAttribute=\"leading\" secondItem=\"MxP-E5-nua\" secondAttribute=\"leading\" constant=\"20\" id=\"yUf-ga-7bS\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" red=\"0.91372549020000005\" green=\"0.85277035359999998\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <userDefinedRuntimeAttributes>\n                                    <userDefinedRuntimeAttribute type=\"color\" keyPath=\"backViewColor\">\n                                        <color key=\"value\" red=\"0.96862745100000003\" green=\"0.93725490199999995\" blue=\"0.96862745100000003\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </userDefinedRuntimeAttribute>\n                                    <userDefinedRuntimeAttribute type=\"number\" keyPath=\"itemCount\">\n                                        <integer key=\"value\" value=\"4\"/>\n                                    </userDefinedRuntimeAttribute>\n                                </userDefinedRuntimeAttributes>\n                                <connections>\n                                    <outlet property=\"closeNumberLabel\" destination=\"uWG-zH-Vjo\" id=\"4Fq-wZ-nFd\"/>\n                                    <outlet property=\"containerView\" destination=\"CGm-93-iX0\" id=\"gSm-z4-RdG\"/>\n                                    <outlet property=\"containerViewTop\" destination=\"wys-AY-Zdw\" id=\"Exs-1v-4Jn\"/>\n                                    <outlet property=\"foregroundView\" destination=\"CQr-i9-7br\" id=\"88q-9Z-PtA\"/>\n                                    <outlet property=\"foregroundViewTop\" destination=\"9tL-QY-I0e\" id=\"lRz-za-vwR\"/>\n                                    <outlet property=\"openNumberLabel\" destination=\"7eb-NE-XLS\" id=\"mrT-hs-afw\"/>\n                                </connections>\n                            </tableViewCell>\n                        </prototypes>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"0cn-rv-Emg\" id=\"RVU-S6-2gz\"/>\n                            <outlet property=\"delegate\" destination=\"0cn-rv-Emg\" id=\"o83-eX-gao\"/>\n                        </connections>\n                    </tableView>\n                    <freeformSimulatedSizeMetrics key=\"simulatedDestinationMetrics\"/>\n                    <size key=\"freeformSize\" width=\"600\" height=\"708\"/>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"WxO-6i-Q9B\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"43\" y=\"296\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"arrow\" width=\"16\" height=\"25\"/>\n        <image name=\"burger\" width=\"38\" height=\"29\"/>\n        <image name=\"dots\" width=\"14\" height=\"84\"/>\n        <image name=\"image\" width=\"340.5\" height=\"165\"/>\n        <image name=\"photo\" width=\"98\" height=\"98\"/>\n        <image name=\"stars\" width=\"97\" height=\"17\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/DemoCell.swift",
    "content": "//\n//  DemoCell.swift\n//  FoldingCell\n//\n//  Created by Alex K. on 25/12/15.\n//  Copyright © 2015 Alex K. All rights reserved.\n//\n\nimport FoldingCell\nimport UIKit\n\nclass DemoCell: FoldingCell {\n\n    @IBOutlet var closeNumberLabel: UILabel!\n    @IBOutlet var openNumberLabel: UILabel!\n\n    var number: Int = 0 {\n        didSet {\n            closeNumberLabel.text = String(number)\n            openNumberLabel.text = String(number)\n        }\n    }\n\n    override func awakeFromNib() {\n        foregroundView.layer.cornerRadius = 10\n        foregroundView.layer.masksToBounds = true\n        super.awakeFromNib()\n    }\n\n    override func animationDuration(_ itemIndex: NSInteger, type _: FoldingCell.AnimationType) -> TimeInterval {\n        let durations = [0.26, 0.2, 0.2]\n        return durations[itemIndex]\n    }\n}\n\n// MARK: - Actions ⚡️\n\nextension DemoCell {\n\n    @IBAction func buttonHandler(_: AnyObject) {\n        print(\"tap\")\n    }\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCell-Demo/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>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</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>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": "FoldingCell/FoldingCell-Demo/TableViewController.swift",
    "content": "//\n//  TableViewController.swift\n//\n// Copyright (c) 21/12/15. Ramotion Inc. (http://ramotion.com)\n//\n// Permission is hereby granted, free of charge, to any person obtaining a copy\n// of this software and associated documentation files (the \"Software\"), to deal\n// in the Software without restriction, including without limitation the rights\n// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n// copies of the Software, and to permit persons to whom the Software is\n// furnished to do so, subject to the following conditions:\n//\n// The above copyright notice and this permission notice shall be included in\n// all copies or substantial portions of the Software.\n//\n// THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n// THE SOFTWARE.\n\nimport FoldingCell\nimport UIKit\n\nclass TableViewController: UITableViewController {\n\n    enum Const {\n        static let closeCellHeight: CGFloat = 179\n        static let openCellHeight: CGFloat = 488\n        static let rowsCount = 10\n    }\n    \n    var cellHeights: [CGFloat] = []\n\n    // MARK: Life Cycle\n    override func viewDidLoad() {\n        super.viewDidLoad()\n        setup()\n    }\n\n    // MARK: Helpers\n    private func setup() {\n        cellHeights = Array(repeating: Const.closeCellHeight, count: Const.rowsCount)\n        tableView.estimatedRowHeight = Const.closeCellHeight\n        tableView.rowHeight = UITableView.automaticDimension\n        tableView.backgroundColor = UIColor(patternImage: #imageLiteral(resourceName: \"background\"))\n        if #available(iOS 10.0, *) {\n            tableView.refreshControl = UIRefreshControl()\n            tableView.refreshControl?.addTarget(self, action: #selector(refreshHandler), for: .valueChanged)\n        }\n    }\n    \n    // MARK: Actions\n    @objc func refreshHandler() {\n        let deadlineTime = DispatchTime.now() + .seconds(1)\n        DispatchQueue.main.asyncAfter(deadline: deadlineTime, execute: { [weak self] in\n            if #available(iOS 10.0, *) {\n                self?.tableView.refreshControl?.endRefreshing()\n            } \n            self?.tableView.reloadData()\n        })\n    }\n}\n\n// MARK: - TableView\n\nextension TableViewController {\n\n    override func tableView(_: UITableView, numberOfRowsInSection _: Int) -> Int {\n        return 10\n    }\n\n    override func tableView(_: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {\n        guard case let cell as DemoCell = cell else {\n            return\n        }\n\n        cell.backgroundColor = .clear\n\n        if cellHeights[indexPath.row] == Const.closeCellHeight {\n            cell.unfold(false, animated: false, completion: nil)\n        } else {\n            cell.unfold(true, animated: false, completion: nil)\n        }\n\n        cell.number = indexPath.row\n    }\n\n    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {\n        let cell = tableView.dequeueReusableCell(withIdentifier: \"FoldingCell\", for: indexPath) as! FoldingCell\n        let durations: [TimeInterval] = [0.26, 0.2, 0.2]\n        cell.durationsForExpandedState = durations\n        cell.durationsForCollapsedState = durations\n        return cell\n    }\n\n    override func tableView(_: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {\n        return cellHeights[indexPath.row]\n    }\n\n    override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {\n\n        let cell = tableView.cellForRow(at: indexPath) as! FoldingCell\n\n        if cell.isAnimating() {\n            return\n        }\n\n        var duration = 0.0\n        let cellIsCollapsed = cellHeights[indexPath.row] == Const.closeCellHeight\n        if cellIsCollapsed {\n            cellHeights[indexPath.row] = Const.openCellHeight\n            cell.unfold(true, animated: true, completion: nil)\n            duration = 0.5\n        } else {\n            cellHeights[indexPath.row] = Const.closeCellHeight\n            cell.unfold(false, animated: true, completion: nil)\n            duration = 0.8\n        }\n\n        UIView.animate(withDuration: duration, delay: 0, options: .curveEaseOut, animations: { () -> Void in\n            tableView.beginUpdates()\n            tableView.endUpdates()\n            \n            // fix https://github.com/Ramotion/folding-cell/issues/169\n            if cell.frame.maxY > tableView.frame.maxY {\n                tableView.scrollToRow(at: indexPath, at: UITableView.ScrollPosition.bottom, animated: true)\n            }\n        }, completion: nil)\n    }\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/AppDelegate.h",
    "content": "//\n//  AppDelegate.h\n//  DemoApp-Objc\n//\n//  Created by Abdurahim Jauzee on 30/05/2017.\n//  Copyright © 2017 Abdurahim Jauzee. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface AppDelegate : UIResponder <UIApplicationDelegate>\n\n@property (strong, nonatomic) UIWindow *window;\n\n\n@end\n\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/AppDelegate.m",
    "content": "//\n//  AppDelegate.m\n//  DemoApp-Objc\n//\n//  Created by Abdurahim Jauzee on 30/05/2017.\n//  Copyright © 2017 Abdurahim Jauzee. All rights reserved.\n//\n\n#import \"AppDelegate.h\"\n\n@interface AppDelegate ()\n\n@end\n\n@implementation AppDelegate\n\n\n- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {\n  return YES;\n}\n    \n@end\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"20x20\",\n      \"scale\" : \"3x\"\n    },\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": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/arrow.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"arrow.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/background.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"background.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/burger.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"burger.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/dots.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"dots.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/image.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"image.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/photo.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"photo.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Assets.xcassets/stars.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"filename\" : \"stars.pdf\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"13771\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <device id=\"retina4_7\" orientation=\"portrait\">\n        <adaptation id=\"fullscreen\"/>\n    </device>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"13772\"/>\n        <capability name=\"Constraints to layout margins\" minToolsVersion=\"6.0\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <scenes>\n        <!--View Controller-->\n        <scene sceneID=\"EHf-IW-A2E\">\n            <objects>\n                <viewController id=\"01J-lp-oVM\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"Llm-lL-Icb\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"xb3-aO-Qok\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"Ze5-6b-2t3\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <subviews>\n                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"  Copyright (c) 2018 Ramotion. All rights reserved.\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fcf-sN-ku0\">\n                                <rect key=\"frame\" x=\"16\" y=\"630\" width=\"343\" height=\"17\"/>\n                                <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"14\"/>\n                                <nil key=\"textColor\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                            <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Folding Cell\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"bCd-3b-lHA\">\n                                <rect key=\"frame\" x=\"139.5\" y=\"323\" width=\"96\" height=\"21\"/>\n                                <fontDescription key=\"fontDescription\" type=\"boldSystem\" pointSize=\"17\"/>\n                                <nil key=\"textColor\"/>\n                                <nil key=\"highlightedColor\"/>\n                            </label>\n                        </subviews>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <constraints>\n                            <constraint firstItem=\"fcf-sN-ku0\" firstAttribute=\"leading\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"leadingMargin\" id=\"811-hI-Egq\"/>\n                            <constraint firstItem=\"bCd-3b-lHA\" firstAttribute=\"centerY\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerY\" id=\"T4x-O3-JqD\"/>\n                            <constraint firstItem=\"bCd-3b-lHA\" firstAttribute=\"centerX\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"centerX\" id=\"VFr-tp-sPw\"/>\n                            <constraint firstItem=\"fcf-sN-ku0\" firstAttribute=\"trailing\" secondItem=\"Ze5-6b-2t3\" secondAttribute=\"trailingMargin\" id=\"dS9-pv-ebe\"/>\n                            <constraint firstItem=\"xb3-aO-Qok\" firstAttribute=\"top\" secondItem=\"fcf-sN-ku0\" secondAttribute=\"bottom\" constant=\"20\" id=\"kbD-dX-t3N\"/>\n                        </constraints>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"52\" y=\"374.66266866566718\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"15400\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"0cn-rv-Emg\">\n    <device id=\"retina4_7\" orientation=\"portrait\" appearance=\"light\"/>\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"15404\"/>\n        <capability name=\"documents saved in the Xcode 8 format\" minToolsVersion=\"8.0\"/>\n    </dependencies>\n    <customFonts key=\"customFonts\">\n        <array key=\"OpenSans-Light.ttf\">\n            <string>OpenSans-Light</string>\n        </array>\n        <array key=\"OpenSans-Regular.ttf\">\n            <string>OpenSans</string>\n        </array>\n        <array key=\"OpenSans-Semibold.ttf\">\n            <string>OpenSans-Semibold</string>\n        </array>\n    </customFonts>\n    <scenes>\n        <!--Item-->\n        <scene sceneID=\"Q2d-BE-geS\">\n            <objects>\n                <tableViewController storyboardIdentifier=\"TableViewController\" id=\"0cn-rv-Emg\" customClass=\"TableViewController\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" showsHorizontalScrollIndicator=\"NO\" showsVerticalScrollIndicator=\"NO\" dataMode=\"prototypes\" style=\"plain\" separatorStyle=\"none\" rowHeight=\"667\" sectionHeaderHeight=\"28\" sectionFooterHeight=\"28\" id=\"MwZ-K3-six\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <color key=\"sectionIndexBackgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                        <prototypes>\n                            <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"none\" indentationWidth=\"10\" reuseIdentifier=\"FoldingCell\" rowHeight=\"667\" id=\"fgm-B1-nUi\" customClass=\"FoldingCell\" customModule=\"FoldingCell\">\n                                <rect key=\"frame\" x=\"0.0\" y=\"28\" width=\"375\" height=\"667\"/>\n                                <autoresizingMask key=\"autoresizingMask\"/>\n                                <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"fgm-B1-nUi\" id=\"MxP-E5-nua\">\n                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"375\" height=\"667\"/>\n                                    <autoresizingMask key=\"autoresizingMask\"/>\n                                    <subviews>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CQr-i9-7br\" userLabel=\"Foreground\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                            <rect key=\"frame\" x=\"20\" y=\"7\" width=\"335\" height=\"165\"/>\n                                            <subviews>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"UhV-pr-kw4\" userLabel=\"LeftView\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"88\" height=\"165\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" tag=\"12\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"#25\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"uWG-zH-Vjo\">\n                                                            <rect key=\"frame\" x=\"20\" y=\"33.5\" width=\"40.5\" height=\"28\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Light\" family=\"Open Sans\" pointSize=\"24\"/>\n                                                            <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.8008604307432432\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"TODAY\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FQM-r1-a67\">\n                                                            <rect key=\"frame\" x=\"18\" y=\"103\" width=\"33\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"06:30 PM\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"9ka-ho-kkM\">\n                                                            <rect key=\"frame\" x=\"18\" y=\"121.5\" width=\"56\" height=\"15.5\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"13\"/>\n                                                            <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.80434438344594594\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.36470588235294116\" green=\"0.29019607843137252\" blue=\"0.59999999999999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"width\" constant=\"88\" id=\"79O-5u-rWy\"/>\n                                                        <constraint firstItem=\"uWG-zH-Vjo\" firstAttribute=\"centerY\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"centerY\" constant=\"-35\" id=\"BKr-4U-Xpn\"/>\n                                                        <constraint firstItem=\"9ka-ho-kkM\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"leading\" constant=\"18\" id=\"Cay-aa-P2d\"/>\n                                                        <constraint firstItem=\"uWG-zH-Vjo\" firstAttribute=\"centerX\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"centerX\" constant=\"-4\" id=\"JBk-n5-unF\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"9ka-ho-kkM\" secondAttribute=\"bottom\" constant=\"28\" id=\"bej-dB-MVA\"/>\n                                                        <constraint firstItem=\"FQM-r1-a67\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"leading\" constant=\"18\" id=\"c48-WJ-cDt\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"FQM-r1-a67\" secondAttribute=\"bottom\" constant=\"50\" id=\"ccu-aB-Y5n\"/>\n                                                    </constraints>\n                                                </view>\n                                                <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleAspectFit\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"dots\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lOX-iD-3OO\">\n                                                    <rect key=\"frame\" x=\"108\" y=\"32\" width=\"8\" height=\"42\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"height\" constant=\"42\" id=\"aAE-ZT-XRW\"/>\n                                                        <constraint firstAttribute=\"width\" constant=\"8\" id=\"z5d-lD-qkX\"/>\n                                                    </constraints>\n                                                </imageView>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"EVE-fe-u5I\" userLabel=\"line\">\n                                                    <rect key=\"frame\" x=\"120\" y=\"52\" width=\"199\" height=\"1\"/>\n                                                    <color key=\"backgroundColor\" red=\"0.8784313725490196\" green=\"0.8784313725490196\" blue=\"0.8784313725490196\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"height\" constant=\"1\" id=\"4Xs-v9-X7G\"/>\n                                                    </constraints>\n                                                </view>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"W 85th St, New York, 10024 \" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"7\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"BUL-Of-nxF\" userLabel=\"W 85th St, New York, 10024\">\n                                                    <rect key=\"frame\" x=\"124\" y=\"28\" width=\"201\" height=\"16.5\"/>\n                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"14\"/>\n                                                    <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568627450979\" blue=\"0.2627450980392157\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"E 30th St, New York, 10016\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" minimumFontSize=\"7\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mNy-cH-kEi\" userLabel=\"W 85th St, New York, 10024\">\n                                                    <rect key=\"frame\" x=\"124\" y=\"57\" width=\"201\" height=\"16.5\"/>\n                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"14\"/>\n                                                    <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LnD-j0-rqc\" userLabel=\"RightView\">\n                                                    <rect key=\"frame\" x=\"260\" y=\"100\" width=\"75\" height=\"40\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"WEIGHT\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dKi-6r-6NP\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"light\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fZc-Gv-4xg\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"34.5\" height=\"21\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"fZc-Gv-4xg\" firstAttribute=\"leading\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"leading\" id=\"L6e-Uv-9vS\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"fZc-Gv-4xg\" secondAttribute=\"bottom\" id=\"ZRs-x2-A0s\"/>\n                                                        <constraint firstItem=\"dKi-6r-6NP\" firstAttribute=\"leading\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"leading\" id=\"oWr-Zs-xYW\"/>\n                                                        <constraint firstItem=\"dKi-6r-6NP\" firstAttribute=\"top\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"top\" id=\"wF5-DY-L1I\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"edX-4x-TiO\" userLabel=\"CenterView\">\n                                                    <rect key=\"frame\" x=\"184\" y=\"100\" width=\"75\" height=\"40\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"PLEDGE\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"O5e-nR-iJW\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"$150\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"a0P-Eh-vI9\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"40.5\" height=\"21\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"O5e-nR-iJW\" firstAttribute=\"leading\" secondItem=\"edX-4x-TiO\" secondAttribute=\"leading\" id=\"AYj-MP-1rV\"/>\n                                                        <constraint firstItem=\"O5e-nR-iJW\" firstAttribute=\"top\" secondItem=\"edX-4x-TiO\" secondAttribute=\"top\" id=\"cgQ-TI-IsS\"/>\n                                                        <constraint firstItem=\"a0P-Eh-vI9\" firstAttribute=\"leading\" secondItem=\"edX-4x-TiO\" secondAttribute=\"leading\" id=\"oTf-nY-JXI\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"a0P-Eh-vI9\" secondAttribute=\"bottom\" id=\"oeJ-q1-9t1\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"XAj-wA-vfn\" userLabel=\"LeftVoew\">\n                                                    <rect key=\"frame\" x=\"108\" y=\"100\" width=\"75\" height=\"40\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"REQUESTS\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"X8Y-jq-qbv\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"53\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568627450979\" blue=\"0.2627450980392157\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"2\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sA6-bX-nDC\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"10.5\" height=\"21\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <color key=\"textColor\" red=\"0.20000000000000001\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"sA6-bX-nDC\" firstAttribute=\"leading\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"leading\" id=\"CPD-C5-1TI\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"sA6-bX-nDC\" secondAttribute=\"bottom\" id=\"FLY-M3-HBk\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"40\" id=\"JEm-kR-Yum\"/>\n                                                        <constraint firstItem=\"X8Y-jq-qbv\" firstAttribute=\"leading\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"leading\" id=\"bpa-pP-9bM\"/>\n                                                        <constraint firstItem=\"X8Y-jq-qbv\" firstAttribute=\"top\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"top\" id=\"qjl-VM-Pwi\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                            <constraints>\n                                                <constraint firstItem=\"LnD-j0-rqc\" firstAttribute=\"centerY\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"centerY\" id=\"1WA-KY-kPA\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"trailing\" id=\"23p-a2-A6L\"/>\n                                                <constraint firstItem=\"BUL-Of-nxF\" firstAttribute=\"leading\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" constant=\"124\" id=\"4Aj-wM-xak\"/>\n                                                <constraint firstItem=\"XAj-wA-vfn\" firstAttribute=\"width\" secondItem=\"edX-4x-TiO\" secondAttribute=\"width\" id=\"4SA-da-3ek\"/>\n                                                <constraint firstItem=\"lOX-iD-3OO\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"32\" id=\"Dgd-LY-uFx\"/>\n                                                <constraint firstItem=\"UhV-pr-kw4\" firstAttribute=\"leading\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" id=\"HeC-4J-km5\"/>\n                                                <constraint firstItem=\"LnD-j0-rqc\" firstAttribute=\"leading\" secondItem=\"edX-4x-TiO\" secondAttribute=\"trailing\" constant=\"1\" id=\"KSd-bn-DUH\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"bottom\" id=\"NLs-TX-v4X\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"mNy-cH-kEi\" secondAttribute=\"trailing\" constant=\"10\" id=\"Rqh-At-NpG\"/>\n                                                <constraint firstItem=\"XAj-wA-vfn\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"trailing\" constant=\"20\" id=\"TBj-Xh-aIR\"/>\n                                                <constraint firstItem=\"UhV-pr-kw4\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" id=\"V89-lD-fHB\"/>\n                                                <constraint firstItem=\"mNy-cH-kEi\" firstAttribute=\"leading\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" constant=\"124\" id=\"XMf-Cs-Nu8\"/>\n                                                <constraint firstItem=\"EVE-fe-u5I\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"52\" id=\"Z3h-Dn-3CO\"/>\n                                                <constraint firstItem=\"LnD-j0-rqc\" firstAttribute=\"height\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"height\" id=\"anH-lP-Xab\"/>\n                                                <constraint firstAttribute=\"height\" constant=\"165\" id=\"bfl-Uq-i0I\"/>\n                                                <constraint firstItem=\"BUL-Of-nxF\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"28\" id=\"e1p-p7-g63\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"height\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"height\" id=\"eAg-xy-ea5\"/>\n                                                <constraint firstItem=\"mNy-cH-kEi\" firstAttribute=\"top\" secondItem=\"CQr-i9-7br\" secondAttribute=\"top\" constant=\"57\" id=\"fks-BZ-yCK\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"leading\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"trailing\" constant=\"1\" id=\"gBc-AU-Dv0\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"BUL-Of-nxF\" secondAttribute=\"trailing\" constant=\"10\" id=\"hTo-fu-XYr\"/>\n                                                <constraint firstItem=\"lOX-iD-3OO\" firstAttribute=\"leading\" secondItem=\"UhV-pr-kw4\" secondAttribute=\"trailing\" constant=\"20\" id=\"hcx-kY-WtQ\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"EVE-fe-u5I\" secondAttribute=\"trailing\" constant=\"16\" id=\"hmd-8g-7Zc\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"bottom\" constant=\"25\" id=\"kSF-kq-vx0\"/>\n                                                <constraint firstItem=\"EVE-fe-u5I\" firstAttribute=\"leading\" secondItem=\"CQr-i9-7br\" secondAttribute=\"leading\" constant=\"120\" id=\"kbm-Bj-AYL\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"width\" secondItem=\"LnD-j0-rqc\" secondAttribute=\"width\" id=\"vyp-8w-PzA\"/>\n                                                <constraint firstItem=\"edX-4x-TiO\" firstAttribute=\"centerY\" secondItem=\"XAj-wA-vfn\" secondAttribute=\"centerY\" id=\"wEN-7C-rbm\"/>\n                                            </constraints>\n                                        </view>\n                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CGm-93-iX0\" userLabel=\"Container\">\n                                            <rect key=\"frame\" x=\"20\" y=\"180\" width=\"335\" height=\"479\"/>\n                                            <subviews>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"oxa-Zu-WLe\" userLabel=\"FirstContainerView\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"165\"/>\n                                                    <subviews>\n                                                        <view tag=\"11\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"o36-zd-BZb\" userLabel=\"bar\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"49\"/>\n                                                            <subviews>\n                                                                <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"vW5-Q1-KFs\">\n                                                                    <rect key=\"frame\" x=\"14\" y=\"10\" width=\"38\" height=\"29\"/>\n                                                                    <state key=\"normal\" image=\"burger\"/>\n                                                                </button>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" tag=\"13\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"# 2618-3157\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7eb-NE-XLS\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"49\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Light\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"$25\" textAlignment=\"right\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4ve-4H-KPK\">\n                                                                    <rect key=\"frame\" x=\"292.5\" y=\"0.0\" width=\"30.5\" height=\"49\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.36470588240000001\" green=\"0.29411764709999999\" blue=\"0.59999999999999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"7eb-NE-XLS\" secondAttribute=\"bottom\" id=\"2hx-ym-O2n\"/>\n                                                                <constraint firstItem=\"7eb-NE-XLS\" firstAttribute=\"top\" secondItem=\"o36-zd-BZb\" secondAttribute=\"top\" id=\"3Qf-gI-O5n\"/>\n                                                                <constraint firstItem=\"vW5-Q1-KFs\" firstAttribute=\"centerY\" secondItem=\"o36-zd-BZb\" secondAttribute=\"centerY\" id=\"5fB-U4-flP\"/>\n                                                                <constraint firstAttribute=\"height\" constant=\"49\" id=\"AC3-t0-KIM\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"4ve-4H-KPK\" secondAttribute=\"trailing\" constant=\"12\" id=\"BgX-bA-WJy\"/>\n                                                                <constraint firstItem=\"4ve-4H-KPK\" firstAttribute=\"top\" secondItem=\"o36-zd-BZb\" secondAttribute=\"top\" id=\"RwT-Kf-gV5\"/>\n                                                                <constraint firstItem=\"vW5-Q1-KFs\" firstAttribute=\"leading\" secondItem=\"o36-zd-BZb\" secondAttribute=\"leading\" constant=\"14\" id=\"eOn-QU-u2B\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"4ve-4H-KPK\" secondAttribute=\"bottom\" id=\"n0y-uI-DZL\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"7eb-NE-XLS\" secondAttribute=\"trailing\" id=\"ncs-Bz-WO7\"/>\n                                                                <constraint firstItem=\"7eb-NE-XLS\" firstAttribute=\"leading\" secondItem=\"o36-zd-BZb\" secondAttribute=\"leading\" id=\"sm1-NI-ycl\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"image\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6Dq-oA-azK\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"49\" width=\"335\" height=\"116\"/>\n                                                        </imageView>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sdL-VL-QmS\" userLabel=\"LeftVoew\">\n                                                            <rect key=\"frame\" x=\"10\" y=\"117\" width=\"104.5\" height=\"40\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"REQUESTS\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"qOA-jB-5OO\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"53\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"2\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"S4b-sI-0J6\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"19\" width=\"10.5\" height=\"21\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"qOA-jB-5OO\" firstAttribute=\"top\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"top\" id=\"cGd-ZP-J1s\"/>\n                                                                <constraint firstItem=\"S4b-sI-0J6\" firstAttribute=\"leading\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"leading\" id=\"j7G-um-lhR\"/>\n                                                                <constraint firstItem=\"qOA-jB-5OO\" firstAttribute=\"leading\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"leading\" id=\"kbc-V1-6VS\"/>\n                                                                <constraint firstAttribute=\"height\" constant=\"40\" id=\"nCu-JM-dqc\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"S4b-sI-0J6\" secondAttribute=\"bottom\" id=\"rU3-vO-BOw\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"O5y-fi-aEI\" userLabel=\"CenterView\">\n                                                            <rect key=\"frame\" x=\"115.5\" y=\"117\" width=\"104\" height=\"40\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"PLEDGE\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4DJ-Tz-dlt\">\n                                                                    <rect key=\"frame\" x=\"32.5\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"$150\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DwZ-qm-hHf\">\n                                                                    <rect key=\"frame\" x=\"32\" y=\"19\" width=\"40.5\" height=\"21\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"4DJ-Tz-dlt\" firstAttribute=\"centerX\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"centerX\" id=\"SLb-LN-VUV\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"DwZ-qm-hHf\" secondAttribute=\"bottom\" id=\"ZmA-Kh-YOl\"/>\n                                                                <constraint firstItem=\"4DJ-Tz-dlt\" firstAttribute=\"top\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"top\" id=\"ZwB-Jg-DKc\"/>\n                                                                <constraint firstItem=\"DwZ-qm-hHf\" firstAttribute=\"centerX\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"centerX\" id=\"zYL-JO-Y3O\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LnF-7u-0Wm\" userLabel=\"RightView\">\n                                                            <rect key=\"frame\" x=\"220.5\" y=\"117\" width=\"104.5\" height=\"40\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"WEIGHT\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"8pV-vb-qIN\">\n                                                                    <rect key=\"frame\" x=\"65.5\" y=\"0.0\" width=\"39\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"0.5\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"light\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"R9w-bP-fWa\">\n                                                                    <rect key=\"frame\" x=\"70\" y=\"19\" width=\"34.5\" height=\"21\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                                    <color key=\"textColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"R9w-bP-fWa\" secondAttribute=\"trailing\" id=\"03y-gy-i1D\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"8pV-vb-qIN\" secondAttribute=\"trailing\" id=\"C3p-9o-b86\"/>\n                                                                <constraint firstItem=\"8pV-vb-qIN\" firstAttribute=\"top\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"top\" id=\"P9u-kS-VVp\"/>\n                                                                <constraint firstAttribute=\"bottom\" secondItem=\"R9w-bP-fWa\" secondAttribute=\"bottom\" id=\"g99-zI-5d7\"/>\n                                                            </constraints>\n                                                        </view>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"0.36470588240000001\" green=\"0.29411764709999999\" blue=\"0.59999999999999998\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"height\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"height\" id=\"0XV-ym-nC5\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"trailing\" constant=\"10\" id=\"Cdw-bC-VFs\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"bottom\" constant=\"8\" id=\"ChF-cT-Ci4\"/>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"centerY\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"centerY\" id=\"HbC-J7-ZQe\"/>\n                                                        <constraint firstItem=\"6Dq-oA-azK\" firstAttribute=\"top\" secondItem=\"o36-zd-BZb\" secondAttribute=\"bottom\" id=\"Hra-Tm-aeT\"/>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"width\" secondItem=\"LnF-7u-0Wm\" secondAttribute=\"width\" id=\"JFY-Wh-ndA\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"6Dq-oA-azK\" secondAttribute=\"trailing\" id=\"JMK-xd-Ud8\"/>\n                                                        <constraint firstItem=\"o36-zd-BZb\" firstAttribute=\"top\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"top\" id=\"Jfy-G5-X5f\"/>\n                                                        <constraint firstItem=\"LnF-7u-0Wm\" firstAttribute=\"height\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"height\" id=\"Ybq-dy-YcI\"/>\n                                                        <constraint firstItem=\"LnF-7u-0Wm\" firstAttribute=\"centerY\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"centerY\" id=\"cYZ-ka-z3f\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"o36-zd-BZb\" secondAttribute=\"trailing\" id=\"dJc-aP-NfF\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"6Dq-oA-azK\" secondAttribute=\"bottom\" id=\"fQE-7X-Zil\"/>\n                                                        <constraint firstItem=\"LnF-7u-0Wm\" firstAttribute=\"leading\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"trailing\" constant=\"1\" id=\"gUa-aN-vMf\"/>\n                                                        <constraint firstItem=\"6Dq-oA-azK\" firstAttribute=\"leading\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"leading\" id=\"lRI-g5-9IB\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"165\" id=\"oKl-NI-KY3\"/>\n                                                        <constraint firstItem=\"sdL-VL-QmS\" firstAttribute=\"leading\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"leading\" constant=\"10\" id=\"ox1-Jv-b1b\"/>\n                                                        <constraint firstItem=\"o36-zd-BZb\" firstAttribute=\"leading\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"leading\" id=\"rXP-0F-fmd\"/>\n                                                        <constraint firstItem=\"sdL-VL-QmS\" firstAttribute=\"width\" secondItem=\"O5y-fi-aEI\" secondAttribute=\"width\" id=\"u3L-Je-do8\"/>\n                                                        <constraint firstItem=\"O5y-fi-aEI\" firstAttribute=\"leading\" secondItem=\"sdL-VL-QmS\" secondAttribute=\"trailing\" constant=\"1\" id=\"vn1-SH-zt8\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view tag=\"1\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"stA-YF-Roj\" userLabel=\"SecondContainerView\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"165\" width=\"335\" height=\"165\"/>\n                                                    <subviews>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"SENDER\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"W63-7b-X8w\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"11\" width=\"40\" height=\"12\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.13725490196078433\" green=\"0.13725490196078433\" blue=\"0.13725490196078433\" alpha=\"0.49546030405405406\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Edward Norton\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"ax5-gv-o7S\">\n                                                            <rect key=\"frame\" x=\"79\" y=\"28\" width=\"248\" height=\"17.5\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                            <color key=\"textColor\" red=\"0.20392156862745098\" green=\"0.23921568627450979\" blue=\"0.2627450980392157\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"stars\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"DCW-h4-xYV\">\n                                                            <rect key=\"frame\" x=\"79\" y=\"50.5\" width=\"97\" height=\"17\"/>\n                                                        </imageView>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"photo\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Nm8-JU-yEj\" userLabel=\"photo\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"28\" width=\"49.000000000000028\" height=\"49.000000000000028\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"49\" id=\"JNu-y1-BLY\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"49\" id=\"qpi-cG-s4a\"/>\n                                                            </constraints>\n                                                        </imageView>\n                                                        <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"arrow\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"YsL-0v-aFS\">\n                                                            <rect key=\"frame\" x=\"297\" y=\"40\" width=\"16\" height=\"25\"/>\n                                                        </imageView>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"fuy-ww-tkB\" userLabel=\"line\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"92\" width=\"291\" height=\"1\"/>\n                                                            <color key=\"backgroundColor\" red=\"0.396078431372549\" green=\"0.40000000000000002\" blue=\"0.396078431372549\" alpha=\"0.20135663006756757\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"1\" id=\"04T-Vd-Eo2\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lbp-KK-0lW\" userLabel=\"fromView\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"92\" width=\"145\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"FROM\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mrt-du-GX9\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"135\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"W 90th St\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"I2n-ts-cGO\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"135\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"New York, NY 10025\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"VHi-qF-ipj\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"41.5\" width=\"135\" height=\"14\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"12\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"VHi-qF-ipj\" firstAttribute=\"top\" secondItem=\"I2n-ts-cGO\" secondAttribute=\"bottom\" id=\"16U-Jy-hNi\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"VHi-qF-ipj\" secondAttribute=\"trailing\" constant=\"10\" id=\"4Cd-0Z-1Wz\"/>\n                                                                <constraint firstItem=\"VHi-qF-ipj\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"leading\" id=\"93Z-Td-aWU\"/>\n                                                                <constraint firstItem=\"I2n-ts-cGO\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"leading\" id=\"a7f-md-5qZ\"/>\n                                                                <constraint firstItem=\"mrt-du-GX9\" firstAttribute=\"top\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"top\" constant=\"8\" id=\"aPY-XI-n36\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"mrt-du-GX9\" secondAttribute=\"trailing\" constant=\"10\" id=\"gSC-z7-Raa\"/>\n                                                                <constraint firstItem=\"I2n-ts-cGO\" firstAttribute=\"top\" secondItem=\"mrt-du-GX9\" secondAttribute=\"bottom\" constant=\"4\" id=\"hlf-bO-QYR\"/>\n                                                                <constraint firstItem=\"mrt-du-GX9\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"leading\" id=\"qmH-Wn-Toe\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"I2n-ts-cGO\" secondAttribute=\"trailing\" constant=\"10\" id=\"vuW-Ue-rZL\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"h39-gf-gsn\" userLabel=\"toView\">\n                                                            <rect key=\"frame\" x=\"168\" y=\"92\" width=\"145\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"TO\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"sel-qV-TVo\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"145\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"46th Ave\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"AOk-eM-O1f\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"145\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"Woodside, NY 11101\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7sP-u0-3Jz\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"41.5\" width=\"145\" height=\"14\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"12\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"AOk-eM-O1f\" firstAttribute=\"top\" secondItem=\"sel-qV-TVo\" secondAttribute=\"bottom\" constant=\"4\" id=\"PcS-xl-55z\"/>\n                                                                <constraint firstItem=\"sel-qV-TVo\" firstAttribute=\"leading\" secondItem=\"h39-gf-gsn\" secondAttribute=\"leading\" id=\"SVa-gH-2cV\"/>\n                                                                <constraint firstItem=\"AOk-eM-O1f\" firstAttribute=\"leading\" secondItem=\"h39-gf-gsn\" secondAttribute=\"leading\" id=\"gMZ-Np-crR\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"7sP-u0-3Jz\" secondAttribute=\"trailing\" id=\"mcV-Uz-ZtB\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"AOk-eM-O1f\" secondAttribute=\"trailing\" id=\"piV-3j-2Ma\"/>\n                                                                <constraint firstItem=\"7sP-u0-3Jz\" firstAttribute=\"leading\" secondItem=\"h39-gf-gsn\" secondAttribute=\"leading\" id=\"q12-fZ-7bC\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"sel-qV-TVo\" secondAttribute=\"trailing\" id=\"qva-xg-8Ca\"/>\n                                                                <constraint firstItem=\"sel-qV-TVo\" firstAttribute=\"top\" secondItem=\"h39-gf-gsn\" secondAttribute=\"top\" constant=\"8\" id=\"tVX-0Q-eMV\"/>\n                                                                <constraint firstItem=\"7sP-u0-3Jz\" firstAttribute=\"top\" secondItem=\"AOk-eM-O1f\" secondAttribute=\"bottom\" id=\"yjO-Ny-aIC\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dff-zA-mGx\" userLabel=\"bottom line\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"164\" width=\"335\" height=\"1\"/>\n                                                            <color key=\"backgroundColor\" red=\"0.39607843139999999\" green=\"0.40000000000000002\" blue=\"0.39607843139999999\" alpha=\"0.20135663009999999\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"1\" id=\"4RP-hO-LT1\"/>\n                                                            </constraints>\n                                                        </view>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"DCW-h4-xYV\" firstAttribute=\"top\" secondItem=\"ax5-gv-o7S\" secondAttribute=\"bottom\" constant=\"5\" id=\"0hE-wf-7T7\"/>\n                                                        <constraint firstItem=\"fuy-ww-tkB\" firstAttribute=\"centerY\" secondItem=\"stA-YF-Roj\" secondAttribute=\"centerY\" constant=\"10\" id=\"11U-5A-z9N\"/>\n                                                        <constraint firstItem=\"ax5-gv-o7S\" firstAttribute=\"leading\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"trailing\" constant=\"8\" id=\"5sH-Zg-wH3\"/>\n                                                        <constraint firstItem=\"Nm8-JU-yEj\" firstAttribute=\"leading\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"leading\" id=\"8Gl-W4-vrM\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"ax5-gv-o7S\" secondAttribute=\"trailing\" constant=\"8\" id=\"8q3-Mt-Co3\"/>\n                                                        <constraint firstItem=\"h39-gf-gsn\" firstAttribute=\"trailing\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"trailing\" id=\"QvS-Hj-mS4\"/>\n                                                        <constraint firstItem=\"YsL-0v-aFS\" firstAttribute=\"centerY\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"centerY\" id=\"Scd-ef-kZX\"/>\n                                                        <constraint firstItem=\"YsL-0v-aFS\" firstAttribute=\"trailing\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"trailing\" id=\"VSO-es-7Lt\"/>\n                                                        <constraint firstItem=\"ax5-gv-o7S\" firstAttribute=\"top\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"top\" id=\"XVf-8q-fzs\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"h39-gf-gsn\" secondAttribute=\"bottom\" id=\"aeD-DS-Nba\"/>\n                                                        <constraint firstItem=\"lbp-KK-0lW\" firstAttribute=\"top\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"bottom\" constant=\"-1\" id=\"bc9-x7-UPC\"/>\n                                                        <constraint firstItem=\"Nm8-JU-yEj\" firstAttribute=\"top\" secondItem=\"W63-7b-X8w\" secondAttribute=\"bottom\" constant=\"5\" id=\"cSO-FI-Zot\"/>\n                                                        <constraint firstItem=\"W63-7b-X8w\" firstAttribute=\"leading\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"leading\" id=\"cp5-qe-qig\"/>\n                                                        <constraint firstItem=\"fuy-ww-tkB\" firstAttribute=\"leading\" secondItem=\"stA-YF-Roj\" secondAttribute=\"leading\" constant=\"22\" id=\"eR7-fL-Plp\"/>\n                                                        <constraint firstItem=\"h39-gf-gsn\" firstAttribute=\"top\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"bottom\" constant=\"-1\" id=\"fqd-Q8-wQT\"/>\n                                                        <constraint firstItem=\"lbp-KK-0lW\" firstAttribute=\"width\" secondItem=\"h39-gf-gsn\" secondAttribute=\"width\" id=\"gun-zz-qrY\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"dff-zA-mGx\" secondAttribute=\"bottom\" id=\"gvU-tx-uqt\"/>\n                                                        <constraint firstItem=\"lbp-KK-0lW\" firstAttribute=\"leading\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"leading\" id=\"heC-JQ-6sD\"/>\n                                                        <constraint firstItem=\"DCW-h4-xYV\" firstAttribute=\"leading\" secondItem=\"ax5-gv-o7S\" secondAttribute=\"leading\" id=\"ivY-t3-4aZ\"/>\n                                                        <constraint firstItem=\"dff-zA-mGx\" firstAttribute=\"leading\" secondItem=\"stA-YF-Roj\" secondAttribute=\"leading\" id=\"j4L-2f-2xx\"/>\n                                                        <constraint firstItem=\"fuy-ww-tkB\" firstAttribute=\"top\" secondItem=\"Nm8-JU-yEj\" secondAttribute=\"bottom\" constant=\"15\" id=\"kdY-oS-aVS\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"bottom\" id=\"lN2-aN-Blf\"/>\n                                                        <constraint firstItem=\"h39-gf-gsn\" firstAttribute=\"leading\" secondItem=\"lbp-KK-0lW\" secondAttribute=\"trailing\" constant=\"1\" id=\"pXq-um-J27\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"dff-zA-mGx\" secondAttribute=\"trailing\" id=\"rP4-SC-s3a\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"fuy-ww-tkB\" secondAttribute=\"trailing\" constant=\"22\" id=\"trm-Sb-BDX\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"165\" id=\"zna-xw-SZ3\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view tag=\"2\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dXA-2m-h6U\" userLabel=\"ThirdContainerView\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"330\" width=\"335\" height=\"72\"/>\n                                                    <subviews>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"4an-5P-hxw\" userLabel=\"fromView\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"0.0\" width=\"144\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"DELIVERY DATE\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Gqh-Lu-0yL\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"134\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"06:30 pm\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"3Nd-1K-xsW\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"134\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"May 16, 2015\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"CVH-a0-dOK\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"41.5\" width=\"134\" height=\"14\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"12\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"CVH-a0-dOK\" secondAttribute=\"trailing\" constant=\"10\" id=\"2W4-1g-qUp\"/>\n                                                                <constraint firstItem=\"Gqh-Lu-0yL\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"leading\" id=\"CPK-DZ-Jna\"/>\n                                                                <constraint firstItem=\"3Nd-1K-xsW\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"leading\" id=\"HAO-rj-5r2\"/>\n                                                                <constraint firstItem=\"CVH-a0-dOK\" firstAttribute=\"top\" secondItem=\"3Nd-1K-xsW\" secondAttribute=\"bottom\" id=\"JfS-Z0-tb4\"/>\n                                                                <constraint firstItem=\"3Nd-1K-xsW\" firstAttribute=\"top\" secondItem=\"Gqh-Lu-0yL\" secondAttribute=\"bottom\" constant=\"4\" id=\"LsK-kp-Shr\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"Gqh-Lu-0yL\" secondAttribute=\"trailing\" constant=\"10\" id=\"qVb-B4-IKQ\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"3Nd-1K-xsW\" secondAttribute=\"trailing\" constant=\"10\" id=\"uTe-mD-rkb\"/>\n                                                                <constraint firstItem=\"Gqh-Lu-0yL\" firstAttribute=\"top\" secondItem=\"4an-5P-hxw\" secondAttribute=\"top\" constant=\"8\" id=\"uwz-Yb-BL3\"/>\n                                                                <constraint firstItem=\"CVH-a0-dOK\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"leading\" id=\"vFD-Zr-NfI\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xej-CM-tIb\" userLabel=\"toView\">\n                                                            <rect key=\"frame\" x=\"169\" y=\"0.0\" width=\"144\" height=\"73\"/>\n                                                            <subviews>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"REQUEST DEADLINE\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GYY-Sq-cIe\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"8\" width=\"144\" height=\"12\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                                    <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"24 minutes\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"mgx-5V-Xba\">\n                                                                    <rect key=\"frame\" x=\"0.0\" y=\"24\" width=\"144\" height=\"17.5\"/>\n                                                                    <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"15\"/>\n                                                                    <color key=\"textColor\" red=\"0.20392156859999999\" green=\"0.23921568630000001\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                                    <nil key=\"highlightedColor\"/>\n                                                                </label>\n                                                            </subviews>\n                                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstItem=\"mgx-5V-Xba\" firstAttribute=\"leading\" secondItem=\"xej-CM-tIb\" secondAttribute=\"leading\" id=\"BJE-Ky-3Me\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"mgx-5V-Xba\" secondAttribute=\"trailing\" id=\"ULU-ab-35w\"/>\n                                                                <constraint firstItem=\"mgx-5V-Xba\" firstAttribute=\"top\" secondItem=\"GYY-Sq-cIe\" secondAttribute=\"bottom\" constant=\"4\" id=\"hYq-Zc-RTv\"/>\n                                                                <constraint firstItem=\"GYY-Sq-cIe\" firstAttribute=\"top\" secondItem=\"xej-CM-tIb\" secondAttribute=\"top\" constant=\"8\" id=\"tOv-Os-X27\"/>\n                                                                <constraint firstAttribute=\"trailing\" secondItem=\"GYY-Sq-cIe\" secondAttribute=\"trailing\" id=\"xGr-he-RHD\"/>\n                                                                <constraint firstItem=\"GYY-Sq-cIe\" firstAttribute=\"leading\" secondItem=\"xej-CM-tIb\" secondAttribute=\"leading\" id=\"xz9-GB-Qu9\"/>\n                                                            </constraints>\n                                                        </view>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstItem=\"xej-CM-tIb\" firstAttribute=\"leading\" secondItem=\"4an-5P-hxw\" secondAttribute=\"trailing\" constant=\"3\" id=\"18O-Ef-V9i\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"xej-CM-tIb\" secondAttribute=\"bottom\" constant=\"-1\" id=\"1tY-3B-4u3\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"4an-5P-hxw\" secondAttribute=\"bottom\" constant=\"-1\" id=\"C3N-uA-S44\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"72\" id=\"E7G-nf-19d\"/>\n                                                        <constraint firstItem=\"4an-5P-hxw\" firstAttribute=\"width\" secondItem=\"xej-CM-tIb\" secondAttribute=\"width\" id=\"EfU-Gh-ldi\"/>\n                                                        <constraint firstItem=\"4an-5P-hxw\" firstAttribute=\"top\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"top\" id=\"W0D-tu-VOV\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"xej-CM-tIb\" secondAttribute=\"trailing\" constant=\"22\" id=\"gqy-Jt-C4w\"/>\n                                                        <constraint firstItem=\"4an-5P-hxw\" firstAttribute=\"leading\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"leading\" constant=\"22\" id=\"me4-Sw-MlK\"/>\n                                                        <constraint firstItem=\"xej-CM-tIb\" firstAttribute=\"top\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"top\" id=\"xOe-NP-ZG0\"/>\n                                                    </constraints>\n                                                </view>\n                                                <view tag=\"3\" contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"073-FT-8Xc\" userLabel=\"BottomContainerView\" customClass=\"RotatedView\" customModule=\"FoldingCell\">\n                                                    <rect key=\"frame\" x=\"0.0\" y=\"402\" width=\"335\" height=\"72\"/>\n                                                    <subviews>\n                                                        <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"7hv-c7-TPM\" userLabel=\"line\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"335\" height=\"10\"/>\n                                                            <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"10\" id=\"I7X-zJ-Chv\"/>\n                                                            </constraints>\n                                                        </view>\n                                                        <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"roundedRect\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"GIq-nQ-eox\">\n                                                            <rect key=\"frame\" x=\"22\" y=\"3\" width=\"291\" height=\"41\"/>\n                                                            <color key=\"backgroundColor\" red=\"0.99607843137254903\" green=\"0.74509803921568629\" blue=\"0.086274509803921567\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"41\" id=\"1a9-RT-Lsa\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans-Semibold\" family=\"Open Sans\" pointSize=\"18\"/>\n                                                            <state key=\"normal\" title=\"REQUEST\">\n                                                                <color key=\"titleColor\" red=\"0.27058823529411763\" green=\"0.21568627450980393\" blue=\"0.082352941176470587\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            </state>\n                                                            <userDefinedRuntimeAttributes>\n                                                                <userDefinedRuntimeAttribute type=\"number\" keyPath=\"layer.cornerRadius\">\n                                                                    <integer key=\"value\" value=\"10\"/>\n                                                                </userDefinedRuntimeAttribute>\n                                                            </userDefinedRuntimeAttributes>\n                                                        </button>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"5 people have sent a request\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"xRl-uA-7tD\">\n                                                            <rect key=\"frame\" x=\"0.0\" y=\"44\" width=\"335\" height=\"28\"/>\n                                                            <fontDescription key=\"fontDescription\" name=\"OpenSans\" family=\"Open Sans\" pointSize=\"10\"/>\n                                                            <color key=\"textColor\" red=\"0.13725490200000001\" green=\"0.13725490200000001\" blue=\"0.13725490200000001\" alpha=\"0.49546030410000003\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                            <nil key=\"highlightedColor\"/>\n                                                        </label>\n                                                    </subviews>\n                                                    <color key=\"backgroundColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <constraints>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"7hv-c7-TPM\" secondAttribute=\"trailing\" id=\"0cg-br-1Fh\"/>\n                                                        <constraint firstItem=\"xRl-uA-7tD\" firstAttribute=\"top\" secondItem=\"GIq-nQ-eox\" secondAttribute=\"bottom\" id=\"6Ye-UR-abp\"/>\n                                                        <constraint firstItem=\"GIq-nQ-eox\" firstAttribute=\"leading\" secondItem=\"073-FT-8Xc\" secondAttribute=\"leading\" constant=\"22\" id=\"8nM-kU-591\"/>\n                                                        <constraint firstItem=\"7hv-c7-TPM\" firstAttribute=\"leading\" secondItem=\"073-FT-8Xc\" secondAttribute=\"leading\" id=\"CO8-XD-FkY\"/>\n                                                        <constraint firstAttribute=\"height\" constant=\"72\" id=\"N5h-ao-mEr\"/>\n                                                        <constraint firstItem=\"xRl-uA-7tD\" firstAttribute=\"leading\" secondItem=\"073-FT-8Xc\" secondAttribute=\"leading\" id=\"Sz9-gM-2Dh\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"xRl-uA-7tD\" secondAttribute=\"bottom\" id=\"aj3-EF-Ihl\"/>\n                                                        <constraint firstItem=\"GIq-nQ-eox\" firstAttribute=\"centerY\" secondItem=\"073-FT-8Xc\" secondAttribute=\"centerY\" constant=\"-12.5\" id=\"iKb-um-Pc8\"/>\n                                                        <constraint firstItem=\"7hv-c7-TPM\" firstAttribute=\"top\" secondItem=\"073-FT-8Xc\" secondAttribute=\"top\" id=\"kr2-hV-dgo\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"xRl-uA-7tD\" secondAttribute=\"trailing\" id=\"pfa-HZ-J4N\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"GIq-nQ-eox\" secondAttribute=\"trailing\" constant=\"22\" id=\"xr8-ZY-D9O\"/>\n                                                    </constraints>\n                                                    <userDefinedRuntimeAttributes>\n                                                        <userDefinedRuntimeAttribute type=\"number\" keyPath=\"layer.cornerRadius\">\n                                                            <integer key=\"value\" value=\"10\"/>\n                                                        </userDefinedRuntimeAttribute>\n                                                    </userDefinedRuntimeAttributes>\n                                                </view>\n                                            </subviews>\n                                            <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                            <constraints>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"stA-YF-Roj\" secondAttribute=\"trailing\" id=\"0dd-qw-qxW\"/>\n                                                <constraint firstItem=\"dXA-2m-h6U\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" constant=\"330\" identifier=\"yPosition\" id=\"1Pb-T0-aLV\"/>\n                                                <constraint firstItem=\"dXA-2m-h6U\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"KJ6-At-0ch\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"dXA-2m-h6U\" secondAttribute=\"trailing\" id=\"QgD-g5-T2R\"/>\n                                                <constraint firstItem=\"stA-YF-Roj\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" constant=\"165\" identifier=\"yPosition\" id=\"WXH-rW-ogj\"/>\n                                                <constraint firstItem=\"073-FT-8Xc\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"Wyb-18-gvz\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"073-FT-8Xc\" secondAttribute=\"trailing\" id=\"XEf-H7-Jtf\"/>\n                                                <constraint firstItem=\"oxa-Zu-WLe\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" id=\"dsV-Tl-As5\"/>\n                                                <constraint firstAttribute=\"height\" constant=\"479\" id=\"llk-Zn-ick\"/>\n                                                <constraint firstItem=\"073-FT-8Xc\" firstAttribute=\"top\" secondItem=\"CGm-93-iX0\" secondAttribute=\"top\" constant=\"402\" identifier=\"yPosition\" id=\"nbR-Yc-9UT\"/>\n                                                <constraint firstItem=\"oxa-Zu-WLe\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"qSD-vx-636\"/>\n                                                <constraint firstAttribute=\"trailing\" secondItem=\"oxa-Zu-WLe\" secondAttribute=\"trailing\" id=\"qf7-aP-Uq7\"/>\n                                                <constraint firstItem=\"stA-YF-Roj\" firstAttribute=\"leading\" secondItem=\"CGm-93-iX0\" secondAttribute=\"leading\" id=\"zem-7x-IVn\"/>\n                                            </constraints>\n                                        </view>\n                                    </subviews>\n                                    <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"0.0\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    <constraints>\n                                        <constraint firstItem=\"CQr-i9-7br\" firstAttribute=\"top\" secondItem=\"MxP-E5-nua\" secondAttribute=\"top\" constant=\"7\" identifier=\"ForegroundViewTop\" id=\"9tL-QY-I0e\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"CQr-i9-7br\" secondAttribute=\"trailing\" constant=\"20\" id=\"eKz-hh-g5H\"/>\n                                        <constraint firstAttribute=\"trailing\" secondItem=\"CGm-93-iX0\" secondAttribute=\"trailing\" constant=\"20\" id=\"n4X-8b-s3c\"/>\n                                        <constraint firstItem=\"CQr-i9-7br\" firstAttribute=\"leading\" secondItem=\"MxP-E5-nua\" secondAttribute=\"leading\" constant=\"20\" id=\"uqx-fi-2na\"/>\n                                        <constraint firstItem=\"CGm-93-iX0\" firstAttribute=\"top\" secondItem=\"MxP-E5-nua\" secondAttribute=\"top\" constant=\"180\" identifier=\"ContainerViewTop\" id=\"wys-AY-Zdw\"/>\n                                        <constraint firstItem=\"CGm-93-iX0\" firstAttribute=\"leading\" secondItem=\"MxP-E5-nua\" secondAttribute=\"leading\" constant=\"20\" id=\"yUf-ga-7bS\"/>\n                                    </constraints>\n                                </tableViewCellContentView>\n                                <color key=\"backgroundColor\" red=\"0.91372549020000005\" green=\"0.85277035359999998\" blue=\"0.26274509800000001\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <userDefinedRuntimeAttributes>\n                                    <userDefinedRuntimeAttribute type=\"color\" keyPath=\"backViewColor\">\n                                        <color key=\"value\" red=\"0.96862745100000003\" green=\"0.93725490199999995\" blue=\"0.96862745100000003\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                    </userDefinedRuntimeAttribute>\n                                    <userDefinedRuntimeAttribute type=\"number\" keyPath=\"itemCount\">\n                                        <integer key=\"value\" value=\"4\"/>\n                                    </userDefinedRuntimeAttribute>\n                                </userDefinedRuntimeAttributes>\n                                <connections>\n                                    <outlet property=\"containerView\" destination=\"CGm-93-iX0\" id=\"gSm-z4-RdG\"/>\n                                    <outlet property=\"containerViewTop\" destination=\"wys-AY-Zdw\" id=\"Exs-1v-4Jn\"/>\n                                    <outlet property=\"foregroundView\" destination=\"CQr-i9-7br\" id=\"88q-9Z-PtA\"/>\n                                    <outlet property=\"foregroundViewTop\" destination=\"9tL-QY-I0e\" id=\"lRz-za-vwR\"/>\n                                </connections>\n                            </tableViewCell>\n                        </prototypes>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"0cn-rv-Emg\" id=\"RVU-S6-2gz\"/>\n                            <outlet property=\"delegate\" destination=\"0cn-rv-Emg\" id=\"o83-eX-gao\"/>\n                        </connections>\n                    </tableView>\n                    <extendedEdge key=\"edgesForExtendedLayout\"/>\n                    <tabBarItem key=\"tabBarItem\" title=\"Item\" id=\"XzX-iE-6KD\"/>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"WxO-6i-Q9B\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1120.8\" y=\"306.29685157421289\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"arrow\" width=\"16\" height=\"25\"/>\n        <image name=\"burger\" width=\"38\" height=\"29\"/>\n        <image name=\"dots\" width=\"14\" height=\"84\"/>\n        <image name=\"image\" width=\"340.5\" height=\"165\"/>\n        <image name=\"photo\" width=\"98\" height=\"98\"/>\n        <image name=\"stars\" width=\"97\" height=\"17\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/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>1.0</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</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>UIRequiresFullScreen</key>\n\t<true/>\n\t<key>UIStatusBarHidden</key>\n\t<true/>\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": "FoldingCell/FoldingCell-DemoObjc/TableViewController.h",
    "content": "//\n//  TableViewController.h\n//  folding-cell-test\n//\n//  Created by Abdurahim Jauzee on 30/05/2017.\n//  Copyright © 2017 Abdurahim Jauzee. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n\n@interface TableViewController : UITableViewController\n\n@end\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/TableViewController.m",
    "content": "//\n//  TableViewController.m\n//  folding-cell-test\n//\n//  Created by Abdurahim Jauzee on 30/05/2017.\n//  Copyright © 2017 Abdurahim Jauzee. All rights reserved.\n//\n\n#import \"TableViewController.h\"\n#import <FoldingCell/FoldingCell-Swift.h>\n\n@interface TableViewController ()\n\n@property (atomic) float kCloseCellHeight;\n@property (atomic) float kOpenCellHeight;\n@property (atomic) int kRowsCount;\n@property (atomic) NSMutableArray* cellHeights;\n\n@end\n\n@implementation TableViewController\n\n- (void)viewDidLoad {\n  [super viewDidLoad];\n\n  self.kCloseCellHeight = 179;\n  self.kOpenCellHeight = 488;\n  self.kRowsCount = 10;\n  self.cellHeights = [NSMutableArray array];\n  \n  for (int i = 0; i < 10; i++) {\n    [self.cellHeights addObject:[NSNumber numberWithFloat:self.kCloseCellHeight]];\n  }\n  \n  self.tableView.estimatedRowHeight = self.kCloseCellHeight;\n  self.tableView.rowHeight = UITableViewAutomaticDimension;\n  \n  UIImage *patternImage = [UIImage imageNamed:@\"background\"];\n  UIColor *patternColor = [UIColor colorWithPatternImage:patternImage];\n  self.tableView.backgroundColor = patternColor;\n  \n  self.tableView.contentInset = UIEdgeInsetsMake(16, 0, 0, 0);\n}\n\n- (void) viewWillAppear:(BOOL)animated {\n  [super viewWillAppear:animated];\n  [self.tableView reloadData];\n}\n\n#pragma mark - TableView\n\n- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {\n  return self.kRowsCount;\n}\n\n- (void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {\n  \n  cell.backgroundColor = [UIColor clearColor];\n  NSNumber *height = [self.cellHeights objectAtIndex:indexPath.row];\n  bool cellIsCollapsed = height.floatValue == self.kCloseCellHeight;\n  if (cellIsCollapsed) {\n      \n      [(FoldingCell *)cell unfold:NO animated:NO completion:nil];\n    //[(FoldingCell *) cell selectedAnimation:false animated:false completion: nil];\n  } else {\n      [(FoldingCell *)cell unfold:YES animated:NO completion:nil];\n    //[(FoldingCell *) cell selectedAnimation:true animated:false completion: nil];\n  }\n  \n  UIView *backgroundTopView = [cell viewWithTag:11];\n  CALayer *backgroundTopViewLayer = backgroundTopView.layer;\n  backgroundTopViewLayer.cornerRadius = 10;\n  backgroundTopViewLayer.masksToBounds = YES;\n  \n  UILabel *closeNumberlabel = [cell viewWithTag:12];\n  UILabel *openNumberLabel = [cell viewWithTag:13];\n  \n  NSString *text = [NSString stringWithFormat:@\"%ld\", (long)indexPath.row];\n  closeNumberlabel.text = text;\n  openNumberLabel.text = text;\n}\n\n- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {\n  FoldingCell *cell = [tableView dequeueReusableCellWithIdentifier:@\"FoldingCell\"];\n  cell.backgroundColor = [UIColor clearColor];\n  CALayer *layer = ((FoldingCell *) cell).foregroundView.layer;\n  layer.cornerRadius = 10;\n  layer.masksToBounds = YES;\n  \n  NSArray *durations = @[@0.26, @0.2, @0.2];\n  [cell setDurationsForExpandedState:durations];\n  [cell setDurationsForCollapsedState:durations];\n  \n  return cell;\n}\n\n- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {\n  NSNumber *height = self.cellHeights[indexPath.row];\n  return height.floatValue;\n}\n\n- (void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {\n  FoldingCell *cell = [tableView cellForRowAtIndexPath:indexPath];\n  \n  if (cell.isAnimating) {\n    return;\n  }\n  \n  double duration = 0;\n  NSNumber *height = [self.cellHeights objectAtIndex:indexPath.row];\n  bool cellIsCollapsed = height.floatValue == self.kCloseCellHeight;\n  if (cellIsCollapsed) {\n    [self.cellHeights setObject:[NSNumber numberWithFloat:self.kOpenCellHeight] atIndexedSubscript:indexPath.row];\n    //[cell selectedAnimation:true animated:true completion: nil];\n      [cell unfold:YES animated:YES completion:nil];\n    duration = 0.5;\n  } else {\n    [self.cellHeights setObject:[NSNumber numberWithFloat:self.kCloseCellHeight] atIndexedSubscript:indexPath.row];\n    //[cell selectedAnimation:false animated:true completion: nil];\n      [cell unfold:NO animated:YES completion:nil];\n    duration = 0.8;\n  }\n  \n  [UIView animateWithDuration:duration delay:0 options:0 animations:^{\n    [tableView beginUpdates];\n    [tableView endUpdates];\n  } completion:nil];\n\n}\n\n@end\n"
  },
  {
    "path": "FoldingCell/FoldingCell-DemoObjc/main.m",
    "content": "//\n//  main.m\n//  DemoApp-Objc\n//\n//  Created by Abdurahim Jauzee on 30/05/2017.\n//  Copyright © 2017 Abdurahim Jauzee. All rights reserved.\n//\n\n#import <UIKit/UIKit.h>\n#import \"AppDelegate.h\"\n\nint main(int argc, char * argv[]) {\n  @autoreleasepool {\n      return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));\n  }\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCell.xcodeproj/project.pbxproj",
    "content": "// !$*UTF8*$!\n{\n\tarchiveVersion = 1;\n\tclasses = {\n\t};\n\tobjectVersion = 46;\n\tobjects = {\n\n/* Begin PBXBuildFile section */\n\t\t5A0E1C3021414940006A0374 /* FoldingCellDemoTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A0E1C2F21414940006A0374 /* FoldingCellDemoTests.swift */; };\n\t\t5A1225D821B65E8E005BBB26 /* RotationViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5A1225D721B65E8E005BBB26 /* RotationViewTests.swift */; };\n\t\t8499D8881D0054A8004B5B37 /* FoldingCell.h in Headers */ = {isa = PBXBuildFile; fileRef = 8499D8871D0054A8004B5B37 /* FoldingCell.h */; settings = {ATTRIBUTES = (Public, ); }; };\n\t\t9D57F31F1EDC7A6F0004599F /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D57F31E1EDC7A6F0004599F /* AppDelegate.swift */; };\n\t\t9D57F3241EDC7A6F0004599F /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9D57F3221EDC7A6F0004599F /* Main.storyboard */; };\n\t\t9D57F3261EDC7A6F0004599F /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9D57F3251EDC7A6F0004599F /* Assets.xcassets */; };\n\t\t9D57F3291EDC7A6F0004599F /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9D57F3271EDC7A6F0004599F /* LaunchScreen.storyboard */; };\n\t\t9D57F32F1EDC7A850004599F /* TableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D57F32E1EDC7A850004599F /* TableViewController.swift */; };\n\t\t9D57F3311EDC7AAD0004599F /* DemoCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D57F3301EDC7AAD0004599F /* DemoCell.swift */; };\n\t\t9D57F3331EDC7ACF0004599F /* FoldingCell.swift in Sources */ = {isa = PBXBuildFile; fileRef = 9D57F3321EDC7ACF0004599F /* FoldingCell.swift */; };\n\t\t9D57F3341EDC7AD80004599F /* FoldingCell.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8499D8851D0054A8004B5B37 /* FoldingCell.framework */; };\n\t\t9D57F3351EDC7AD80004599F /* FoldingCell.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 8499D8851D0054A8004B5B37 /* FoldingCell.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };\n\t\t9DAA51581EDDBAD700DFC539 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DAA51571EDDBAD700DFC539 /* main.m */; };\n\t\t9DAA515B1EDDBAD700DFC539 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DAA515A1EDDBAD700DFC539 /* AppDelegate.m */; };\n\t\t9DAA51611EDDBAD700DFC539 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9DAA515F1EDDBAD700DFC539 /* Main.storyboard */; };\n\t\t9DAA51631EDDBAD700DFC539 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 9DAA51621EDDBAD700DFC539 /* Assets.xcassets */; };\n\t\t9DAA51661EDDBAD700DFC539 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 9DAA51641EDDBAD700DFC539 /* LaunchScreen.storyboard */; };\n\t\t9DAA516D1EDDBAF900DFC539 /* TableViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9DAA516C1EDDBAF900DFC539 /* TableViewController.m */; };\n\t\t9DAA516E1EDDBB3200DFC539 /* FoldingCell.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 8499D8851D0054A8004B5B37 /* FoldingCell.framework */; };\n\t\t9DAA51701EDDBB4800DFC539 /* FoldingCell.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 8499D8851D0054A8004B5B37 /* FoldingCell.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\t5A0E1C3221414940006A0374 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 847A57FC1C294F750028FB84 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 9D57F31B1EDC7A6F0004599F;\n\t\t\tremoteInfo = \"FoldingCell-Demo\";\n\t\t};\n\t\t9D57F3361EDC7AD80004599F /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 847A57FC1C294F750028FB84 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 8499D8841D0054A8004B5B37;\n\t\t\tremoteInfo = FoldingCell;\n\t\t};\n\t\t9DAA51711EDDBB4800DFC539 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = 847A57FC1C294F750028FB84 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = 8499D8841D0054A8004B5B37;\n\t\t\tremoteInfo = FoldingCell;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXCopyFilesBuildPhase section */\n\t\t9D57F3381EDC7AD80004599F /* Embed Frameworks */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = \"\";\n\t\t\tdstSubfolderSpec = 10;\n\t\t\tfiles = (\n\t\t\t\t9D57F3351EDC7AD80004599F /* FoldingCell.framework in Embed Frameworks */,\n\t\t\t);\n\t\t\tname = \"Embed Frameworks\";\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9DAA51731EDDBB4800DFC539 /* Embed Frameworks */ = {\n\t\t\tisa = PBXCopyFilesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tdstPath = \"\";\n\t\t\tdstSubfolderSpec = 10;\n\t\t\tfiles = (\n\t\t\t\t9DAA51701EDDBB4800DFC539 /* FoldingCell.framework in Embed Frameworks */,\n\t\t\t);\n\t\t\tname = \"Embed Frameworks\";\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXCopyFilesBuildPhase section */\n\n/* Begin PBXFileReference section */\n\t\t5A0E1C2D21414940006A0374 /* FoldingCellDemoTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FoldingCellDemoTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t5A0E1C2F21414940006A0374 /* FoldingCellDemoTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FoldingCellDemoTests.swift; sourceTree = \"<group>\"; };\n\t\t5A0E1C3121414940006A0374 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t5A1225D721B65E8E005BBB26 /* RotationViewTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RotationViewTests.swift; sourceTree = \"<group>\"; };\n\t\t8499D8851D0054A8004B5B37 /* FoldingCell.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = FoldingCell.framework; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t8499D8871D0054A8004B5B37 /* FoldingCell.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FoldingCell.h; sourceTree = \"<group>\"; };\n\t\t8499D8891D0054A8004B5B37 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t9D57F31C1EDC7A6F0004599F /* FoldingCell-Demo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = \"FoldingCell-Demo.app\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9D57F31E1EDC7A6F0004599F /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\t9D57F3231EDC7A6F0004599F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t9D57F3251EDC7A6F0004599F /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t9D57F3281EDC7A6F0004599F /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\t9D57F32A1EDC7A6F0004599F /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t9D57F32E1EDC7A850004599F /* TableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = TableViewController.swift; sourceTree = \"<group>\"; };\n\t\t9D57F3301EDC7AAD0004599F /* DemoCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = DemoCell.swift; sourceTree = \"<group>\"; };\n\t\t9D57F3321EDC7ACF0004599F /* FoldingCell.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = FoldingCell.swift; sourceTree = \"<group>\"; };\n\t\t9DAA51541EDDBAD700DFC539 /* FoldingCell-DemoObjc.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = \"FoldingCell-DemoObjc.app\"; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\t9DAA51571EDDBAD700DFC539 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = \"<group>\"; };\n\t\t9DAA51591EDDBAD700DFC539 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = \"<group>\"; };\n\t\t9DAA515A1EDDBAD700DFC539 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = \"<group>\"; };\n\t\t9DAA51601EDDBAD700DFC539 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\t9DAA51621EDDBAD700DFC539 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\t9DAA51651EDDBAD700DFC539 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\t9DAA51671EDDBAD700DFC539 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\t9DAA516B1EDDBAF900DFC539 /* TableViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TableViewController.h; sourceTree = \"<group>\"; };\n\t\t9DAA516C1EDDBAF900DFC539 /* TableViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TableViewController.m; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\t5A0E1C2A21414940006A0374 /* 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\t8499D8811D0054A8004B5B37 /* 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\t9D57F3191EDC7A6F0004599F /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9D57F3341EDC7AD80004599F /* FoldingCell.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9DAA51511EDDBAD700DFC539 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9DAA516E1EDDBB3200DFC539 /* FoldingCell.framework in Frameworks */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\t5A0E1C2E21414940006A0374 /* FoldingCellDemoTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t5A0E1C2F21414940006A0374 /* FoldingCellDemoTests.swift */,\n\t\t\t\t5A0E1C3121414940006A0374 /* Info.plist */,\n\t\t\t\t5A1225D721B65E8E005BBB26 /* RotationViewTests.swift */,\n\t\t\t);\n\t\t\tpath = FoldingCellDemoTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t847A57FB1C294F750028FB84 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8499D8861D0054A8004B5B37 /* FoldingCell */,\n\t\t\t\t9D57F31D1EDC7A6F0004599F /* FoldingCell-Demo */,\n\t\t\t\t9DAA51551EDDBAD700DFC539 /* FoldingCell-DemoObjc */,\n\t\t\t\t5A0E1C2E21414940006A0374 /* FoldingCellDemoTests */,\n\t\t\t\t847A58051C294F750028FB84 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t847A58051C294F750028FB84 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t8499D8851D0054A8004B5B37 /* FoldingCell.framework */,\n\t\t\t\t9D57F31C1EDC7A6F0004599F /* FoldingCell-Demo.app */,\n\t\t\t\t9DAA51541EDDBAD700DFC539 /* FoldingCell-DemoObjc.app */,\n\t\t\t\t5A0E1C2D21414940006A0374 /* FoldingCellDemoTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t8499D8861D0054A8004B5B37 /* FoldingCell */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9D57F3321EDC7ACF0004599F /* FoldingCell.swift */,\n\t\t\t\t8499D8871D0054A8004B5B37 /* FoldingCell.h */,\n\t\t\t\t8499D8891D0054A8004B5B37 /* Info.plist */,\n\t\t\t);\n\t\t\tpath = FoldingCell;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9D57F31D1EDC7A6F0004599F /* FoldingCell-Demo */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9D57F31E1EDC7A6F0004599F /* AppDelegate.swift */,\n\t\t\t\t9D57F3301EDC7AAD0004599F /* DemoCell.swift */,\n\t\t\t\t9D57F32E1EDC7A850004599F /* TableViewController.swift */,\n\t\t\t\t9D57F3221EDC7A6F0004599F /* Main.storyboard */,\n\t\t\t\t9D57F3251EDC7A6F0004599F /* Assets.xcassets */,\n\t\t\t\t9D57F3271EDC7A6F0004599F /* LaunchScreen.storyboard */,\n\t\t\t\t9D57F32A1EDC7A6F0004599F /* Info.plist */,\n\t\t\t);\n\t\t\tpath = \"FoldingCell-Demo\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9DAA51551EDDBAD700DFC539 /* FoldingCell-DemoObjc */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9DAA51591EDDBAD700DFC539 /* AppDelegate.h */,\n\t\t\t\t9DAA515A1EDDBAD700DFC539 /* AppDelegate.m */,\n\t\t\t\t9DAA515F1EDDBAD700DFC539 /* Main.storyboard */,\n\t\t\t\t9DAA51621EDDBAD700DFC539 /* Assets.xcassets */,\n\t\t\t\t9DAA51641EDDBAD700DFC539 /* LaunchScreen.storyboard */,\n\t\t\t\t9DAA51671EDDBAD700DFC539 /* Info.plist */,\n\t\t\t\t9DAA516B1EDDBAF900DFC539 /* TableViewController.h */,\n\t\t\t\t9DAA516C1EDDBAF900DFC539 /* TableViewController.m */,\n\t\t\t\t9DAA51561EDDBAD700DFC539 /* Supporting Files */,\n\t\t\t);\n\t\t\tpath = \"FoldingCell-DemoObjc\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9DAA51561EDDBAD700DFC539 /* Supporting Files */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\t9DAA51571EDDBAD700DFC539 /* main.m */,\n\t\t\t);\n\t\t\tname = \"Supporting Files\";\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXHeadersBuildPhase section */\n\t\t8499D8821D0054A8004B5B37 /* Headers */ = {\n\t\t\tisa = PBXHeadersBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t8499D8881D0054A8004B5B37 /* FoldingCell.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\t5A0E1C2C21414940006A0374 /* FoldingCellDemoTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 5A0E1C3421414940006A0374 /* Build configuration list for PBXNativeTarget \"FoldingCellDemoTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t5A0E1C2921414940006A0374 /* Sources */,\n\t\t\t\t5A0E1C2A21414940006A0374 /* Frameworks */,\n\t\t\t\t5A0E1C2B21414940006A0374 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t5A0E1C3321414940006A0374 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = FoldingCellDemoTests;\n\t\t\tproductName = FoldingCellDemoTests;\n\t\t\tproductReference = 5A0E1C2D21414940006A0374 /* FoldingCellDemoTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n\t\t8499D8841D0054A8004B5B37 /* FoldingCell */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 8499D88E1D0054A8004B5B37 /* Build configuration list for PBXNativeTarget \"FoldingCell\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t8499D8801D0054A8004B5B37 /* Sources */,\n\t\t\t\t8499D8811D0054A8004B5B37 /* Frameworks */,\n\t\t\t\t8499D8821D0054A8004B5B37 /* Headers */,\n\t\t\t\t8499D8831D0054A8004B5B37 /* 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 = FoldingCell;\n\t\t\tproductName = FoldingCell;\n\t\t\tproductReference = 8499D8851D0054A8004B5B37 /* FoldingCell.framework */;\n\t\t\tproductType = \"com.apple.product-type.framework\";\n\t\t};\n\t\t9D57F31B1EDC7A6F0004599F /* FoldingCell-Demo */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 9D57F32D1EDC7A6F0004599F /* Build configuration list for PBXNativeTarget \"FoldingCell-Demo\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9D57F3181EDC7A6F0004599F /* Sources */,\n\t\t\t\t9D57F3191EDC7A6F0004599F /* Frameworks */,\n\t\t\t\t9D57F31A1EDC7A6F0004599F /* Resources */,\n\t\t\t\t9D57F3381EDC7AD80004599F /* Embed Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t9D57F3371EDC7AD80004599F /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"FoldingCell-Demo\";\n\t\t\tproductName = \"FoldingCell-Demo\";\n\t\t\tproductReference = 9D57F31C1EDC7A6F0004599F /* FoldingCell-Demo.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\t9DAA51531EDDBAD700DFC539 /* FoldingCell-DemoObjc */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = 9DAA516A1EDDBAD700DFC539 /* Build configuration list for PBXNativeTarget \"FoldingCell-DemoObjc\" */;\n\t\t\tbuildPhases = (\n\t\t\t\t9DAA51501EDDBAD700DFC539 /* Sources */,\n\t\t\t\t9DAA51511EDDBAD700DFC539 /* Frameworks */,\n\t\t\t\t9DAA51521EDDBAD700DFC539 /* Resources */,\n\t\t\t\t9DAA51731EDDBB4800DFC539 /* Embed Frameworks */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\t9DAA51721EDDBB4800DFC539 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = \"FoldingCell-DemoObjc\";\n\t\t\tproductName = \"FoldingCell-DemoObjc\";\n\t\t\tproductReference = 9DAA51541EDDBAD700DFC539 /* FoldingCell-DemoObjc.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\t847A57FC1C294F750028FB84 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 0940;\n\t\t\t\tLastUpgradeCheck = 1110;\n\t\t\t\tORGANIZATIONNAME = \"Alex K.\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\t5A0E1C2C21414940006A0374 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 9.4;\n\t\t\t\t\t\tLastSwiftMigration = 1020;\n\t\t\t\t\t\tProvisioningStyle = Automatic;\n\t\t\t\t\t\tTestTargetID = 9D57F31B1EDC7A6F0004599F;\n\t\t\t\t\t};\n\t\t\t\t\t8499D8841D0054A8004B5B37 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.3.1;\n\t\t\t\t\t\tDevelopmentTeam = LEAZS7L33U;\n\t\t\t\t\t\tLastSwiftMigration = 1020;\n\t\t\t\t\t};\n\t\t\t\t\t9D57F31B1EDC7A6F0004599F = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3.2;\n\t\t\t\t\t\tDevelopmentTeam = LEAZS7L33U;\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\t9DAA51531EDDBAD700DFC539 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 8.3.2;\n\t\t\t\t\t\tDevelopmentTeam = 2VFCBFYPFW;\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 = 847A57FF1C294F750028FB84 /* Build configuration list for PBXProject \"FoldingCell\" */;\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 = 847A57FB1C294F750028FB84;\n\t\t\tproductRefGroup = 847A58051C294F750028FB84 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\t8499D8841D0054A8004B5B37 /* FoldingCell */,\n\t\t\t\t9D57F31B1EDC7A6F0004599F /* FoldingCell-Demo */,\n\t\t\t\t9DAA51531EDDBAD700DFC539 /* FoldingCell-DemoObjc */,\n\t\t\t\t5A0E1C2C21414940006A0374 /* FoldingCellDemoTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\t5A0E1C2B21414940006A0374 /* 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\t8499D8831D0054A8004B5B37 /* 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\t9D57F31A1EDC7A6F0004599F /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9D57F3291EDC7A6F0004599F /* LaunchScreen.storyboard in Resources */,\n\t\t\t\t9D57F3261EDC7A6F0004599F /* Assets.xcassets in Resources */,\n\t\t\t\t9D57F3241EDC7A6F0004599F /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9DAA51521EDDBAD700DFC539 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9DAA51661EDDBAD700DFC539 /* LaunchScreen.storyboard in Resources */,\n\t\t\t\t9DAA51631EDDBAD700DFC539 /* Assets.xcassets in Resources */,\n\t\t\t\t9DAA51611EDDBAD700DFC539 /* Main.storyboard 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\t5A0E1C2921414940006A0374 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t5A1225D821B65E8E005BBB26 /* RotationViewTests.swift in Sources */,\n\t\t\t\t5A0E1C3021414940006A0374 /* FoldingCellDemoTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t8499D8801D0054A8004B5B37 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9D57F3331EDC7ACF0004599F /* FoldingCell.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9D57F3181EDC7A6F0004599F /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9D57F32F1EDC7A850004599F /* TableViewController.swift in Sources */,\n\t\t\t\t9D57F31F1EDC7A6F0004599F /* AppDelegate.swift in Sources */,\n\t\t\t\t9D57F3311EDC7AAD0004599F /* DemoCell.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\t9DAA51501EDDBAD700DFC539 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\t9DAA515B1EDDBAD700DFC539 /* AppDelegate.m in Sources */,\n\t\t\t\t9DAA516D1EDDBAF900DFC539 /* TableViewController.m in Sources */,\n\t\t\t\t9DAA51581EDDBAD700DFC539 /* main.m 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\t5A0E1C3321414940006A0374 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 9D57F31B1EDC7A6F0004599F /* FoldingCell-Demo */;\n\t\t\ttargetProxy = 5A0E1C3221414940006A0374 /* PBXContainerItemProxy */;\n\t\t};\n\t\t9D57F3371EDC7AD80004599F /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 8499D8841D0054A8004B5B37 /* FoldingCell */;\n\t\t\ttargetProxy = 9D57F3361EDC7AD80004599F /* PBXContainerItemProxy */;\n\t\t};\n\t\t9DAA51721EDDBB4800DFC539 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = 8499D8841D0054A8004B5B37 /* FoldingCell */;\n\t\t\ttargetProxy = 9DAA51711EDDBB4800DFC539 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\t9D57F3221EDC7A6F0004599F /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t9D57F3231EDC7A6F0004599F /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9D57F3271EDC7A6F0004599F /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t9D57F3281EDC7A6F0004599F /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9DAA515F1EDDBAD700DFC539 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t9DAA51601EDDBAD700DFC539 /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\t9DAA51641EDDBAD700DFC539 /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\t9DAA51651EDDBAD700DFC539 /* Base */,\n\t\t\t);\n\t\t\tname = LaunchScreen.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXVariantGroup section */\n\n/* Begin XCBuildConfiguration section */\n\t\t5A0E1C3521414940006A0374 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\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 = \"iPhone Developer\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tINFOPLIST_FILE = FoldingCellDemoTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.ramotion.FoldingCellDemoTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/FoldingCell-Demo.app/FoldingCell-Demo\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t5A0E1C3621414940006A0374 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\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 = \"iPhone Developer\";\n\t\t\t\tCODE_SIGN_STYLE = Automatic;\n\t\t\t\tGCC_C_LANGUAGE_STANDARD = gnu11;\n\t\t\t\tINFOPLIST_FILE = FoldingCellDemoTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.ramotion.FoldingCellDemoTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/FoldingCell-Demo.app/FoldingCell-Demo\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t847A58141C294F750028FB84 /* 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_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\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = dwarf;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = YES;\n\t\t\t\tENABLE_TESTABILITY = 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_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.2;\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};\n\t\t\tname = Debug;\n\t\t};\n\t\t847A58151C294F750028FB84 /* 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_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\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tCOPY_PHASE_STRIP = NO;\n\t\t\t\tDEBUG_INFORMATION_FORMAT = \"dwarf-with-dsym\";\n\t\t\t\tENABLE_NS_ASSERTIONS = NO;\n\t\t\t\tENABLE_STRICT_OBJC_MSGSEND = 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.2;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Owholemodule\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t8499D88F1D0054A8004B5B37 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = LEAZS7L33U;\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\tINFOPLIST_FILE = FoldingCell/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.ramotion.FoldingCell;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 5.0;\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\t8499D8901D0054A8004B5B37 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"\";\n\t\t\t\tCURRENT_PROJECT_VERSION = 1;\n\t\t\t\tDEFINES_MODULE = YES;\n\t\t\t\tDEVELOPMENT_TEAM = LEAZS7L33U;\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\tINFOPLIST_FILE = FoldingCell/Info.plist;\n\t\t\t\tINSTALL_PATH = \"$(LOCAL_LIBRARY_DIR)/Frameworks\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = com.ramotion.FoldingCell;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSKIP_INSTALL = YES;\n\t\t\t\tSWIFT_VERSION = 5.0;\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\t9D57F32B1EDC7A6F0004599F /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"iPhone Developer\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tDEVELOPMENT_TEAM = LEAZS7L33U;\n\t\t\t\tINFOPLIST_FILE = \"FoldingCell-Demo/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"ramotion.com.FoldingCell-Demo-ser\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t9D57F32C1EDC7A6F0004599F /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"iPhone Developer\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tDEVELOPMENT_TEAM = LEAZS7L33U;\n\t\t\t\tINFOPLIST_FILE = \"FoldingCell-Demo/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 8.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"ramotion.com.FoldingCell-Demo-ser\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t\tSWIFT_VERSION = 5.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\t9DAA51681EDDBAD700DFC539 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"iPhone Developer\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tDEVELOPMENT_TEAM = 2VFCBFYPFW;\n\t\t\t\tINFOPLIST_FILE = \"FoldingCell-DemoObjc/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"ramotion.com.FoldingCell-DemoObjc\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\t9DAA51691EDDBAD700DFC539 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = YES;\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tCLANG_ANALYZER_NONNULL = YES;\n\t\t\t\tCLANG_ANALYZER_NUMBER_OBJECT_CONVERSION = YES_AGGRESSIVE;\n\t\t\t\tCLANG_WARN_DOCUMENTATION_COMMENTS = YES;\n\t\t\t\tCODE_SIGN_IDENTITY = \"iPhone Developer\";\n\t\t\t\t\"CODE_SIGN_IDENTITY[sdk=iphoneos*]\" = \"iPhone Developer\";\n\t\t\t\tDEVELOPMENT_TEAM = 2VFCBFYPFW;\n\t\t\t\tINFOPLIST_FILE = \"FoldingCell-DemoObjc/Info.plist\";\n\t\t\t\tIPHONEOS_DEPLOYMENT_TARGET = 9.0;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = \"ramotion.com.FoldingCell-DemoObjc\";\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tPROVISIONING_PROFILE_SPECIFIER = \"\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\t5A0E1C3421414940006A0374 /* Build configuration list for PBXNativeTarget \"FoldingCellDemoTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t5A0E1C3521414940006A0374 /* Debug */,\n\t\t\t\t5A0E1C3621414940006A0374 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t847A57FF1C294F750028FB84 /* Build configuration list for PBXProject \"FoldingCell\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t847A58141C294F750028FB84 /* Debug */,\n\t\t\t\t847A58151C294F750028FB84 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t8499D88E1D0054A8004B5B37 /* Build configuration list for PBXNativeTarget \"FoldingCell\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t8499D88F1D0054A8004B5B37 /* Debug */,\n\t\t\t\t8499D8901D0054A8004B5B37 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t9D57F32D1EDC7A6F0004599F /* Build configuration list for PBXNativeTarget \"FoldingCell-Demo\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9D57F32B1EDC7A6F0004599F /* Debug */,\n\t\t\t\t9D57F32C1EDC7A6F0004599F /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\t9DAA516A1EDDBAD700DFC539 /* Build configuration list for PBXNativeTarget \"FoldingCell-DemoObjc\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\t9DAA51681EDDBAD700DFC539 /* Debug */,\n\t\t\t\t9DAA51691EDDBAD700DFC539 /* 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 = 847A57FC1C294F750028FB84 /* Project object */;\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCell.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:FoldingCell.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "FoldingCell/FoldingCell.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": "FoldingCell/FoldingCell.xcodeproj/xcshareddata/xcschemes/FoldingCell.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"1110\"\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 = \"8499D8841D0054A8004B5B37\"\n               BuildableName = \"FoldingCell.framework\"\n               BlueprintName = \"FoldingCell\"\n               ReferencedContainer = \"container:FoldingCell.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 = \"8499D8841D0054A8004B5B37\"\n            BuildableName = \"FoldingCell.framework\"\n            BlueprintName = \"FoldingCell\"\n            ReferencedContainer = \"container:FoldingCell.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"5A0E1C2C21414940006A0374\"\n               BuildableName = \"FoldingCellDemoTests.xctest\"\n               BlueprintName = \"FoldingCellDemoTests\"\n               ReferencedContainer = \"container:FoldingCell.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      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"8499D8841D0054A8004B5B37\"\n            BuildableName = \"FoldingCell.framework\"\n            BlueprintName = \"FoldingCell\"\n            ReferencedContainer = \"container:FoldingCell.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 = \"8499D8841D0054A8004B5B37\"\n            BuildableName = \"FoldingCell.framework\"\n            BlueprintName = \"FoldingCell\"\n            ReferencedContainer = \"container:FoldingCell.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": "FoldingCell/FoldingCellDemoTests/FoldingCellDemoTests.swift",
    "content": "import XCTest\nimport UIKit\n@testable import FoldingCell\n@testable import FoldingCell_Demo\n\nclass FoldingCellDemoTests: XCTestCase {\n    \n    var foldingCell: FoldingCell!\n    \n    override func setUp() {\n        super.setUp()\n        \n        let storyboard = UIStoryboard(name: \"Main\", bundle: nil)\n        let vc = storyboard.instantiateViewController(withIdentifier: \"MainTableViewController\") as! MainTableViewController\n        _ = vc.view\n        foldingCell = vc.tableView.dequeueReusableCell(withIdentifier: \"FoldingCell\", for: IndexPath(row: 0, section: 0)) as? FoldingCell\n    }\n    \n    func testCreateFoldingCell() {\n        XCTAssertNotNil(foldingCell)\n    }\n    \n    func testUnfold() {\n        XCTAssertEqual(foldingCell.isUnfolded, false)\n        foldingCell.unfold(true)\n        XCTAssertEqual(foldingCell.isUnfolded, true)\n        foldingCell.unfold(false)\n        XCTAssertEqual(foldingCell.isUnfolded, false)\n    }\n}\n"
  },
  {
    "path": "FoldingCell/FoldingCellDemoTests/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>$(DEVELOPMENT_LANGUAGE)</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>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "FoldingCell/FoldingCellDemoTests/RotationViewTests.swift",
    "content": "import XCTest\nimport UIKit\n@testable import FoldingCell\n\nclass RotationViewTests: XCTestCase {\n\n    var rotationView: RotatedView!\n    override func setUp() {\n        \n        rotationView = RotatedView()\n    }\n\n    func testCreateRotationView() {\n        XCTAssertNotNil(rotationView)\n    }\n    \n    func testAddBackView() {\n        XCTAssertNil(rotationView.backView)\n        let color = UIColor.red\n        rotationView.addBackView(100, color: color)\n        \n        XCTAssertNotNil(rotationView.backView)\n        XCTAssertEqual(rotationView.backView?.backgroundColor, color)\n    }\n    \n    func testRotateX() {\n        let key = \"layer.transform.rotation.x\"\n        let startX = (rotationView.value(forKeyPath: key) as? NSNumber)?.floatValue\n        XCTAssertEqual(startX, 0)\n\n        let angel: CGFloat = 0.5\n        rotationView.rotatedX(angel)\n        let x = (rotationView.value(forKeyPath: key) as? NSNumber)?.floatValue\n\n        XCTAssertEqual(x, Float(angel))\n    }\n}\n"
  },
  {
    "path": "FoldingCell.podspec",
    "content": "Pod::Spec.new do |s|\n  s.name         = 'FoldingCell'\n  s.version      = '5.0.2'\n  s.summary      = 'UITableViewCell with folding animation.'\n  s.homepage     = 'https://github.com/Ramotion/folding-cell'\n  s.license      = 'MIT'\n  s.authors = { 'Juri Vasylenko' => 'juri.v@ramotion.com' }\n  s.ios.deployment_target = '8.0'\n  s.source       = { :git => 'https://github.com/Ramotion/folding-cell.git', :tag => s.version.to_s }\n  s.source_files  = 'FoldingCell/FoldingCell/*.swift'\nend\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2015 Ramotion\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 all\ncopies 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 THE\nSOFTWARE.\n\n"
  },
  {
    "path": "Package.swift",
    "content": "// swift-tools-version:5.1\n//\n//  Package.swift\n//\n//  Copyright (c) Ramotion Inc. (https://www.ramotion.com/)\n//\n//  Permission is hereby granted, free of charge, to any person obtaining a copy\n//  of this software and associated documentation files (the \"Software\"), to deal\n//  in the Software without restriction, including without limitation the rights\n//  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n//  copies of the Software, and to permit persons to whom the Software is\n//  furnished to do so, subject to the following conditions:\n//\n//  The above copyright notice and this permission notice shall be included in\n//  all copies or substantial portions of the Software.\n//\n//  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n//  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n//  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n//  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n//  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n//  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n//  THE SOFTWARE.\n//\n\nimport PackageDescription\n\n\nlet package = Package(\n    name: \"FoldingCell\",\n    platforms: [\n        .iOS(.v8)\n    ],\n    products: [\n        .library(name: \"FoldingCell\",\n            targets: [\"FoldingCell\"]),\n    ],\n    targets: [\n        .target(name: \"FoldingCell\",\n            path: \"FoldingCell/FoldingCell\")\n    ],\n    swiftLanguageVersions: [.v5]\n)\n"
  },
  {
    "path": "README.md",
    "content": "<a href=\"https://www.ramotion.com/agency/app-development/?utm_source=gthb&utm_medium=repo&utm_campaign=folding-cell\"><img src=\"https://github.com/Ramotion/folding-cell/blob/master/header.png\"></a>\n\n<a href=\"https://github.com/Ramotion/folding-cell\">\n<img align=\"left\" src=\"https://github.com/Ramotion/folding-cell/blob/master/Screenshots/foldingCell.gif\" width=\"480\" height=\"360\" /></a>\n\n<p><h1 align=\"left\">FOLDING CELL</h1></p>\n\n<h4>Expanding content cell with animation inspired by folding paper card material design.</h4>\n\n\n___\n\n\n\n<p><h6>We specialize in the designing and coding of custom UI for Mobile Apps and Websites.</h6>\n<a href=\"https://www.ramotion.com/agency/app-development/?utm_source=gthb&utm_medium=repo&utm_campaign=folding-cell\">\n<img src=\"https://github.com/ramotion/gliding-collection/raw/master/contact_our_team@2x.png\" width=\"187\" height=\"34\"></a>\n</p>\n<p><h6>Stay tuned for the latest updates:</h6>\n<a href=\"https://goo.gl/rPFpid\" >\n<img src=\"https://i.imgur.com/ziSqeSo.png/\" width=\"156\" height=\"28\"></a></p>\n\n</br>\n\n[![CocoaPods](https://img.shields.io/cocoapods/p/FoldingCell.svg)](https://cocoapods.org/pods/FoldingCell)\n[![CocoaPods](https://img.shields.io/cocoapods/v/FoldingCell.svg)](http://cocoapods.org/pods/FoldingCell)\n[![Twitter](https://img.shields.io/badge/Twitter-@Ramotion-blue.svg?style=flat)](http://twitter.com/Ramotion)\n[![Travis](https://img.shields.io/travis/Ramotion/folding-cell.svg)](https://travis-ci.org/Ramotion/folding-cell)\n[![codebeat badge](https://codebeat.co/badges/6f67da5d-c416-4bac-9fb7-c2dc938feedc)](https://codebeat.co/projects/github-com-ramotion-folding-cell)\n[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)\n[![Swift 4.0](https://img.shields.io/badge/Swift-5.0-green.svg?style=flat)](https://developer.apple.com/swift/)\n[![Analytics](https://ga-beacon.appspot.com/UA-84973210-1/ramotion/folding-cell)](https://github.com/igrigorik/ga-beacon)\n[![Donate](https://img.shields.io/badge/Donate-PayPal-blue.svg)](https://paypal.me/Ramotion)\n\n## Requirements\n\n- iOS 8.0+\n- Xcode 10.2\n\n## Installation\n\nJust add the FoldingCell.swift file to your project.\n\nor use [CocoaPods](https://cocoapods.org) with Podfile:\n```\npod 'FoldingCell'\n```\nor [Carthage](https://github.com/Carthage/Carthage) users can simply add Mantle to their `Cartfile`:\n```\ngithub \"Ramotion/folding-cell\"\n```\nor [Swift Package Manager](https://swift.org/package-manager/) by adding:\n```\ndependencies: [\n.package(url: \"https://github.com/Ramotion/folding-cell.git\", from: \"5.0.2\")\n]\n```\nto `Package.swift`\n\nor just drag and drop FoldingCell.swift file to your project\n\n## Solution\n![Solution](https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/Solution.png)\n## Usage\n\n1) Create a new cell inheriting from `FoldingCell`\n\n2) Add a UIView to your cell in your storyboard or nib file, inheriting from `RotatedView`.\nConnect the outlet from this view to the cell property `foregroundView`.\nAdd constraints from this view to the superview, as in this picture:\n\n![1.1](https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.1.png)\n\n(constants of constraints may be different). Connect the outlet from this top constraint to the cell property `foregroundViewTop`\n. (This view will be shown when the cell is in its normal state).\n\n3) Add other UIViews to your cell, connect the outlet from this view to the cell\nproperty `containerView`. Add constraints from this view to the superview like in the picture:\n\n![1.2](https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.2.png)\n\n(constants of constraints may be different). Connect the outlet from this top constraint to the cell property `containerViewTop`.\n(This view will be shown when the cell is opened)\n\nYour result should be something like this picture:\n\n![1.3](https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.3.png)\n\n\n4) Set ``` @IBInspectable var itemCount: NSInteger ``` property is a count of folding (it IBInspectable you can set in storyboard). range 2 or greater. Default value is 2\n\nOk, we've finished configuring the cell.\n\n5) Adding code to your UITableViewController\n\n5.1) Add constants:\n``` swift\nfileprivate struct C {\n  struct CellHeight {\n    static let close: CGFloat = *** // equal or greater foregroundView height\n    static let open: CGFloat = *** // equal or greater containerView height\n  }\n}\n```\n5.2) Add property for calculate cells height\n\n``` swift\n     var cellHeights = (0..<CELLCOUNT).map { _ in C.CellHeight.close }\n```\n\n5.3) Override method:\n``` swift\n    override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {\n        return cellHeights[indexPath.row]\n    }\n```\n\n5.4) Added code to method:\n``` swift\n    override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {\n        guard case let cell as FoldingCell = tableView.cellForRowAtIndexPath(indexPath) else {\n          return\n        }\n\n        var duration = 0.0\n        if cellIsCollapsed {\n            cellHeights[indexPath.row] = Const.openCellHeight\n            cell.unfold(true, animated: true, completion: nil)\n            duration = 0.5\n        } else {\n            cellHeights[indexPath.row] = Const.closeCellHeight\n            cell.unfold(false, animated: true, completion: nil)\n            duration = 0.8\n        }\n\n        UIView.animateWithDuration(duration, delay: 0, options: .CurveEaseOut, animations: { _ in\n            tableView.beginUpdates()\n            tableView.endUpdates()\n        }, completion: nil)\n    }\n```\n5.5) Control if the cell is open or closed\n``` swift\n  override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {\n\n        if case let cell as FoldingCell = cell {\n            if cellHeights![indexPath.row] == C.cellHeights.close {\n                foldingCell.selectedAnimation(false, animated: false, completion:nil)\n            } else {\n                foldingCell.selectedAnimation(true, animated: false, completion: nil)\n            }\n        }\n    }\n```\n\n6) Add this code to your new cell class\n``` swift\n    override func animationDuration(itemIndex:NSInteger, type:AnimationType)-> NSTimeInterval {\n\n        // durations count equal it itemCount\n        let durations = [0.33, 0.26, 0.26] // timing animation for each view\n        return durations[itemIndex]\n    }\n```\n\n## if don't use storyboard and xib files\n\nCreate foregroundView and containerView from code (steps 2 - 3) look example:\n[Folding-cell-programmatically](https://github.com/ober01/Folding-cell-programmatically)\n\n## 🗂 Check this library on other language:\n<a href=\"https://github.com/Ramotion/folding-cell-android\">\n<img src=\"https://github.com/ramotion/navigation-stack/raw/master/Android_Java@2x.png\" width=\"178\" height=\"81\"></a>\n\n\n## 📄 License\n\nFolding cell is released under the MIT license.\nSee [LICENSE](./LICENSE) for details.\n\nThis library is a part of a <a href=\"https://github.com/Ramotion/swift-ui-animation-components-and-libraries\"><b>selection of our best UI open-source projects.</b></a>\n\nIf you use the open-source library in your project, please make sure to credit and backlink to https://www.ramotion.com/\n\n## 📱 Get the Showroom App for iOS to give it a try\nTry this UI component and more like this in our iOS app. Contact us if interested.\n\n<a href=\"https://itunes.apple.com/app/apple-store/id1182360240?pt=550053&ct=folding-cell&mt=8\" >\n<img src=\"https://github.com/ramotion/gliding-collection/raw/master/app_store@2x.png\" width=\"117\" height=\"34\"></a>\n\n<a href=\"https://www.ramotion.com/agency/app-development/?utm_source=gthb&utm_medium=repo&utm_campaign=folding-cell\">\n<img src=\"https://github.com/ramotion/gliding-collection/raw/master/contact_our_team@2x.png\" width=\"187\" height=\"34\"></a>\n"
  },
  {
    "path": "docs/Classes/FoldingCell.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <title>FoldingCell Class Reference</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/jazzy.css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/highlight.css\" />\n    <meta charset='utf-8'>\n    <script src=\"../js/jquery.min.js\" defer></script>\n    <script src=\"../js/jazzy.js\" defer></script>\n    \n  </head>\n  <body>\n    <a name=\"//apple_ref/swift/Class/FoldingCell\" class=\"dashAnchor\"></a>\n    <a title=\"FoldingCell Class Reference\"></a>\n    <header>\n      <div class=\"content-wrapper\">\n        <p><a href=\"../index.html\">FoldingCell Docs</a> (42% documented)</p>\n      </div>\n    </header>\n    <div class=\"content-wrapper\">\n      <p id=\"breadcrumbs\">\n        <a href=\"../index.html\">FoldingCell Reference</a>\n        <img id=\"carat\" src=\"../img/carat.png\" />\n        FoldingCell Class Reference\n      </p>\n    </div>\n    <div class=\"content-wrapper\">\n      <nav class=\"sidebar\">\n        <ul class=\"nav-groups\">\n          <li class=\"nav-group-name\">\n            <a href=\"../Classes.html\">Classes</a>\n            <ul class=\"nav-group-tasks\">\n              <li class=\"nav-group-task\">\n                <a href=\"../Classes/FoldingCell.html\">FoldingCell</a>\n              </li>\n            </ul>\n          </li>\n        </ul>\n      </nav>\n      <article class=\"main-content\">\n        <section>\n          <section class=\"section\">\n            <h1>FoldingCell</h1>\n              <div class=\"declaration\">\n                <div class=\"language\">\n                  <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">class</span> <span class=\"kt\">FoldingCell</span><span class=\"p\">:</span> <span class=\"kt\">UITableViewCell</span></code></pre>\n\n                </div>\n              </div>\n            <p>UITableViewCell with folding animation</p>\n\n          </section>\n          <section class=\"section task-group-section\">\n            <div class=\"task-group\">\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell13containerViewXwGSQCSo6UIView_\"></a>\n                    <a name=\"//apple_ref/swift/Property/containerView\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell13containerViewXwGSQCSo6UIView_\">containerView</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>UIView whitch display when cell open</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBOutlet</span> <span class=\"k\">weak</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">containerView</span><span class=\"p\">:</span> <span class=\"kt\">UIView</span><span class=\"o\">!</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell14foregroundViewXwGSQCS_11RotatedView_\"></a>\n                    <a name=\"//apple_ref/swift/Property/foregroundView\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell14foregroundViewXwGSQCS_11RotatedView_\">foregroundView</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>UIView whitch display when cell close</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBOutlet</span> <span class=\"k\">weak</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">foregroundView</span><span class=\"p\">:</span> <span class=\"kt\">RotatedView</span><span class=\"o\">!</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell9itemCountSi\"></a>\n                    <a name=\"//apple_ref/swift/Property/itemCount\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell9itemCountSi\">itemCount</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>the number of folding elements. Default 2</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBInspectable</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">itemCount</span><span class=\"p\">:</span> <span class=\"kt\">NSInteger</span> <span class=\"o\">=</span> <span class=\"mi\">2</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell13backViewColorCSo7UIColor\"></a>\n                    <a name=\"//apple_ref/swift/Property/backViewColor\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell13backViewColorCSo7UIColor\">backViewColor</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>The color of the back cell</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBInspectable</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">backViewColor</span><span class=\"p\">:</span> <span class=\"kt\">UIColor</span> <span class=\"o\">=</span> <span class=\"kt\">UIColor</span><span class=\"o\">.</span><span class=\"nf\">brownColor</span><span class=\"p\">()</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:OC11FoldingCell11FoldingCell13AnimationType\"></a>\n                    <a name=\"//apple_ref/swift/Enum/AnimationType\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:OC11FoldingCell11FoldingCell13AnimationType\">AnimationType</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>Folding animation types</p>\n\n<ul>\n<li>Open:  Open direction</li>\n<li>Close: Close direction</li>\n</ul>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">enum</span> <span class=\"kt\">AnimationType</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n            <div class=\"task-group\">\n              <div class=\"task-name-container\">\n                <a name=\"/%20life%20cicle\"></a>\n                <a name=\"//apple_ref/swift/Section/ life cicle\" class=\"dashAnchor\"></a>\n                <a href=\"#/%20life%20cicle\">\n                  <h3 class=\"section-name\"> life cicle</h3>\n                </a>\n              </div>\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:FC11FoldingCell11FoldingCell10commonInitFT_T_\"></a>\n                    <a name=\"//apple_ref/swift/Method/commonInit()\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:FC11FoldingCell11FoldingCell10commonInitFT_T_\">commonInit()</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>Call this method in methods init(style: UITableViewCellStyle, reuseIdentifier: String?) after creating Views</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">func</span> <span class=\"nf\">commonInit</span><span class=\"p\">()</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n            <div class=\"task-group\">\n              <div class=\"task-name-container\">\n                <a name=\"/public\"></a>\n                <a name=\"//apple_ref/swift/Section/public\" class=\"dashAnchor\"></a>\n                <a href=\"#/public\">\n                  <h3 class=\"section-name\">public</h3>\n                </a>\n              </div>\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:FC11FoldingCell11FoldingCell17selectedAnimationFTSb8animatedSb10completionGSqFT_T___T_\"></a>\n                    <a name=\"//apple_ref/swift/Method/selectedAnimation(_:animated:completion:)\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:FC11FoldingCell11FoldingCell17selectedAnimationFTSb8animatedSb10completionGSqFT_T___T_\">selectedAnimation(_:animated:completion:)</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>Open or close cell</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">func</span> <span class=\"nf\">selectedAnimation</span><span class=\"p\">(</span><span class=\"nv\">isSelected</span><span class=\"p\">:</span> <span class=\"kt\">Bool</span><span class=\"p\">,</span> <span class=\"nv\">animated</span><span class=\"p\">:</span> <span class=\"kt\">Bool</span><span class=\"p\">,</span> <span class=\"nv\">completion</span><span class=\"p\">:</span> <span class=\"p\">(</span><span class=\"kt\">Void</span> <span class=\"o\">-&gt;</span> <span class=\"kt\">Void</span><span class=\"p\">)?)</span></code></pre>\n\n                        </div>\n                      </div>\n                      <div>\n                        <h4>Parameters</h4>\n                        <table class=\"graybox\">\n                          <tbody>\n                            <tr>\n                              <td>\n                                <code>\n                                <em>isSelected</em>\n                                </code>\n                              </td>\n                              <td>\n                                <div>\n                                  <p>Specify true if you want to open cell or false if you close cell.</p>\n\n                                </div>\n                              </td>\n                            </tr>\n                            <tr>\n                              <td>\n                                <code>\n                                <em>animated</em>\n                                </code>\n                              </td>\n                              <td>\n                                <div>\n                                  <p>Specify true if you want to animate the change in visibility or false if you want immediately.</p>\n\n                                </div>\n                              </td>\n                            </tr>\n                            <tr>\n                              <td>\n                                <code>\n                                <em>completion</em>\n                                </code>\n                              </td>\n                              <td>\n                                <div>\n                                  <p>A block object to be executed when the animation sequence ends.</p>\n\n                                </div>\n                              </td>\n                            </tr>\n                          </tbody>\n                        </table>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n          </section>\n        </section>\n        <section id=\"footer\">\n          <p>&copy; 2016 <a class=\"link\" href=\"\" target=\"_blank\" rel=\"external\">AlexKalinkin</a>. All rights reserved. (Last updated: 2016-06-15)</p>\n          <p>Generated by <a class=\"link\" href=\"https://github.com/realm/jazzy\" target=\"_blank\" rel=\"external\">jazzy ♪♫ v0.5.0</a>, a <a class=\"link\" href=\"http://realm.io\" target=\"_blank\" rel=\"external\">Realm</a> project.</p>\n        </section>\n      </article>\n    </div>\n  </body>\n</div>\n</html>\n"
  },
  {
    "path": "docs/Classes.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <title>Classes  Reference</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/jazzy.css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/highlight.css\" />\n    <meta charset='utf-8'>\n    <script src=\"js/jquery.min.js\" defer></script>\n    <script src=\"js/jazzy.js\" defer></script>\n    \n  </head>\n  <body>\n    <a title=\"Classes  Reference\"></a>\n    <header>\n      <div class=\"content-wrapper\">\n        <p><a href=\"index.html\">FoldingCell Docs</a> (42% documented)</p>\n      </div>\n    </header>\n    <div class=\"content-wrapper\">\n      <p id=\"breadcrumbs\">\n        <a href=\"index.html\">FoldingCell Reference</a>\n        <img id=\"carat\" src=\"img/carat.png\" />\n        Classes  Reference\n      </p>\n    </div>\n    <div class=\"content-wrapper\">\n      <nav class=\"sidebar\">\n        <ul class=\"nav-groups\">\n          <li class=\"nav-group-name\">\n            <a href=\"Classes.html\">Classes</a>\n            <ul class=\"nav-group-tasks\">\n              <li class=\"nav-group-task\">\n                <a href=\"Classes/FoldingCell.html\">FoldingCell</a>\n              </li>\n            </ul>\n          </li>\n        </ul>\n      </nav>\n      <article class=\"main-content\">\n        <section>\n          <section class=\"section\">\n            <h1>Classes</h1>\n            <p>The following classes are available globally.</p>\n\n          </section>\n          <section class=\"section task-group-section\">\n            <div class=\"task-group\">\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:C11FoldingCell11FoldingCell\"></a>\n                    <a name=\"//apple_ref/swift/Class/FoldingCell\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:C11FoldingCell11FoldingCell\">FoldingCell</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>UITableViewCell with folding animation</p>\n\n                        <a href=\"Classes/FoldingCell.html\" class=\"slightly-smaller\">See more</a>\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">class</span> <span class=\"kt\">FoldingCell</span><span class=\"p\">:</span> <span class=\"kt\">UITableViewCell</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n          </section>\n        </section>\n        <section id=\"footer\">\n          <p>&copy; 2016 <a class=\"link\" href=\"\" target=\"_blank\" rel=\"external\">AlexKalinkin</a>. All rights reserved. (Last updated: 2016-06-15)</p>\n          <p>Generated by <a class=\"link\" href=\"https://github.com/realm/jazzy\" target=\"_blank\" rel=\"external\">jazzy ♪♫ v0.5.0</a>, a <a class=\"link\" href=\"http://realm.io\" target=\"_blank\" rel=\"external\">Realm</a> project.</p>\n        </section>\n      </article>\n    </div>\n  </body>\n</div>\n</html>\n"
  },
  {
    "path": "docs/css/highlight.css",
    "content": "/* Credit to https://gist.github.com/wataru420/2048287 */\n.highlight {\n  /* Comment */\n  /* Error */\n  /* Keyword */\n  /* Operator */\n  /* Comment.Multiline */\n  /* Comment.Preproc */\n  /* Comment.Single */\n  /* Comment.Special */\n  /* Generic.Deleted */\n  /* Generic.Deleted.Specific */\n  /* Generic.Emph */\n  /* Generic.Error */\n  /* Generic.Heading */\n  /* Generic.Inserted */\n  /* Generic.Inserted.Specific */\n  /* Generic.Output */\n  /* Generic.Prompt */\n  /* Generic.Strong */\n  /* Generic.Subheading */\n  /* Generic.Traceback */\n  /* Keyword.Constant */\n  /* Keyword.Declaration */\n  /* Keyword.Pseudo */\n  /* Keyword.Reserved */\n  /* Keyword.Type */\n  /* Literal.Number */\n  /* Literal.String */\n  /* Name.Attribute */\n  /* Name.Builtin */\n  /* Name.Class */\n  /* Name.Constant */\n  /* Name.Entity */\n  /* Name.Exception */\n  /* Name.Function */\n  /* Name.Namespace */\n  /* Name.Tag */\n  /* Name.Variable */\n  /* Operator.Word */\n  /* Text.Whitespace */\n  /* Literal.Number.Float */\n  /* Literal.Number.Hex */\n  /* Literal.Number.Integer */\n  /* Literal.Number.Oct */\n  /* Literal.String.Backtick */\n  /* Literal.String.Char */\n  /* Literal.String.Doc */\n  /* Literal.String.Double */\n  /* Literal.String.Escape */\n  /* Literal.String.Heredoc */\n  /* Literal.String.Interpol */\n  /* Literal.String.Other */\n  /* Literal.String.Regex */\n  /* Literal.String.Single */\n  /* Literal.String.Symbol */\n  /* Name.Builtin.Pseudo */\n  /* Name.Variable.Class */\n  /* Name.Variable.Global */\n  /* Name.Variable.Instance */\n  /* Literal.Number.Integer.Long */ }\n  .highlight .c {\n    color: #999988;\n    font-style: italic; }\n  .highlight .err {\n    color: #a61717;\n    background-color: #e3d2d2; }\n  .highlight .k {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .o {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .cm {\n    color: #999988;\n    font-style: italic; }\n  .highlight .cp {\n    color: #999999;\n    font-weight: bold; }\n  .highlight .c1 {\n    color: #999988;\n    font-style: italic; }\n  .highlight .cs {\n    color: #999999;\n    font-weight: bold;\n    font-style: italic; }\n  .highlight .gd {\n    color: #000000;\n    background-color: #ffdddd; }\n  .highlight .gd .x {\n    color: #000000;\n    background-color: #ffaaaa; }\n  .highlight .ge {\n    color: #000000;\n    font-style: italic; }\n  .highlight .gr {\n    color: #aa0000; }\n  .highlight .gh {\n    color: #999999; }\n  .highlight .gi {\n    color: #000000;\n    background-color: #ddffdd; }\n  .highlight .gi .x {\n    color: #000000;\n    background-color: #aaffaa; }\n  .highlight .go {\n    color: #888888; }\n  .highlight .gp {\n    color: #555555; }\n  .highlight .gs {\n    font-weight: bold; }\n  .highlight .gu {\n    color: #aaaaaa; }\n  .highlight .gt {\n    color: #aa0000; }\n  .highlight .kc {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kd {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kp {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kr {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kt {\n    color: #445588; }\n  .highlight .m {\n    color: #009999; }\n  .highlight .s {\n    color: #d14; }\n  .highlight .na {\n    color: #008080; }\n  .highlight .nb {\n    color: #0086B3; }\n  .highlight .nc {\n    color: #445588;\n    font-weight: bold; }\n  .highlight .no {\n    color: #008080; }\n  .highlight .ni {\n    color: #800080; }\n  .highlight .ne {\n    color: #990000;\n    font-weight: bold; }\n  .highlight .nf {\n    color: #990000; }\n  .highlight .nn {\n    color: #555555; }\n  .highlight .nt {\n    color: #000080; }\n  .highlight .nv {\n    color: #008080; }\n  .highlight .ow {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .w {\n    color: #bbbbbb; }\n  .highlight .mf {\n    color: #009999; }\n  .highlight .mh {\n    color: #009999; }\n  .highlight .mi {\n    color: #009999; }\n  .highlight .mo {\n    color: #009999; }\n  .highlight .sb {\n    color: #d14; }\n  .highlight .sc {\n    color: #d14; }\n  .highlight .sd {\n    color: #d14; }\n  .highlight .s2 {\n    color: #d14; }\n  .highlight .se {\n    color: #d14; }\n  .highlight .sh {\n    color: #d14; }\n  .highlight .si {\n    color: #d14; }\n  .highlight .sx {\n    color: #d14; }\n  .highlight .sr {\n    color: #009926; }\n  .highlight .s1 {\n    color: #d14; }\n  .highlight .ss {\n    color: #990073; }\n  .highlight .bp {\n    color: #999999; }\n  .highlight .vc {\n    color: #008080; }\n  .highlight .vg {\n    color: #008080; }\n  .highlight .vi {\n    color: #008080; }\n  .highlight .il {\n    color: #009999; }\n"
  },
  {
    "path": "docs/css/jazzy.css",
    "content": "html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, td {\n  background: transparent;\n  border: 0;\n  margin: 0;\n  outline: 0;\n  padding: 0;\n  vertical-align: baseline; }\n\nbody {\n  background-color: #f2f2f2;\n  font-family: Helvetica, freesans, Arial, sans-serif;\n  font-size: 14px;\n  -webkit-font-smoothing: subpixel-antialiased;\n  word-wrap: break-word; }\n\nh1, h2, h3 {\n  margin-top: 0.8em;\n  margin-bottom: 0.3em;\n  font-weight: 100;\n  color: black; }\n\nh1 {\n  font-size: 2.5em; }\n\nh2 {\n  font-size: 2em;\n  border-bottom: 1px solid #e2e2e2; }\n\nh4 {\n  font-size: 13px;\n  line-height: 1.5;\n  margin-top: 21px; }\n\nh5 {\n  font-size: 1.1em; }\n\nh6 {\n  font-size: 1.1em;\n  color: #777; }\n\n.section-name {\n  color: gray;\n  display: block;\n  font-family: Helvetica;\n  font-size: 22px;\n  font-weight: 100;\n  margin-bottom: 15px; }\n\npre, code {\n  font: 0.95em Menlo, monospace;\n  color: #777;\n  word-wrap: normal; }\n\np code, li code {\n  background-color: #eee;\n  padding: 2px 4px;\n  border-radius: 4px; }\n\na {\n  color: #0088cc;\n  text-decoration: none; }\n\nul {\n  padding-left: 15px; }\n\nli {\n  line-height: 1.8em; }\n\nimg {\n  max-width: 100%; }\n\nblockquote {\n  margin-left: 0;\n  padding: 0 10px;\n  border-left: 4px solid #ccc; }\n\n.content-wrapper {\n  margin: 0 auto;\n  width: 980px; }\n\nheader {\n  font-size: 0.85em;\n  line-height: 26px;\n  background-color: #414141;\n  position: fixed;\n  width: 100%;\n  z-index: 1; }\n  header img {\n    padding-right: 6px;\n    vertical-align: -4px;\n    height: 16px; }\n  header a {\n    color: #fff; }\n  header p {\n    float: left;\n    color: #999; }\n  header .header-right {\n    float: right;\n    margin-left: 16px; }\n\n#breadcrumbs {\n  background-color: #f2f2f2;\n  height: 27px;\n  padding-top: 17px;\n  position: fixed;\n  width: 100%;\n  z-index: 1;\n  margin-top: 26px; }\n  #breadcrumbs #carat {\n    height: 10px;\n    margin: 0 5px; }\n\n.sidebar {\n  background-color: #f9f9f9;\n  border: 1px solid #e2e2e2;\n  overflow-y: auto;\n  overflow-x: hidden;\n  position: fixed;\n  top: 70px;\n  bottom: 0;\n  width: 230px;\n  word-wrap: normal; }\n\n.nav-groups {\n  list-style-type: none;\n  background: #fff;\n  padding-left: 0; }\n\n.nav-group-name {\n  border-bottom: 1px solid #e2e2e2;\n  font-size: 1.1em;\n  font-weight: 100;\n  padding: 15px 0 15px 20px; }\n  .nav-group-name > a {\n    color: #333; }\n\n.nav-group-tasks {\n  margin-top: 5px; }\n\n.nav-group-task {\n  font-size: 0.9em;\n  list-style-type: none; }\n  .nav-group-task a {\n    color: #888; }\n\n.main-content {\n  background-color: #fff;\n  border: 1px solid #e2e2e2;\n  margin-left: 246px;\n  position: absolute;\n  overflow: hidden;\n  padding-bottom: 60px;\n  top: 70px;\n  width: 734px; }\n  .main-content p, .main-content a, .main-content code, .main-content em, .main-content ul, .main-content table, .main-content blockquote {\n    margin-bottom: 1em; }\n  .main-content p {\n    line-height: 1.8em; }\n  .main-content section .section:first-child {\n    margin-top: 0;\n    padding-top: 0; }\n  .main-content section .task-group-section .task-group:first-of-type {\n    padding-top: 10px; }\n    .main-content section .task-group-section .task-group:first-of-type .section-name {\n      padding-top: 15px; }\n\n.section {\n  padding: 0 25px; }\n\n.highlight {\n  background-color: #eee;\n  padding: 10px 12px;\n  border: 1px solid #e2e2e2;\n  border-radius: 4px;\n  overflow-x: auto; }\n\n.declaration .highlight {\n  overflow-x: initial;\n  padding: 0 40px 40px 0;\n  margin-bottom: -25px;\n  background-color: transparent;\n  border: none; }\n\n.section-name {\n  margin: 0;\n  margin-left: 18px; }\n\n.task-group-section {\n  padding-left: 6px;\n  border-top: 1px solid #e2e2e2; }\n\n.task-group {\n  padding-top: 0px; }\n\n.task-name-container a[name]:before {\n  content: \"\";\n  display: block;\n  padding-top: 70px;\n  margin: -70px 0 0; }\n\n.item {\n  padding-top: 8px;\n  width: 100%;\n  list-style-type: none; }\n  .item a[name]:before {\n    content: \"\";\n    display: block;\n    padding-top: 70px;\n    margin: -70px 0 0; }\n  .item code {\n    background-color: transparent;\n    padding: 0; }\n  .item .token {\n    padding-left: 3px;\n    margin-left: 15px;\n    font-size: 11.9px; }\n  .item .declaration-note {\n    font-size: .85em;\n    color: gray;\n    font-style: italic; }\n\n.pointer-container {\n  border-bottom: 1px solid #e2e2e2;\n  left: -23px;\n  padding-bottom: 13px;\n  position: relative;\n  width: 110%; }\n\n.pointer {\n  background: #f9f9f9;\n  border-left: 1px solid #e2e2e2;\n  border-top: 1px solid #e2e2e2;\n  height: 12px;\n  left: 21px;\n  top: -7px;\n  -webkit-transform: rotate(45deg);\n  -moz-transform: rotate(45deg);\n  -o-transform: rotate(45deg);\n  transform: rotate(45deg);\n  position: absolute;\n  width: 12px; }\n\n.height-container {\n  display: none;\n  left: -25px;\n  padding: 0 25px;\n  position: relative;\n  width: 100%;\n  overflow: hidden; }\n  .height-container .section {\n    background: #f9f9f9;\n    border-bottom: 1px solid #e2e2e2;\n    left: -25px;\n    position: relative;\n    width: 100%;\n    padding-top: 10px;\n    padding-bottom: 5px; }\n\n.aside, .language {\n  padding: 6px 12px;\n  margin: 12px 0;\n  border-left: 5px solid #dddddd;\n  overflow-y: hidden; }\n  .aside .aside-title, .language .aside-title {\n    font-size: 9px;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    padding-bottom: 0;\n    margin: 0;\n    color: #aaa;\n    -webkit-user-select: none; }\n  .aside p:last-child, .language p:last-child {\n    margin-bottom: 0; }\n\n.language {\n  border-left: 5px solid #cde9f4; }\n  .language .aside-title {\n    color: #4b8afb; }\n\n.aside-warning {\n  border-left: 5px solid #ff6666; }\n  .aside-warning .aside-title {\n    color: #ff0000; }\n\n.graybox {\n  border-collapse: collapse;\n  width: 100%; }\n  .graybox p {\n    margin: 0;\n    word-break: break-word;\n    min-width: 50px; }\n  .graybox td {\n    border: 1px solid #e2e2e2;\n    padding: 5px 25px 5px 10px;\n    vertical-align: middle; }\n  .graybox tr td:first-of-type {\n    text-align: right;\n    padding: 7px;\n    vertical-align: top;\n    word-break: normal;\n    width: 40px; }\n\n.slightly-smaller {\n  font-size: 0.9em; }\n\n#footer {\n  position: absolute;\n  bottom: 10px;\n  margin-left: 25px; }\n  #footer p {\n    margin: 0;\n    color: #aaa;\n    font-size: 0.8em; }\n\nhtml.dash header, html.dash #breadcrumbs, html.dash .sidebar {\n  display: none; }\nhtml.dash .main-content {\n  width: 980px;\n  margin-left: 0;\n  border: none;\n  width: 100%;\n  top: 0;\n  padding-bottom: 0; }\nhtml.dash .height-container {\n  display: block; }\nhtml.dash .item .token {\n  margin-left: 0; }\nhtml.dash .content-wrapper {\n  width: auto; }\nhtml.dash #footer {\n  position: static; }\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/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    <key>CFBundleIdentifier</key>\n      <string>com.jazzy.foldingcell</string>\n    <key>CFBundleName</key>\n      <string>FoldingCell</string>\n    <key>DocSetPlatformFamily</key>\n      <string>jazzy</string>\n    <key>isDashDocset</key>\n      <true/>\n    <key>dashIndexFilePath</key>\n      <string>index.html</string>\n    <key>isJavaScriptEnabled</key>\n      <true/>\n    <key>DashDocSetFamily</key>\n      <string>dashtoc</string>\n  </dict>\n</plist>\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/Classes/FoldingCell.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <title>FoldingCell Class Reference</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/jazzy.css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"../css/highlight.css\" />\n    <meta charset='utf-8'>\n    <script src=\"../js/jquery.min.js\" defer></script>\n    <script src=\"../js/jazzy.js\" defer></script>\n    \n  </head>\n  <body>\n    <a name=\"//apple_ref/swift/Class/FoldingCell\" class=\"dashAnchor\"></a>\n    <a title=\"FoldingCell Class Reference\"></a>\n    <header>\n      <div class=\"content-wrapper\">\n        <p><a href=\"../index.html\">FoldingCell Docs</a> (42% documented)</p>\n      </div>\n    </header>\n    <div class=\"content-wrapper\">\n      <p id=\"breadcrumbs\">\n        <a href=\"../index.html\">FoldingCell Reference</a>\n        <img id=\"carat\" src=\"../img/carat.png\" />\n        FoldingCell Class Reference\n      </p>\n    </div>\n    <div class=\"content-wrapper\">\n      <nav class=\"sidebar\">\n        <ul class=\"nav-groups\">\n          <li class=\"nav-group-name\">\n            <a href=\"../Classes.html\">Classes</a>\n            <ul class=\"nav-group-tasks\">\n              <li class=\"nav-group-task\">\n                <a href=\"../Classes/FoldingCell.html\">FoldingCell</a>\n              </li>\n            </ul>\n          </li>\n        </ul>\n      </nav>\n      <article class=\"main-content\">\n        <section>\n          <section class=\"section\">\n            <h1>FoldingCell</h1>\n              <div class=\"declaration\">\n                <div class=\"language\">\n                  <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">class</span> <span class=\"kt\">FoldingCell</span><span class=\"p\">:</span> <span class=\"kt\">UITableViewCell</span></code></pre>\n\n                </div>\n              </div>\n            <p>UITableViewCell with folding animation</p>\n\n          </section>\n          <section class=\"section task-group-section\">\n            <div class=\"task-group\">\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell13containerViewXwGSQCSo6UIView_\"></a>\n                    <a name=\"//apple_ref/swift/Property/containerView\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell13containerViewXwGSQCSo6UIView_\">containerView</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>UIView whitch display when cell open</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBOutlet</span> <span class=\"k\">weak</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">containerView</span><span class=\"p\">:</span> <span class=\"kt\">UIView</span><span class=\"o\">!</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell14foregroundViewXwGSQCS_11RotatedView_\"></a>\n                    <a name=\"//apple_ref/swift/Property/foregroundView\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell14foregroundViewXwGSQCS_11RotatedView_\">foregroundView</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>UIView whitch display when cell close</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBOutlet</span> <span class=\"k\">weak</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">foregroundView</span><span class=\"p\">:</span> <span class=\"kt\">RotatedView</span><span class=\"o\">!</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell9itemCountSi\"></a>\n                    <a name=\"//apple_ref/swift/Property/itemCount\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell9itemCountSi\">itemCount</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>the number of folding elements. Default 2</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBInspectable</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">itemCount</span><span class=\"p\">:</span> <span class=\"kt\">NSInteger</span> <span class=\"o\">=</span> <span class=\"mi\">2</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:vC11FoldingCell11FoldingCell13backViewColorCSo7UIColor\"></a>\n                    <a name=\"//apple_ref/swift/Property/backViewColor\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:vC11FoldingCell11FoldingCell13backViewColorCSo7UIColor\">backViewColor</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>The color of the back cell</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">@IBInspectable</span> <span class=\"kd\">public</span> <span class=\"k\">var</span> <span class=\"nv\">backViewColor</span><span class=\"p\">:</span> <span class=\"kt\">UIColor</span> <span class=\"o\">=</span> <span class=\"kt\">UIColor</span><span class=\"o\">.</span><span class=\"nf\">brownColor</span><span class=\"p\">()</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:OC11FoldingCell11FoldingCell13AnimationType\"></a>\n                    <a name=\"//apple_ref/swift/Enum/AnimationType\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:OC11FoldingCell11FoldingCell13AnimationType\">AnimationType</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>Folding animation types</p>\n\n<ul>\n<li>Open:  Open direction</li>\n<li>Close: Close direction</li>\n</ul>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">enum</span> <span class=\"kt\">AnimationType</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n            <div class=\"task-group\">\n              <div class=\"task-name-container\">\n                <a name=\"/%20life%20cicle\"></a>\n                <a name=\"//apple_ref/swift/Section/ life cicle\" class=\"dashAnchor\"></a>\n                <a href=\"#/%20life%20cicle\">\n                  <h3 class=\"section-name\"> life cicle</h3>\n                </a>\n              </div>\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:FC11FoldingCell11FoldingCell10commonInitFT_T_\"></a>\n                    <a name=\"//apple_ref/swift/Method/commonInit()\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:FC11FoldingCell11FoldingCell10commonInitFT_T_\">commonInit()</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>Call this method in methods init(style: UITableViewCellStyle, reuseIdentifier: String?) after creating Views</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">func</span> <span class=\"nf\">commonInit</span><span class=\"p\">()</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n            <div class=\"task-group\">\n              <div class=\"task-name-container\">\n                <a name=\"/public\"></a>\n                <a name=\"//apple_ref/swift/Section/public\" class=\"dashAnchor\"></a>\n                <a href=\"#/public\">\n                  <h3 class=\"section-name\">public</h3>\n                </a>\n              </div>\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:FC11FoldingCell11FoldingCell17selectedAnimationFTSb8animatedSb10completionGSqFT_T___T_\"></a>\n                    <a name=\"//apple_ref/swift/Method/selectedAnimation(_:animated:completion:)\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:FC11FoldingCell11FoldingCell17selectedAnimationFTSb8animatedSb10completionGSqFT_T___T_\">selectedAnimation(_:animated:completion:)</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>Open or close cell</p>\n\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">func</span> <span class=\"nf\">selectedAnimation</span><span class=\"p\">(</span><span class=\"nv\">isSelected</span><span class=\"p\">:</span> <span class=\"kt\">Bool</span><span class=\"p\">,</span> <span class=\"nv\">animated</span><span class=\"p\">:</span> <span class=\"kt\">Bool</span><span class=\"p\">,</span> <span class=\"nv\">completion</span><span class=\"p\">:</span> <span class=\"p\">(</span><span class=\"kt\">Void</span> <span class=\"o\">-&gt;</span> <span class=\"kt\">Void</span><span class=\"p\">)?)</span></code></pre>\n\n                        </div>\n                      </div>\n                      <div>\n                        <h4>Parameters</h4>\n                        <table class=\"graybox\">\n                          <tbody>\n                            <tr>\n                              <td>\n                                <code>\n                                <em>isSelected</em>\n                                </code>\n                              </td>\n                              <td>\n                                <div>\n                                  <p>Specify true if you want to open cell or false if you close cell.</p>\n\n                                </div>\n                              </td>\n                            </tr>\n                            <tr>\n                              <td>\n                                <code>\n                                <em>animated</em>\n                                </code>\n                              </td>\n                              <td>\n                                <div>\n                                  <p>Specify true if you want to animate the change in visibility or false if you want immediately.</p>\n\n                                </div>\n                              </td>\n                            </tr>\n                            <tr>\n                              <td>\n                                <code>\n                                <em>completion</em>\n                                </code>\n                              </td>\n                              <td>\n                                <div>\n                                  <p>A block object to be executed when the animation sequence ends.</p>\n\n                                </div>\n                              </td>\n                            </tr>\n                          </tbody>\n                        </table>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n          </section>\n        </section>\n        <section id=\"footer\">\n          <p>&copy; 2016 <a class=\"link\" href=\"\" target=\"_blank\" rel=\"external\">AlexKalinkin</a>. All rights reserved. (Last updated: 2016-06-15)</p>\n          <p>Generated by <a class=\"link\" href=\"https://github.com/realm/jazzy\" target=\"_blank\" rel=\"external\">jazzy ♪♫ v0.5.0</a>, a <a class=\"link\" href=\"http://realm.io\" target=\"_blank\" rel=\"external\">Realm</a> project.</p>\n        </section>\n      </article>\n    </div>\n  </body>\n</div>\n</html>\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/Classes.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <title>Classes  Reference</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/jazzy.css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/highlight.css\" />\n    <meta charset='utf-8'>\n    <script src=\"js/jquery.min.js\" defer></script>\n    <script src=\"js/jazzy.js\" defer></script>\n    \n  </head>\n  <body>\n    <a title=\"Classes  Reference\"></a>\n    <header>\n      <div class=\"content-wrapper\">\n        <p><a href=\"index.html\">FoldingCell Docs</a> (42% documented)</p>\n      </div>\n    </header>\n    <div class=\"content-wrapper\">\n      <p id=\"breadcrumbs\">\n        <a href=\"index.html\">FoldingCell Reference</a>\n        <img id=\"carat\" src=\"img/carat.png\" />\n        Classes  Reference\n      </p>\n    </div>\n    <div class=\"content-wrapper\">\n      <nav class=\"sidebar\">\n        <ul class=\"nav-groups\">\n          <li class=\"nav-group-name\">\n            <a href=\"Classes.html\">Classes</a>\n            <ul class=\"nav-group-tasks\">\n              <li class=\"nav-group-task\">\n                <a href=\"Classes/FoldingCell.html\">FoldingCell</a>\n              </li>\n            </ul>\n          </li>\n        </ul>\n      </nav>\n      <article class=\"main-content\">\n        <section>\n          <section class=\"section\">\n            <h1>Classes</h1>\n            <p>The following classes are available globally.</p>\n\n          </section>\n          <section class=\"section task-group-section\">\n            <div class=\"task-group\">\n              <ul>\n                <li class=\"item\">\n                  <div>\n                    <code>\n                    <a name=\"/s:C11FoldingCell11FoldingCell\"></a>\n                    <a name=\"//apple_ref/swift/Class/FoldingCell\" class=\"dashAnchor\"></a>\n                    <a class=\"token\" href=\"#/s:C11FoldingCell11FoldingCell\">FoldingCell</a>\n                    </code>\n                  </div>\n                  <div class=\"height-container\">\n                    <div class=\"pointer-container\"></div>\n                    <section class=\"section\">\n                      <div class=\"pointer\"></div>\n                      <div class=\"abstract\">\n                        <p>UITableViewCell with folding animation</p>\n\n                        <a href=\"Classes/FoldingCell.html\" class=\"slightly-smaller\">See more</a>\n                      </div>\n                      <div class=\"declaration\">\n                        <h4>Declaration</h4>\n                        <div class=\"language\">\n                          <p class=\"aside-title\">Swift</p>\n                          <pre class=\"highlight\"><code><span class=\"kd\">public</span> <span class=\"kd\">class</span> <span class=\"kt\">FoldingCell</span><span class=\"p\">:</span> <span class=\"kt\">UITableViewCell</span></code></pre>\n\n                        </div>\n                      </div>\n                    </section>\n                  </div>\n                </li>\n              </ul>\n            </div>\n          </section>\n        </section>\n        <section id=\"footer\">\n          <p>&copy; 2016 <a class=\"link\" href=\"\" target=\"_blank\" rel=\"external\">AlexKalinkin</a>. All rights reserved. (Last updated: 2016-06-15)</p>\n          <p>Generated by <a class=\"link\" href=\"https://github.com/realm/jazzy\" target=\"_blank\" rel=\"external\">jazzy ♪♫ v0.5.0</a>, a <a class=\"link\" href=\"http://realm.io\" target=\"_blank\" rel=\"external\">Realm</a> project.</p>\n        </section>\n      </article>\n    </div>\n  </body>\n</div>\n</html>\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/css/highlight.css",
    "content": "/* Credit to https://gist.github.com/wataru420/2048287 */\n.highlight {\n  /* Comment */\n  /* Error */\n  /* Keyword */\n  /* Operator */\n  /* Comment.Multiline */\n  /* Comment.Preproc */\n  /* Comment.Single */\n  /* Comment.Special */\n  /* Generic.Deleted */\n  /* Generic.Deleted.Specific */\n  /* Generic.Emph */\n  /* Generic.Error */\n  /* Generic.Heading */\n  /* Generic.Inserted */\n  /* Generic.Inserted.Specific */\n  /* Generic.Output */\n  /* Generic.Prompt */\n  /* Generic.Strong */\n  /* Generic.Subheading */\n  /* Generic.Traceback */\n  /* Keyword.Constant */\n  /* Keyword.Declaration */\n  /* Keyword.Pseudo */\n  /* Keyword.Reserved */\n  /* Keyword.Type */\n  /* Literal.Number */\n  /* Literal.String */\n  /* Name.Attribute */\n  /* Name.Builtin */\n  /* Name.Class */\n  /* Name.Constant */\n  /* Name.Entity */\n  /* Name.Exception */\n  /* Name.Function */\n  /* Name.Namespace */\n  /* Name.Tag */\n  /* Name.Variable */\n  /* Operator.Word */\n  /* Text.Whitespace */\n  /* Literal.Number.Float */\n  /* Literal.Number.Hex */\n  /* Literal.Number.Integer */\n  /* Literal.Number.Oct */\n  /* Literal.String.Backtick */\n  /* Literal.String.Char */\n  /* Literal.String.Doc */\n  /* Literal.String.Double */\n  /* Literal.String.Escape */\n  /* Literal.String.Heredoc */\n  /* Literal.String.Interpol */\n  /* Literal.String.Other */\n  /* Literal.String.Regex */\n  /* Literal.String.Single */\n  /* Literal.String.Symbol */\n  /* Name.Builtin.Pseudo */\n  /* Name.Variable.Class */\n  /* Name.Variable.Global */\n  /* Name.Variable.Instance */\n  /* Literal.Number.Integer.Long */ }\n  .highlight .c {\n    color: #999988;\n    font-style: italic; }\n  .highlight .err {\n    color: #a61717;\n    background-color: #e3d2d2; }\n  .highlight .k {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .o {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .cm {\n    color: #999988;\n    font-style: italic; }\n  .highlight .cp {\n    color: #999999;\n    font-weight: bold; }\n  .highlight .c1 {\n    color: #999988;\n    font-style: italic; }\n  .highlight .cs {\n    color: #999999;\n    font-weight: bold;\n    font-style: italic; }\n  .highlight .gd {\n    color: #000000;\n    background-color: #ffdddd; }\n  .highlight .gd .x {\n    color: #000000;\n    background-color: #ffaaaa; }\n  .highlight .ge {\n    color: #000000;\n    font-style: italic; }\n  .highlight .gr {\n    color: #aa0000; }\n  .highlight .gh {\n    color: #999999; }\n  .highlight .gi {\n    color: #000000;\n    background-color: #ddffdd; }\n  .highlight .gi .x {\n    color: #000000;\n    background-color: #aaffaa; }\n  .highlight .go {\n    color: #888888; }\n  .highlight .gp {\n    color: #555555; }\n  .highlight .gs {\n    font-weight: bold; }\n  .highlight .gu {\n    color: #aaaaaa; }\n  .highlight .gt {\n    color: #aa0000; }\n  .highlight .kc {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kd {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kp {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kr {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .kt {\n    color: #445588; }\n  .highlight .m {\n    color: #009999; }\n  .highlight .s {\n    color: #d14; }\n  .highlight .na {\n    color: #008080; }\n  .highlight .nb {\n    color: #0086B3; }\n  .highlight .nc {\n    color: #445588;\n    font-weight: bold; }\n  .highlight .no {\n    color: #008080; }\n  .highlight .ni {\n    color: #800080; }\n  .highlight .ne {\n    color: #990000;\n    font-weight: bold; }\n  .highlight .nf {\n    color: #990000; }\n  .highlight .nn {\n    color: #555555; }\n  .highlight .nt {\n    color: #000080; }\n  .highlight .nv {\n    color: #008080; }\n  .highlight .ow {\n    color: #000000;\n    font-weight: bold; }\n  .highlight .w {\n    color: #bbbbbb; }\n  .highlight .mf {\n    color: #009999; }\n  .highlight .mh {\n    color: #009999; }\n  .highlight .mi {\n    color: #009999; }\n  .highlight .mo {\n    color: #009999; }\n  .highlight .sb {\n    color: #d14; }\n  .highlight .sc {\n    color: #d14; }\n  .highlight .sd {\n    color: #d14; }\n  .highlight .s2 {\n    color: #d14; }\n  .highlight .se {\n    color: #d14; }\n  .highlight .sh {\n    color: #d14; }\n  .highlight .si {\n    color: #d14; }\n  .highlight .sx {\n    color: #d14; }\n  .highlight .sr {\n    color: #009926; }\n  .highlight .s1 {\n    color: #d14; }\n  .highlight .ss {\n    color: #990073; }\n  .highlight .bp {\n    color: #999999; }\n  .highlight .vc {\n    color: #008080; }\n  .highlight .vg {\n    color: #008080; }\n  .highlight .vi {\n    color: #008080; }\n  .highlight .il {\n    color: #009999; }\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/css/jazzy.css",
    "content": "html, body, div, span, h1, h3, h4, p, a, code, em, img, ul, li, table, tbody, tr, td {\n  background: transparent;\n  border: 0;\n  margin: 0;\n  outline: 0;\n  padding: 0;\n  vertical-align: baseline; }\n\nbody {\n  background-color: #f2f2f2;\n  font-family: Helvetica, freesans, Arial, sans-serif;\n  font-size: 14px;\n  -webkit-font-smoothing: subpixel-antialiased;\n  word-wrap: break-word; }\n\nh1, h2, h3 {\n  margin-top: 0.8em;\n  margin-bottom: 0.3em;\n  font-weight: 100;\n  color: black; }\n\nh1 {\n  font-size: 2.5em; }\n\nh2 {\n  font-size: 2em;\n  border-bottom: 1px solid #e2e2e2; }\n\nh4 {\n  font-size: 13px;\n  line-height: 1.5;\n  margin-top: 21px; }\n\nh5 {\n  font-size: 1.1em; }\n\nh6 {\n  font-size: 1.1em;\n  color: #777; }\n\n.section-name {\n  color: gray;\n  display: block;\n  font-family: Helvetica;\n  font-size: 22px;\n  font-weight: 100;\n  margin-bottom: 15px; }\n\npre, code {\n  font: 0.95em Menlo, monospace;\n  color: #777;\n  word-wrap: normal; }\n\np code, li code {\n  background-color: #eee;\n  padding: 2px 4px;\n  border-radius: 4px; }\n\na {\n  color: #0088cc;\n  text-decoration: none; }\n\nul {\n  padding-left: 15px; }\n\nli {\n  line-height: 1.8em; }\n\nimg {\n  max-width: 100%; }\n\nblockquote {\n  margin-left: 0;\n  padding: 0 10px;\n  border-left: 4px solid #ccc; }\n\n.content-wrapper {\n  margin: 0 auto;\n  width: 980px; }\n\nheader {\n  font-size: 0.85em;\n  line-height: 26px;\n  background-color: #414141;\n  position: fixed;\n  width: 100%;\n  z-index: 1; }\n  header img {\n    padding-right: 6px;\n    vertical-align: -4px;\n    height: 16px; }\n  header a {\n    color: #fff; }\n  header p {\n    float: left;\n    color: #999; }\n  header .header-right {\n    float: right;\n    margin-left: 16px; }\n\n#breadcrumbs {\n  background-color: #f2f2f2;\n  height: 27px;\n  padding-top: 17px;\n  position: fixed;\n  width: 100%;\n  z-index: 1;\n  margin-top: 26px; }\n  #breadcrumbs #carat {\n    height: 10px;\n    margin: 0 5px; }\n\n.sidebar {\n  background-color: #f9f9f9;\n  border: 1px solid #e2e2e2;\n  overflow-y: auto;\n  overflow-x: hidden;\n  position: fixed;\n  top: 70px;\n  bottom: 0;\n  width: 230px;\n  word-wrap: normal; }\n\n.nav-groups {\n  list-style-type: none;\n  background: #fff;\n  padding-left: 0; }\n\n.nav-group-name {\n  border-bottom: 1px solid #e2e2e2;\n  font-size: 1.1em;\n  font-weight: 100;\n  padding: 15px 0 15px 20px; }\n  .nav-group-name > a {\n    color: #333; }\n\n.nav-group-tasks {\n  margin-top: 5px; }\n\n.nav-group-task {\n  font-size: 0.9em;\n  list-style-type: none; }\n  .nav-group-task a {\n    color: #888; }\n\n.main-content {\n  background-color: #fff;\n  border: 1px solid #e2e2e2;\n  margin-left: 246px;\n  position: absolute;\n  overflow: hidden;\n  padding-bottom: 60px;\n  top: 70px;\n  width: 734px; }\n  .main-content p, .main-content a, .main-content code, .main-content em, .main-content ul, .main-content table, .main-content blockquote {\n    margin-bottom: 1em; }\n  .main-content p {\n    line-height: 1.8em; }\n  .main-content section .section:first-child {\n    margin-top: 0;\n    padding-top: 0; }\n  .main-content section .task-group-section .task-group:first-of-type {\n    padding-top: 10px; }\n    .main-content section .task-group-section .task-group:first-of-type .section-name {\n      padding-top: 15px; }\n\n.section {\n  padding: 0 25px; }\n\n.highlight {\n  background-color: #eee;\n  padding: 10px 12px;\n  border: 1px solid #e2e2e2;\n  border-radius: 4px;\n  overflow-x: auto; }\n\n.declaration .highlight {\n  overflow-x: initial;\n  padding: 0 40px 40px 0;\n  margin-bottom: -25px;\n  background-color: transparent;\n  border: none; }\n\n.section-name {\n  margin: 0;\n  margin-left: 18px; }\n\n.task-group-section {\n  padding-left: 6px;\n  border-top: 1px solid #e2e2e2; }\n\n.task-group {\n  padding-top: 0px; }\n\n.task-name-container a[name]:before {\n  content: \"\";\n  display: block;\n  padding-top: 70px;\n  margin: -70px 0 0; }\n\n.item {\n  padding-top: 8px;\n  width: 100%;\n  list-style-type: none; }\n  .item a[name]:before {\n    content: \"\";\n    display: block;\n    padding-top: 70px;\n    margin: -70px 0 0; }\n  .item code {\n    background-color: transparent;\n    padding: 0; }\n  .item .token {\n    padding-left: 3px;\n    margin-left: 15px;\n    font-size: 11.9px; }\n  .item .declaration-note {\n    font-size: .85em;\n    color: gray;\n    font-style: italic; }\n\n.pointer-container {\n  border-bottom: 1px solid #e2e2e2;\n  left: -23px;\n  padding-bottom: 13px;\n  position: relative;\n  width: 110%; }\n\n.pointer {\n  background: #f9f9f9;\n  border-left: 1px solid #e2e2e2;\n  border-top: 1px solid #e2e2e2;\n  height: 12px;\n  left: 21px;\n  top: -7px;\n  -webkit-transform: rotate(45deg);\n  -moz-transform: rotate(45deg);\n  -o-transform: rotate(45deg);\n  transform: rotate(45deg);\n  position: absolute;\n  width: 12px; }\n\n.height-container {\n  display: none;\n  left: -25px;\n  padding: 0 25px;\n  position: relative;\n  width: 100%;\n  overflow: hidden; }\n  .height-container .section {\n    background: #f9f9f9;\n    border-bottom: 1px solid #e2e2e2;\n    left: -25px;\n    position: relative;\n    width: 100%;\n    padding-top: 10px;\n    padding-bottom: 5px; }\n\n.aside, .language {\n  padding: 6px 12px;\n  margin: 12px 0;\n  border-left: 5px solid #dddddd;\n  overflow-y: hidden; }\n  .aside .aside-title, .language .aside-title {\n    font-size: 9px;\n    letter-spacing: 2px;\n    text-transform: uppercase;\n    padding-bottom: 0;\n    margin: 0;\n    color: #aaa;\n    -webkit-user-select: none; }\n  .aside p:last-child, .language p:last-child {\n    margin-bottom: 0; }\n\n.language {\n  border-left: 5px solid #cde9f4; }\n  .language .aside-title {\n    color: #4b8afb; }\n\n.aside-warning {\n  border-left: 5px solid #ff6666; }\n  .aside-warning .aside-title {\n    color: #ff0000; }\n\n.graybox {\n  border-collapse: collapse;\n  width: 100%; }\n  .graybox p {\n    margin: 0;\n    word-break: break-word;\n    min-width: 50px; }\n  .graybox td {\n    border: 1px solid #e2e2e2;\n    padding: 5px 25px 5px 10px;\n    vertical-align: middle; }\n  .graybox tr td:first-of-type {\n    text-align: right;\n    padding: 7px;\n    vertical-align: top;\n    word-break: normal;\n    width: 40px; }\n\n.slightly-smaller {\n  font-size: 0.9em; }\n\n#footer {\n  position: absolute;\n  bottom: 10px;\n  margin-left: 25px; }\n  #footer p {\n    margin: 0;\n    color: #aaa;\n    font-size: 0.8em; }\n\nhtml.dash header, html.dash #breadcrumbs, html.dash .sidebar {\n  display: none; }\nhtml.dash .main-content {\n  width: 980px;\n  margin-left: 0;\n  border: none;\n  width: 100%;\n  top: 0;\n  padding-bottom: 0; }\nhtml.dash .height-container {\n  display: block; }\nhtml.dash .item .token {\n  margin-left: 0; }\nhtml.dash .content-wrapper {\n  width: auto; }\nhtml.dash #footer {\n  position: static; }\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <title>FoldingCell  Reference</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/jazzy.css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/highlight.css\" />\n    <meta charset='utf-8'>\n    <script src=\"js/jquery.min.js\" defer></script>\n    <script src=\"js/jazzy.js\" defer></script>\n    \n  </head>\n  <body>\n    <a title=\"FoldingCell  Reference\"></a>\n    <header>\n      <div class=\"content-wrapper\">\n        <p><a href=\"index.html\">FoldingCell Docs</a> (42% documented)</p>\n      </div>\n    </header>\n    <div class=\"content-wrapper\">\n      <p id=\"breadcrumbs\">\n        <a href=\"index.html\">FoldingCell Reference</a>\n        <img id=\"carat\" src=\"img/carat.png\" />\n        FoldingCell  Reference\n      </p>\n    </div>\n    <div class=\"content-wrapper\">\n      <nav class=\"sidebar\">\n        <ul class=\"nav-groups\">\n          <li class=\"nav-group-name\">\n            <a href=\"Classes.html\">Classes</a>\n            <ul class=\"nav-group-tasks\">\n              <li class=\"nav-group-task\">\n                <a href=\"Classes/FoldingCell.html\">FoldingCell</a>\n              </li>\n            </ul>\n          </li>\n        </ul>\n      </nav>\n      <article class=\"main-content\">\n        <section>\n          <section class=\"section\">\n            \n            <p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/header.png\" alt=\"header\"></p>\n<a href='#foldingcell' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h1 id='foldingcell'>FoldingCell</h1>\n\n<p><a href=\"https://cocoapods.org/pods/FoldingCell\"><img src=\"https://img.shields.io/cocoapods/p/FoldingCell.svg\" alt=\"CocoaPods\"></a>\n<a href=\"http://cocoapods.org/pods/FoldingCell\"><img src=\"https://img.shields.io/cocoapods/v/FoldingCell.svg\" alt=\"CocoaPods\"></a>\n<a href=\"https://cdn.rawgit.com/Ramotion/folding-cell/master/docs/index.html\"><img src=\"https://img.shields.io/cocoapods/metrics/doc-percent/FoldingCell.svg\" alt=\"CocoaPods\"></a>\n<a href=\"https://github.com/Ramotion/folding-cell\"><img src=\"https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat\" alt=\"Carthage compatible\"></a>\n<a href=\"http://twitter.com/Ramotion\"><img src=\"https://img.shields.io/badge/Twitter-@Ramotion-blue.svg?style=flat\" alt=\"Twitter\"></a>\n<a href=\"https://travis-ci.org/Ramotion/folding-cell\"><img src=\"https://img.shields.io/travis/Ramotion/folding-cell.svg\" alt=\"Travis\"></a>\n<a href=\"https://codebeat.co/projects/github-com-ramotion-folding-cell\"><img src=\"https://codebeat.co/badges/6f67da5d-c416-4bac-9fb7-c2dc938feedc\" alt=\"codebeat badge\"></a>\n<a href=\"https://github.com/Carthage/Carthage\"><img src=\"https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat\" alt=\"Carthage compatible\"></a></p>\n\n<p><a href=\"https://dribbble.com/shots/2121350-Delivery-Card\">shot on dribbble</a>:\n<img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Screenshots/folding-cell.gif\" alt=\"Animation\"></p>\n\n<p>The <a href=\"https://store.ramotion.com/product/iphone-6-mockups?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=folding-cell\">iPhone mockup</a> available <a href=\"https://store.ramotion.com/product/iphone-6-mockups?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=folding-cell\">here</a>.</p>\n<a href='#requirements' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='requirements'>Requirements</h2>\n\n<ul>\n<li>iOS 8.0+</li>\n<li>Xcode 7.3</li>\n</ul>\n<a href='#installation' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='installation'>Installation</h2>\n\n<p>Just add the FoldingCell.swift file to your project.</p>\n\n<p>or use <a href=\"https://cocoapods.org\">CocoaPods</a> with Podfile:\n<code>ruby\npod &#39;FoldingCell&#39;, &#39;~&gt; 0.8.1&#39;\n</code></p>\n\n<p>or <a href=\"https://github.com/Carthage/Carthage\">Carthage</a> users can simply add Mantle to their <code>Cartfile</code>:\n<code>\ngithub &quot;Ramotion/folding-cell&quot;\n</code></p>\n<a href='#solution' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='solution'>Solution</h2>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/Solution.png\" alt=\"Solution\"></p>\n<a href='#usage' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='usage'>Usage</h2>\n\n<p>1) Create a new cell inheriting from <code>FoldingCell</code></p>\n\n<p>2) Add a UIView to your cell in your storyboard or nib file, inheriting from <code>RotatedView</code>.\nConnect the outlet from this view to the cell property <code>foregroundView</code>.\nAdd constraints from this view to the superview, as in this picture:</p>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.1.png\" alt=\"1.1\"></p>\n\n<p>(constants of constraints may be different). Connect the outlet from this top constraint to the cell property <code>foregroundViewTop</code>\n. (This view will be shown when the cell is in its normal state).</p>\n\n<p>3) Add other UIViews to your cell, connect the outlet from this view to the cell\nproperty <code>containerView</code>. Add constraints from this view to the superview like in the picture:</p>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.2.png\" alt=\"1.2\"></p>\n\n<p>(constants of constraints may be different). Connect the outlet from this top constraint to the cell property <code>containerViewTop</code>.\n(This view will be shown when the cell is opened)</p>\n\n<p>Your result should be something like this picture:</p>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.3.png\" alt=\"1.3\"></p>\n\n<p><a href=\"https://vimeo.com/154954299\">Demonstration adding constraints for foregroundView, containerView</a></p>\n\n<p>4) Set <code>@IBInspectable var itemCount: NSInteger</code> property is a count of folding (it IBInspectable you can set in storyboard). range 2 or greater. Default value is 2</p>\n\n<p>Ok, we&rsquo;ve finished configuring the cell.</p>\n\n<p>5) Adding code to your UITableViewController</p>\n\n<p>5.1) Add constants:\n<code>swift\n     let kCloseCellHeight: CGFloat = *** // equal or greater foregroundView height\n     let kOpenCellHeight: CGFloat = *** // equal or greater containerView height\n</code>\n5.2) Add property</p>\n<pre class=\"highlight swift\"><code>     <span class=\"k\">var</span> <span class=\"nv\">cellHeights</span> <span class=\"o\">=</span> <span class=\"p\">[</span><span class=\"kt\">CGFloat</span><span class=\"p\">]()</span>\n</code></pre>\n<pre class=\"highlight plaintext\"><code> create in viewDidLoad:\n</code></pre>\n<pre class=\"highlight swift\"><code>     <span class=\"k\">override</span> <span class=\"kd\">func</span> <span class=\"nf\">viewDidLoad</span><span class=\"p\">()</span> <span class=\"p\">{</span>\n        <span class=\"k\">super</span><span class=\"o\">.</span><span class=\"nf\">viewDidLoad</span><span class=\"p\">()</span>\n\n        <span class=\"k\">for</span> <span class=\"n\">_</span> <span class=\"k\">in</span> <span class=\"mi\">0</span><span class=\"o\">...</span><span class=\"n\">kRowsCount</span> <span class=\"p\">{</span>\n            <span class=\"n\">cellHeights</span><span class=\"o\">.</span><span class=\"nf\">append</span><span class=\"p\">(</span><span class=\"n\">kCloseCellHeight</span><span class=\"p\">)</span>\n        <span class=\"p\">}</span>\n    <span class=\"p\">}</span>\n</code></pre>\n\n<p>5.3) Override method:\n<code>swift\n    override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -&gt; CGFloat {\n        return cellHeights[indexPath.row]\n    }\n</code></p>\n\n<p>5.4) Added code to method:\n&ldquo;` swift\n    override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {\n        let cell = tableView.cellForRowAtIndexPath(indexPath) as! FoldingCell</p>\n<pre class=\"highlight plaintext\"><code>    var duration = 0.0\n    if cellHeights[indexPath.row] == kCloseCellHeight { // open cell\n        cellHeights[indexPath.row] = kOpenCellHeight\n        cell.selectedAnimation(true, animated: true, completion: nil)\n        duration = 0.5\n    } else {// close cell\n        cellHeights[indexPath.row] = kCloseCellHeight\n        cell.selectedAnimation(false, animated: true, completion: nil)\n        duration = 1.1\n    }\n\n    UIView.animateWithDuration(duration, delay: 0, options: .CurveEaseOut, animations: { () -&gt; Void in\n        tableView.beginUpdates()\n        tableView.endUpdates()\n    }, completion: nil)\n}\n</code></pre>\n<pre class=\"highlight plaintext\"><code>5.5) Control if the cell is open or closed\n``` swift\n  override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {\n\n        if cell is FoldingCell {\n            let foldingCell = cell as! FoldingCell\n\n            if cellHeights![indexPath.row] == kCloseCellHeight {\n                foldingCell.selectedAnimation(false, animated: false, completion:nil)\n            } else {\n                foldingCell.selectedAnimation(true, animated: false, completion: nil)\n            }\n        }\n    }\n</code></pre>\n\n<p>6) Add this code to your new cell class\n&rdquo;` swift\n    override func animationDuration(itemIndex:NSInteger, type:AnimationType)-&gt; NSTimeInterval {</p>\n<pre class=\"highlight plaintext\"><code>    // durations count equal it itemCount\n    let durations = [0.33, 0.26, 0.26] // timing animation for each view\n    return durations[itemIndex]\n}\n</code></pre>\n<pre class=\"highlight plaintext\"><code>\n\n#### if don't use storyboard and xib files\n\nCreate foregroundView and containerView from code (steps 2 - 3) look example:\n[Folding-cell-programmatically](https://github.com/ober01/Folding-cell-programmatically)\n\n## Licence\n\nFolding cell is released under the MIT license.\nSee [LICENSE](./LICENSE) for details.\n\n\n## About\nThe project maintained by [app development agency](https://ramotion.com?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=foolding-cell) [Ramotion Inc.](https://ramotion.com?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=foolding-cell)\nSee our other [open-source projects](https://github.com/ramotion) or [hire](https://ramotion.com?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=foolding-cell) us to design, develop, and grow your product.\n\n[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=https://github.com/ramotion/foolding-cell)\n[![Twitter Follow](https://img.shields.io/twitter/follow/ramotion.svg?style=social)](https://twitter.com/ramotion)\n</code></pre>\n\n          </section>\n        </section>\n        <section id=\"footer\">\n          <p>&copy; 2016 <a class=\"link\" href=\"\" target=\"_blank\" rel=\"external\">AlexKalinkin</a>. All rights reserved. (Last updated: 2016-06-15)</p>\n          <p>Generated by <a class=\"link\" href=\"https://github.com/realm/jazzy\" target=\"_blank\" rel=\"external\">jazzy ♪♫ v0.5.0</a>, a <a class=\"link\" href=\"http://realm.io\" target=\"_blank\" rel=\"external\">Realm</a> project.</p>\n        </section>\n      </article>\n    </div>\n  </body>\n</div>\n</html>\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/js/jazzy.js",
    "content": "window.jazzy = {'docset': false}\nif (typeof window.dash != 'undefined') {\n  document.documentElement.className += ' dash'\n  window.jazzy.docset = true\n}\nif (navigator.userAgent.match(/xcode/i)) {\n  document.documentElement.className += ' xcode'\n  window.jazzy.docset = true\n}\n\n// On doc load, toggle the URL hash discussion if present\n$(document).ready(function() {\n  if (!window.jazzy.docset) {\n    var linkToHash = $('a[href=\"' + window.location.hash +'\"]');\n    linkToHash.trigger(\"click\");\n  }\n});\n\n// On token click, toggle its discussion and animate token.marginLeft\n$(\".token\").click(function(event) {\n  if (window.jazzy.docset) {\n    return;\n  }\n  var link = $(this);\n  var animationDuration = 300;\n  var tokenOffset = \"15px\";\n  var original = link.css('marginLeft') == tokenOffset;\n  link.animate({'margin-left':original ? \"0px\" : tokenOffset}, animationDuration);\n  $content = link.parent().parent().next();\n  $content.slideToggle(animationDuration);\n\n  // Keeps the document from jumping to the hash.\n  var href = $(this).attr('href');\n  if (history.pushState) {\n    history.pushState({}, '', href);\n  } else {\n    location.hash = href;\n  }\n  event.preventDefault();\n});\n"
  },
  {
    "path": "docs/docsets/FoldingCell.docset/Contents/Resources/Documents/undocumented.txt",
    "content": "FoldingCell.swift\n\t@IBOutlet weak public var containerViewTop: NSLayoutConstraint!\n\t@IBOutlet weak public var foregroundViewTop: NSLayoutConstraint!\n\tcase Open\n\tcase Close\n\toverride public init(style: UITableViewCellStyle, reuseIdentifier: String?)\n\trequired public init?(coder aDecoder: NSCoder)\n\toverride public func awakeFromNib()\n\tpublic func isAnimating()->Bool\n\tpublic func animationDuration(itemIndex:NSInteger, type:AnimationType)-> NSTimeInterval\n\tpublic class RotatedView: UIView\n\tpublic class RotatedView : UIView\n"
  },
  {
    "path": "docs/index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <title>FoldingCell  Reference</title>\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/jazzy.css\" />\n    <link rel=\"stylesheet\" type=\"text/css\" href=\"css/highlight.css\" />\n    <meta charset='utf-8'>\n    <script src=\"js/jquery.min.js\" defer></script>\n    <script src=\"js/jazzy.js\" defer></script>\n    \n  </head>\n  <body>\n    <a title=\"FoldingCell  Reference\"></a>\n    <header>\n      <div class=\"content-wrapper\">\n        <p><a href=\"index.html\">FoldingCell Docs</a> (42% documented)</p>\n      </div>\n    </header>\n    <div class=\"content-wrapper\">\n      <p id=\"breadcrumbs\">\n        <a href=\"index.html\">FoldingCell Reference</a>\n        <img id=\"carat\" src=\"img/carat.png\" />\n        FoldingCell  Reference\n      </p>\n    </div>\n    <div class=\"content-wrapper\">\n      <nav class=\"sidebar\">\n        <ul class=\"nav-groups\">\n          <li class=\"nav-group-name\">\n            <a href=\"Classes.html\">Classes</a>\n            <ul class=\"nav-group-tasks\">\n              <li class=\"nav-group-task\">\n                <a href=\"Classes/FoldingCell.html\">FoldingCell</a>\n              </li>\n            </ul>\n          </li>\n        </ul>\n      </nav>\n      <article class=\"main-content\">\n        <section>\n          <section class=\"section\">\n            \n            <p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/header.png\" alt=\"header\"></p>\n<a href='#foldingcell' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h1 id='foldingcell'>FoldingCell</h1>\n\n<p><a href=\"https://cocoapods.org/pods/FoldingCell\"><img src=\"https://img.shields.io/cocoapods/p/FoldingCell.svg\" alt=\"CocoaPods\"></a>\n<a href=\"http://cocoapods.org/pods/FoldingCell\"><img src=\"https://img.shields.io/cocoapods/v/FoldingCell.svg\" alt=\"CocoaPods\"></a>\n<a href=\"https://cdn.rawgit.com/Ramotion/folding-cell/master/docs/index.html\"><img src=\"https://img.shields.io/cocoapods/metrics/doc-percent/FoldingCell.svg\" alt=\"CocoaPods\"></a>\n<a href=\"https://github.com/Ramotion/folding-cell\"><img src=\"https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat\" alt=\"Carthage compatible\"></a>\n<a href=\"http://twitter.com/Ramotion\"><img src=\"https://img.shields.io/badge/Twitter-@Ramotion-blue.svg?style=flat\" alt=\"Twitter\"></a>\n<a href=\"https://travis-ci.org/Ramotion/folding-cell\"><img src=\"https://img.shields.io/travis/Ramotion/folding-cell.svg\" alt=\"Travis\"></a>\n<a href=\"https://codebeat.co/projects/github-com-ramotion-folding-cell\"><img src=\"https://codebeat.co/badges/6f67da5d-c416-4bac-9fb7-c2dc938feedc\" alt=\"codebeat badge\"></a>\n<a href=\"https://github.com/Carthage/Carthage\"><img src=\"https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat\" alt=\"Carthage compatible\"></a></p>\n\n<p><a href=\"https://dribbble.com/shots/2121350-Delivery-Card\">shot on dribbble</a>:\n<img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Screenshots/folding-cell.gif\" alt=\"Animation\"></p>\n\n<p>The <a href=\"https://store.ramotion.com/product/iphone-6-mockups?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=folding-cell\">iPhone mockup</a> available <a href=\"https://store.ramotion.com/product/iphone-6-mockups?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=folding-cell\">here</a>.</p>\n<a href='#requirements' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='requirements'>Requirements</h2>\n\n<ul>\n<li>iOS 8.0+</li>\n<li>Xcode 7.3</li>\n</ul>\n<a href='#installation' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='installation'>Installation</h2>\n\n<p>Just add the FoldingCell.swift file to your project.</p>\n\n<p>or use <a href=\"https://cocoapods.org\">CocoaPods</a> with Podfile:\n<code>ruby\npod &#39;FoldingCell&#39;, &#39;~&gt; 0.8.1&#39;\n</code></p>\n\n<p>or <a href=\"https://github.com/Carthage/Carthage\">Carthage</a> users can simply add Mantle to their <code>Cartfile</code>:\n<code>\ngithub &quot;Ramotion/folding-cell&quot;\n</code></p>\n<a href='#solution' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='solution'>Solution</h2>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/Solution.png\" alt=\"Solution\"></p>\n<a href='#usage' class='anchor' aria-hidden=true><span class=\"header-anchor\"></span></a><h2 id='usage'>Usage</h2>\n\n<p>1) Create a new cell inheriting from <code>FoldingCell</code></p>\n\n<p>2) Add a UIView to your cell in your storyboard or nib file, inheriting from <code>RotatedView</code>.\nConnect the outlet from this view to the cell property <code>foregroundView</code>.\nAdd constraints from this view to the superview, as in this picture:</p>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.1.png\" alt=\"1.1\"></p>\n\n<p>(constants of constraints may be different). Connect the outlet from this top constraint to the cell property <code>foregroundViewTop</code>\n. (This view will be shown when the cell is in its normal state).</p>\n\n<p>3) Add other UIViews to your cell, connect the outlet from this view to the cell\nproperty <code>containerView</code>. Add constraints from this view to the superview like in the picture:</p>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.2.png\" alt=\"1.2\"></p>\n\n<p>(constants of constraints may be different). Connect the outlet from this top constraint to the cell property <code>containerViewTop</code>.\n(This view will be shown when the cell is opened)</p>\n\n<p>Your result should be something like this picture:</p>\n\n<p><img src=\"https://raw.githubusercontent.com/Ramotion/folding-cell/master/Tutorial-resources/1.3.png\" alt=\"1.3\"></p>\n\n<p><a href=\"https://vimeo.com/154954299\">Demonstration adding constraints for foregroundView, containerView</a></p>\n\n<p>4) Set <code>@IBInspectable var itemCount: NSInteger</code> property is a count of folding (it IBInspectable you can set in storyboard). range 2 or greater. Default value is 2</p>\n\n<p>Ok, we&rsquo;ve finished configuring the cell.</p>\n\n<p>5) Adding code to your UITableViewController</p>\n\n<p>5.1) Add constants:\n<code>swift\n     let kCloseCellHeight: CGFloat = *** // equal or greater foregroundView height\n     let kOpenCellHeight: CGFloat = *** // equal or greater containerView height\n</code>\n5.2) Add property</p>\n<pre class=\"highlight swift\"><code>     <span class=\"k\">var</span> <span class=\"nv\">cellHeights</span> <span class=\"o\">=</span> <span class=\"p\">[</span><span class=\"kt\">CGFloat</span><span class=\"p\">]()</span>\n</code></pre>\n<pre class=\"highlight plaintext\"><code> create in viewDidLoad:\n</code></pre>\n<pre class=\"highlight swift\"><code>     <span class=\"k\">override</span> <span class=\"kd\">func</span> <span class=\"nf\">viewDidLoad</span><span class=\"p\">()</span> <span class=\"p\">{</span>\n        <span class=\"k\">super</span><span class=\"o\">.</span><span class=\"nf\">viewDidLoad</span><span class=\"p\">()</span>\n\n        <span class=\"k\">for</span> <span class=\"n\">_</span> <span class=\"k\">in</span> <span class=\"mi\">0</span><span class=\"o\">...</span><span class=\"n\">kRowsCount</span> <span class=\"p\">{</span>\n            <span class=\"n\">cellHeights</span><span class=\"o\">.</span><span class=\"nf\">append</span><span class=\"p\">(</span><span class=\"n\">kCloseCellHeight</span><span class=\"p\">)</span>\n        <span class=\"p\">}</span>\n    <span class=\"p\">}</span>\n</code></pre>\n\n<p>5.3) Override method:\n<code>swift\n    override func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -&gt; CGFloat {\n        return cellHeights[indexPath.row]\n    }\n</code></p>\n\n<p>5.4) Added code to method:\n&ldquo;` swift\n    override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {\n        let cell = tableView.cellForRowAtIndexPath(indexPath) as! FoldingCell</p>\n<pre class=\"highlight plaintext\"><code>    var duration = 0.0\n    if cellHeights[indexPath.row] == kCloseCellHeight { // open cell\n        cellHeights[indexPath.row] = kOpenCellHeight\n        cell.selectedAnimation(true, animated: true, completion: nil)\n        duration = 0.5\n    } else {// close cell\n        cellHeights[indexPath.row] = kCloseCellHeight\n        cell.selectedAnimation(false, animated: true, completion: nil)\n        duration = 1.1\n    }\n\n    UIView.animateWithDuration(duration, delay: 0, options: .CurveEaseOut, animations: { () -&gt; Void in\n        tableView.beginUpdates()\n        tableView.endUpdates()\n    }, completion: nil)\n}\n</code></pre>\n<pre class=\"highlight plaintext\"><code>5.5) Control if the cell is open or closed\n``` swift\n  override func tableView(tableView: UITableView, willDisplayCell cell: UITableViewCell, forRowAtIndexPath indexPath: NSIndexPath) {\n\n        if cell is FoldingCell {\n            let foldingCell = cell as! FoldingCell\n\n            if cellHeights![indexPath.row] == kCloseCellHeight {\n                foldingCell.selectedAnimation(false, animated: false, completion:nil)\n            } else {\n                foldingCell.selectedAnimation(true, animated: false, completion: nil)\n            }\n        }\n    }\n</code></pre>\n\n<p>6) Add this code to your new cell class\n&rdquo;` swift\n    override func animationDuration(itemIndex:NSInteger, type:AnimationType)-&gt; NSTimeInterval {</p>\n<pre class=\"highlight plaintext\"><code>    // durations count equal it itemCount\n    let durations = [0.33, 0.26, 0.26] // timing animation for each view\n    return durations[itemIndex]\n}\n</code></pre>\n<pre class=\"highlight plaintext\"><code>\n\n#### if don't use storyboard and xib files\n\nCreate foregroundView and containerView from code (steps 2 - 3) look example:\n[Folding-cell-programmatically](https://github.com/ober01/Folding-cell-programmatically)\n\n## Licence\n\nFolding cell is released under the MIT license.\nSee [LICENSE](./LICENSE) for details.\n\n\n## About\nThe project maintained by [app development agency](https://ramotion.com?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=foolding-cell) [Ramotion Inc.](https://ramotion.com?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=foolding-cell)\nSee our other [open-source projects](https://github.com/ramotion) or [hire](https://ramotion.com?utm_source=gthb&amp;utm_medium=special&amp;utm_campaign=foolding-cell) us to design, develop, and grow your product.\n\n[![Twitter URL](https://img.shields.io/twitter/url/http/shields.io.svg?style=social)](https://twitter.com/intent/tweet?text=https://github.com/ramotion/foolding-cell)\n[![Twitter Follow](https://img.shields.io/twitter/follow/ramotion.svg?style=social)](https://twitter.com/ramotion)\n</code></pre>\n\n          </section>\n        </section>\n        <section id=\"footer\">\n          <p>&copy; 2016 <a class=\"link\" href=\"\" target=\"_blank\" rel=\"external\">AlexKalinkin</a>. All rights reserved. (Last updated: 2016-06-15)</p>\n          <p>Generated by <a class=\"link\" href=\"https://github.com/realm/jazzy\" target=\"_blank\" rel=\"external\">jazzy ♪♫ v0.5.0</a>, a <a class=\"link\" href=\"http://realm.io\" target=\"_blank\" rel=\"external\">Realm</a> project.</p>\n        </section>\n      </article>\n    </div>\n  </body>\n</div>\n</html>\n"
  },
  {
    "path": "docs/js/jazzy.js",
    "content": "window.jazzy = {'docset': false}\nif (typeof window.dash != 'undefined') {\n  document.documentElement.className += ' dash'\n  window.jazzy.docset = true\n}\nif (navigator.userAgent.match(/xcode/i)) {\n  document.documentElement.className += ' xcode'\n  window.jazzy.docset = true\n}\n\n// On doc load, toggle the URL hash discussion if present\n$(document).ready(function() {\n  if (!window.jazzy.docset) {\n    var linkToHash = $('a[href=\"' + window.location.hash +'\"]');\n    linkToHash.trigger(\"click\");\n  }\n});\n\n// On token click, toggle its discussion and animate token.marginLeft\n$(\".token\").click(function(event) {\n  if (window.jazzy.docset) {\n    return;\n  }\n  var link = $(this);\n  var animationDuration = 300;\n  var tokenOffset = \"15px\";\n  var original = link.css('marginLeft') == tokenOffset;\n  link.animate({'margin-left':original ? \"0px\" : tokenOffset}, animationDuration);\n  $content = link.parent().parent().next();\n  $content.slideToggle(animationDuration);\n\n  // Keeps the document from jumping to the hash.\n  var href = $(this).attr('href');\n  if (history.pushState) {\n    history.pushState({}, '', href);\n  } else {\n    location.hash = href;\n  }\n  event.preventDefault();\n});\n"
  },
  {
    "path": "docs/undocumented.txt",
    "content": "FoldingCell.swift\n\t@IBOutlet weak public var containerViewTop: NSLayoutConstraint!\n\t@IBOutlet weak public var foregroundViewTop: NSLayoutConstraint!\n\tcase Open\n\tcase Close\n\toverride public init(style: UITableViewCellStyle, reuseIdentifier: String?)\n\trequired public init?(coder aDecoder: NSCoder)\n\toverride public func awakeFromNib()\n\tpublic func isAnimating()->Bool\n\tpublic func animationDuration(itemIndex:NSInteger, type:AnimationType)-> NSTimeInterval\n\tpublic class RotatedView: UIView\n\tpublic class RotatedView : UIView\n"
  }
]