├── SwiftTip ├── Images.xcassets │ └── AppIcon.appiconset │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-Small@2x.png │ │ ├── Icon-Small@3x.png │ │ ├── Icon-Small-40@2x.png │ │ ├── Icon-Small-40@3x.png │ │ └── Contents.json ├── Info.plist ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard └── ViewController.swift ├── SwiftTip.xcodeproj ├── xcuserdata │ ├── justin.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── xcschememanagement.plist │ │ │ └── SwiftTip.xcscheme │ ├── faisalmisle.xcuserdatad │ │ ├── xcdebugger │ │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ │ ├── xcschememanagement.plist │ │ │ └── SwiftTip.xcscheme │ └── Faisal.xcuserdatad │ │ ├── xcschemes │ │ ├── xcschememanagement.plist │ │ └── SwiftTip.xcscheme │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcuserdata │ │ ├── Faisal.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ ├── justin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ │ └── faisalmisle.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcshareddata │ │ └── SwiftTip.xccheckout └── project.pbxproj ├── README.md └── SwiftTipTests ├── Info.plist └── SwiftTipTests.swift /SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small@2x.png -------------------------------------------------------------------------------- /SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small@3x.png -------------------------------------------------------------------------------- /SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small-40@2x.png -------------------------------------------------------------------------------- /SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip/Images.xcassets/AppIcon.appiconset/Icon-Small-40@3x.png -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/justin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/faisalmisle.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/project.xcworkspace/xcuserdata/Faisal.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip.xcodeproj/project.xcworkspace/xcuserdata/Faisal.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/project.xcworkspace/xcuserdata/justin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip.xcodeproj/project.xcworkspace/xcuserdata/justin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/project.xcworkspace/xcuserdata/faisalmisle.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fm/SwiftTip/master/SwiftTip.xcodeproj/project.xcworkspace/xcuserdata/faisalmisle.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SwiftTip 2 | My first Swift app. A simple, minimalistic tip calculator. 3 | In collaboration with Justin Lauffer. 4 | 5 | There's two versions of the app. 6 | 7 | **v1 (currently master)** - original design, uses segmentedControls for number of guests and tip amounts. 8 | **v2** - new design, uses a stepper number of guests, will be more condensed towards the top 9 | probably will be merged into master at some point when it's more stable and the design is more concrete. 10 | 11 | *Many thanks to:* 12 | Harrison Weinerman 13 | Eytan Schulman 14 | and Jaden Geller for their advice and help while building the app 15 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/Faisal.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SwiftTip.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 3AC8C7711AFEE31800BD4C9E 16 | 17 | primary 18 | 19 | 20 | 3AC8C7861AFEE31800BD4C9E 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/justin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SwiftTip.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 3AC8C7711AFEE31800BD4C9E 16 | 17 | primary 18 | 19 | 20 | 3AC8C7861AFEE31800BD4C9E 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/faisalmisle.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | SwiftTip.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 3AC8C7711AFEE31800BD4C9E 16 | 17 | primary 18 | 19 | 20 | 3AC8C7861AFEE31800BD4C9E 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /SwiftTipTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.faisalmisle.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/Faisal.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 8 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /SwiftTip/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "size" : "29x29", 5 | "idiom" : "iphone", 6 | "filename" : "Icon-Small@2x.png", 7 | "scale" : "2x" 8 | }, 9 | { 10 | "size" : "29x29", 11 | "idiom" : "iphone", 12 | "filename" : "Icon-Small@3x.png", 13 | "scale" : "3x" 14 | }, 15 | { 16 | "size" : "40x40", 17 | "idiom" : "iphone", 18 | "filename" : "Icon-Small-40@2x.png", 19 | "scale" : "2x" 20 | }, 21 | { 22 | "size" : "40x40", 23 | "idiom" : "iphone", 24 | "filename" : "Icon-Small-40@3x.png", 25 | "scale" : "3x" 26 | }, 27 | { 28 | "size" : "60x60", 29 | "idiom" : "iphone", 30 | "filename" : "Icon-60@2x.png", 31 | "scale" : "2x" 32 | }, 33 | { 34 | "size" : "60x60", 35 | "idiom" : "iphone", 36 | "filename" : "Icon-60@3x.png", 37 | "scale" : "3x" 38 | } 39 | ], 40 | "info" : { 41 | "version" : 1, 42 | "author" : "xcode" 43 | } 44 | } -------------------------------------------------------------------------------- /SwiftTipTests/SwiftTipTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // SwiftTipTests.swift 3 | // SwiftTipTests 4 | // 5 | // Created by Faisal Misle on 5/9/15. 6 | // Copyright (c) 2015 Faisal Misle. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | import XCTest 11 | 12 | class SwiftTipTests: XCTestCase { 13 | 14 | override func setUp() { 15 | super.setUp() 16 | // Put setup code here. This method is called before the invocation of each test method in the class. 17 | } 18 | 19 | override func tearDown() { 20 | // Put teardown code here. This method is called after the invocation of each test method in the class. 21 | super.tearDown() 22 | } 23 | 24 | func testExample() { 25 | // This is an example of a functional test case. 26 | XCTAssert(true, "Pass") 27 | } 28 | 29 | func testPerformanceExample() { 30 | // This is an example of a performance test case. 31 | self.measureBlock() { 32 | // Put the code you want to measure the time of here. 33 | } 34 | } 35 | 36 | } 37 | -------------------------------------------------------------------------------- /SwiftTip/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | com.faisalmisle.$(PRODUCT_NAME:rfc1034identifier) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | APPL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | LSRequiresIPhoneOS 24 | 25 | UILaunchStoryboardName 26 | LaunchScreen 27 | UIMainStoryboardFile 28 | Main 29 | UIRequiredDeviceCapabilities 30 | 31 | armv7 32 | 33 | UISupportedInterfaceOrientations 34 | 35 | UIInterfaceOrientationPortrait 36 | UIInterfaceOrientationLandscapeLeft 37 | UIInterfaceOrientationLandscapeRight 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/project.xcworkspace/xcshareddata/SwiftTip.xccheckout: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDESourceControlProjectFavoriteDictionaryKey 6 | 7 | IDESourceControlProjectIdentifier 8 | 8716A482-AAF2-49F2-A567-139D70EF823D 9 | IDESourceControlProjectName 10 | SwiftTip 11 | IDESourceControlProjectOriginsDictionary 12 | 13 | 7312EED1ADF527B57395925917FA0B8A478EBEE4 14 | https://github.com/fm/SwiftTip.git 15 | 16 | IDESourceControlProjectPath 17 | SwiftTip.xcodeproj 18 | IDESourceControlProjectRelativeInstallPathDictionary 19 | 20 | 7312EED1ADF527B57395925917FA0B8A478EBEE4 21 | ../.. 22 | 23 | IDESourceControlProjectURL 24 | https://github.com/fm/SwiftTip.git 25 | IDESourceControlProjectVersion 26 | 111 27 | IDESourceControlProjectWCCIdentifier 28 | 7312EED1ADF527B57395925917FA0B8A478EBEE4 29 | IDESourceControlProjectWCConfigurations 30 | 31 | 32 | IDESourceControlRepositoryExtensionIdentifierKey 33 | public.vcs.git 34 | IDESourceControlWCCIdentifierKey 35 | 7312EED1ADF527B57395925917FA0B8A478EBEE4 36 | IDESourceControlWCCName 37 | SwiftTip 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /SwiftTip/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.swift 3 | // SwiftTip 4 | // 5 | // Created by Faisal Misle on 5/9/15. 6 | // Copyright (c) 2015 Faisal Misle. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | @UIApplicationMain 12 | class AppDelegate: UIResponder, UIApplicationDelegate { 13 | 14 | var window: UIWindow? 15 | 16 | 17 | func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool { 18 | // Override point for customization after application launch. 19 | return true 20 | } 21 | 22 | func applicationWillResignActive(application: UIApplication) { 23 | // 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. 24 | // 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. 25 | } 26 | 27 | func applicationDidEnterBackground(application: UIApplication) { 28 | // 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. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | func applicationWillEnterForeground(application: UIApplication) { 33 | // 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. 34 | } 35 | 36 | func applicationDidBecomeActive(application: UIApplication) { 37 | // 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. 38 | } 39 | 40 | func applicationWillTerminate(application: UIApplication) { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | 45 | } -------------------------------------------------------------------------------- /SwiftTip/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 20 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | -------------------------------------------------------------------------------- /SwiftTip/ViewController.swift: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.swift 3 | // SwiftTip 4 | // 5 | // Created by Faisal Misle on 5/9/15. 6 | // Copyright (c) 2015 Faisal Misle. All rights reserved. 7 | // 8 | 9 | import UIKit 10 | 11 | class ViewController: UIViewController, UITextFieldDelegate { 12 | 13 | @IBOutlet weak var billTextField: UITextField! 14 | @IBOutlet weak var numberOfGuestsSegmentedControl: UISegmentedControl! 15 | @IBOutlet weak var tipRateSegmentedControl: UISegmentedControl! 16 | @IBOutlet weak var tipLabel: UILabel! 17 | @IBOutlet weak var totalLabel: UILabel! 18 | @IBOutlet weak var eachPaysLabel: UILabel! 19 | 20 | func calculateTip() { 21 | // This code is run each time the Calculate Button is tapped 22 | 23 | 24 | var userInput = billTextField.text as NSString // Get Bill 25 | var totalBill: Double = floor(userInput.doubleValue) // Convert String to Float 26 | 27 | var index: Int = tipRateSegmentedControl.selectedSegmentIndex 28 | var tipRate: Double = 0.00 // set tip rate to first index 29 | 30 | // set tip rates according to segment control postion 31 | if index == 0 { 32 | tipRate = 0.00 33 | } else if index == 1 { 34 | tipRate = 0.15 35 | } else if index == 2 { 36 | tipRate = 0.18 37 | } else { 38 | tipRate = 0.20 39 | } 40 | 41 | 42 | var tip: Double = totalBill * tipRate // calculate the tip 43 | let roundedTip = Double(round(100*tip)/100) // rounding the tip 44 | tipLabel.text = NSString(format: "Tip Amount: $%.2f", roundedTip) as String // Limiting to 2 decimals 45 | 46 | var total: Double = totalBill + roundedTip // add tip to total 47 | var roundedTotal = Double(round(100*total)/100) //rounding the total 48 | totalLabel.text = NSString(format: "Total Amount: $%.2f", roundedTotal) as String // Limiting to 2 decimals 49 | 50 | 51 | var guestIndex: Int = numberOfGuestsSegmentedControl.selectedSegmentIndex 52 | var guestNumber: Int = 1 // set number of guests to 1 for default 53 | 54 | // set number of guests according to segment control postion 55 | 56 | switch guestIndex { 57 | 58 | case 0: 59 | guestNumber = guestIndex + 1 60 | case 1: 61 | guestNumber = guestIndex + 1 62 | case 2: 63 | guestNumber = guestIndex + 1 64 | case 3: 65 | guestNumber = guestIndex + 1 66 | case 4: 67 | guestNumber = guestIndex + 1 68 | case 5: 69 | guestNumber = guestIndex + 1 70 | default: 71 | break 72 | 73 | } 74 | 75 | 76 | // Debugging 77 | // println(tipRate) // make sure it selects the right tip amount 78 | // println(guestNumber) // make sure it selects right number of guests 79 | 80 | var guestTotal: Double = roundedTotal / Double(guestNumber) // divide bill by # of guests 81 | eachPaysLabel.text = NSString(format: "Each Guest Pays: $%.2f", guestTotal) as String // Limiting to 2 decimals 82 | } 83 | 84 | override func viewDidLoad() { 85 | super.viewDidLoad() 86 | // Do any additional setup after loading the view, typically from a nib. 87 | 88 | self.billTextField.delegate = self 89 | 90 | // calculate button border 91 | } 92 | 93 | 94 | @IBAction func guestTap(sender: AnyObject) { 95 | self.view.endEditing(true) 96 | calculateTip() 97 | } 98 | 99 | @IBAction func tipTapped(sender: AnyObject) { 100 | self.view.endEditing(true) 101 | calculateTip() 102 | } 103 | 104 | @IBAction func totalBillChanged(sender: AnyObject) { 105 | calculateTip() 106 | } 107 | 108 | override func didReceiveMemoryWarning() { 109 | super.didReceiveMemoryWarning() 110 | // Dispose of any resources that can be recreated. 111 | } 112 | 113 | override func touchesBegan(touches: Set, withEvent event: UIEvent) { 114 | self.view.endEditing(true) 115 | } 116 | 117 | } -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/Faisal.xcuserdatad/xcschemes/SwiftTip.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 76 | 82 | 83 | 84 | 85 | 86 | 87 | 93 | 94 | 100 | 101 | 102 | 103 | 105 | 106 | 109 | 110 | 111 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/justin.xcuserdatad/xcschemes/SwiftTip.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 77 | 83 | 84 | 85 | 86 | 87 | 88 | 94 | 96 | 102 | 103 | 104 | 105 | 107 | 108 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/xcuserdata/faisalmisle.xcuserdatad/xcschemes/SwiftTip.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 29 | 35 | 36 | 37 | 38 | 39 | 44 | 45 | 47 | 53 | 54 | 55 | 56 | 57 | 63 | 64 | 65 | 66 | 75 | 77 | 83 | 84 | 85 | 86 | 87 | 88 | 94 | 96 | 102 | 103 | 104 | 105 | 107 | 108 | 111 | 112 | 113 | -------------------------------------------------------------------------------- /SwiftTip.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3AC8C7781AFEE31800BD4C9E /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AC8C7771AFEE31800BD4C9E /* AppDelegate.swift */; }; 11 | 3AC8C77A1AFEE31800BD4C9E /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AC8C7791AFEE31800BD4C9E /* ViewController.swift */; }; 12 | 3AC8C77D1AFEE31800BD4C9E /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3AC8C77B1AFEE31800BD4C9E /* Main.storyboard */; }; 13 | 3AC8C77F1AFEE31800BD4C9E /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3AC8C77E1AFEE31800BD4C9E /* Images.xcassets */; }; 14 | 3AC8C7821AFEE31800BD4C9E /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = 3AC8C7801AFEE31800BD4C9E /* LaunchScreen.xib */; }; 15 | 3AC8C78E1AFEE31800BD4C9E /* SwiftTipTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 3AC8C78D1AFEE31800BD4C9E /* SwiftTipTests.swift */; }; 16 | /* End PBXBuildFile section */ 17 | 18 | /* Begin PBXContainerItemProxy section */ 19 | 3AC8C7881AFEE31800BD4C9E /* PBXContainerItemProxy */ = { 20 | isa = PBXContainerItemProxy; 21 | containerPortal = 3AC8C76A1AFEE31800BD4C9E /* Project object */; 22 | proxyType = 1; 23 | remoteGlobalIDString = 3AC8C7711AFEE31800BD4C9E; 24 | remoteInfo = SwiftTip; 25 | }; 26 | /* End PBXContainerItemProxy section */ 27 | 28 | /* Begin PBXFileReference section */ 29 | 3AC8C7721AFEE31800BD4C9E /* SwiftTip.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = SwiftTip.app; sourceTree = BUILT_PRODUCTS_DIR; }; 30 | 3AC8C7761AFEE31800BD4C9E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 31 | 3AC8C7771AFEE31800BD4C9E /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; 32 | 3AC8C7791AFEE31800BD4C9E /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = ""; }; 33 | 3AC8C77C1AFEE31800BD4C9E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 34 | 3AC8C77E1AFEE31800BD4C9E /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = ""; }; 35 | 3AC8C7811AFEE31800BD4C9E /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = ""; }; 36 | 3AC8C7871AFEE31800BD4C9E /* SwiftTipTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = SwiftTipTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 37 | 3AC8C78C1AFEE31800BD4C9E /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 38 | 3AC8C78D1AFEE31800BD4C9E /* SwiftTipTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SwiftTipTests.swift; sourceTree = ""; }; 39 | /* End PBXFileReference section */ 40 | 41 | /* Begin PBXFrameworksBuildPhase section */ 42 | 3AC8C76F1AFEE31800BD4C9E /* Frameworks */ = { 43 | isa = PBXFrameworksBuildPhase; 44 | buildActionMask = 2147483647; 45 | files = ( 46 | ); 47 | runOnlyForDeploymentPostprocessing = 0; 48 | }; 49 | 3AC8C7841AFEE31800BD4C9E /* Frameworks */ = { 50 | isa = PBXFrameworksBuildPhase; 51 | buildActionMask = 2147483647; 52 | files = ( 53 | ); 54 | runOnlyForDeploymentPostprocessing = 0; 55 | }; 56 | /* End PBXFrameworksBuildPhase section */ 57 | 58 | /* Begin PBXGroup section */ 59 | 3AC8C7691AFEE31800BD4C9E = { 60 | isa = PBXGroup; 61 | children = ( 62 | 3AC8C7741AFEE31800BD4C9E /* SwiftTip */, 63 | 3AC8C78A1AFEE31800BD4C9E /* SwiftTipTests */, 64 | 3AC8C7731AFEE31800BD4C9E /* Products */, 65 | ); 66 | sourceTree = ""; 67 | }; 68 | 3AC8C7731AFEE31800BD4C9E /* Products */ = { 69 | isa = PBXGroup; 70 | children = ( 71 | 3AC8C7721AFEE31800BD4C9E /* SwiftTip.app */, 72 | 3AC8C7871AFEE31800BD4C9E /* SwiftTipTests.xctest */, 73 | ); 74 | name = Products; 75 | sourceTree = ""; 76 | }; 77 | 3AC8C7741AFEE31800BD4C9E /* SwiftTip */ = { 78 | isa = PBXGroup; 79 | children = ( 80 | 3AC8C7771AFEE31800BD4C9E /* AppDelegate.swift */, 81 | 3AC8C7791AFEE31800BD4C9E /* ViewController.swift */, 82 | 3AC8C77B1AFEE31800BD4C9E /* Main.storyboard */, 83 | 3AC8C77E1AFEE31800BD4C9E /* Images.xcassets */, 84 | 3AC8C7801AFEE31800BD4C9E /* LaunchScreen.xib */, 85 | 3AC8C7751AFEE31800BD4C9E /* Supporting Files */, 86 | ); 87 | path = SwiftTip; 88 | sourceTree = ""; 89 | }; 90 | 3AC8C7751AFEE31800BD4C9E /* Supporting Files */ = { 91 | isa = PBXGroup; 92 | children = ( 93 | 3AC8C7761AFEE31800BD4C9E /* Info.plist */, 94 | ); 95 | name = "Supporting Files"; 96 | sourceTree = ""; 97 | }; 98 | 3AC8C78A1AFEE31800BD4C9E /* SwiftTipTests */ = { 99 | isa = PBXGroup; 100 | children = ( 101 | 3AC8C78D1AFEE31800BD4C9E /* SwiftTipTests.swift */, 102 | 3AC8C78B1AFEE31800BD4C9E /* Supporting Files */, 103 | ); 104 | path = SwiftTipTests; 105 | sourceTree = ""; 106 | }; 107 | 3AC8C78B1AFEE31800BD4C9E /* Supporting Files */ = { 108 | isa = PBXGroup; 109 | children = ( 110 | 3AC8C78C1AFEE31800BD4C9E /* Info.plist */, 111 | ); 112 | name = "Supporting Files"; 113 | sourceTree = ""; 114 | }; 115 | /* End PBXGroup section */ 116 | 117 | /* Begin PBXNativeTarget section */ 118 | 3AC8C7711AFEE31800BD4C9E /* SwiftTip */ = { 119 | isa = PBXNativeTarget; 120 | buildConfigurationList = 3AC8C7911AFEE31800BD4C9E /* Build configuration list for PBXNativeTarget "SwiftTip" */; 121 | buildPhases = ( 122 | 3AC8C76E1AFEE31800BD4C9E /* Sources */, 123 | 3AC8C76F1AFEE31800BD4C9E /* Frameworks */, 124 | 3AC8C7701AFEE31800BD4C9E /* Resources */, 125 | ); 126 | buildRules = ( 127 | ); 128 | dependencies = ( 129 | ); 130 | name = SwiftTip; 131 | productName = SwiftTip; 132 | productReference = 3AC8C7721AFEE31800BD4C9E /* SwiftTip.app */; 133 | productType = "com.apple.product-type.application"; 134 | }; 135 | 3AC8C7861AFEE31800BD4C9E /* SwiftTipTests */ = { 136 | isa = PBXNativeTarget; 137 | buildConfigurationList = 3AC8C7941AFEE31800BD4C9E /* Build configuration list for PBXNativeTarget "SwiftTipTests" */; 138 | buildPhases = ( 139 | 3AC8C7831AFEE31800BD4C9E /* Sources */, 140 | 3AC8C7841AFEE31800BD4C9E /* Frameworks */, 141 | 3AC8C7851AFEE31800BD4C9E /* Resources */, 142 | ); 143 | buildRules = ( 144 | ); 145 | dependencies = ( 146 | 3AC8C7891AFEE31800BD4C9E /* PBXTargetDependency */, 147 | ); 148 | name = SwiftTipTests; 149 | productName = SwiftTipTests; 150 | productReference = 3AC8C7871AFEE31800BD4C9E /* SwiftTipTests.xctest */; 151 | productType = "com.apple.product-type.bundle.unit-test"; 152 | }; 153 | /* End PBXNativeTarget section */ 154 | 155 | /* Begin PBXProject section */ 156 | 3AC8C76A1AFEE31800BD4C9E /* Project object */ = { 157 | isa = PBXProject; 158 | attributes = { 159 | LastUpgradeCheck = 0610; 160 | ORGANIZATIONNAME = "Faisal Misle"; 161 | TargetAttributes = { 162 | 3AC8C7711AFEE31800BD4C9E = { 163 | CreatedOnToolsVersion = 6.1.1; 164 | DevelopmentTeam = NRV4YY6LAR; 165 | }; 166 | 3AC8C7861AFEE31800BD4C9E = { 167 | CreatedOnToolsVersion = 6.1.1; 168 | TestTargetID = 3AC8C7711AFEE31800BD4C9E; 169 | }; 170 | }; 171 | }; 172 | buildConfigurationList = 3AC8C76D1AFEE31800BD4C9E /* Build configuration list for PBXProject "SwiftTip" */; 173 | compatibilityVersion = "Xcode 3.2"; 174 | developmentRegion = English; 175 | hasScannedForEncodings = 0; 176 | knownRegions = ( 177 | en, 178 | Base, 179 | ); 180 | mainGroup = 3AC8C7691AFEE31800BD4C9E; 181 | productRefGroup = 3AC8C7731AFEE31800BD4C9E /* Products */; 182 | projectDirPath = ""; 183 | projectRoot = ""; 184 | targets = ( 185 | 3AC8C7711AFEE31800BD4C9E /* SwiftTip */, 186 | 3AC8C7861AFEE31800BD4C9E /* SwiftTipTests */, 187 | ); 188 | }; 189 | /* End PBXProject section */ 190 | 191 | /* Begin PBXResourcesBuildPhase section */ 192 | 3AC8C7701AFEE31800BD4C9E /* Resources */ = { 193 | isa = PBXResourcesBuildPhase; 194 | buildActionMask = 2147483647; 195 | files = ( 196 | 3AC8C77D1AFEE31800BD4C9E /* Main.storyboard in Resources */, 197 | 3AC8C7821AFEE31800BD4C9E /* LaunchScreen.xib in Resources */, 198 | 3AC8C77F1AFEE31800BD4C9E /* Images.xcassets in Resources */, 199 | ); 200 | runOnlyForDeploymentPostprocessing = 0; 201 | }; 202 | 3AC8C7851AFEE31800BD4C9E /* Resources */ = { 203 | isa = PBXResourcesBuildPhase; 204 | buildActionMask = 2147483647; 205 | files = ( 206 | ); 207 | runOnlyForDeploymentPostprocessing = 0; 208 | }; 209 | /* End PBXResourcesBuildPhase section */ 210 | 211 | /* Begin PBXSourcesBuildPhase section */ 212 | 3AC8C76E1AFEE31800BD4C9E /* Sources */ = { 213 | isa = PBXSourcesBuildPhase; 214 | buildActionMask = 2147483647; 215 | files = ( 216 | 3AC8C77A1AFEE31800BD4C9E /* ViewController.swift in Sources */, 217 | 3AC8C7781AFEE31800BD4C9E /* AppDelegate.swift in Sources */, 218 | ); 219 | runOnlyForDeploymentPostprocessing = 0; 220 | }; 221 | 3AC8C7831AFEE31800BD4C9E /* Sources */ = { 222 | isa = PBXSourcesBuildPhase; 223 | buildActionMask = 2147483647; 224 | files = ( 225 | 3AC8C78E1AFEE31800BD4C9E /* SwiftTipTests.swift in Sources */, 226 | ); 227 | runOnlyForDeploymentPostprocessing = 0; 228 | }; 229 | /* End PBXSourcesBuildPhase section */ 230 | 231 | /* Begin PBXTargetDependency section */ 232 | 3AC8C7891AFEE31800BD4C9E /* PBXTargetDependency */ = { 233 | isa = PBXTargetDependency; 234 | target = 3AC8C7711AFEE31800BD4C9E /* SwiftTip */; 235 | targetProxy = 3AC8C7881AFEE31800BD4C9E /* PBXContainerItemProxy */; 236 | }; 237 | /* End PBXTargetDependency section */ 238 | 239 | /* Begin PBXVariantGroup section */ 240 | 3AC8C77B1AFEE31800BD4C9E /* Main.storyboard */ = { 241 | isa = PBXVariantGroup; 242 | children = ( 243 | 3AC8C77C1AFEE31800BD4C9E /* Base */, 244 | ); 245 | name = Main.storyboard; 246 | sourceTree = ""; 247 | }; 248 | 3AC8C7801AFEE31800BD4C9E /* LaunchScreen.xib */ = { 249 | isa = PBXVariantGroup; 250 | children = ( 251 | 3AC8C7811AFEE31800BD4C9E /* Base */, 252 | ); 253 | name = LaunchScreen.xib; 254 | sourceTree = ""; 255 | }; 256 | /* End PBXVariantGroup section */ 257 | 258 | /* Begin XCBuildConfiguration section */ 259 | 3AC8C78F1AFEE31800BD4C9E /* Debug */ = { 260 | isa = XCBuildConfiguration; 261 | buildSettings = { 262 | ALWAYS_SEARCH_USER_PATHS = NO; 263 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 264 | CLANG_CXX_LIBRARY = "libc++"; 265 | CLANG_ENABLE_MODULES = YES; 266 | CLANG_ENABLE_OBJC_ARC = YES; 267 | CLANG_WARN_BOOL_CONVERSION = YES; 268 | CLANG_WARN_CONSTANT_CONVERSION = YES; 269 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 270 | CLANG_WARN_EMPTY_BODY = YES; 271 | CLANG_WARN_ENUM_CONVERSION = YES; 272 | CLANG_WARN_INT_CONVERSION = YES; 273 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 274 | CLANG_WARN_UNREACHABLE_CODE = YES; 275 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 276 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 277 | COPY_PHASE_STRIP = NO; 278 | ENABLE_STRICT_OBJC_MSGSEND = YES; 279 | GCC_C_LANGUAGE_STANDARD = gnu99; 280 | GCC_DYNAMIC_NO_PIC = NO; 281 | GCC_OPTIMIZATION_LEVEL = 0; 282 | GCC_PREPROCESSOR_DEFINITIONS = ( 283 | "DEBUG=1", 284 | "$(inherited)", 285 | ); 286 | GCC_SYMBOLS_PRIVATE_EXTERN = NO; 287 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 288 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 289 | GCC_WARN_UNDECLARED_SELECTOR = YES; 290 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 291 | GCC_WARN_UNUSED_FUNCTION = YES; 292 | GCC_WARN_UNUSED_VARIABLE = YES; 293 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 294 | MTL_ENABLE_DEBUG_INFO = YES; 295 | ONLY_ACTIVE_ARCH = YES; 296 | SDKROOT = iphoneos; 297 | SWIFT_OPTIMIZATION_LEVEL = "-Onone"; 298 | }; 299 | name = Debug; 300 | }; 301 | 3AC8C7901AFEE31800BD4C9E /* Release */ = { 302 | isa = XCBuildConfiguration; 303 | buildSettings = { 304 | ALWAYS_SEARCH_USER_PATHS = NO; 305 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 306 | CLANG_CXX_LIBRARY = "libc++"; 307 | CLANG_ENABLE_MODULES = YES; 308 | CLANG_ENABLE_OBJC_ARC = YES; 309 | CLANG_WARN_BOOL_CONVERSION = YES; 310 | CLANG_WARN_CONSTANT_CONVERSION = YES; 311 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 312 | CLANG_WARN_EMPTY_BODY = YES; 313 | CLANG_WARN_ENUM_CONVERSION = YES; 314 | CLANG_WARN_INT_CONVERSION = YES; 315 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 316 | CLANG_WARN_UNREACHABLE_CODE = YES; 317 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 318 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 319 | COPY_PHASE_STRIP = YES; 320 | ENABLE_NS_ASSERTIONS = NO; 321 | ENABLE_STRICT_OBJC_MSGSEND = YES; 322 | GCC_C_LANGUAGE_STANDARD = gnu99; 323 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 324 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 325 | GCC_WARN_UNDECLARED_SELECTOR = YES; 326 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 327 | GCC_WARN_UNUSED_FUNCTION = YES; 328 | GCC_WARN_UNUSED_VARIABLE = YES; 329 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 330 | MTL_ENABLE_DEBUG_INFO = NO; 331 | SDKROOT = iphoneos; 332 | VALIDATE_PRODUCT = YES; 333 | }; 334 | name = Release; 335 | }; 336 | 3AC8C7921AFEE31800BD4C9E /* Debug */ = { 337 | isa = XCBuildConfiguration; 338 | buildSettings = { 339 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 340 | CODE_SIGN_IDENTITY = "iPhone Developer"; 341 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 342 | INFOPLIST_FILE = SwiftTip/Info.plist; 343 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 344 | PRODUCT_NAME = "$(TARGET_NAME)"; 345 | PROVISIONING_PROFILE = ""; 346 | }; 347 | name = Debug; 348 | }; 349 | 3AC8C7931AFEE31800BD4C9E /* Release */ = { 350 | isa = XCBuildConfiguration; 351 | buildSettings = { 352 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 353 | CODE_SIGN_IDENTITY = "iPhone Developer"; 354 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 355 | INFOPLIST_FILE = SwiftTip/Info.plist; 356 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 357 | PRODUCT_NAME = "$(TARGET_NAME)"; 358 | PROVISIONING_PROFILE = ""; 359 | }; 360 | name = Release; 361 | }; 362 | 3AC8C7951AFEE31800BD4C9E /* Debug */ = { 363 | isa = XCBuildConfiguration; 364 | buildSettings = { 365 | BUNDLE_LOADER = "$(TEST_HOST)"; 366 | FRAMEWORK_SEARCH_PATHS = ( 367 | "$(SDKROOT)/Developer/Library/Frameworks", 368 | "$(inherited)", 369 | ); 370 | GCC_PREPROCESSOR_DEFINITIONS = ( 371 | "DEBUG=1", 372 | "$(inherited)", 373 | ); 374 | INFOPLIST_FILE = SwiftTipTests/Info.plist; 375 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 376 | PRODUCT_NAME = "$(TARGET_NAME)"; 377 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftTip.app/SwiftTip"; 378 | }; 379 | name = Debug; 380 | }; 381 | 3AC8C7961AFEE31800BD4C9E /* Release */ = { 382 | isa = XCBuildConfiguration; 383 | buildSettings = { 384 | BUNDLE_LOADER = "$(TEST_HOST)"; 385 | FRAMEWORK_SEARCH_PATHS = ( 386 | "$(SDKROOT)/Developer/Library/Frameworks", 387 | "$(inherited)", 388 | ); 389 | INFOPLIST_FILE = SwiftTipTests/Info.plist; 390 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 391 | PRODUCT_NAME = "$(TARGET_NAME)"; 392 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/SwiftTip.app/SwiftTip"; 393 | }; 394 | name = Release; 395 | }; 396 | /* End XCBuildConfiguration section */ 397 | 398 | /* Begin XCConfigurationList section */ 399 | 3AC8C76D1AFEE31800BD4C9E /* Build configuration list for PBXProject "SwiftTip" */ = { 400 | isa = XCConfigurationList; 401 | buildConfigurations = ( 402 | 3AC8C78F1AFEE31800BD4C9E /* Debug */, 403 | 3AC8C7901AFEE31800BD4C9E /* Release */, 404 | ); 405 | defaultConfigurationIsVisible = 0; 406 | defaultConfigurationName = Release; 407 | }; 408 | 3AC8C7911AFEE31800BD4C9E /* Build configuration list for PBXNativeTarget "SwiftTip" */ = { 409 | isa = XCConfigurationList; 410 | buildConfigurations = ( 411 | 3AC8C7921AFEE31800BD4C9E /* Debug */, 412 | 3AC8C7931AFEE31800BD4C9E /* Release */, 413 | ); 414 | defaultConfigurationIsVisible = 0; 415 | defaultConfigurationName = Release; 416 | }; 417 | 3AC8C7941AFEE31800BD4C9E /* Build configuration list for PBXNativeTarget "SwiftTipTests" */ = { 418 | isa = XCConfigurationList; 419 | buildConfigurations = ( 420 | 3AC8C7951AFEE31800BD4C9E /* Debug */, 421 | 3AC8C7961AFEE31800BD4C9E /* Release */, 422 | ); 423 | defaultConfigurationIsVisible = 0; 424 | defaultConfigurationName = Release; 425 | }; 426 | /* End XCConfigurationList section */ 427 | }; 428 | rootObject = 3AC8C76A1AFEE31800BD4C9E /* Project object */; 429 | } 430 | -------------------------------------------------------------------------------- /SwiftTip/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 57 | 71 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | --------------------------------------------------------------------------------