[
  {
    "path": ".gitignore",
    "content": "# Xcode\n#\n# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore\n\n## Build generated\nbuild/\nDerivedData/\n\n## Various settings\n*.pbxuser\n!default.pbxuser\n*.mode1v3\n!default.mode1v3\n*.mode2v3\n!default.mode2v3\n*.perspectivev3\n!default.perspectivev3\nxcuserdata/\n\n## Other\n*.moved-aside\n*.xcuserstate\n\n## Obj-C/Swift specific\n*.hmap\n*.ipa\n*.dSYM.zip\n*.dSYM\n\n## Playgrounds\ntimeline.xctimeline\nplayground.xcworkspace\n\n# Swift Package Manager\n#\n# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.\n# Packages/\n.build/\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# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-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\n# fastlane\n#\n# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the\n# screenshots whenever they are needed.\n# For more information about the recommended setup visit:\n# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md\n\nfastlane/report.xml\nfastlane/Preview.html\nfastlane/screenshots\nfastlane/test_output\n"
  },
  {
    "path": ".travis.yml",
    "content": "language: objective-c\nosx_image: xcode8.0\n\nscript:\n- xcodebuild clean build test -project \"NightViewSampleProject/NightViewSampleProject.xcodeproj\" -scheme NightViewSampleProject -sdk iphonesimulator10.0 -destination \"OS=10.0,name=iPhone 5S\" ONLY_ACTIVE_ARCH=NO\n"
  },
  {
    "path": "CHANGELOG.md",
    "content": "# Change Log\n\n## [v1.1.0](https://github.com/Boris-Em/NightView/releases/tag/1.0.1) (2016-07-11)\n[Full Changelog](https://github.com/Boris-Em/BEMCheckBox/compare/1.0.0...1.0.1)\n  \n- Fix starType enum.\n- Fix bug where NightView wasn't available in different modules.\n- Add title to Customization view controller.\n\n\n## [v1.0.0](https://github.com/Boris-Em/NightView/releases/tag/1.0.0) (2016-07-10)\nFirst stable release of **NightView**\n"
  },
  {
    "path": "LICENSE",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2016 Boris Emorine\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"
  },
  {
    "path": "NightView/NightView.swift",
    "content": "//\n//  NightView.swift\n//  Go\n//\n//  Created by Bobo on 7/8/16.\n//  Copyright © 2016 Boris Emorine. All rights reserved.\n//\n\nimport UIKit\n\n/** Dazzling Nights on iOS.\n*/\n@IBDesignable\npublic class NightView: UIView {\n    \n    /** The number of points for each star. For example, setting this property to 1, means that there will be 1 star for every point in the view. A greater number means less stars within the view.\n     Defaults to 10000.0.\n     */\n    @IBInspectable public var numberOfPointsForStar: CGFloat = 10000.0 {\n        didSet {\n            reload()\n        }\n    }\n    \n    /** The size of the stars in points. Defaults to 5.0.\n    */\n    @IBInspectable public var starSize: CGFloat = 5.0 {\n        didSet {\n            reload()\n        }\n    }\n    \n    /** The color of the stars. Defaults to white.\n    */\n    @IBInspectable public var starColor = UIColor.white\n    \n    /** The minimum percent by which the stars' size could be changed. For example, a value of 50.0 means that the minimum size of a star will be 50% of the `starSize` property.\n     Defaults to 50.0.\n     - SeeAlso: `starSize`\n    */\n    @IBInspectable public var starSizeMinRandomizer = 50.0 {\n        didSet {\n            let max = starSizeMaxRandomizer < starSizeMinRandomizer ? starSizeMinRandomizer + 1 : starSizeMaxRandomizer\n            starSizeProductRandomizerRange = UInt32(starSizeMinRandomizer)...UInt32(max)\n        }\n    }\n    \n    /** The maximum percent by which the stars' size could be changed. For example, a value of 150.0 means that the maximum size of a star will be 150% of the `starSize` property.\n     Defaults to 150.0.\n     - SeeAlso: `starSize`\n     */\n    @IBInspectable public var starSizeMaxRandomizer = 150.0 {\n        didSet {\n            let min = starSizeMinRandomizer > starSizeMaxRandomizer ? starSizeMaxRandomizer - 1 : starSizeMinRandomizer\n            starSizeProductRandomizerRange = UInt32(min)...UInt32(starSizeMaxRandomizer)\n        }\n    }\n    \n    private var starSizeProductRandomizerRange = UInt32(50)...UInt32(150) {\n        didSet {\n            reload()\n        }\n    }\n    \n    /** The stars are drawn with a smaller opacity at the bottom of the view than at the top. This property sets the minimum opacity for the lower stars. Note that the stars at the top of the view will always have an opacity of 1.0. Defaults to 0.5.\n    */\n    @IBInspectable public var minStarOpacity: Float = 0.5 {\n        didSet {\n            reload()\n        }\n    }\n    \n    /** The intensity of the glowing of the stars, from 0 to 1. If set to 0, the stars will not glow. Defaults to 0.5.\n    */\n    @IBInspectable public var glowingIntensity: Float = 0.5 {\n        didSet {\n            reload()\n        }\n    }\n    \n    /** The duration in seconds at which the stars glow. Defaults to 2.0.\n    */\n    @IBInspectable public var glowingDuration = 2.0 {\n        didSet {\n            reload()\n        }\n    }\n    \n    /** Type of stars.\n    */\n    public enum starTypes {\n        /** Round stars.\n         */\n        case Round\n        \n        /** Smooth star with 5 branches.\n        */\n        case FiveBranchStar\n    }\n    \n    /** The type of stars to be drawn. Defaults to `.Round`.\n    */\n    @IBInspectable public var starType: starTypes = .Round {\n        didSet {\n            reload()\n        }\n    }\n    \n    private let starLayer = CAShapeLayer()\n    \n    // MARK: Initializers\n    \n    override public init(frame: CGRect) {\n        super.init(frame: frame)\n        commonInit()\n    }\n    \n    required public init?(coder aDecoder: NSCoder) {\n        super.init(coder: aDecoder)\n        commonInit()\n    }\n    \n    private func commonInit() {\n        layer.addSublayer(starLayer)\n    }\n    \n    // MARK: Public Functions\n    \n    /** Reloads the NightView instance, redrawing all of the stars.\n    */\n    public func reload() {\n        setNeedsDisplay()\n        layer.displayIfNeeded()\n    }\n    \n    // MARK: Drawings\n    \n    override public func layoutSubviews() {\n        super.layoutSubviews()\n        reload()\n    }\n    \n    override public func draw(_ rect: CGRect) {\n        starLayer.frame = bounds\n        drawStars()\n    }\n    \n    private func drawStars() {\n        removeSublayersFromLayer(layer: starLayer)\n        \n        let numberOfStars = numberOfStarsForSize(size: bounds.size)\n        for _ in 0..<numberOfStars {\n            let layer = drawStarWithFrame(frame: randomStarFrameInFrame(frame: bounds), boundingFrame: bounds)\n            if glowingIntensity > 0.0 {\n                addGlowingAnimationToStar(layer: layer)\n            }\n        }\n    }\n    \n    private func drawStarWithFrame(frame: CGRect, boundingFrame: CGRect?) -> CAShapeLayer {\n        let layer = CAShapeLayer()\n        layer.frame = frame\n        layer.fillColor = starColor.cgColor\n        layer.path = pathForStarWithType(starType: starType, frame: frame).cgPath\n        layer.backgroundColor = UIColor.clear.cgColor\n        \n        if let boundingFrame = boundingFrame {\n            layer.opacity = max((Float(boundingFrame.height - frame.origin.y) / 100.0) / (Float(boundingFrame.height) / 100.0), minStarOpacity)\n        }\n        \n        starLayer.addSublayer(layer)\n        return layer\n    }\n    \n    // MARK: Paths\n    \n    private func pathForStarWithType(starType: starTypes, frame: CGRect) -> UIBezierPath {\n        let width = frame.width\n        \n        switch starType {\n        case .FiveBranchStar:\n            let starPath = UIBezierPath()\n            starPath.move(to: CGPoint(x: width / (1000 / 500), y: width / (1000 / 50)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 676.34), y: width / (1000 / 307.29)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 975.53), y: width / (1000 / 395.49)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 785.32), y: width / (1000 / 642.71)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 793.89), y: width / (1000 / 954.51)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 500), y: width / (1000 / 850)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 206.11), y: width / (1000 / 954.51)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 214.68), y: width / (1000 / 642.71)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 24.47), y: width / (1000 / 395.49)))\n            starPath.addLine(to: CGPoint(x: width / (1000 / 323.66), y: width / (1000 / 307.29)))\n            starPath.close()\n            return starPath\n            \n        default:\n            return UIBezierPath(ovalIn: CGRect(x: 0.0, y: 0.0, width: frame.width, height: frame.height))\n        }\n    }\n    \n    // MARK: Animations\n    \n    private func addGlowingAnimationToStar(layer: CAShapeLayer) {\n        let animation = CABasicAnimation(keyPath: \"opacity\")\n        animation.duration = glowingDuration\n        animation.fromValue = layer.opacity\n        animation.beginTime = CACurrentMediaTime() + Double(arc4random_uniform(UInt32(glowingDuration) * 1000)) / 1000\n        animation.toValue = NSNumber(value: layer.opacity - layer.opacity * glowingIntensity)\n        animation.autoreverses = true\n        animation.repeatCount = .infinity\n        layer.add(animation, forKey: \"opacity\")\n    }\n    \n    // MARK: Generators\n    \n    private func randomStarFrameInFrame(frame: CGRect) -> CGRect {\n        let size = randomStarSizeForSize(starSize: starSize)\n        \n        let minX = frame.origin.x\n        let maxX = frame.origin.x + frame.size.width\n        let minY = frame.origin.y\n        let maxY = frame.origin.y + frame.size.height\n        \n        let randomX = CGFloat(arc4random_uniform(UInt32(maxX - minX))) + minX\n        let randomY = CGFloat(arc4random_uniform(UInt32(maxY - minY))) + minY\n        \n        let starFrame = CGRect(x: randomX, y: randomY, width: size.width, height: size.height)\n        \n        return starFrame\n    }\n    \n    private func randomStarSizeForSize(starSize: CGFloat) -> CGSize {\n        let randomStarSizeProduct = CGFloat(arc4random_uniform(starSizeProductRandomizerRange.last! - starSizeProductRandomizerRange.first!) + starSizeProductRandomizerRange.first!) / 100.0;\n        let randomSize = starSize * randomStarSizeProduct\n\n        return CGSize(width: randomSize, height: randomSize)\n    }\n    \n    private func numberOfStarsForSize(size: CGSize) -> Int {\n        let area = size.width * size.height\n        \n        return Int(area / numberOfPointsForStar)\n    }\n    \n    private func removeSublayersFromLayer(layer: CAShapeLayer) {\n        if let sublayers = layer.sublayers {\n            for sublayer in sublayers {\n                sublayer.removeFromSuperlayer()\n            }\n        }\n    }\n}\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/AppDelegate.swift",
    "content": "//\n//  AppDelegate.swift\n//  NightViewSampleProject\n//\n//  Created by Bobo on 7/10/16.\n//  Copyright © 2016 Boris Emorine. All rights reserved.\n//\n\nimport UIKit\n\n@UIApplicationMain\nclass AppDelegate: UIResponder, UIApplicationDelegate {\n\n    var window: UIWindow?\n\n\n    func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {\n        // Override point for customization after application launch.\n        return true\n    }\n\n    func applicationWillResignActive(_ application: UIApplication) {\n        // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.\n        // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.\n    }\n\n    func applicationDidEnterBackground(_ application: UIApplication) {\n        // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later.\n        // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.\n    }\n\n    func applicationWillEnterForeground(_ application: UIApplication) {\n        // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background.\n    }\n\n    func applicationDidBecomeActive(_ application: UIApplication) {\n        // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface.\n    }\n\n    func applicationWillTerminate(_ application: UIApplication) {\n        // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:.\n    }\n\n}\n\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/Assets.xcassets/AppIcon.appiconset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"iphone\",\n      \"size\" : \"60x60\",\n      \"scale\" : \"3x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"29x29\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"40x40\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"76x76\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"ipad\",\n      \"size\" : \"83.5x83.5\",\n      \"scale\" : \"2x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/Assets.xcassets/Contents.json",
    "content": "{\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/Assets.xcassets/Moto.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"Moto.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"Moto@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"Moto@3x.png\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/Assets.xcassets/NightView.imageset/Contents.json",
    "content": "{\n  \"images\" : [\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"NightView.png\",\n      \"scale\" : \"1x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"NightView@2x.png\",\n      \"scale\" : \"2x\"\n    },\n    {\n      \"idiom\" : \"universal\",\n      \"filename\" : \"NightView@3x.png\",\n      \"scale\" : \"3x\"\n    }\n  ],\n  \"info\" : {\n    \"version\" : 1,\n    \"author\" : \"xcode\"\n  }\n}"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/Base.lproj/LaunchScreen.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"8150\" systemVersion=\"15A204g\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" launchScreen=\"YES\" useTraitCollections=\"YES\" initialViewController=\"01J-lp-oVM\">\n    <dependencies>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"8122\"/>\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=\"600\" height=\"600\"/>\n                        <autoresizingMask key=\"autoresizingMask\" widthSizable=\"YES\" heightSizable=\"YES\"/>\n                        <animations/>\n                        <color key=\"backgroundColor\" white=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"calibratedWhite\"/>\n                    </view>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"iYj-Kq-Ea1\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"53\" y=\"375\"/>\n        </scene>\n    </scenes>\n</document>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/Base.lproj/Main.storyboard",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"no\"?>\n<document type=\"com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB\" version=\"3.0\" toolsVersion=\"11191\" systemVersion=\"15G31\" targetRuntime=\"iOS.CocoaTouch\" propertyAccessControl=\"none\" useAutolayout=\"YES\" useTraitCollections=\"YES\" colorMatched=\"YES\" initialViewController=\"BYZ-38-t0r\">\n    <dependencies>\n        <deployment identifier=\"iOS\"/>\n        <plugIn identifier=\"com.apple.InterfaceBuilder.IBCocoaTouchPlugin\" version=\"11156\"/>\n        <capability name=\"Aspect ratio constraints\" minToolsVersion=\"5.1\"/>\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=\"tne-QT-ifu\">\n            <objects>\n                <viewController id=\"BYZ-38-t0r\" customClass=\"ViewController\" customModule=\"NightViewSampleProject\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <layoutGuides>\n                        <viewControllerLayoutGuide type=\"top\" id=\"y3c-jy-aDJ\"/>\n                        <viewControllerLayoutGuide type=\"bottom\" id=\"wfy-db-euE\"/>\n                    </layoutGuides>\n                    <view key=\"view\" contentMode=\"scaleToFill\" id=\"8bC-Xf-vdC\">\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                            <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"eLH-nA-1Hr\" customClass=\"NightView\" customModule=\"NightViewSampleProject\" customModuleProvider=\"target\">\n                                <color key=\"backgroundColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                            </view>\n                            <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" horizontalCompressionResistancePriority=\"250\" verticalCompressionResistancePriority=\"250\" image=\"NightView\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"lye-O7-o3n\">\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" priority=\"750\" constant=\"400\" id=\"1W4-K9-4Xg\"/>\n                                    <constraint firstAttribute=\"width\" secondItem=\"lye-O7-o3n\" secondAttribute=\"height\" multiplier=\"1000:307\" id=\"l5U-VO-qcX\"/>\n                                </constraints>\n                            </imageView>\n                            <imageView userInteractionEnabled=\"NO\" contentMode=\"scaleToFill\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" image=\"Moto\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"KMo-Zt-PN2\" userLabel=\"Moto\">\n                                <constraints>\n                                    <constraint firstAttribute=\"width\" secondItem=\"KMo-Zt-PN2\" secondAttribute=\"height\" multiplier=\"1286:73\" id=\"evp-oj-wOS\"/>\n                                    <constraint firstAttribute=\"height\" relation=\"lessThanOrEqual\" constant=\"30\" id=\"vcK-Ra-a58\"/>\n                                </constraints>\n                            </imageView>\n                            <button opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" buttonType=\"detailDisclosure\" lineBreakMode=\"middleTruncation\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"nuZ-Vn-BvY\">\n                                <color key=\"tintColor\" red=\"1\" green=\"1\" blue=\"1\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                <connections>\n                                    <segue destination=\"dgR-LT-WpO\" kind=\"presentation\" identifier=\"toCustomization\" id=\"FPI-pJ-e9b\"/>\n                                </connections>\n                            </button>\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=\"nuZ-Vn-BvY\" secondAttribute=\"trailing\" constant=\"20\" id=\"0VJ-CE-tYT\"/>\n                            <constraint firstItem=\"KMo-Zt-PN2\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"leading\" constant=\"20\" id=\"30h-sr-QIy\"/>\n                            <constraint firstItem=\"lye-O7-o3n\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"leading\" constant=\"20\" id=\"8Jr-H2-bOe\"/>\n                            <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"lye-O7-o3n\" secondAttribute=\"trailing\" constant=\"20\" id=\"Ahg-ba-mtF\"/>\n                            <constraint firstItem=\"eLH-nA-1Hr\" firstAttribute=\"leading\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"leading\" id=\"Mkd-z4-fcM\"/>\n                            <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"KMo-Zt-PN2\" secondAttribute=\"trailing\" constant=\"20\" id=\"Uxa-Tk-c26\"/>\n                            <constraint firstItem=\"lye-O7-o3n\" firstAttribute=\"centerX\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"centerX\" id=\"WoD-NZ-kaf\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"eLH-nA-1Hr\" secondAttribute=\"bottom\" id=\"YUV-Bs-YCb\"/>\n                            <constraint firstItem=\"eLH-nA-1Hr\" firstAttribute=\"top\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"top\" id=\"Yq2-i7-d9B\"/>\n                            <constraint firstItem=\"lye-O7-o3n\" firstAttribute=\"centerY\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"centerY\" id=\"bK5-w3-E7i\"/>\n                            <constraint firstAttribute=\"trailing\" secondItem=\"eLH-nA-1Hr\" secondAttribute=\"trailing\" id=\"foe-sd-ZJF\"/>\n                            <constraint firstItem=\"KMo-Zt-PN2\" firstAttribute=\"centerX\" secondItem=\"8bC-Xf-vdC\" secondAttribute=\"centerX\" id=\"gEF-YG-rAt\"/>\n                            <constraint firstItem=\"nuZ-Vn-BvY\" firstAttribute=\"top\" secondItem=\"y3c-jy-aDJ\" secondAttribute=\"bottom\" id=\"lmw-wD-bSQ\"/>\n                            <constraint firstAttribute=\"bottom\" secondItem=\"KMo-Zt-PN2\" secondAttribute=\"bottom\" constant=\"20\" id=\"pu4-EY-SPf\"/>\n                        </constraints>\n                    </view>\n                    <connections>\n                        <outlet property=\"nightView\" destination=\"eLH-nA-1Hr\" id=\"Se5-QV-u8n\"/>\n                    </connections>\n                </viewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"dkx-z0-nzr\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"433\" y=\"449\"/>\n        </scene>\n        <!--Navigation Controller-->\n        <scene sceneID=\"Y6A-wV-rDw\">\n            <objects>\n                <navigationController id=\"dgR-LT-WpO\" sceneMemberID=\"viewController\">\n                    <navigationBar key=\"navigationBar\" contentMode=\"scaleToFill\" id=\"Hu9-j1-VSY\">\n                        <rect key=\"frame\" x=\"0.0\" y=\"0.0\" width=\"320\" height=\"44\"/>\n                        <autoresizingMask key=\"autoresizingMask\"/>\n                    </navigationBar>\n                    <connections>\n                        <segue destination=\"AJQ-Fe-nX0\" kind=\"relationship\" relationship=\"rootViewController\" id=\"KLc-kR-xay\"/>\n                    </connections>\n                </navigationController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"YMe-i9-HwP\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1176\" y=\"449\"/>\n        </scene>\n        <!--Customization Table View Controller-->\n        <scene sceneID=\"Jh5-V4-aB6\">\n            <objects>\n                <tableViewController id=\"AJQ-Fe-nX0\" customClass=\"CustomizationTableViewController\" customModule=\"NightViewSampleProject\" customModuleProvider=\"target\" sceneMemberID=\"viewController\">\n                    <tableView key=\"view\" clipsSubviews=\"YES\" contentMode=\"scaleToFill\" alwaysBounceVertical=\"YES\" dataMode=\"static\" style=\"plain\" separatorStyle=\"default\" rowHeight=\"44\" sectionHeaderHeight=\"28\" sectionFooterHeight=\"28\" id=\"1TJ-g6-g1e\">\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                        <sections>\n                            <tableViewSection id=\"Whi-H4-3V6\">\n                                <cells>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"y20-Xa-mGN\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"64\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"y20-Xa-mGN\" id=\"XWP-zZ-XGf\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"numberOfPointsForStar\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FEt-M6-Kj7\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"dE2-SO-dIT\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"10000\" minValue=\"3000\" maxValue=\"30000\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"rQv-8s-Ej3\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"6uT-re-fB0\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"t4o-OG-LAG\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleSlideNumberOfPointsForStarSlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"paw-f9-Pif\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"10000.0\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"M6D-HK-E5u\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"36N-6b-xob\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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 firstItem=\"M6D-HK-E5u\" firstAttribute=\"leading\" secondItem=\"rQv-8s-Ej3\" secondAttribute=\"trailing\" constant=\"20\" id=\"2iy-Gz-8tt\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"rQv-8s-Ej3\" secondAttribute=\"bottom\" id=\"PbS-rM-Xnq\"/>\n                                                        <constraint firstItem=\"rQv-8s-Ej3\" firstAttribute=\"top\" secondItem=\"dE2-SO-dIT\" secondAttribute=\"top\" id=\"WSf-4p-OiX\"/>\n                                                        <constraint firstItem=\"rQv-8s-Ej3\" firstAttribute=\"leading\" secondItem=\"dE2-SO-dIT\" secondAttribute=\"leading\" id=\"eSC-SG-85Q\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"M6D-HK-E5u\" secondAttribute=\"trailing\" id=\"gge-wb-Nti\"/>\n                                                        <constraint firstItem=\"M6D-HK-E5u\" firstAttribute=\"centerY\" secondItem=\"rQv-8s-Ej3\" secondAttribute=\"centerY\" id=\"oBP-ld-IUo\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"FEt-M6-Kj7\" firstAttribute=\"leading\" secondItem=\"XWP-zZ-XGf\" secondAttribute=\"leadingMargin\" id=\"AqE-kE-HES\"/>\n                                                <constraint firstItem=\"dE2-SO-dIT\" firstAttribute=\"centerX\" secondItem=\"XWP-zZ-XGf\" secondAttribute=\"centerX\" id=\"BqZ-3i-ADg\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"dE2-SO-dIT\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"Pfu-bo-Wom\"/>\n                                                <constraint firstItem=\"FEt-M6-Kj7\" firstAttribute=\"top\" secondItem=\"XWP-zZ-XGf\" secondAttribute=\"topMargin\" id=\"T4b-0w-g78\"/>\n                                                <constraint firstItem=\"dE2-SO-dIT\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"XWP-zZ-XGf\" secondAttribute=\"leading\" constant=\"20\" id=\"jqq-Xm-EjX\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"dE2-SO-dIT\" secondAttribute=\"trailing\" constant=\"20\" id=\"uCD-v0-dnD\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"hXe-m8-bNJ\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"144\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"hXe-m8-bNJ\" id=\"JMA-Gq-gp2\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"starSize\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"t96-Cs-KXi\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"tQr-wP-wkQ\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"5\" minValue=\"1\" maxValue=\"10\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yRd-wc-14A\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"QSI-Vr-xD8\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"npL-ij-4Rb\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleStarSizeSlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"Goz-wn-aJZ\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"5.0\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Yza-jb-ij6\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"Yvn-4u-GNL\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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=\"bottom\" secondItem=\"yRd-wc-14A\" secondAttribute=\"bottom\" id=\"3pk-Up-ZTm\"/>\n                                                        <constraint firstItem=\"Yza-jb-ij6\" firstAttribute=\"leading\" secondItem=\"yRd-wc-14A\" secondAttribute=\"trailing\" constant=\"20\" id=\"AFQ-Yk-BH7\"/>\n                                                        <constraint firstItem=\"Yza-jb-ij6\" firstAttribute=\"centerY\" secondItem=\"yRd-wc-14A\" secondAttribute=\"centerY\" id=\"IfG-kF-5wy\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"Yza-jb-ij6\" secondAttribute=\"trailing\" id=\"aKb-M5-t5U\"/>\n                                                        <constraint firstItem=\"yRd-wc-14A\" firstAttribute=\"leading\" secondItem=\"tQr-wP-wkQ\" secondAttribute=\"leading\" id=\"k8P-a6-fyU\"/>\n                                                        <constraint firstItem=\"yRd-wc-14A\" firstAttribute=\"top\" secondItem=\"tQr-wP-wkQ\" secondAttribute=\"top\" id=\"nZ8-yE-rWl\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"tQr-wP-wkQ\" firstAttribute=\"centerX\" secondItem=\"JMA-Gq-gp2\" secondAttribute=\"centerX\" id=\"1Dl-FI-Q15\"/>\n                                                <constraint firstItem=\"t96-Cs-KXi\" firstAttribute=\"top\" secondItem=\"JMA-Gq-gp2\" secondAttribute=\"topMargin\" id=\"CgF-MQ-QhR\"/>\n                                                <constraint firstItem=\"t96-Cs-KXi\" firstAttribute=\"leading\" secondItem=\"JMA-Gq-gp2\" secondAttribute=\"leadingMargin\" id=\"GCF-NL-xFH\"/>\n                                                <constraint firstItem=\"tQr-wP-wkQ\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"JMA-Gq-gp2\" secondAttribute=\"leading\" constant=\"20\" id=\"NCK-HB-2Vu\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"tQr-wP-wkQ\" secondAttribute=\"trailing\" constant=\"20\" id=\"TY7-v1-jAy\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"tQr-wP-wkQ\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"vwi-pf-9k7\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"Rrg-VC-Ayf\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"224\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"Rrg-VC-Ayf\" id=\"TS6-nK-bCP\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"starSizeMinRandomizer\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"cPB-bL-6tQ\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"JIs-g8-TBG\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"50\" minValue=\"10\" maxValue=\"100\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"HeC-Ra-FbH\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"h3z-bZ-cqu\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"lPo-cc-213\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleStarSizeMinRandomizerSlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"4eV-51-FA5\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"50.0\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"50W-hr-zoG\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"O0Q-Vx-RrW\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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 firstItem=\"50W-hr-zoG\" firstAttribute=\"leading\" secondItem=\"HeC-Ra-FbH\" secondAttribute=\"trailing\" constant=\"20\" id=\"0DX-fl-apV\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"50W-hr-zoG\" secondAttribute=\"trailing\" id=\"4Qs-CI-POg\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"HeC-Ra-FbH\" secondAttribute=\"bottom\" id=\"5OQ-fQ-zEo\"/>\n                                                        <constraint firstItem=\"HeC-Ra-FbH\" firstAttribute=\"leading\" secondItem=\"JIs-g8-TBG\" secondAttribute=\"leading\" id=\"cQ7-dZ-u6b\"/>\n                                                        <constraint firstItem=\"50W-hr-zoG\" firstAttribute=\"centerY\" secondItem=\"HeC-Ra-FbH\" secondAttribute=\"centerY\" id=\"eDg-5T-ycY\"/>\n                                                        <constraint firstItem=\"HeC-Ra-FbH\" firstAttribute=\"top\" secondItem=\"JIs-g8-TBG\" secondAttribute=\"top\" id=\"mxh-ab-NML\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"JIs-g8-TBG\" firstAttribute=\"centerX\" secondItem=\"TS6-nK-bCP\" secondAttribute=\"centerX\" id=\"EKE-2y-jB7\"/>\n                                                <constraint firstItem=\"JIs-g8-TBG\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"TS6-nK-bCP\" secondAttribute=\"leading\" constant=\"20\" id=\"Gpz-NG-Plv\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"JIs-g8-TBG\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"HdK-x7-NLq\"/>\n                                                <constraint firstItem=\"cPB-bL-6tQ\" firstAttribute=\"leading\" secondItem=\"TS6-nK-bCP\" secondAttribute=\"leadingMargin\" id=\"SY6-Y9-XR8\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"JIs-g8-TBG\" secondAttribute=\"trailing\" constant=\"20\" id=\"VcM-nM-N5f\"/>\n                                                <constraint firstItem=\"cPB-bL-6tQ\" firstAttribute=\"top\" secondItem=\"TS6-nK-bCP\" secondAttribute=\"topMargin\" id=\"dm5-RW-QxK\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"0bt-mK-37G\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"304\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"0bt-mK-37G\" id=\"RmS-IV-DgD\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"starSizeMaxRandomizer\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"yLF-8H-hYf\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"iqE-Uc-So3\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"150\" minValue=\"100\" maxValue=\"190\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zkN-h0-o7d\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"5Je-W1-ycx\"/>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"B9h-gE-yoN\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleStarSizeMaxRandomizerSlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"a1H-qB-WmS\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"150.0\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"WOe-v4-pne\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"A1R-Qu-0cc\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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 firstItem=\"zkN-h0-o7d\" firstAttribute=\"leading\" secondItem=\"iqE-Uc-So3\" secondAttribute=\"leading\" id=\"4sZ-42-87L\"/>\n                                                        <constraint firstItem=\"WOe-v4-pne\" firstAttribute=\"leading\" secondItem=\"zkN-h0-o7d\" secondAttribute=\"trailing\" constant=\"20\" id=\"7a4-2l-Ldj\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"WOe-v4-pne\" secondAttribute=\"trailing\" id=\"8mZ-Bh-wvD\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"zkN-h0-o7d\" secondAttribute=\"bottom\" id=\"fK4-MS-fYB\"/>\n                                                        <constraint firstItem=\"WOe-v4-pne\" firstAttribute=\"centerY\" secondItem=\"zkN-h0-o7d\" secondAttribute=\"centerY\" id=\"glq-dH-4Pv\"/>\n                                                        <constraint firstItem=\"zkN-h0-o7d\" firstAttribute=\"top\" secondItem=\"iqE-Uc-So3\" secondAttribute=\"top\" id=\"x99-Ir-nZJ\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"yLF-8H-hYf\" firstAttribute=\"leading\" secondItem=\"RmS-IV-DgD\" secondAttribute=\"leadingMargin\" id=\"5nk-cn-X5W\"/>\n                                                <constraint firstItem=\"iqE-Uc-So3\" firstAttribute=\"centerX\" secondItem=\"RmS-IV-DgD\" secondAttribute=\"centerX\" id=\"9ye-6w-ET4\"/>\n                                                <constraint firstItem=\"yLF-8H-hYf\" firstAttribute=\"top\" secondItem=\"RmS-IV-DgD\" secondAttribute=\"topMargin\" id=\"ETd-W2-Ez7\"/>\n                                                <constraint firstItem=\"iqE-Uc-So3\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"RmS-IV-DgD\" secondAttribute=\"leading\" constant=\"20\" id=\"EWt-yL-Cxe\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"iqE-Uc-So3\" secondAttribute=\"trailing\" constant=\"20\" id=\"ggh-Vh-Q1c\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"iqE-Uc-So3\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"r4p-gS-WuH\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"DkF-rX-dSX\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"384\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"DkF-rX-dSX\" id=\"wj3-pj-KaO\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"minStarOpacity\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"FOZ-EU-KnL\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"QiD-qc-LT7\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"0.5\" minValue=\"0.0\" maxValue=\"1\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"6A2-y1-YhP\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"7mB-T6-udg\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"W1p-kU-Drv\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleMinStarOpacitySlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"ZvY-6n-y1m\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"0.5\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"LP6-NZ-P33\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"vUg-Cx-B4j\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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=\"LP6-NZ-P33\" secondAttribute=\"trailing\" id=\"Q1G-Kn-tRK\"/>\n                                                        <constraint firstItem=\"LP6-NZ-P33\" firstAttribute=\"leading\" secondItem=\"6A2-y1-YhP\" secondAttribute=\"trailing\" constant=\"20\" id=\"X7b-6F-he9\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"6A2-y1-YhP\" secondAttribute=\"bottom\" id=\"ZvP-VT-pFj\"/>\n                                                        <constraint firstItem=\"6A2-y1-YhP\" firstAttribute=\"top\" secondItem=\"QiD-qc-LT7\" secondAttribute=\"top\" id=\"lJr-Xa-IsJ\"/>\n                                                        <constraint firstItem=\"LP6-NZ-P33\" firstAttribute=\"centerY\" secondItem=\"6A2-y1-YhP\" secondAttribute=\"centerY\" id=\"oft-Mq-8C8\"/>\n                                                        <constraint firstItem=\"6A2-y1-YhP\" firstAttribute=\"leading\" secondItem=\"QiD-qc-LT7\" secondAttribute=\"leading\" id=\"uQ9-Hi-Ave\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"FOZ-EU-KnL\" firstAttribute=\"top\" secondItem=\"wj3-pj-KaO\" secondAttribute=\"topMargin\" id=\"6LM-nn-YMB\"/>\n                                                <constraint firstItem=\"QiD-qc-LT7\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"wj3-pj-KaO\" secondAttribute=\"leading\" constant=\"20\" id=\"Qfd-JA-g2r\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"QiD-qc-LT7\" secondAttribute=\"trailing\" constant=\"20\" id=\"YEe-TE-fZd\"/>\n                                                <constraint firstItem=\"FOZ-EU-KnL\" firstAttribute=\"leading\" secondItem=\"wj3-pj-KaO\" secondAttribute=\"leadingMargin\" id=\"ZIt-zc-4FF\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"QiD-qc-LT7\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"Zj1-57-lwY\"/>\n                                                <constraint firstItem=\"QiD-qc-LT7\" firstAttribute=\"centerX\" secondItem=\"wj3-pj-KaO\" secondAttribute=\"centerX\" id=\"kBZ-F9-qMa\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"rYN-dv-4bg\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"464\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"rYN-dv-4bg\" id=\"GmO-kS-ncc\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"glowingIntensity\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"pKL-5N-uxk\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"0UK-Op-eQf\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"0.5\" minValue=\"0.0\" maxValue=\"1\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"PdJ-Pv-k5x\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"74v-ej-c1T\"/>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"ovh-Xe-uQ4\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleGlowingIntensitySlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"aqQ-CV-rAj\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"0.5\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"VNL-n4-4Vj\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"cut-4D-0qS\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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 firstItem=\"VNL-n4-4Vj\" firstAttribute=\"centerY\" secondItem=\"PdJ-Pv-k5x\" secondAttribute=\"centerY\" id=\"Sqo-pP-5ss\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"PdJ-Pv-k5x\" secondAttribute=\"bottom\" id=\"ZlF-kX-h6Z\"/>\n                                                        <constraint firstItem=\"PdJ-Pv-k5x\" firstAttribute=\"top\" secondItem=\"0UK-Op-eQf\" secondAttribute=\"top\" id=\"Ztz-ce-STK\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"VNL-n4-4Vj\" secondAttribute=\"trailing\" id=\"iKM-w8-spD\"/>\n                                                        <constraint firstItem=\"PdJ-Pv-k5x\" firstAttribute=\"leading\" secondItem=\"0UK-Op-eQf\" secondAttribute=\"leading\" id=\"kal-F3-U7G\"/>\n                                                        <constraint firstItem=\"VNL-n4-4Vj\" firstAttribute=\"leading\" secondItem=\"PdJ-Pv-k5x\" secondAttribute=\"trailing\" constant=\"20\" id=\"sJ0-zR-x2d\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"pKL-5N-uxk\" firstAttribute=\"top\" secondItem=\"GmO-kS-ncc\" secondAttribute=\"topMargin\" id=\"KJo-pB-ghT\"/>\n                                                <constraint firstItem=\"0UK-Op-eQf\" firstAttribute=\"centerX\" secondItem=\"GmO-kS-ncc\" secondAttribute=\"centerX\" id=\"XNL-Hr-0Uz\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"0UK-Op-eQf\" secondAttribute=\"trailing\" constant=\"20\" id=\"r3K-yt-wa0\"/>\n                                                <constraint firstItem=\"0UK-Op-eQf\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"GmO-kS-ncc\" secondAttribute=\"leading\" constant=\"20\" id=\"v6v-JC-2ZC\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"0UK-Op-eQf\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"yTb-gU-sv6\"/>\n                                                <constraint firstItem=\"pKL-5N-uxk\" firstAttribute=\"leading\" secondItem=\"GmO-kS-ncc\" secondAttribute=\"leadingMargin\" id=\"yqR-95-HgI\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"t98-CC-Pcf\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"544\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"t98-CC-Pcf\" id=\"TQe-WU-hXw\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"glowingDuration\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"Sjx-Xe-erX\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <view contentMode=\"scaleToFill\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"2EY-QO-Pvk\">\n                                                    <subviews>\n                                                        <slider opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"center\" contentVerticalAlignment=\"center\" value=\"2\" minValue=\"0.0\" maxValue=\"5\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"SzE-ap-JrA\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"height\" constant=\"30\" id=\"6np-k6-wgd\"/>\n                                                                <constraint firstAttribute=\"width\" constant=\"200\" id=\"vef-VY-1TK\"/>\n                                                            </constraints>\n                                                            <connections>\n                                                                <action selector=\"handleGlowingDurationSlider:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"aUG-az-r9k\"/>\n                                                            </connections>\n                                                        </slider>\n                                                        <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"2.0\" textAlignment=\"center\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"aq8-oU-xHU\">\n                                                            <constraints>\n                                                                <constraint firstAttribute=\"width\" constant=\"70\" id=\"a9c-rw-lco\"/>\n                                                            </constraints>\n                                                            <fontDescription key=\"fontDescription\" type=\"system\" pointSize=\"17\"/>\n                                                            <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" 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 firstItem=\"SzE-ap-JrA\" firstAttribute=\"top\" secondItem=\"2EY-QO-Pvk\" secondAttribute=\"top\" id=\"1ce-zf-Shv\"/>\n                                                        <constraint firstItem=\"aq8-oU-xHU\" firstAttribute=\"centerY\" secondItem=\"SzE-ap-JrA\" secondAttribute=\"centerY\" id=\"Nhz-6x-s2h\"/>\n                                                        <constraint firstAttribute=\"trailing\" secondItem=\"aq8-oU-xHU\" secondAttribute=\"trailing\" id=\"p7u-jn-KqC\"/>\n                                                        <constraint firstAttribute=\"bottom\" secondItem=\"SzE-ap-JrA\" secondAttribute=\"bottom\" id=\"vkc-KB-G04\"/>\n                                                        <constraint firstItem=\"aq8-oU-xHU\" firstAttribute=\"leading\" secondItem=\"SzE-ap-JrA\" secondAttribute=\"trailing\" constant=\"20\" id=\"yFb-9h-ih6\"/>\n                                                        <constraint firstItem=\"SzE-ap-JrA\" firstAttribute=\"leading\" secondItem=\"2EY-QO-Pvk\" secondAttribute=\"leading\" id=\"z50-UD-1Dx\"/>\n                                                    </constraints>\n                                                </view>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"Sjx-Xe-erX\" firstAttribute=\"leading\" secondItem=\"TQe-WU-hXw\" secondAttribute=\"leadingMargin\" id=\"8WN-0g-nAp\"/>\n                                                <constraint firstAttribute=\"bottom\" secondItem=\"2EY-QO-Pvk\" secondAttribute=\"bottom\" constant=\"8.5\" id=\"DfA-k2-qTQ\"/>\n                                                <constraint firstItem=\"Sjx-Xe-erX\" firstAttribute=\"top\" secondItem=\"TQe-WU-hXw\" secondAttribute=\"topMargin\" id=\"Qmn-ZI-oNK\"/>\n                                                <constraint firstItem=\"2EY-QO-Pvk\" firstAttribute=\"centerX\" secondItem=\"TQe-WU-hXw\" secondAttribute=\"centerX\" id=\"bza-ub-7lD\"/>\n                                                <constraint firstAttribute=\"trailing\" relation=\"greaterThanOrEqual\" secondItem=\"2EY-QO-Pvk\" secondAttribute=\"trailing\" constant=\"20\" id=\"dV1-fO-QAw\"/>\n                                                <constraint firstItem=\"2EY-QO-Pvk\" firstAttribute=\"leading\" relation=\"greaterThanOrEqual\" secondItem=\"TQe-WU-hXw\" secondAttribute=\"leading\" constant=\"20\" id=\"jEr-QJ-LaV\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                    <tableViewCell clipsSubviews=\"YES\" contentMode=\"scaleToFill\" selectionStyle=\"default\" indentationWidth=\"10\" rowHeight=\"80\" id=\"4tS-8X-IjJ\">\n                                        <rect key=\"frame\" x=\"0.0\" y=\"624\" width=\"375\" height=\"80\"/>\n                                        <autoresizingMask key=\"autoresizingMask\"/>\n                                        <tableViewCellContentView key=\"contentView\" opaque=\"NO\" clipsSubviews=\"YES\" multipleTouchEnabled=\"YES\" contentMode=\"center\" tableViewCell=\"4tS-8X-IjJ\" id=\"Xlc-8h-6Ri\">\n                                            <frame key=\"frameInset\" width=\"375\" height=\"79\"/>\n                                            <autoresizingMask key=\"autoresizingMask\"/>\n                                            <subviews>\n                                                <label opaque=\"NO\" userInteractionEnabled=\"NO\" contentMode=\"left\" horizontalHuggingPriority=\"251\" verticalHuggingPriority=\"251\" text=\"starType\" textAlignment=\"natural\" lineBreakMode=\"tailTruncation\" baselineAdjustment=\"alignBaselines\" adjustsFontSizeToFit=\"NO\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"5cf-XS-RZd\">\n                                                    <fontDescription key=\"fontDescription\" type=\"system\" weight=\"medium\" pointSize=\"17\"/>\n                                                    <color key=\"textColor\" red=\"0.0\" green=\"0.0\" blue=\"0.0\" alpha=\"1\" colorSpace=\"custom\" customColorSpace=\"sRGB\"/>\n                                                    <nil key=\"highlightedColor\"/>\n                                                </label>\n                                                <segmentedControl opaque=\"NO\" contentMode=\"scaleToFill\" contentHorizontalAlignment=\"left\" contentVerticalAlignment=\"top\" segmentControlStyle=\"plain\" selectedSegmentIndex=\"0\" translatesAutoresizingMaskIntoConstraints=\"NO\" id=\"zAY-lt-PQM\">\n                                                    <segments>\n                                                        <segment title=\"Round\"/>\n                                                        <segment title=\"fiveBranchStar\"/>\n                                                    </segments>\n                                                    <connections>\n                                                        <action selector=\"handleStarTypeSegmentedControl:\" destination=\"AJQ-Fe-nX0\" eventType=\"valueChanged\" id=\"ZA5-Sx-Far\"/>\n                                                    </connections>\n                                                </segmentedControl>\n                                            </subviews>\n                                            <constraints>\n                                                <constraint firstItem=\"5cf-XS-RZd\" firstAttribute=\"leading\" secondItem=\"Xlc-8h-6Ri\" secondAttribute=\"leadingMargin\" id=\"9fq-Qs-WSL\"/>\n                                                <constraint firstItem=\"5cf-XS-RZd\" firstAttribute=\"top\" secondItem=\"Xlc-8h-6Ri\" secondAttribute=\"topMargin\" id=\"OLV-rs-Tfg\"/>\n                                                <constraint firstItem=\"zAY-lt-PQM\" firstAttribute=\"centerX\" secondItem=\"Xlc-8h-6Ri\" secondAttribute=\"centerX\" id=\"ZEY-GP-lL0\"/>\n                                                <constraint firstItem=\"zAY-lt-PQM\" firstAttribute=\"centerY\" secondItem=\"Xlc-8h-6Ri\" secondAttribute=\"centerY\" id=\"pAY-eR-GqA\"/>\n                                            </constraints>\n                                        </tableViewCellContentView>\n                                    </tableViewCell>\n                                </cells>\n                            </tableViewSection>\n                        </sections>\n                        <connections>\n                            <outlet property=\"dataSource\" destination=\"AJQ-Fe-nX0\" id=\"x44-Mc-Vvb\"/>\n                            <outlet property=\"delegate\" destination=\"AJQ-Fe-nX0\" id=\"vfM-gy-7T2\"/>\n                        </connections>\n                    </tableView>\n                    <navigationItem key=\"navigationItem\" id=\"EWp-JL-4Ek\">\n                        <barButtonItem key=\"rightBarButtonItem\" style=\"done\" systemItem=\"done\" id=\"OSi-ZC-dth\">\n                            <connections>\n                                <action selector=\"handleTapDoneButton:\" destination=\"AJQ-Fe-nX0\" id=\"aHX-k5-Rb2\"/>\n                            </connections>\n                        </barButtonItem>\n                    </navigationItem>\n                    <connections>\n                        <outlet property=\"glowingDurationLabel\" destination=\"aq8-oU-xHU\" id=\"9hT-tt-nE4\"/>\n                        <outlet property=\"glowingDurationSlider\" destination=\"SzE-ap-JrA\" id=\"55z-2b-jkb\"/>\n                        <outlet property=\"glowingIntensityLabel\" destination=\"VNL-n4-4Vj\" id=\"540-rx-AKD\"/>\n                        <outlet property=\"glowingIntensitySlider\" destination=\"PdJ-Pv-k5x\" id=\"CIC-h1-Ssp\"/>\n                        <outlet property=\"minStarOpacityLabel\" destination=\"LP6-NZ-P33\" id=\"W8b-V0-7k3\"/>\n                        <outlet property=\"minStarOpacitySlider\" destination=\"6A2-y1-YhP\" id=\"ZZi-d4-MpO\"/>\n                        <outlet property=\"numberOfPointsForStarLabel\" destination=\"M6D-HK-E5u\" id=\"KKK-Ga-ZdP\"/>\n                        <outlet property=\"numberOfPointsForStarSlider\" destination=\"rQv-8s-Ej3\" id=\"br3-Zd-gEm\"/>\n                        <outlet property=\"starSizeLabel\" destination=\"Yza-jb-ij6\" id=\"pve-Fl-a79\"/>\n                        <outlet property=\"starSizeMaxRandomizerLabel\" destination=\"WOe-v4-pne\" id=\"ELr-S7-Zgz\"/>\n                        <outlet property=\"starSizeMaxRandomizerSlider\" destination=\"zkN-h0-o7d\" id=\"Qd2-iN-5zp\"/>\n                        <outlet property=\"starSizeMinRandomizerLabel\" destination=\"50W-hr-zoG\" id=\"hkZ-kg-4t7\"/>\n                        <outlet property=\"starSizeMinRandomizerSlider\" destination=\"HeC-Ra-FbH\" id=\"Ous-bb-o9V\"/>\n                        <outlet property=\"starSizeSlider\" destination=\"yRd-wc-14A\" id=\"w1c-Gw-jT9\"/>\n                        <outlet property=\"starTypeLabel\" destination=\"5cf-XS-RZd\" id=\"atK-S2-s3f\"/>\n                        <outlet property=\"starTypeSegmentedControl\" destination=\"zAY-lt-PQM\" id=\"SSc-ic-K2a\"/>\n                    </connections>\n                </tableViewController>\n                <placeholder placeholderIdentifier=\"IBFirstResponder\" id=\"PtH-w4-CuN\" userLabel=\"First Responder\" sceneMemberID=\"firstResponder\"/>\n            </objects>\n            <point key=\"canvasLocation\" x=\"1934\" y=\"449\"/>\n        </scene>\n    </scenes>\n    <resources>\n        <image name=\"Moto\" width=\"1286\" height=\"73\"/>\n        <image name=\"NightView\" width=\"1000\" height=\"307\"/>\n    </resources>\n</document>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/CustomizationTableViewController.swift",
    "content": "//\n//  CustomizationTableViewController.swift\n//  NightViewSampleProject\n//\n//  Created by Bobo on 7/11/16.\n//  Copyright © 2016 Boris Emorine. All rights reserved.\n//\n\nimport UIKit\n\nclass CustomizationTableViewController: UITableViewController {\n\n    @IBOutlet weak var numberOfPointsForStarLabel: UILabel!\n    @IBOutlet weak var starSizeLabel: UILabel!\n    @IBOutlet weak var starSizeMinRandomizerLabel: UILabel!\n    @IBOutlet weak var starSizeMaxRandomizerLabel: UILabel!\n    @IBOutlet weak var minStarOpacityLabel: UILabel!\n    @IBOutlet weak var glowingIntensityLabel: UILabel!\n    @IBOutlet weak var glowingDurationLabel: UILabel!\n    @IBOutlet weak var starTypeLabel: UILabel!\n    \n    @IBOutlet weak var numberOfPointsForStarSlider: UISlider!\n    @IBOutlet weak var starSizeSlider: UISlider!\n    @IBOutlet weak var starSizeMinRandomizerSlider: UISlider!\n    @IBOutlet weak var starSizeMaxRandomizerSlider: UISlider!\n    @IBOutlet weak var minStarOpacitySlider: UISlider!\n    @IBOutlet weak var glowingIntensitySlider: UISlider!\n    @IBOutlet weak var glowingDurationSlider: UISlider!\n    @IBOutlet weak var starTypeSegmentedControl: UISegmentedControl!\n    \n    var nightView: NightView?\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n        \n        title = \"Customization\"\n        \n        if let numberOfPointsForStar = nightView?.numberOfPointsForStar {\n            numberOfPointsForStarLabel.text = String(format: \"%.1f\", numberOfPointsForStar)\n            numberOfPointsForStarSlider.value = Float(numberOfPointsForStar)\n        }\n        \n        if let starSize = nightView?.starSize {\n            starSizeLabel.text = String(format: \"%.1f\", starSize)\n            starSizeSlider.value = Float(starSize)\n        }\n        \n        if let starSizeMinRandomizer = nightView?.starSizeMinRandomizer {\n            starSizeMinRandomizerLabel.text = String(format: \"%.1f\", starSizeMinRandomizer)\n            starSizeMinRandomizerSlider.value = Float(starSizeMinRandomizer)\n        }\n        \n        if let starSizeMaxRandomizer = nightView?.starSizeMaxRandomizer {\n            starSizeMaxRandomizerLabel.text = String(format: \"%.1f\", starSizeMaxRandomizer)\n            starSizeMaxRandomizerSlider.value = Float(starSizeMaxRandomizer)\n        }\n        \n        if let minStarOpacity = nightView?.minStarOpacity {\n            minStarOpacityLabel.text = String(format: \"%.1f\", minStarOpacity)\n            minStarOpacitySlider.value = Float(minStarOpacity)\n        }\n        \n        if let glowingIntensity = nightView?.glowingIntensity {\n            glowingIntensityLabel.text = String(format: \"%.1f\", glowingIntensity)\n            glowingIntensitySlider.value = Float(glowingIntensity)\n        }\n        \n        if let glowingDuration = nightView?.glowingDuration {\n            glowingDurationLabel.text = String(format: \"%.1f\", glowingDuration)\n            glowingDurationSlider.value = Float(glowingDuration)\n        }\n        \n        if let starType = nightView?.starType {\n            switch starType {\n            case .Round:\n                starTypeSegmentedControl.selectedSegmentIndex = 0\n                break\n            case .FiveBranchStar:\n                starTypeSegmentedControl.selectedSegmentIndex = 1\n                break\n            }\n        }\n    }\n    \n    override func didReceiveMemoryWarning() {\n        super.didReceiveMemoryWarning()\n    }\n    \n    @IBAction func handleSlideNumberOfPointsForStarSlider(_ sender: UISlider) {\n        nightView?.numberOfPointsForStar = CGFloat(sender.value)\n        numberOfPointsForStarLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleStarSizeSlider(_ sender: UISlider) {\n        nightView?.starSize = CGFloat(sender.value)\n        starSizeLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleStarSizeMinRandomizerSlider(_ sender: UISlider) {\n        nightView?.starSizeMinRandomizer = Double(sender.value)\n        starSizeMinRandomizerLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleStarSizeMaxRandomizerSlider(_ sender: UISlider) {\n        nightView?.starSizeMaxRandomizer = Double(sender.value)\n        starSizeMaxRandomizerLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleMinStarOpacitySlider(_ sender: UISlider) {\n        nightView?.minStarOpacity = sender.value\n        minStarOpacityLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleGlowingIntensitySlider(_ sender: UISlider) {\n        nightView?.glowingIntensity = sender.value\n        glowingIntensityLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleGlowingDurationSlider(_ sender: UISlider) {\n        nightView?.glowingDuration = Double(sender.value)\n        glowingDurationLabel.text = String(format: \"%.1f\", sender.value)\n    }\n    \n    @IBAction func handleTapDoneButton(_ sender: AnyObject) {\n        dismiss(animated: true, completion: nil)\n    }\n    \n    @IBAction func handleStarTypeSegmentedControl(_ sender: UISegmentedControl) {\n        switch sender.selectedSegmentIndex {\n        case 0:\n            nightView?.starType = .Round\n            break\n        default:\n            nightView?.starType = .FiveBranchStar\n            break\n        }\n    }\n}\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/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>CFBundleSignature</key>\n\t<string>????</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\t<key>UISupportedInterfaceOrientations~ipad</key>\n\t<array>\n\t\t<string>UIInterfaceOrientationPortrait</string>\n\t\t<string>UIInterfaceOrientationPortraitUpsideDown</string>\n\t\t<string>UIInterfaceOrientationLandscapeLeft</string>\n\t\t<string>UIInterfaceOrientationLandscapeRight</string>\n\t</array>\n</dict>\n</plist>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject/ViewController.swift",
    "content": "//\n//  ViewController.swift\n//  NightViewSampleProject\n//\n//  Created by Bobo on 7/10/16.\n//  Copyright © 2016 Boris Emorine. All rights reserved.\n//\n\nimport UIKit\n\nclass ViewController: UIViewController {\n\n    @IBOutlet weak var nightView: NightView!\n    \n    override func viewDidLoad() {\n        super.viewDidLoad()\n    }\n\n    override func didReceiveMemoryWarning() {\n        super.didReceiveMemoryWarning()\n    }\n\n    override func prepare(for segue: UIStoryboardSegue, sender: AnyObject?) {\n        if segue.identifier == \"toCustomization\" {\n            if let navVC = segue.destination as? UINavigationController, let customizationVC = navVC.topViewController as? CustomizationTableViewController {\n                customizationVC.nightView = nightView\n            }\n        }\n    }\n\n}\n\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject.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\tC31E42071D333B5C00A4A7A4 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = C31E42061D333B5C00A4A7A4 /* AppDelegate.swift */; };\n\t\tC31E42091D333B5C00A4A7A4 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C31E42081D333B5C00A4A7A4 /* ViewController.swift */; };\n\t\tC31E420C1D333B5C00A4A7A4 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C31E420A1D333B5C00A4A7A4 /* Main.storyboard */; };\n\t\tC31E420E1D333B5C00A4A7A4 /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = C31E420D1D333B5C00A4A7A4 /* Assets.xcassets */; };\n\t\tC31E42111D333B5C00A4A7A4 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = C31E420F1D333B5C00A4A7A4 /* LaunchScreen.storyboard */; };\n\t\tC31E42281D333BBB00A4A7A4 /* NightView.swift in Sources */ = {isa = PBXBuildFile; fileRef = C31E42271D333BBB00A4A7A4 /* NightView.swift */; };\n\t\tC3B4E3891D34020A0089FC02 /* NightViewTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3B4E3881D34020A0089FC02 /* NightViewTests.swift */; };\n\t\tC3B4E38B1D34CC240089FC02 /* CustomizationTableViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = C3B4E38A1D34CC240089FC02 /* CustomizationTableViewController.swift */; };\n/* End PBXBuildFile section */\n\n/* Begin PBXContainerItemProxy section */\n\t\tC31E42181D333B5C00A4A7A4 /* PBXContainerItemProxy */ = {\n\t\t\tisa = PBXContainerItemProxy;\n\t\t\tcontainerPortal = C31E41FB1D333B5C00A4A7A4 /* Project object */;\n\t\t\tproxyType = 1;\n\t\t\tremoteGlobalIDString = C31E42021D333B5C00A4A7A4;\n\t\t\tremoteInfo = NightViewSampleProject;\n\t\t};\n/* End PBXContainerItemProxy section */\n\n/* Begin PBXFileReference section */\n\t\tC31E42031D333B5C00A4A7A4 /* NightViewSampleProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = NightViewSampleProject.app; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tC31E42061D333B5C00A4A7A4 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = \"<group>\"; };\n\t\tC31E42081D333B5C00A4A7A4 /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = \"<group>\"; };\n\t\tC31E420B1D333B5C00A4A7A4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = \"<group>\"; };\n\t\tC31E420D1D333B5C00A4A7A4 /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = \"<group>\"; };\n\t\tC31E42101D333B5C00A4A7A4 /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = \"<group>\"; };\n\t\tC31E42121D333B5C00A4A7A4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tC31E42171D333B5C00A4A7A4 /* NightViewSampleProjectTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = NightViewSampleProjectTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };\n\t\tC31E421D1D333B5C00A4A7A4 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = \"<group>\"; };\n\t\tC31E42271D333BBB00A4A7A4 /* NightView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightView.swift; sourceTree = \"<group>\"; };\n\t\tC3B4E3881D34020A0089FC02 /* NightViewTests.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = NightViewTests.swift; sourceTree = \"<group>\"; };\n\t\tC3B4E38A1D34CC240089FC02 /* CustomizationTableViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = CustomizationTableViewController.swift; sourceTree = \"<group>\"; };\n/* End PBXFileReference section */\n\n/* Begin PBXFrameworksBuildPhase section */\n\t\tC31E42001D333B5C00A4A7A4 /* 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\tC31E42141D333B5C00A4A7A4 /* Frameworks */ = {\n\t\t\tisa = PBXFrameworksBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXFrameworksBuildPhase section */\n\n/* Begin PBXGroup section */\n\t\tC31E41FA1D333B5C00A4A7A4 = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E42261D333BBB00A4A7A4 /* NightView */,\n\t\t\t\tC31E42051D333B5C00A4A7A4 /* NightViewSampleProject */,\n\t\t\t\tC31E421A1D333B5C00A4A7A4 /* NightViewSampleProjectTests */,\n\t\t\t\tC31E42041D333B5C00A4A7A4 /* Products */,\n\t\t\t);\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC31E42041D333B5C00A4A7A4 /* Products */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E42031D333B5C00A4A7A4 /* NightViewSampleProject.app */,\n\t\t\t\tC31E42171D333B5C00A4A7A4 /* NightViewSampleProjectTests.xctest */,\n\t\t\t);\n\t\t\tname = Products;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC31E42051D333B5C00A4A7A4 /* NightViewSampleProject */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E42061D333B5C00A4A7A4 /* AppDelegate.swift */,\n\t\t\t\tC31E42081D333B5C00A4A7A4 /* ViewController.swift */,\n\t\t\t\tC3B4E38A1D34CC240089FC02 /* CustomizationTableViewController.swift */,\n\t\t\t\tC31E420A1D333B5C00A4A7A4 /* Main.storyboard */,\n\t\t\t\tC31E420D1D333B5C00A4A7A4 /* Assets.xcassets */,\n\t\t\t\tC31E420F1D333B5C00A4A7A4 /* LaunchScreen.storyboard */,\n\t\t\t\tC31E42121D333B5C00A4A7A4 /* Info.plist */,\n\t\t\t);\n\t\t\tpath = NightViewSampleProject;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC31E421A1D333B5C00A4A7A4 /* NightViewSampleProjectTests */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E421D1D333B5C00A4A7A4 /* Info.plist */,\n\t\t\t\tC3B4E3881D34020A0089FC02 /* NightViewTests.swift */,\n\t\t\t);\n\t\t\tpath = NightViewSampleProjectTests;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC31E42261D333BBB00A4A7A4 /* NightView */ = {\n\t\t\tisa = PBXGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E42271D333BBB00A4A7A4 /* NightView.swift */,\n\t\t\t);\n\t\t\tname = NightView;\n\t\t\tpath = ../NightView;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n/* End PBXGroup section */\n\n/* Begin PBXNativeTarget section */\n\t\tC31E42021D333B5C00A4A7A4 /* NightViewSampleProject */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = C31E42201D333B5C00A4A7A4 /* Build configuration list for PBXNativeTarget \"NightViewSampleProject\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tC31E41FF1D333B5C00A4A7A4 /* Sources */,\n\t\t\t\tC31E42001D333B5C00A4A7A4 /* Frameworks */,\n\t\t\t\tC31E42011D333B5C00A4A7A4 /* 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 = NightViewSampleProject;\n\t\t\tproductName = NightViewSampleProject;\n\t\t\tproductReference = C31E42031D333B5C00A4A7A4 /* NightViewSampleProject.app */;\n\t\t\tproductType = \"com.apple.product-type.application\";\n\t\t};\n\t\tC31E42161D333B5C00A4A7A4 /* NightViewSampleProjectTests */ = {\n\t\t\tisa = PBXNativeTarget;\n\t\t\tbuildConfigurationList = C31E42231D333B5C00A4A7A4 /* Build configuration list for PBXNativeTarget \"NightViewSampleProjectTests\" */;\n\t\t\tbuildPhases = (\n\t\t\t\tC31E42131D333B5C00A4A7A4 /* Sources */,\n\t\t\t\tC31E42141D333B5C00A4A7A4 /* Frameworks */,\n\t\t\t\tC31E42151D333B5C00A4A7A4 /* Resources */,\n\t\t\t);\n\t\t\tbuildRules = (\n\t\t\t);\n\t\t\tdependencies = (\n\t\t\t\tC31E42191D333B5C00A4A7A4 /* PBXTargetDependency */,\n\t\t\t);\n\t\t\tname = NightViewSampleProjectTests;\n\t\t\tproductName = NightViewSampleProjectTests;\n\t\t\tproductReference = C31E42171D333B5C00A4A7A4 /* NightViewSampleProjectTests.xctest */;\n\t\t\tproductType = \"com.apple.product-type.bundle.unit-test\";\n\t\t};\n/* End PBXNativeTarget section */\n\n/* Begin PBXProject section */\n\t\tC31E41FB1D333B5C00A4A7A4 /* Project object */ = {\n\t\t\tisa = PBXProject;\n\t\t\tattributes = {\n\t\t\t\tLastSwiftUpdateCheck = 0730;\n\t\t\t\tLastUpgradeCheck = 0800;\n\t\t\t\tORGANIZATIONNAME = \"Boris Emorine\";\n\t\t\t\tTargetAttributes = {\n\t\t\t\t\tC31E42021D333B5C00A4A7A4 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.3;\n\t\t\t\t\t\tLastSwiftMigration = 0800;\n\t\t\t\t\t};\n\t\t\t\t\tC31E42161D333B5C00A4A7A4 = {\n\t\t\t\t\t\tCreatedOnToolsVersion = 7.3;\n\t\t\t\t\t\tLastSwiftMigration = 0800;\n\t\t\t\t\t\tTestTargetID = C31E42021D333B5C00A4A7A4;\n\t\t\t\t\t};\n\t\t\t\t};\n\t\t\t};\n\t\t\tbuildConfigurationList = C31E41FE1D333B5C00A4A7A4 /* Build configuration list for PBXProject \"NightViewSampleProject\" */;\n\t\t\tcompatibilityVersion = \"Xcode 3.2\";\n\t\t\tdevelopmentRegion = English;\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 = C31E41FA1D333B5C00A4A7A4;\n\t\t\tproductRefGroup = C31E42041D333B5C00A4A7A4 /* Products */;\n\t\t\tprojectDirPath = \"\";\n\t\t\tprojectRoot = \"\";\n\t\t\ttargets = (\n\t\t\t\tC31E42021D333B5C00A4A7A4 /* NightViewSampleProject */,\n\t\t\t\tC31E42161D333B5C00A4A7A4 /* NightViewSampleProjectTests */,\n\t\t\t);\n\t\t};\n/* End PBXProject section */\n\n/* Begin PBXResourcesBuildPhase section */\n\t\tC31E42011D333B5C00A4A7A4 /* Resources */ = {\n\t\t\tisa = PBXResourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC31E42111D333B5C00A4A7A4 /* LaunchScreen.storyboard in Resources */,\n\t\t\t\tC31E420E1D333B5C00A4A7A4 /* Assets.xcassets in Resources */,\n\t\t\t\tC31E420C1D333B5C00A4A7A4 /* Main.storyboard in Resources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC31E42151D333B5C00A4A7A4 /* 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/* End PBXResourcesBuildPhase section */\n\n/* Begin PBXSourcesBuildPhase section */\n\t\tC31E41FF1D333B5C00A4A7A4 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC31E42091D333B5C00A4A7A4 /* ViewController.swift in Sources */,\n\t\t\t\tC3B4E38B1D34CC240089FC02 /* CustomizationTableViewController.swift in Sources */,\n\t\t\t\tC31E42281D333BBB00A4A7A4 /* NightView.swift in Sources */,\n\t\t\t\tC31E42071D333B5C00A4A7A4 /* AppDelegate.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n\t\tC31E42131D333B5C00A4A7A4 /* Sources */ = {\n\t\t\tisa = PBXSourcesBuildPhase;\n\t\t\tbuildActionMask = 2147483647;\n\t\t\tfiles = (\n\t\t\t\tC3B4E3891D34020A0089FC02 /* NightViewTests.swift in Sources */,\n\t\t\t);\n\t\t\trunOnlyForDeploymentPostprocessing = 0;\n\t\t};\n/* End PBXSourcesBuildPhase section */\n\n/* Begin PBXTargetDependency section */\n\t\tC31E42191D333B5C00A4A7A4 /* PBXTargetDependency */ = {\n\t\t\tisa = PBXTargetDependency;\n\t\t\ttarget = C31E42021D333B5C00A4A7A4 /* NightViewSampleProject */;\n\t\t\ttargetProxy = C31E42181D333B5C00A4A7A4 /* PBXContainerItemProxy */;\n\t\t};\n/* End PBXTargetDependency section */\n\n/* Begin PBXVariantGroup section */\n\t\tC31E420A1D333B5C00A4A7A4 /* Main.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E420B1D333B5C00A4A7A4 /* Base */,\n\t\t\t);\n\t\t\tname = Main.storyboard;\n\t\t\tsourceTree = \"<group>\";\n\t\t};\n\t\tC31E420F1D333B5C00A4A7A4 /* LaunchScreen.storyboard */ = {\n\t\t\tisa = PBXVariantGroup;\n\t\t\tchildren = (\n\t\t\t\tC31E42101D333B5C00A4A7A4 /* 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\tC31E421E1D333B5C00A4A7A4 /* 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_NONNULL = 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_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = 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_OBJC_ROOT_CLASS = YES_ERROR;\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 = 9.3;\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\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tC31E421F1D333B5C00A4A7A4 /* 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_NONNULL = 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_BOOL_CONVERSION = YES;\n\t\t\t\tCLANG_WARN_CONSTANT_CONVERSION = 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_OBJC_ROOT_CLASS = YES_ERROR;\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 = 9.3;\n\t\t\t\tMTL_ENABLE_DEBUG_INFO = NO;\n\t\t\t\tSDKROOT = iphoneos;\n\t\t\t\tTARGETED_DEVICE_FAMILY = \"1,2\";\n\t\t\t\tVALIDATE_PRODUCT = YES;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tC31E42211D333B5C00A4A7A4 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = NightViewSampleProject/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = BEM.NightViewSampleProject;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_INSTALL_OBJC_HEADER = YES;\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tC31E42221D333B5C00A4A7A4 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;\n\t\t\t\tINFOPLIST_FILE = NightViewSampleProject/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = BEM.NightViewSampleProject;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_INSTALL_OBJC_HEADER = YES;\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Owholemodule\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n\t\tC31E42241D333B5C00A4A7A4 /* Debug */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tINFOPLIST_FILE = NightViewSampleProjectTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = BEM.NightViewSampleProjectTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Onone\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/NightViewSampleProject.app/NightViewSampleProject\";\n\t\t\t};\n\t\t\tname = Debug;\n\t\t};\n\t\tC31E42251D333B5C00A4A7A4 /* Release */ = {\n\t\t\tisa = XCBuildConfiguration;\n\t\t\tbuildSettings = {\n\t\t\t\tBUNDLE_LOADER = \"$(TEST_HOST)\";\n\t\t\t\tCLANG_ENABLE_MODULES = YES;\n\t\t\t\tINFOPLIST_FILE = NightViewSampleProjectTests/Info.plist;\n\t\t\t\tLD_RUNPATH_SEARCH_PATHS = \"$(inherited) @executable_path/Frameworks @loader_path/Frameworks\";\n\t\t\t\tPRODUCT_BUNDLE_IDENTIFIER = BEM.NightViewSampleProjectTests;\n\t\t\t\tPRODUCT_NAME = \"$(TARGET_NAME)\";\n\t\t\t\tSWIFT_OBJC_BRIDGING_HEADER = \"\";\n\t\t\t\tSWIFT_OPTIMIZATION_LEVEL = \"-Owholemodule\";\n\t\t\t\tSWIFT_VERSION = 3.0;\n\t\t\t\tTEST_HOST = \"$(BUILT_PRODUCTS_DIR)/NightViewSampleProject.app/NightViewSampleProject\";\n\t\t\t};\n\t\t\tname = Release;\n\t\t};\n/* End XCBuildConfiguration section */\n\n/* Begin XCConfigurationList section */\n\t\tC31E41FE1D333B5C00A4A7A4 /* Build configuration list for PBXProject \"NightViewSampleProject\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC31E421E1D333B5C00A4A7A4 /* Debug */,\n\t\t\t\tC31E421F1D333B5C00A4A7A4 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tC31E42201D333B5C00A4A7A4 /* Build configuration list for PBXNativeTarget \"NightViewSampleProject\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC31E42211D333B5C00A4A7A4 /* Debug */,\n\t\t\t\tC31E42221D333B5C00A4A7A4 /* Release */,\n\t\t\t);\n\t\t\tdefaultConfigurationIsVisible = 0;\n\t\t\tdefaultConfigurationName = Release;\n\t\t};\n\t\tC31E42231D333B5C00A4A7A4 /* Build configuration list for PBXNativeTarget \"NightViewSampleProjectTests\" */ = {\n\t\t\tisa = XCConfigurationList;\n\t\t\tbuildConfigurations = (\n\t\t\t\tC31E42241D333B5C00A4A7A4 /* Debug */,\n\t\t\t\tC31E42251D333B5C00A4A7A4 /* 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 = C31E41FB1D333B5C00A4A7A4 /* Project object */;\n}\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Workspace\n   version = \"1.0\">\n   <FileRef\n      location = \"self:NightViewSampleProject.xcodeproj\">\n   </FileRef>\n</Workspace>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject.xcodeproj/xcshareddata/xcschemes/NightViewSampleProject.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0800\"\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 = \"C31E42021D333B5C00A4A7A4\"\n               BuildableName = \"NightViewSampleProject.app\"\n               BlueprintName = \"NightViewSampleProject\"\n               ReferencedContainer = \"container:NightViewSampleProject.xcodeproj\">\n            </BuildableReference>\n         </BuildActionEntry>\n      </BuildActionEntries>\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"C31E42161D333B5C00A4A7A4\"\n               BuildableName = \"NightViewSampleProjectTests.xctest\"\n               BlueprintName = \"NightViewSampleProjectTests\"\n               ReferencedContainer = \"container:NightViewSampleProject.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <MacroExpansion>\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C31E42021D333B5C00A4A7A4\"\n            BuildableName = \"NightViewSampleProject.app\"\n            BlueprintName = \"NightViewSampleProject\"\n            ReferencedContainer = \"container:NightViewSampleProject.xcodeproj\">\n         </BuildableReference>\n      </MacroExpansion>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </TestAction>\n   <LaunchAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      launchStyle = \"0\"\n      useCustomWorkingDirectory = \"NO\"\n      ignoresPersistentStateOnLaunch = \"NO\"\n      debugDocumentVersioning = \"YES\"\n      debugServiceExtension = \"internal\"\n      allowLocationSimulation = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C31E42021D333B5C00A4A7A4\"\n            BuildableName = \"NightViewSampleProject.app\"\n            BlueprintName = \"NightViewSampleProject\"\n            ReferencedContainer = \"container:NightViewSampleProject.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n      <BuildableProductRunnable\n         runnableDebuggingMode = \"0\">\n         <BuildableReference\n            BuildableIdentifier = \"primary\"\n            BlueprintIdentifier = \"C31E42021D333B5C00A4A7A4\"\n            BuildableName = \"NightViewSampleProject.app\"\n            BlueprintName = \"NightViewSampleProject\"\n            ReferencedContainer = \"container:NightViewSampleProject.xcodeproj\">\n         </BuildableReference>\n      </BuildableProductRunnable>\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProject.xcodeproj/xcshareddata/xcschemes/NightViewSampleProjectTests.xcscheme",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<Scheme\n   LastUpgradeVersion = \"0800\"\n   version = \"1.3\">\n   <BuildAction\n      parallelizeBuildables = \"YES\"\n      buildImplicitDependencies = \"YES\">\n   </BuildAction>\n   <TestAction\n      buildConfiguration = \"Debug\"\n      selectedDebuggerIdentifier = \"Xcode.DebuggerFoundation.Debugger.LLDB\"\n      selectedLauncherIdentifier = \"Xcode.DebuggerFoundation.Launcher.LLDB\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\">\n      <Testables>\n         <TestableReference\n            skipped = \"NO\">\n            <BuildableReference\n               BuildableIdentifier = \"primary\"\n               BlueprintIdentifier = \"C31E42161D333B5C00A4A7A4\"\n               BuildableName = \"NightViewSampleProjectTests.xctest\"\n               BlueprintName = \"NightViewSampleProjectTests\"\n               ReferencedContainer = \"container:NightViewSampleProject.xcodeproj\">\n            </BuildableReference>\n         </TestableReference>\n      </Testables>\n      <AdditionalOptions>\n      </AdditionalOptions>\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      <AdditionalOptions>\n      </AdditionalOptions>\n   </LaunchAction>\n   <ProfileAction\n      buildConfiguration = \"Release\"\n      shouldUseLaunchSchemeArgsEnv = \"YES\"\n      savedToolIdentifier = \"\"\n      useCustomWorkingDirectory = \"NO\"\n      debugDocumentVersioning = \"YES\">\n   </ProfileAction>\n   <AnalyzeAction\n      buildConfiguration = \"Debug\">\n   </AnalyzeAction>\n   <ArchiveAction\n      buildConfiguration = \"Release\"\n      revealArchiveInOrganizer = \"YES\">\n   </ArchiveAction>\n</Scheme>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProjectTests/Info.plist",
    "content": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<!DOCTYPE plist PUBLIC \"-//Apple//DTD PLIST 1.0//EN\" \"http://www.apple.com/DTDs/PropertyList-1.0.dtd\">\n<plist version=\"1.0\">\n<dict>\n\t<key>CFBundleDevelopmentRegion</key>\n\t<string>en</string>\n\t<key>CFBundleExecutable</key>\n\t<string>$(EXECUTABLE_NAME)</string>\n\t<key>CFBundleIdentifier</key>\n\t<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>\n\t<key>CFBundleInfoDictionaryVersion</key>\n\t<string>6.0</string>\n\t<key>CFBundleName</key>\n\t<string>$(PRODUCT_NAME)</string>\n\t<key>CFBundlePackageType</key>\n\t<string>BNDL</string>\n\t<key>CFBundleShortVersionString</key>\n\t<string>1.0</string>\n\t<key>CFBundleSignature</key>\n\t<string>????</string>\n\t<key>CFBundleVersion</key>\n\t<string>1</string>\n</dict>\n</plist>\n"
  },
  {
    "path": "NightViewSampleProject/NightViewSampleProjectTests/NightViewTests.swift",
    "content": "//\n//  NightViewTests.swift\n//  NightViewSampleProject\n//\n//  Created by Bobo on 7/11/16.\n//  Copyright © 2016 Boris Emorine. All rights reserved.\n//\n\nimport XCTest\n@testable import NightViewSampleProject\n\nclass NightViewTests: XCTestCase {\n\n    override func setUp() {\n        super.setUp()\n    }\n    \n    override func tearDown() {\n        super.tearDown()\n    }\n    \n    func testInitWithFrame() {\n        let nightView = NightView(frame: CGRect(x: 0.0, y: 0.0, width: 500.0, height: 500.0))\n        XCTAssertNotNil(nightView, \"A fully initialized NightView instance should be instanciated.\")\n    }\n    \n    func testReload() {\n        let nightView = NightView(frame: CGRect(x: 0.0, y: 0.0, width: 500.0, height: 500.0))\n        nightView.reload()\n        let stars = nightView.layer.sublayers?.first?.sublayers\n        XCTAssert(stars?.count > 0, \"Multiple stars should have been drawn\")\n        \n        nightView.reload()\n        let newStars = nightView.layer.sublayers?.first?.sublayers\n        XCTAssertEqual(stars?.count, newStars?.count, \"After reloading, the same amount of stars should have been re-drawn\")\n        XCTAssertNotEqual(stars!, newStars!)\n\n    }\n    \n    func testNumberOfPointsForStar() {\n        let nightView = NightView(frame: CGRect(x: 0.0, y: 0.0, width: 100.0, height: 100.0))\n        nightView.reload()\n        var stars = nightView.layer.sublayers?.first?.sublayers\n        XCTAssert(stars?.count > 0)\n        \n        nightView.numberOfPointsForStar = 1\n        stars = nightView.layer.sublayers?.first?.sublayers\n        XCTAssertEqual(CGFloat(stars!.count), nightView.frame.size.width * nightView.frame.size.height)\n    }\n    \n    func testStarSize() {\n        let starSize: CGFloat = 100.0\n        \n        let nightView = NightView(frame: CGRect(x: 0.0, y: 0.0, width: 50.0, height: 50.0))\n        nightView.numberOfPointsForStar = 1\n        nightView.starSize = starSize\n        nightView.reload()\n        var stars = nightView.layer.sublayers?.first?.sublayers\n        \n        var didFindBigStar = false\n        var didFindSmallStar = false\n        for star in stars! {\n            if star.frame.size.height > starSize {\n                didFindBigStar = true\n            } else if star.frame.size.height < starSize {\n                didFindSmallStar = true\n            }\n        }\n        XCTAssertTrue(didFindSmallStar)\n        XCTAssertTrue(didFindBigStar)\n        \n        \n        nightView.starSizeMinRandomizer = 120.0\n        nightView.starSizeMaxRandomizer = 150.0\n        stars = nightView.layer.sublayers?.first?.sublayers\n        \n        didFindBigStar = false\n        didFindSmallStar = false\n        for star in stars! {\n            if star.frame.size.height > starSize {\n                didFindBigStar = true\n            } else if star.frame.size.height < starSize {\n                didFindSmallStar = true\n            }\n        }\n        XCTAssertFalse(didFindSmallStar)\n        XCTAssertTrue(didFindBigStar)\n\n        \n        nightView.starSizeMinRandomizer = 20.0\n        nightView.starSizeMaxRandomizer = 80.0\n        stars = nightView.layer.sublayers?.first?.sublayers\n        \n        didFindBigStar = false\n        didFindSmallStar = false\n        for star in stars! {\n            if star.frame.size.height > starSize {\n                didFindBigStar = true\n            } else if star.frame.size.height < starSize {\n                didFindSmallStar = true\n            }\n        }\n        XCTAssertTrue(didFindSmallStar)\n        XCTAssertFalse(didFindBigStar)\n\n        \n        nightView.starSizeMinRandomizer = 100.0\n        nightView.starSizeMaxRandomizer = 100.0\n        stars = nightView.layer.sublayers?.first?.sublayers\n        \n        didFindBigStar = false\n        didFindSmallStar = false\n        for star in stars! {\n            if star.frame.size.height > starSize {\n                didFindBigStar = true\n            } else if star.frame.size.height < starSize {\n                didFindSmallStar = true\n            }\n            XCTAssertEqual(star.frame.size.height, starSize)\n        }\n        XCTAssertFalse(didFindSmallStar)\n        XCTAssertFalse(didFindBigStar)\n    }\n    \n    func testMinStarOpacity() {\n        let nightView = NightView(frame: CGRect(x: 0.0, y: 0.0, width: 50.0, height: 50.0))\n        nightView.numberOfPointsForStar = 1\n        nightView.reload()\n        var stars = nightView.layer.sublayers?.first?.sublayers\n        \n        var didFindLowOpacityStar = false\n        for star in stars! {\n            if star.opacity < 1.0 {\n                didFindLowOpacityStar = true\n                break\n            }\n        }\n        XCTAssertTrue(didFindLowOpacityStar, \"By default the stars at the bottom of the view should have a lower opacity\")\n        \n        nightView.minStarOpacity = 1.0\n        stars = nightView.layer.sublayers?.first?.sublayers\n        \n        didFindLowOpacityStar = false\n        for star in stars! {\n            if star.opacity < 1.0 {\n                didFindLowOpacityStar = true\n                break\n            }\n        }\n        XCTAssertFalse(didFindLowOpacityStar, \"All of the stars should have an opacity of 1\")\n    }\n\n}\n"
  },
  {
    "path": "README.md",
    "content": "# NightView\n\n[![Build Status](https://travis-ci.org/Boris-Em/NightView.svg?branch=master)](https://travis-ci.org/Boris-Em/NightView)\n[![Version](https://img.shields.io/cocoapods/v/NightView.svg?style=flat)](http://cocoadocs.org/docsets/NightView)\n[![License](https://img.shields.io/cocoapods/l/NightView.svg?style=flat)](http://cocoadocs.org/docsets/NightView)\n[![Platform](https://img.shields.io/cocoapods/p/NightView.svg?style=flat)](http://cocoadocs.org/docsets/NightView)\n\n<p align=\"center\"><img src=\"./.assets/NightView_Banner.jpg\"/></p>\t\n\n**NightView** is an open source library that generates beautiful, random, starry skies on iOS.  \n\n## Table of Contents\n\n* [**Project Details**](#project-details)  \n  * [Requirements](#requirements)\n  * [License](#license)\n  * [Support](#support)\n  * [Sample App](#sample-app)\n* [**Getting Started**](#getting-started)\n  * [Installation](#installation)\n  * [Setup](#setup)\n* [**Documentation**](#documentation)\n \n  \n  ## Project Details\nLearn more about the **NightView** project, licensing, support etc.\n\n<p align=\"center\"><img src=\"./.assets/NightView_iPhone.jpg\"/></p>\n\n### Requirements\n - Requires iOS 7 or later. The sample project is optimized for iOS 9.\n - Requires Automatic Reference Counting (ARC).\n - Optimized for ARM64 Architecture.\n\n### License\nSee the [License](https://github.com/Boris-Em/NightView/blob/master/LICENSE). You are free to make changes and use this in either personal or commercial projects. Attribution is not required, but highly appreciated. A little \"Thanks!\" (or something to that affect) is always welcome. If you use **NightView** in your app, please let us know!\n\n### Support\n[![https://gitter.im/Boris-Em/NightView](https://badges.gitter.im/Boris-Em/NightView.svg)](https://gitter.im/Boris-Em/NightView?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)  \n\nJoin us on gitter if you have any question!\n\n### Sample App\nThe iOS Sample App included with this project demonstrates one way to correctly setup and use **NightView**. It also offers the possibility to customize the view within the app.\n\n## Getting Started\nIt only takes a few simple steps to install and setup **NightView** to your project.\n\n###Installation\nThe easiest way to install **NightView** is to use <a href=\"http://cocoapods.org/\" target=\"_blank\">CocoaPods</a>. To do so, simply add the following line to your `Podfile`:\n\t<pre><code>pod 'NightView'</code></pre>\n\t\nThe other way to install **NightView**, is to drag and drop the *NightView* folder into your Xcode project. When you do so, make sure to check the \"*Copy items into destination group's folder*\" box.\n\n### Setup\n**NightView** is a simple UIView subclass. It can be initialized with Interface Builder, or programatically.\n \n **Interface Builder Initialization**  \n 1 - Drag a `UIView` to your `UIViewController`.  \n 2 - Change the class of the new `UIView` to `NightView`.  \n 3 - Select the `NightView` and open the Attributes Inspector. Most of the customizable properties can easily be set from the Attributes Inspector. The Sample App demonstrates this capability.\n \n **Programmatical Initialization**  \n Here is an example illustrating how to initialize a NightView instance programmatically:\n\n ```swift\n let nightView = NightView(frame: CGRectMake(0.0, 0.0, 200.0, 200.0))\n view.addSubview(nightView)\n ```\n \n## Documentation\nAll of the methods and properties available for **NightView** are documented below.\n\n##### `numberOfPointsForStar`  \nThe number of points for each star. For example, setting this property to 1, means that there will be 1 star for every point in the view. A greater number means less stars within the view. *Defaults to 10000.0.*\n\n##### `starSize`  \nThe size of the stars in points. Note that setting `starSizeMinRandomizer` and `starSizeMaxRandomizer` will also influence the size of stars. *Defaults to 5.0.*\n\n##### `starColor`  \nThe color of the stars. *Defaults to white.*\n\n##### `starSizeMinRandomizer`  \nThe size of the stars is randomized within the `starSize` value. This property sets the minimum percent by which the stars' size could be changed. For example, a value of 50.0 means that the minimum size of a star will be 50% of the `starSize` property. *Defaults to 50.0.*\n\n##### `starSizeMaxRandomizer`  \nThe size of the stars is randomized within the `starSize` value. This property sets the maximum percent by which the stars' size could be changed. For example, a value of 150.0 means that the maximum size of a star will be 150% of the `starSize` property. *Defaults to 150.0.*  \n\n##### `minStarOpacity`  \nThe stars are drawn with a smaller opacity at the bottom of the view than at the top. This property sets the minimum opacity for the lower stars. Note that the stars at the top of the view will always have an opacity of 1.0. *Defaults to 0.5.*\n\n##### `glowingIntensity`  \nThe intensity of the glowing of the stars, from 0 to 1. If set to 0, the stars will not glow. *Defaults to 0.5.*\n\n##### `glowingDuration`  \nThe duration in seconds at which the stars glow. *Defaults to 2.0.*\n\n##### `starType`  \nThe type of stars to be drawn. *Defaults to `.Round`.*  \n<p align=\"center\"><img src=\"./.assets/NightView_Stars.jpg\"/>\n\n##### `reload()`  \nReloads the **NightView** instance, redrawing all of the stars.\n"
  }
]